Import any XML or CSV File to WordPress - Version 3.4.4

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 Icon 128x128 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 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
- $templateOptions = empty($templates_data[0]['options']) ? false : unserialize($templates_data[0]['options']);
 
 
 
 
 
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
- "Project-Id-Version: WP All Import\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-10-13 09:37+0200\n"
6
- "PO-Revision-Date: 2016-01-28 13:14+0100\n"
7
- "Last-Translator: admin <makstsiplyskov@gmail.loc>\n"
8
- "Language-Team: \n"
9
- "Language: de\n"
10
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Poedit 1.8.5\n"
16
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;"
17
- "_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;"
18
- "_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;esc_html__:1;"
19
- "esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;comments_number_link:2,3;"
20
- "t:1;st:1;trans:1;transChoice:1,2\n"
21
- "X-Poedit-Basepath: .\n"
22
- "X-Loco-Target-Locale: de_DE\n"
23
- "X-Poedit-SearchPath-0: .\n"
24
-
25
- #. Name of the plugin
26
- msgid "WP All Import Pro"
27
- msgstr "WP All Import"
28
-
29
- #. URI of the plugin
30
- msgid "http://www.wpallimport.com"
31
- msgstr "http://www.wpallimport.com"
32
-
33
- #. Description of the plugin
34
- msgid ""
35
- "The most powerful solution for importing XML and CSV files to WordPress. Import to "
36
- "Posts, Pages, and Custom Post Types. Support for imports that run on a schedule, "
37
- "ability to update existing imports, and much more."
38
- msgstr ""
39
- "Die leistungsstärkste Lösung für den Import von XML und CSV-Dateien in Wordpress. "
40
- "Importiert zu Beiträgen, Seiten, und benutzerdefinierten Beitragstypen. "
41
- "Unterstützung für Importe nach einem Zeitplan, die Fähigkeit, bestehende Importe zu "
42
- "aktualisieren und vieles mehr."
43
-
44
- #. Author of the plugin
45
- msgid "Soflyy"
46
- msgstr "Soflyy"
47
-
48
- #: ../../actions/wp_ajax_delete_import.php:36 ../../controllers/admin/manage.php: 594
49
- msgid "All associated posts deleted."
50
- msgstr "Alle damit verbundenen Beiträge gelöscht."
51
-
52
- #: ../../actions/wp_ajax_delete_import.php:40 ../../controllers/admin/manage.php: 598
53
- msgid "Import and all associated posts deleted."
54
- msgstr "Import und alle zugehörigen Einträge gelöscht."
55
-
56
- #: ../../actions/wp_ajax_delete_import.php:44 ../../controllers/admin/manage.php: 579
57
- msgid "Nothing to delete."
58
- msgstr "Nichts zu löschen."
59
-
60
- #: ../../actions/wp_ajax_delete_import.php:66
61
- #, php-format
62
- msgid "Import #%d - %d records deleted"
63
- msgstr "Import #% d -% d Datensätze gelöscht"
64
-
65
- #: ../../actions/wp_ajax_save_import_functions.php:43
66
- msgid "PHP code must be wrapped in \"&lt;?php\" and \"?&gt;\""
67
- msgstr "PHP code muss von \"&lt;?php\" und \"?&gt;\" umschlossen sein."
68
-
69
- #: ../../actions/wp_ajax_save_import_functions.php:52
70
- msgid "File has been successfully updated."
71
- msgstr "Die Datei wurde erfolgreich aktualisiert."
72
-
73
- #: ../../actions/wp_ajax_test_images.php:95
74
- #, php-format
75
- msgid "Image `%s` not found in media library."
76
- msgstr "Das Bild `%s` wurde in der Medienbibliothek nicht gefunden."
77
-
78
- #: ../../actions/wp_ajax_test_images.php:102
79
- #, php-format
80
- msgid "%d image was successfully founded in media gallery"
81
- msgstr "%d wurde erfolgreich in zur Galerie hinzu gefügt"
82
-
83
- #: ../../actions/wp_ajax_test_images.php:106
84
- #, php-format
85
- msgid "%d images were successfully founded in media gallery"
86
- msgstr "%d Bilder wurden erfolgreich zur Galerie hinzu gefügt"
87
-
88
- #: ../../actions/wp_ajax_upload_resource.php:116
89
- msgid "Please verify that the URL returns a valid import file."
90
- msgstr "Bitte überprüfen Sie dass die URL auf eine gültige Import Datei zeigt."
91
-
92
- #: ../../actions/wp_loaded.php:253
93
- #, php-format
94
- msgid "Import #%s canceled"
95
- msgstr "Import #%s abgebrochen "
96
-
97
- #: ../../classes/render.php:68 ../../classes/render.php:88 ../../classes/render.
98
- #: php:166 ../../classes/render.php:186 ../../views/admin/import/evaluate.php:5 ..
99
- #: /../views/admin/import/evaluate_variations.php:3
100
- msgid "element"
101
- msgid_plural "elements"
102
- msgstr[0] "Element"
103
- msgstr[1] "Elemente"
104
-
105
- #: ../../controllers/admin/history.php:139
106
- msgid "history"
107
- msgid_plural "histories"
108
- msgstr[0] "Chronik"
109
- msgstr[1] "Chroniken"
110
-
111
- #: ../../controllers/admin/import.php:1829
112
- msgid "Post ID must be specified."
113
- msgstr "Beitrags-ID muss angegeben werden "
114
-
115
- #: ../../controllers/admin/manage.php:243
116
- msgid ""
117
- "The other two files in this zip are the export file containing all of your data and "
118
- "the import template for WP All Import. \n"
119
- "\n"
120
- "To import this data, create a new import with WP All Import and upload this zip file."
121
- msgstr ""
122
- "Die anderen beiden Datein in diesem Zip-Archiv sind eine Export Datei, welche alle "
123
- "Daten enthält sowie eine Import Vorlage für WP All Import.\n"
124
- "\n"
125
- "Um diese Daten zu importieren, legen Sie mit WP All Import einen neuen Import an und "
126
- "laden Sie diese Zip-Datei hoch."
127
-
128
- #: ../../controllers/admin/manage.php:634 ../../views/admin/manage/bulk.php:10
129
- msgid "import"
130
- msgid_plural "imports"
131
- msgstr[0] "Import"
132
- msgstr[1] "Importe"
133
-
134
- #: ../../controllers/admin/settings.php:127
135
- #, php-format
136
- msgid "%d template imported"
137
- msgid_plural "%d templates imported"
138
- msgstr[0] "%d Vorlage importiert"
139
- msgstr[1] "%d Vorlagen importiert"
140
-
141
- #: ../../controllers/admin/settings.php:151
142
- #, php-format
143
- msgid "%d template deleted"
144
- msgid_plural "%d templates deleted"
145
- msgstr[0] "%d Vorlage gelöscht"
146
- msgstr[1] "%d Vorlagen gelöscht"
147
-
148
- #: ../../controllers/admin/settings.php:652
149
- #, php-format
150
- msgid "This %s file has errors and is not valid."
151
- msgstr "Diese %s Datei hat Fehler und ist nicht gültig."
152
-
153
- #: ../../helpers/wp_all_import_addon_notifications.php:124
154
- msgid "WP All Export"
155
- msgstr "WP All Export"
156
-
157
- #: ../../helpers/wp_all_import_addon_notifications.php:125
158
- msgid "Export anything in WordPress to CSV, XML, or Excel."
159
- msgstr "Exportieren Sie alles aus WordPress in CSV, XML oder Excel."
160
-
161
- #: ../../helpers/wp_all_import_addon_notifications.php:128 ../..
162
- #: /views/admin/import/confirm.php:47 ../../views/admin/import/index.php:254
163
- #: /views/admin/import/index.php:271 ../../views/admin/import/process.php:69
164
- #: /views/admin/import/process.php:103 /views/admin/import/options/_import_file.php:40
165
- #: /views/admin/import/options/_import_file.php:57
166
- msgid "Read More"
167
- msgstr "Weiterlesen"
168
-
169
- #: ../../models/import/record.php:662
170
- msgid "Composing post IDs..."
171
- msgstr "Beitrags-IDs zusammen stellen"
172
-
173
- #: ../../models/import/record.php:1656
174
- #, php-format
175
- msgid "Preserve comment status of already existing article for `%s`"
176
- msgstr "Kommentar Status für bereits existierende Artikel beibehalten für `%s`"
177
-
178
- #: ../../models/import/record.php:1812
179
- #, php-format
180
- msgid "<b>SKIPPED</b>: By filter wp_all_import_is_post_to_create `%s`"
181
- msgstr "<b>ÜBERSPRUNGEN</b>: Durch den Filter wp_all_import_is_post_to_create `%s`"
182
-
183
- #: ../../models/import/record.php:2280
184
- #, php-format
185
- msgid "- <b>WARNING</b>: Image %s not found in media gallery."
186
- msgstr "- <b>WARNUNG</b>: Bild %s wurde in der Mediengalerie nicht gefunden."
187
-
188
- #: ../../models/import/record.php:2284
189
- #, php-format
190
- msgid "- Using existing image `%s` for post `%s` ..."
191
- msgstr "- Verwende das existierende Bild `%s` für den Beitrag `%s` ..."
192
-
193
- #: ../../models/import/record.php:2473
194
- #, php-format
195
- msgid "- Attachment has been successfully updated for image `%s`"
196
- msgstr "- Der Anhang für das Bild `%s` wurde erfolgreich aktualisiert."
197
-
198
- #: ../../models/import/record.php:2537
199
- #, php-format
200
- msgid ""
201
- "Images import skipped for post `%s` according to 'pmxi_is_images_to_update' filter..."
202
- msgstr ""
203
- "Der Bildimport für den Beitrag `%s` wurde gemäss dem Filter "
204
- "'pmxi_is_images_to_update' übersprungen…"
205
-
206
- #: ../../models/import/record.php:2647
207
- #, php-format
208
- msgid ""
209
- "Attachments import skipped for post `%s` according to "
210
- "'pmxi_is_attachments_to_update' filter..."
211
- msgstr ""
212
- "Der Anhangsimport für den Beitrag `%s` wurde gemäss dem Filter "
213
- "'pmxi_is_attachments_to_update' übersprungen…"
214
-
215
- #: ../../models/import/record.php:3030
216
- #, php-format
217
- msgid "%d Posts deleted from database"
218
- msgstr "%d Beiträge aus der Datenbank gelöscht"
219
-
220
- #: ../../views/admin/import/confirm.php:43 ../../views/admin/import/index.php:260
221
- #: ../../views/admin/import/options/_import_file.php:46
222
- msgid "There's a problem with your import file"
223
- msgstr "Es gibt ein Problem mit Ihrer Import Datei"
224
-
225
- #: ../../views/admin/import/confirm.php:44
226
- msgid "It has changed and is not compatible with this import template."
227
- msgstr "Diese hat sich verändert und ist mit dieser Import-Vorlage nicht kompatibel."
228
-
229
- #: ../../views/admin/import/evaluate.php:3
230
- msgid "row"
231
- msgid_plural "rows"
232
- msgstr[0] "Zeile"
233
- msgstr[1] "Zeilen"
234
-
235
- #: ../../views/admin/import/index.php:250 ../..
236
- #: /views/admin/import/options/_import_file.php:36
237
- msgid "File upload rejected by server"
238
- msgstr "Datei-Upload wurde vom Server zurückgewiesen"
239
-
240
- #: ../../views/admin/import/index.php:251 ../..
241
- #: /views/admin/import/options/_import_file.php:37
242
- msgid "Contact your host and have them check your server's error log."
243
- msgstr ""
244
- "Nehmen Sie Kontakt mit Ihrem Hoster auf und lassen Sie diese die Fehlerlogs des "
245
- "Servers prüfen."
246
-
247
- #: ../../views/admin/import/index.php:265 ../..
248
- #: /views/admin/import/options/_import_file.php:51
249
- #, php-format
250
- msgid "Please verify that the file you using is a valid %s file."
251
- msgstr "Bitte stellen Sie sicher, dass die verwendete Datei %s gültig ist."
252
-
253
- #: ../../views/admin/import/preview_images.php:17
254
- msgid "Test Images"
255
- msgstr "Bilder testen."
256
-
257
- #: ../../views/admin/import/preview_images.php:24
258
- msgid "Click to test that your images are able to be accessed by WP All Import."
259
- msgstr ""
260
- "Hier klicken um zu überprüfen, dass WP All Import auf Ihre Bilder zugreifen kann."
261
-
262
- #: ../../views/admin/import/preview_images.php:26
263
- msgid "Run Test"
264
- msgstr "Test starten"
265
-
266
- #: ../../views/admin/import/preview_images.php:92
267
- msgid "Searching images..."
268
- msgstr "Bilder werden gesucht…"
269
-
270
- #: ../../views/admin/import/preview_images.php:96
271
- msgid "WP All Import will import images from the media library"
272
- msgstr "WP All Import wird Bilder aus der Medienbibliothek importieren."
273
-
274
- #: ../../views/admin/import/preview_images.php:97
275
- msgid "Please ensure the images exists at media library"
276
- msgstr "Bitte stellen Sie sicher, dass die Bilder in der Medienbibliothek existieren."
277
-
278
- #: ../../views/admin/import/process.php:61
279
- msgid "Hide this notice."
280
- msgstr "Diesen Hinweis verstecken."
281
-
282
- #: ../../views/admin/import/process.php:65
283
- msgid "Want to speed up your import?"
284
- msgstr "Wollen Sie Ihren Import beschleunigen?"
285
-
286
- #: ../../views/admin/import/process.php:66
287
- msgid "Check out our guide on increasing import speed."
288
- msgstr ""
289
- "Lesen Sie unsere Anleitung, wie Sie die Import Geschwindigkeit steigern können."
290
-
291
- #: ../../views/admin/import/process.php:70
292
- msgid "opens in new tab"
293
- msgstr "wird in einem neuen Tab geöffnet."
294
-
295
- #: ../../views/admin/import/process.php:78 ../../views/admin/import/process.php:99
296
- msgid "Your server terminated the import process"
297
- msgstr "Ihr Server hat den Import Prozess beendet."
298
-
299
- #: ../../views/admin/import/process.php:79
300
- #, php-format
301
- msgid ""
302
- "<a href='%s' target='_blank'>Read more</a> about how to prevent this from happening "
303
- "again."
304
- msgstr ""
305
- "<a href='%s' target='_blank'>Hier lesen</a> wie dies in Zukunft verhindert werden "
306
- "kann."
307
-
308
- #: ../../views/admin/import/process.php:83
309
- #, php-format
310
- msgid ""
311
- "with <span id='wpallimport-new-records-per-iteration'>%s</span> records per iteration"
312
- msgstr ""
313
- "mit <span id='wpallimport-new-records-per-iteration'>%s</span> Einträgen pro "
314
- "Durchgang"
315
-
316
- #: ../../views/admin/import/process.php:100
317
- msgid ""
318
- "Ask your host to check your server's error log. They will be able to determine why "
319
- "your server is terminating the import process."
320
- msgstr ""
321
- "Bitten Sie Ihren Hoster die Server Fehlerlogs zu prüfen. Diese werden schliessen "
322
- "können, warum Ihr Server den Import Prozess abgebrochen hat."
323
-
324
- #: ../../views/admin/import/template.php:146 ../../views/admin/settings/index.php: 194
325
- msgid "Function Editor"
326
- msgstr "Funktions-Editor"
327
-
328
- #: ../../views/admin/import/template.php:156 ../../views/admin/settings/index.php: 202
329
- msgid "Save Functions"
330
- msgstr "Funktionen speichern"
331
-
332
- #: ../../views/admin/import/template.php:157 ../../views/admin/settings/index.php: 203
333
- #, php-format
334
- msgid "Add functions here for use during your import. You can access this file at %s"
335
- msgstr ""
336
- "Fügen Sie hier Funktionen hinzu, welche während Ihrem Import verwendet werden. Sie "
337
- "können diese Datei hier finden: %s"
338
-
339
- #: ../../views/admin/import/options/_reimport_options.php:4
340
- msgid "If this import is run again and WP All Import finds new or changed data..."
341
- msgstr ""
342
- "Wenn dieser Import erneut durchgeführt wird und WP All Imports neue oder veränderte "
343
- "Daten findet…"
344
-
345
- #: ../../views/admin/import/options/_reimport_options.php:20
346
- msgid ""
347
- "Records removed from the import file can only be deleted when importing into New "
348
- "Items. This feature cannot be enabled when importing into Existing Items."
349
- msgstr ""
350
- "Einträge, welche aus der Import Datei entfernt wurden können nur gelsöcht werden, "
351
- "wenn in Neue Einträge importiert wird. Dies Feature kann nicht aktiviert werden, "
352
- "wenn in existierende Einträge importiert wird."
353
-
354
- #: ../../views/admin/import/options/_reimport_options.php:59
355
- msgid ""
356
- "These options will only be used if you run this import again later. All data is "
357
- "imported the first time you run an import."
358
- msgstr ""
359
- "Diese Optionen werden verwendet, wenn Sie diesen Import später wieder ausführen. "
360
- "Alle Daten werden mit Ihrem ersten Import importiert."
361
-
362
- #: ../../views/admin/import/options/_reimport_options.php:117
363
- msgid "Comment status"
364
- msgstr "Kommentar Status"
365
-
366
- #: ../../views/admin/import/options/_reimport_template.php:113
367
- msgid "Post ID"
368
- msgstr "Beitrags-ID"
369
-
370
- #: ../../views/admin/import/options/_settings_template.php:94
371
- msgid "Downloads"
372
- msgstr "Downloads"
373
-
374
- #: ../../views/admin/import/options/_settings_template.php:97
375
- msgid "Import Template"
376
- msgstr "Vorlage importieren"
377
-
378
- #: ../../views/admin/import/options/_settings_template.php:98
379
- msgid "Import Bundle"
380
- msgstr "Bundle importieren"
381
-
382
- #: ../../views/admin/import/template/_featured_template.php:15
383
- msgid "Download images hosted elsewhere"
384
- msgstr "Bilder von einem anderen Server laden"
385
-
386
- #: ../../views/admin/import/template/_featured_template.php:25
387
- msgid "Use images currently in Media Library"
388
- msgstr "Benutze Bilder, welche zur Zeit in der Medienbibliothek sind"
389
-
390
- #: ../../views/admin/import/template/_featured_template.php:36
391
- #, php-format
392
- msgid "Use images currently uploaded in %s"
393
- msgstr "Benutze Bilder, welche in das Verzeichnis %s geladen wurden."
394
-
395
- #: ../../views/admin/import/template/_featured_template.php:44
396
- msgid "Image Options"
397
- msgstr "Bild Optionen"
398
-
399
- #: ../../views/admin/import/template/_featured_template.php:55
400
- msgid "Keep images currently in Media Library"
401
- msgstr "Bilder, welche zur Zeit in der Medienbibliothek sind, behalten."
402
-
403
- #: ../../views/admin/import/template/_featured_template.php:56
404
- msgid ""
405
- "If disabled, images attached to imported posts will be deleted and then all images "
406
- "will be imported."
407
- msgstr ""
408
- "Ist dies deaktiviert, werden alle Bilder, welche zu importierten Beiträgen gehören "
409
- "gelöscht und neu importiert."
410
-
411
- #: ../../views/admin/import/template/_featured_template.php:132
412
- msgid "Separate them with a"
413
- msgstr "Trennen Sie diese mit einem"
414
-
415
- #: ../../views/admin/import/template/_featured_template.php:137
416
- msgid "Enter them one per line"
417
- msgstr "Tragen Sie einen pro Zeile ein"
418
-
419
- #: ../../views/admin/import/template/_featured_template.php:145
420
- msgid ""
421
- "These options only available if Download images hosted elsewhere is selected above."
422
- msgstr ""
423
- "Diese Optionen sind nur verfügbar, wenn oben Bilder von einem anderen Server laden "
424
- "aktiviert wurde."
425
-
426
- #: ../../views/admin/import/template/_other_template.php:274
427
- msgid "Dynamic Post Type"
428
- msgstr "Dynamischer Post Typ"
429
-
430
- #: ../../views/admin/import/template/_other_template.php:284
431
- msgid ""
432
- "If records in this import have different post types specify the slug of the desired "
433
- "post type here.\n"
434
- msgstr ""
435
- "Falls die Einträge in diesem Import verschiedene Post Typen haben, geben Sie hier "
436
- "die Slug des gewünschten Post Typen an.\n"
437
-
438
- #: ../../views/admin/import/template/_taxonomies_template.php:215
439
- msgid "Add Another Row"
440
- msgstr "Eine weitere Zeile hinzufügen"
441
-
442
- #: ../../views/admin/import/template/_taxonomies_template.php:296 ../..
443
- #: /views/admin/import/template/_taxonomies_template.php:296
444
- msgid "Add Another Rule"
445
- msgstr "Eine weitere Regel hinzufügen"
446
-
447
- #: ../../views/admin/manage/bulk.php:1
448
- msgid "Bulk Delete Imports"
449
- msgstr "Alle Importe löschen (Massen Aktion)"
450
-
451
- #: ../../views/admin/manage/delete.php:8
452
- msgid "Delete import"
453
- msgstr "Import löschen"
454
-
455
- #: ../../views/admin/manage/delete.php:13
456
- #, php-format
457
- msgid "Delete posts created by %s"
458
- msgstr "Beiträge von %s löschen"
459
-
460
- #: ../../views/admin/manage/delete.php:46
461
- msgid "Are you sure you want to delete "
462
- msgstr "Sind Sie sicher, dass Sie "
463
-
464
- #: ../../views/admin/manage/delete.php:46
465
- #, php-format
466
- msgid "the <strong>%s</strong> import"
467
- msgstr "den <strong>%s</strong> löschen wollen"
468
-
469
- #: ../../wp-all-import-pro.php:20
470
- msgid ""
471
- "Please de-activate and remove the free version of WP All Import before activating "
472
- "the paid version."
473
- msgstr ""
474
- "Bitte deaktivieren und entfernen Sie die freie Version von WP All Import bevor Sie "
475
- "die bezahlte Version aktivieren."
476
-
477
- #: ../../wp-all-import-pro.php:335
478
- #, php-format
479
- msgid ""
480
- "To enable updates, please enter your license key on the <a href=\"%s\">Licenses</a> "
481
- "page. If you don't have a licence key, please see <a href=\"%s\">details & pricing</"
482
- "a>"
483
- msgstr ""
484
- "Um Updates zu aktivieren, geben Sie bitte Ihren Lizenz Schlüssel auf der <a href=\"%s"
485
- "\">Lizenzen</a> Seite ein. Wenn Sie noch keinen Lizenz Schlüssel haben, finden Sie "
486
- "hier <a href=\"%s\">Details und Preise</a>"
487
-
488
- #: ../../wp-all-import-pro.php:825 ../../wp-all-import-pro.php:829
489
- #, php-format
490
- msgid "Uploads folder %s must be writable"
491
- msgstr "Ordner %s muss beschreibbar sein"
492
-
493
- #: ../../wp-all-import-pro.php:939
494
- #, php-format
495
- msgid "<b>%s Plugin</b>: Current sql user %s doesn't have ALTER privileges"
496
- msgstr "<b>%s Plugin:</b> Aktuelle SQL-Benutzer%s verfügen nicht über Änderungsrechte"
497
-
498
- #: ../../actions/admin_menu.php:12
499
- msgid "New Import"
500
- msgstr "Neuer Import"
501
-
502
- #: ../../actions/admin_menu.php:13 ../../views/admin/import/process.php:54 ../..
503
- #: /views/admin/manage/index.php:5
504
- msgid "Manage Imports"
505
- msgstr "Imports verwalten"
506
-
507
- #: ../../actions/admin_menu.php:14 ../../views/admin/settings/index.php:7
508
- msgid "Settings"
509
- msgstr "Einstellungen"
510
-
511
- #: ../../actions/admin_menu.php:16
512
- msgid "History"
513
- msgstr "Chronik"
514
-
515
- #: ../../actions/admin_menu.php:22 ../../controllers/admin/license.php:18 ../..
516
- #: /controllers/admin/settings.php:50 ../../views/admin/import/confirm.php:11 ../.
517
- #: views/admin/import/element.php:8 ../../views/admin/import/index.php:43
518
- #: /views/admin/import/options.php:18 ../../views/admin/import/process.php:8
519
- #: /views/admin/import/template.php:9 ../../views/admin/manage/index.php:4
520
- #: /views/admin/settings/index.php:6
521
- msgid "WP All Import"
522
- msgstr "WP All Import"
523
-
524
- #: ../../actions/admin_menu.php:22
525
- msgid "All Import"
526
- msgstr "All Import"
527
-
528
- #: ../../actions/admin_notices.php:12
529
- #, php-format
530
- msgid ""
531
- "<b>%s Plugin</b>: Please update your WP All Import WooCommerce add-on to the latest "
532
- "version"
533
- msgstr ""
534
- "<b>%s Plugin</b>: Bitte aktualisieren Sie das WP All Import WooCommerce add-on."
535
-
536
- #: ../../actions/admin_notices.php:39
537
- #, php-format
538
- msgid ""
539
- "<b>%s Plugin</b>: Please update your WP All Import ACF add-on to the latest version"
540
- msgstr "<b>%s Plugin</b>: Bitte aktualisieren Sie das WP All Import ACF add-on."
541
-
542
- #: ../../actions/admin_notices.php:56
543
- #, php-format
544
- msgid ""
545
- "<b>%s Plugin</b>: Please update your WP All Import Linkcloak add-on to the latest "
546
- "version"
547
- msgstr "<b>%s Plugin</b>: Bitte aktualisieren Sie das WP All Import Linkcloak add-on."
548
-
549
- #: ../../actions/admin_notices.php:73
550
- #, php-format
551
- msgid ""
552
- "<b>%s Plugin</b>: Please update your WP All Import User add-on to the latest version"
553
- msgstr "<b>%s Plugin</b>: Bitte aktualisieren Sie das WP All Import User add-on."
554
-
555
- #: ../../actions/admin_notices.php:90
556
- #, php-format
557
- msgid ""
558
- "<b>%s Plugin</b>: The WPML Add-On Plugin is no longer compatible with this version "
559
- "of WP All Import - please contact support@wpallimport.com and we will supply the "
560
- "latest version of WP All Import that is compatible with the WPML Add-On."
561
- msgstr ""
562
- "<b>%s Plugin</b>: Das WPML add-on Plugin ist leider nicht mehr kompatibel mit dieser "
563
- "Version von WP All Import. Bitte kontaktieren Sie den Support unter "
564
- "support@wpallimport.com und wir werden Ihnen die neueste Version von WP All Import "
565
- "anbieten die mit dem WPML add-on kompatibel ist."
566
-
567
- #: ../../actions/admin_notices.php:119 ../../controllers/admin/import.php:1498 ..
568
- #: /../controllers/admin/import.php:1720 ../../controllers/admin/import.php:2223
569
- msgid "<strong>Warning:</strong> your title is blank."
570
- msgstr "<strong>Warnung:</strong>Ihr Titel ist leer."
571
-
572
- #: ../../actions/admin_notices.php:122 ../../controllers/admin/import.php:1505 ..
573
- #: /../controllers/admin/import.php:1722 ../../controllers/admin/import.php:2225
574
- msgid "<strong>Warning:</strong> your content is blank."
575
- msgstr "<strong>Warnung:</strong> Ihr Inhalt ist leer."
576
-
577
- #: ../../actions/wp_ajax_auto_detect_cf.php:5 ../..
578
- #: /actions/wp_ajax_auto_detect_cf.php:9 ../../actions/wp_ajax_auto_detect_sf.php: 5
579
- #: ../../actions/wp_ajax_auto_detect_sf.php:9 /actions/wp_ajax_delete_import.php:5
580
- #: ../../actions/wp_ajax_delete_import.php:9
581
- #: ../../actions/wp_ajax_dismiss_notifications.php:5
582
- #: /actions/wp_ajax_dismiss_notifications.php:9 /actions/wp_ajax_import_failed.php:5
583
- #: ../../actions/wp_ajax_import_failed.php:9 ../../actions/wp_ajax_nested_merge.php:6
584
- #: ../../actions/wp_ajax_nested_merge. php:10 ../../actions/wp_ajax_nested_xpath.php:6
585
- #: /actions/wp_ajax_nested_xpath.php:10 ../../actions/wp_ajax_parse_nested_file.
586
- #: ../../actions/wp_ajax_parse_nested_file.php:14
587
- #: /actions/wp_ajax_save_import_functions.php:6
588
- #: /actions/wp_ajax_save_import_functions.php:10 /actions/wp_ajax_test_images.php:6
589
- #: ../../actions/wp_ajax_test_images.php:10 .. /../actions/wp_ajax_unmerge_file.php:5
590
- #: ../../actions/wp_ajax_unmerge_file.php: 9
591
- #: ../../actions/wp_ajax_upload_resource.php:6 /actions/wp_ajax_upload_resource.php:10
592
- #: ../../controllers/admin/history.php:74 ../../controllers/admin/import.php:563
593
- #: ../../controllers/admin/import.php:868 . ../controllers/admin/import.php:1006
594
- #: ../../controllers/admin/import.php:1145 ../../controllers/admin/import.php:1300
595
- #: ../../controllers/admin/import.php: 2462 ../../controllers/admin/manage.php:126
596
- #: ../../controllers/admin/manage.php: 169 ../../controllers/admin/manage.php:279 527
597
- #: ../../controllers/admin/settings.php:420
598
- msgid "Security check"
599
- msgstr "Sicherheitskontrolle"
600
-
601
- #: ../../actions/wp_ajax_auto_detect_cf.php:59
602
- #, php-format
603
- msgid "No Custom Fields are present in your database for %s"
604
- msgstr "Keine selbst erstellten Felder in der Datenbank %s"
605
-
606
- #: ../../actions/wp_ajax_auto_detect_cf.php:62
607
- #, php-format
608
- msgid "%s field was automatically detected."
609
- msgstr "%s Feld wurde automatisch erkannt."
610
-
611
- #: ../../actions/wp_ajax_auto_detect_cf.php:64
612
- #, php-format
613
- msgid "%s fields were automatically detected."
614
- msgstr "%s Felder wurden automatisch erkannt."
615
-
616
- #: ../../actions/wp_ajax_delete_import.php:32 ../../controllers/admin/manage.php: 590
617
- msgid "Import deleted"
618
- msgstr "Import gelöscht"
619
-
620
- #: ../../actions/wp_ajax_nested_xpath.php:51
621
- msgid "XPath is required"
622
- msgstr "XPath wird benötigt"
623
-
624
- #: ../../actions/wp_ajax_nested_xpath.php:65 ../..
625
- #: /actions/wp_ajax_parse_nested_file.php:159
626
- msgid "Elements found"
627
- msgstr "Elemente gefunden"
628
-
629
- #: ../../actions/wp_ajax_nested_xpath.php:65 ../..
630
- #: /actions/wp_ajax_parse_nested_file.php:159
631
- msgid "Elements not found"
632
- msgstr "Elemente nicht gefunden"
633
-
634
- #: ../../actions/wp_ajax_test_images.php:32
635
- #, php-format
636
- msgid "Uploads folder `%s` is not writable."
637
- msgstr "Upload Ordner %s muss beschreibbar sein"
638
-
639
- #: ../../actions/wp_ajax_test_images.php:46
640
- #, php-format
641
- msgid "Use image name instead of URL `%s`."
642
- msgstr "Benutzen Sie ein Bild anstatt einer URL '%s'"
643
-
644
- #: ../../actions/wp_ajax_test_images.php:53
645
- #, php-format
646
- msgid "File `%s` isn't readable"
647
- msgstr "Datei `%s` nicht lesbar"
648
-
649
- #: ../../actions/wp_ajax_test_images.php:57
650
- #, php-format
651
- msgid "File `%s` doesn't exist"
652
- msgstr "Datei `%s` existiert nicht"
653
-
654
- #: ../../actions/wp_ajax_test_images.php:63
655
- #, php-format
656
- msgid "%d image was successfully retrieved from `%s`"
657
- msgstr "%d Bild wurde erfolgreich erneuert von `%s`"
658
-
659
- #: ../../actions/wp_ajax_test_images.php:67
660
- #, php-format
661
- msgid "%d images were successfully retrieved from `%s`"
662
- msgstr "%d Bilder wurden erfolgreich erneuert von `%s`"
663
-
664
- #: ../../actions/wp_ajax_test_images.php:120
665
- #, php-format
666
- msgid "URL `%s` is not valid."
667
- msgstr "URL `%s` ist ungültig."
668
-
669
- #: ../../actions/wp_ajax_test_images.php:132
670
- #, php-format
671
- msgid "File `%s` cannot be saved locally"
672
- msgstr "Datei `%s` kann nicht lokal gespeichert werden"
673
-
674
- #: ../../actions/wp_ajax_test_images.php:134
675
- #, php-format
676
- msgid "File `%s` is not a valid image."
677
- msgstr "Datei `%s` ist kein zulässiges Bild"
678
-
679
- #: ../../actions/wp_ajax_test_images.php:145
680
- #, php-format
681
- msgid "%d image was successfully downloaded in %s seconds"
682
- msgstr "%d Bild wurde erfolgreich heruntergeladen in %s sekunden"
683
-
684
- #: ../../actions/wp_ajax_test_images.php:149
685
- #, php-format
686
- msgid "%d images were successfully downloaded in %s seconds"
687
- msgstr "%d Bilder wurden erfolgreich heruntergeladen in %s Sekunden"
688
-
689
- #: ../../actions/wp_loaded.php:53
690
- #, php-format
691
- msgid "Other imports are currently in process [%s]."
692
- msgstr "Zur Zeit sind andere Imports in Bearbeitung [%s]"
693
-
694
- #: ../../actions/wp_loaded.php:63
695
- #, php-format
696
- msgid "Scheduling update is not working with \"upload\" import type. Import #%s."
697
- msgstr "Planung von updates funktioniert nicht mit \"upload\" Importtyp. Import #%s."
698
-
699
- #: ../../actions/wp_loaded.php:76 ../../actions/wp_loaded.php:148
700
- #, php-format
701
- msgid "Import #%s is currently in manually process. Request skipped."
702
- msgstr "Import #%s ist zur Zeit im manuellen Prozess. Anfrage übersprungen."
703
-
704
- #: ../../actions/wp_loaded.php:99 ../../views/admin/history/index.php:170
705
- msgid "triggered by cron"
706
- msgstr "Ausgelöst von cron"
707
-
708
- #: ../../actions/wp_loaded.php:105
709
- #, php-format
710
- msgid "#%s Cron job triggered."
711
- msgstr "#%s Cron Job ausgelöst"
712
-
713
- #: ../../actions/wp_loaded.php:112
714
- #, php-format
715
- msgid "Import #%s currently in process. Request skipped."
716
- msgstr "Import #%s ist zur Zeit in Prozess. Anfrage übersprungen."
717
-
718
- #: ../../actions/wp_loaded.php:121
719
- #, php-format
720
- msgid "Import #%s already triggered. Request skipped."
721
- msgstr "Import #%s bereits ausgelöst. Anfrage übersprungen."
722
-
723
- #: ../../actions/wp_loaded.php:141
724
- #, php-format
725
- msgid "Import #%s is not triggered. Request skipped."
726
- msgstr "Import #%s nicht ausgelöst. Anfrage übersprungen."
727
-
728
- #: ../../actions/wp_loaded.php:177 ../../views/admin/history/index.php:167
729
- msgid "cron processing"
730
- msgstr "cron Bearbeitung"
731
-
732
- #: ../../actions/wp_loaded.php:208 ../../models/import/record.php:515
733
- #, php-format
734
- msgid "Import #%s complete"
735
- msgstr "Import #%s Fertiggestellt."
736
-
737
- #: ../../actions/wp_loaded.php:217 ../../models/import/record.php:539
738
- #, php-format
739
- msgid "Records Processed %s. Records Count %s."
740
- msgstr "Datensätze bearbeitet %s. Datensätze gezählt %s."
741
-
742
- #: ../../actions/wp_loaded.php:229
743
- #, php-format
744
- msgid "Import #%s already processing. Request skipped."
745
- msgstr "Import #%s bereits in Bearbeitung. Anfrage übersprungen."
746
-
747
- #: ../../classes/api.php:113 ../../views/admin/import/template/_other_template. php:28
748
- #: ../../views/admin/import/template/_other_template.php:77 ../..
749
- #: /views/admin/import/template/_other_template.php:100
750
- #: /views/admin/import/template/_other_template.php:167
751
- #: /views/admin/import/template/_other_template.php:197
752
- #: /views/admin/import/template/_other_template.php:225
753
- #: /views/admin/import/template/_other_template.php:251
754
- msgid "Set with XPath"
755
- msgstr "Gesetzt mit XPath"
756
-
757
- #: ../../classes/api.php:129 ../..
758
- #: /views/admin/import/template/_custom_fields_template.php:57
759
- #: /views/admin/import/template/_custom_fields_template.php:266
760
- #: /views/admin/import/template/_custom_fields_template.php:400
761
- msgid "Field Options..."
762
- msgstr "Feld Optionen..."
763
-
764
- #: ../../classes/api.php:132 ../..
765
- #: /views/admin/import/template/_custom_fields_template.php:63
766
- #: /views/admin/import/template/_custom_fields_template.php:272
767
- #: /views/admin/import/template/_custom_fields_template.php:406
768
- msgid "Mapping"
769
- msgstr "Zuordnung"
770
-
771
- #: ../../classes/api.php:141 ../..
772
- #: /views/admin/import/template/_custom_fields_template.php:170
773
- #: /views/admin/import/template/_custom_fields_template.php:338
774
- #: /views/admin/import/template/_custom_fields_template.php:472
775
- #: /views/admin/import/template/_taxonomies_template.php:233
776
- msgid "In Your File"
777
- msgstr "In Ihrer Datei"
778
-
779
- #: ../../classes/api.php:142 ../..
780
- #: /views/admin/import/template/_custom_fields_template.php:171
781
- #: /views/admin/import/template/_custom_fields_template.php:339
782
- #: /views/admin/import/template/_custom_fields_template.php:473
783
- #: /views/admin/import/template/_taxonomies_template.php:234
784
- msgid "Translated To"
785
- msgstr "Übersetzt zu"
786
-
787
- #: ../../classes/api.php:221 ../..
788
- #: /views/admin/import/template/_custom_fields_template.php:144
789
- #: /views/admin/import/template/_custom_fields_template.php:233
790
- #: /views/admin/import/template/_custom_fields_template.php:312
791
- #: /views/admin/import/template/_custom_fields_template.php:368
792
- #: /views/admin/import/template/_custom_fields_template.php:446
793
- #: /views/admin/import/template/_custom_fields_template.php:502
794
- msgid "Add Another"
795
- msgstr "Weitere Hinzufügen"
796
-
797
- #: ../../classes/api.php:227 ../..
798
- #: /views/admin/import/template/_custom_fields_template.php:239
799
- #: /views/admin/import/template/_custom_fields_template.php:374
800
- #: /views/admin/import/template/_custom_fields_template.php:508
801
- msgid "Save Rules"
802
- msgstr "Regel speichern"
803
-
804
- #: ../../classes/api.php:258
805
- msgid "Download image hosted elsewhere"
806
- msgstr "Bilder von Host herunterladen"
807
-
808
- #: ../../classes/api.php:259 ../../classes/api.php:279 ../..
809
- #: /views/admin/import/template/_featured_template.php:16
810
- #: /views/admin/import/template/_featured_template.php:26
811
- msgid "http:// or https://"
812
- msgstr "http:// oder https://"
813
-
814
- #: ../../classes/api.php:264
815
- #, php-format
816
- msgid "Use image(s) currently uploaded in %s"
817
- msgstr "Nutze Bild(er) die gerade hochgeladen werden in %s"
818
-
819
- #: ../../classes/api.php:278
820
- msgid "Download file hosted elsewhere"
821
- msgstr "Datei von Host herunterladen"
822
-
823
- #: ../../classes/api.php:284
824
- #, php-format
825
- msgid "Use file(s) currently uploaded in %s"
826
- msgstr "Nutze Datei(en die gerade hochgeladen werden in %s"
827
-
828
- #: ../../classes/api.php:397 ../../models/import/record.php:2302
829
- #, php-format
830
- msgid "- Searching for existing image `%s` in `%s` folder"
831
- msgstr "- Suche nach existierendem Bild `%s` im Verzeichnis `%s` "
832
-
833
- #: ../../classes/api.php:404 ../../classes/api.php:477 ../../models/import/record.
834
- #: php:2309 ../../models/import/record.php:2380 ../../models/import/record.php:2603
835
- #, php-format
836
- msgid "- <b>WARNING</b>: Can't detect attachment file type %s"
837
- msgstr "- <b>WARNUNG</b>: Kann den Dateityp nicht erkennen %s"
838
-
839
- #: ../../classes/api.php:410 ../../classes/api.php:482 ../../models/import/record.
840
- #: php:2315 ../../models/import/record.php:2386
841
- #, php-format
842
- msgid "- File `%s` has been successfully found"
843
- msgstr "- Datei `%s` wurde gefunden"
844
-
845
- #: ../../classes/api.php:416 ../../classes/api.php:468 ../../models/import/record.
846
- #: php:2225 ../../models/import/record.php:2321 ../../models/import/record.php:2370
847
- #, php-format
848
- msgid ""
849
- "- <b>WARNING</b>: File %s is not a valid image and cannot be set as featured one"
850
- msgstr ""
851
- "- <b>WARNUNG</b>: Datei %s ist kein zulässiges Bild und kann nicht als Featured-Bild "
852
- "gesetzt werden"
853
-
854
- #: ../../classes/api.php:419 ../../models/import/record.php:2326
855
- #, php-format
856
- msgid "- Image `%s` has been successfully found"
857
- msgstr "- Bild `%s` wurde gefunden"
858
-
859
- #: ../../classes/api.php:429 ../../models/import/record.php:2333
860
- #, php-format
861
- msgid "- Downloading image from `%s`"
862
- msgstr "- Bild wird Herunterladen von `%s`"
863
-
864
- #: ../../classes/api.php:432
865
- #, php-format
866
- msgid "- Downloading file from `%s`"
867
- msgstr "- Datei wird Herunterladen von `%s`"
868
-
869
- #: ../../classes/api.php:444 ../../classes/api.php:472 ../../models/import/record.
870
- #: php:2344 ../../models/import/record.php:2375
871
- #, php-format
872
- msgid "- Image `%s` has been successfully downloaded"
873
- msgstr "- Bild `%s` wurde erfolgreich heruntergeladen"
874
-
875
- #: ../../classes/api.php:450 ../../models/import/record.php:2350
876
- #, php-format
877
- msgid "- File `%s` has been successfully downloaded"
878
- msgstr "- Datei `%s` wurde erfolgreich heruntergeladen"
879
-
880
- #: ../../classes/api.php:462 ../../models/import/record.php:2363
881
- #, php-format
882
- msgid "- <b>WARNING</b>: File %s cannot be saved locally as %s"
883
- msgstr "- <b>WARNUNG</b>: Datei %s kann lokal nicht gespeichert werden als %s"
884
-
885
- #: ../../classes/api.php:496 ../../models/import/record.php:2405
886
- #, php-format
887
- msgid "- Creating an attachment for image `%s`"
888
- msgstr "- Erstelle einen Anhang für Bild `%s`"
889
-
890
- #: ../../classes/api.php:499
891
- #, php-format
892
- msgid "- Creating an attachment for file `%s`"
893
- msgstr "- Erstelle einen Anhang für Datei `%s`"
894
-
895
- #: ../../classes/api.php:518 ../../models/import/record.php:2427 ../..
896
- #: /models/import/record.php:2625
897
- msgid "- <b>WARNING</b>"
898
- msgstr "- <b>WARNUNG</b>"
899
-
900
- #: ../../classes/api.php:522 ../../models/import/record.php:2477
901
- #, php-format
902
- msgid "- Attachment has been successfully created for image `%s`"
903
- msgstr "- Anhang wurde erstellt für das Bild `%s`"
904
-
905
- #: ../../classes/render.php:68 ../../classes/render.php:88 ../../classes/render.
906
- #: php:166 ../../classes/render.php:186
907
- #, php-format
908
- msgid "<strong>%s</strong> %s more"
909
- msgstr "<strong>%s</strong> %s mehr"
910
-
911
- #: ../../classes/render.php:94 ../../classes/render.php:192
912
- msgid "more"
913
- msgstr "mehr"
914
-
915
- #: ../../classes/updater.php:240
916
- #, php-format
917
- msgid ""
918
- "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" "
919
- "href=\"%2$s\">View version %3$s details</a>."
920
- msgstr ""
921
- "Eine neue Version von %1$s ist verfügbar. <a target=\"_blank\" class=\"thickbox\" "
922
- "href=\"%2$s\">Details ansehen von %3$s</a>."
923
-
924
- #: ../../classes/updater.php:247
925
- #, php-format
926
- msgid ""
927
- "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" "
928
- "href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s\">update now</a>."
929
- msgstr ""
930
- "Eine neue Version von %1$s ist verfügbar. <a target=\"_blank\" class=\"thickbox\" "
931
- "href=\"%2$s\">Details ansehen von %3$s</a> oder <a href=\"%4$s\">jetzt "
932
- "aktualisieren</a>."
933
-
934
- #: ../../classes/updater.php:435
935
- msgid "You do not have permission to install plugin updates"
936
- msgstr "Sie haben keine Berechtigung um Plug-In Aktualisierungen durchzuführen."
937
-
938
- #: ../../classes/updater.php:435
939
- msgid "Error"
940
- msgstr "Fehler"
941
-
942
- #: ../../classes/upload.php:46
943
- msgid ""
944
- "Please specify a file to import.<br/><br/>If you are uploading the file from your "
945
- "computer, please wait for it to finish uploading (progress bar at 100%), before "
946
- "trying to continue."
947
- msgstr ""
948
- "Bitte wählen Sie eine Datei für den Import.<br/><br/>Wenn Sie eine Datei von Ihrem "
949
- "Computer hochladen, warten Sie bitte bis der Upload fertig ist (Fortschrittsbalken "
950
- "bei 100% ) bevor Sie auf weiter klicken."
951
-
952
- #: ../../classes/upload.php:48
953
- msgid "Uploaded file is empty"
954
- msgstr "Hochgeladene Datei ist leer."
955
-
956
- #: ../../classes/upload.php:50 ../../controllers/admin/settings.php:459
957
- msgid "Uploaded file must be XML, CSV, ZIP, GZIP, GZ, JSON, SQL, TXT, DAT or PSV"
958
- msgstr ""
959
- "Hochgeladene Datei muss XML, CSV, ZIP, GZIP, GZ, JSON, SQL, TXT, DAT oder PSV sein."
960
-
961
- #: ../../classes/upload.php:57 ../../classes/upload.php:114 ../../classes/upload.
962
- #: php:358 ../../classes/upload.php:399 ../../classes/upload.php:704 ../..
963
- #: /classes/upload.php:745
964
- msgid ""
965
- "WP All Import couldn't find a file to import inside your ZIP.<br/><br/>Either the ."
966
- "ZIP file is broken, or doesn't contain a file with an extension of XML, CSV, PSV, "
967
- "DAT, or TXT. <br/>Please attempt to unzip your .ZIP file on your computer to ensure "
968
- "it is a valid .ZIP file which can actually be unzipped, and that it contains a file "
969
- "which WP All Import can import."
970
- msgstr ""
971
- "WP All Import kann in Ihrem ZIP keine importierbare Datei finden.<br/><br/>Entweder "
972
- "ist die .ZIP beschädigt, oder sie enthält keinen Dateityp mit XML, CSV, PSV, DAT, or "
973
- "TXT. <br/>Bitte versuchen Sie das .ZIP auf Ihrem Computer zu entpacken um sicher zu "
974
- "gehen, dass es sich um ein gültiges .ZIP handelt. Und dass es eine von WP All Import "
975
- "importierbare Datei enthält."
976
-
977
- #: ../../classes/upload.php:94 ../../classes/upload.php:128 ../../classes/upload.
978
- #: php:185 ../../classes/upload.php:379 ../../classes/upload.php:691 ../..
979
- #: /classes/upload.php:725 ../../classes/upload.php:759 ../../classes/upload.php: 819
980
- #: ../../classes/upload.php:846 ../../classes/upload.php:885 /classes/upload.php:909
981
- #: ../../classes/upload.php:933
982
- msgid "WP All Import can't access your WordPress uploads folder."
983
- msgstr "WP All Import hat keinen Zugang zu Ihrem Wordpress Upload Verzeichnis."
984
-
985
- #: ../../classes/upload.php:151 ../../classes/upload.php:252 ../../classes/upload.
986
- #: php:436 ../../classes/upload.php:525 ../../classes/upload.php:627 ../..
987
- #: /classes/upload.php:783 ../../classes/upload.php:872
988
- msgid "Can not import this file. JSON to XML convertation failed."
989
- msgstr "Kann die Datei nicht importieren. JSON zu XML Umwandlung fehlgeschlagen."
990
-
991
- #: ../../classes/upload.php:327 ../../classes/upload.php:687
992
- msgid "Please specify a file to import."
993
- msgstr "Bitte wählen Sie eine Datei zum importieren"
994
-
995
- #: ../../classes/upload.php:329
996
- msgid ""
997
- "The URL to your file is not valid.<br/><br/>Please make sure the URL starts with "
998
- "http:// or https://. To import from https://, your server must have OpenSSL "
999
- "installed."
1000
- msgstr ""
1001
- "Die URL zu Ihrer Datei ist nicht korrekt. <br/><br/>Bitte stellen Sie sicher, dass "
1002
- "die URL mit http:// oder https:// beginnt. Um von https:// zu importieren, muss Ihr "
1003
- "Server OpenSSL installiert haben."
1004
-
1005
- #: ../../classes/upload.php:351
1006
- msgid "Failed upload ZIP archive"
1007
- msgstr "Fehler bei ZIP Upload"
1008
-
1009
- #: ../../classes/upload.php:486 ../../classes/upload.php:590
1010
- msgid ""
1011
- "WP All Import was not able to download your file.<br/><br/>Please make sure the URL "
1012
- "to your file is valid.<br/>You can test this by pasting it into your browser.<br/"
1013
- ">Other reasons for this error can include some server setting on your host "
1014
- "restricting access to this particular URL or external URLs in general, or some "
1015
- "setting on the server hosting the file you are trying to access preventing your "
1016
- "server from accessing it."
1017
- msgstr ""
1018
- "WP All Import konnte Ihre Datei nicht herunterladen.<br/><br/>Bitte stellen Sie "
1019
- "sicher dass die URL zu Ihrer Datei korrekt ist.<br/>Sie können das testen indem Sie "
1020
- "die URL in Ihren Browser kopieren.<br/>Andere Gründe für diesen Fehler können "
1021
- "Servereinstellungen sein, die den Zugriff auf diese URL oder generell auf externe "
1022
- "URLs verhindern. Oder Einstellungen auf dem Server verhindern den Zugriff."
1023
-
1024
- #: ../../controllers/admin/addons.php:21
1025
- msgid "WooCommerce Addon"
1026
- msgstr "WooCommerce Add-on"
1027
-
1028
- #: ../../controllers/admin/addons.php:22 ../../controllers/admin/addons.php:76
1029
- msgid "Import Products from any XML or CSV to WooCommerce"
1030
- msgstr "Importiere Produkte von XML oder CSV in WooCommerce"
1031
-
1032
- #: ../../controllers/admin/addons.php:32
1033
- msgid "ACF Addon"
1034
- msgstr "ACF Add-on"
1035
-
1036
- #: ../../controllers/admin/addons.php:33
1037
- msgid "Import to advanced custom fields"
1038
- msgstr "Importiere in erweiterte benutzerdefinierte Felder"
1039
-
1040
- #: ../../controllers/admin/addons.php:43
1041
- msgid "WPML Addon"
1042
- msgstr "WPML Add-on"
1043
-
1044
- #: ../../controllers/admin/addons.php:44
1045
- msgid "Import to WPML"
1046
- msgstr "Importiere in WPML"
1047
-
1048
- #: ../../controllers/admin/addons.php:54
1049
- msgid "User Addon"
1050
- msgstr "Benutzer Add-on"
1051
-
1052
- #: ../../controllers/admin/addons.php:55
1053
- msgid "Import Users"
1054
- msgstr "Importiere Benutzer"
1055
-
1056
- #: ../../controllers/admin/addons.php:65
1057
- msgid "Link cloaking Addon"
1058
- msgstr "Maskiere Link Add-on"
1059
-
1060
- #: ../../controllers/admin/addons.php:66
1061
- msgid "Affiliate link cloaking"
1062
- msgstr "Maskiere Affiliate Link"
1063
-
1064
- #: ../../controllers/admin/addons.php:75
1065
- msgid "WooCommerce Addon - free edition"
1066
- msgstr "WooCommerce Add-on - Freie Version"
1067
-
1068
- #: ../../controllers/admin/addons.php:84
1069
- msgid "WooCommerce Tabs Addon"
1070
- msgstr "WooCommerce Tab Add-on"
1071
-
1072
- #: ../../controllers/admin/addons.php:85
1073
- msgid "Import data to WooCommerce tabs"
1074
- msgstr "Importiere Daten in WooCommerce Tabs"
1075
-
1076
- #: ../../controllers/admin/history.php:31
1077
- msgid "Import is not specified."
1078
- msgstr "Import nicht spezifiziert"
1079
-
1080
- #: ../../controllers/admin/history.php:57 ../../controllers/admin/manage.php:60
1081
- msgid "&laquo;"
1082
- msgstr "&laquo;"
1083
-
1084
- #: ../../controllers/admin/history.php:58 ../../controllers/admin/manage.php:61
1085
- msgid "&raquo;"
1086
- msgstr "&raquo;"
1087
-
1088
- #: ../../controllers/admin/history.php:92
1089
- msgid "Log file does not exists."
1090
- msgstr "Log Datei existiert nicht."
1091
-
1092
- #: ../../controllers/admin/history.php:112
1093
- msgid "History deleted"
1094
- msgstr "Chronik gelöscht"
1095
-
1096
- #: ../../controllers/admin/history.php:139 ../../controllers/admin/manage.php:634
1097
- #, php-format
1098
- msgid "%d %s deleted"
1099
- msgstr "%d %s gelöscht"
1100
-
1101
- #: ../../controllers/admin/import.php:75
1102
- msgid ""
1103
- "WP All Import lost track of where you are.<br/><br/>Maybe you cleared your cookies "
1104
- "or maybe it is just a temporary issue on your or your web host's end.<br/>If you "
1105
- "can't do an import without seeing this error, change your session settings on the "
1106
- "All Import -> Settings page."
1107
- msgstr ""
1108
- "WP All Import hat die Spur verloren.<br/><br/>Vielleicht haben Sie Ihre Cookies "
1109
- "gelöscht oder es handelt sich um einen vorübergehenden Fehler bei Ihnen oder Ihrem "
1110
- "Webspace Dienstanbieter.<br/>Wenn Sie einen Import durchführen können ohne diesen "
1111
- "Fehler zu sehen, dann ändern Sie die Einstellung Ihrer Sitzung unter All Import -> "
1112
- "Einstellungen"
1113
-
1114
- #: ../../controllers/admin/import.php:92 ../../controllers/admin/import.php:655
1115
- msgid ""
1116
- "There are no elements to import based on your XPath.<br/><br/>If you are in Step 2, "
1117
- "you probably specified filtering options that don’t match any elements present in "
1118
- "your file.<br/>If you are seeing this error elsewhere, it means that while the XPath "
1119
- "expression for your initial import matched some elements in your file previously, "
1120
- "there are now zero elements in the file that match this expression.<br/>You can edit "
1121
- "the XPath for your import by going to the Manage Imports -> Import Settings page."
1122
- msgstr ""
1123
- "Keine Elemente für den Import auf Ihrem XPath.<br/><br/>Wenn Sie bei Schritt 2 sind, "
1124
- "haben Sie eventuell Filteroptionen eingestellt, die zu keinen Elementen in Ihrer "
1125
- "Datei passen.<br/>Wenn Sie diesen Fehler anderswo sehen, bedeutet das, dass der "
1126
- "XPath von Ihrem initialen Import mit Elementen Ihrer vorherigen Datei übereinstimmt. "
1127
- "Jetzt sind Null Elemente in der Datei die mit diesem XPath übereinstimmen. <br/>Sie "
1128
- "können den XPath für Ihren Import ändern unter Imports verwalten -> Import "
1129
- "Einstellungen"
1130
-
1131
- #: ../../controllers/admin/import.php:150
1132
- msgid "The import associated with this export has been deleted."
1133
- msgstr "Der Import in Zusammenhang mit diesem Export wurde gelöscht."
1134
-
1135
- #: ../../controllers/admin/import.php:150
1136
- msgid ""
1137
- "Please re-run your export by clicking Run Export on the All Export -> Manage Exports "
1138
- "page. Then try your import again."
1139
- msgstr ""
1140
- "Bitte starten Sie Ihren Export erneut durch klicken auf Export ausführen unter All "
1141
- "Export -> Exports verwalten. Dann versuchen Sie den Import erneut."
1142
-
1143
- #: ../../controllers/admin/import.php:155
1144
- msgid "This import has been deleted."
1145
- msgstr "Dieser Import wurde gelöscht."
1146
-
1147
- #: ../../controllers/admin/import.php:167
1148
- msgid ""
1149
- "Required PHP components are missing.<br/><br/>WP All Import requires DOMDocument, "
1150
- "XMLReader, and XMLWriter PHP modules to be installed.<br/>These are standard "
1151
- "features of PHP, and are necessary for WP All Import to read the files you are "
1152
- "trying to import.<br/>Please contact your web hosting provider and ask them to "
1153
- "install and activate the DOMDocument, XMLReader, and XMLWriter PHP modules."
1154
- msgstr ""
1155
- "Benötigte PHP Komponenten fehlen.<br/><br/>WP All Import benötigt DOMDocument, "
1156
- "XMLReader und XMLWriter PHP Module.<br/>Diese sind Standard Merkmale von PHP und "
1157
- "werden von WP All Import benötigt um die Dateien zu lesen die Sie importieren wollen."
1158
- "<br/>Bitte kontaktieren Sie Ihren Webhosting Anbieter und fragen Sie nach der "
1159
- "Installation und Aktivierung von DOMDocument, XMLReader und XMLWriter PHP Module."
1160
-
1161
- #: ../../controllers/admin/import.php:242
1162
- msgid "Select an item type to import the data"
1163
- msgstr "Wählen Sie einen Produkttyp um die Daten zu importieren."
1164
-
1165
- #: ../../controllers/admin/import.php:246
1166
- msgid "Previous import for update must be selected to proceed with a new one"
1167
- msgstr ""
1168
- "Um vorherige Imports zu aktualisieren, müssen diese mit neuen selektiert werden."
1169
-
1170
- #: ../../controllers/admin/import.php:289
1171
- msgid "File is no longer in the correct format"
1172
- msgstr "Datei ist nicht mehr im korrekten Format."
1173
-
1174
- #: ../../controllers/admin/import.php:292 ../../controllers/admin/import.php:323
1175
- msgid ""
1176
- "Certain columns are required to be present in your file to enable it to be re-"
1177
- "imported with WP All Import. These columns are missing. Re-export your file using WP "
1178
- "All Export, and don't delete any of the columns when editing it. Then, re-import "
1179
- "will work correctly."
1180
- msgstr ""
1181
- "Bestimmte Spalten werden benötigt um erneut importiert werden zu können mit WP All "
1182
- "Import. Diese Spalten fehlen. Exportieren Sie Ihre Datei erneut mit WP All Export. "
1183
- "Löschen Sie dabei keine Spalte, dann wird der erneute Import korrekt funktionieren."
1184
-
1185
- #: ../../controllers/admin/import.php:295
1186
- msgid ""
1187
- "The import template you are using requires User Import Add-On.<br/><a href=\"http://"
1188
- "www.wpallimport.com/add-ons/user-import/?utm_source=wordpress.org&utm_medium=wpai-"
1189
- "import-template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">Purchase "
1190
- "the User Import Add-On</a>"
1191
- msgstr ""
1192
- "Die Import Vorlage die Sie benutzen, benötigt das Benutzer Import Add-on.<br/><a "
1193
- "href=\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress."
1194
- "org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" target="
1195
- "\"_blank\">User Import Add-on kaufen</a>"
1196
-
1197
- #: ../../controllers/admin/import.php:358
1198
- msgid "Unable to download feed resource."
1199
- msgstr "Herunterladen des Feeds nicht möglich."
1200
-
1201
- #: ../../controllers/admin/import.php:433 ../../controllers/admin/import.php:457 .
1202
- #: ../controllers/admin/settings.php:644
1203
- msgid ""
1204
- "Please confirm you are importing a valid feed.<br/> Often, feed providers distribute "
1205
- "feeds with invalid data, improperly wrapped HTML, line breaks where they should not "
1206
- "be, faulty character encodings, syntax errors in the XML, and other issues.<br/><br/"
1207
- ">WP All Import has checks in place to automatically fix some of the most common "
1208
- "problems, but we can’t catch every single one.<br/><br/>It is also possible that "
1209
- "there is a bug in WP All Import, and the problem is not with the feed.<br/><br/>If "
1210
- "you need assistance, please contact support – <a href=\"mailto:support@wpallimport."
1211
- "com\">support@wpallimport.com</a> with your XML/CSV file. We will identify the "
1212
- "problem and release a bug fix if necessary."
1213
- msgstr ""
1214
- "Bitte bestätigen: Sie importieren einen gültigen Feed.<br/> Oftmals enthalten Feeds "
1215
- "von Anbietern falsche Daten wie, unpassend eingepacktes HTML, neue Zeile wo sie "
1216
- "nicht sein soll, falsche Buchstaben Codierung, Syntax Fehler in der XML und andere "
1217
- "Probleme.<br/><br/>WP All Import hat Kontrollen die automatisch einige der "
1218
- "häufigsten Probleme beheben, aber wir können nicht jeden finden.<br/><br/>Es ist "
1219
- "auch Möglich dass ein Fehler in WP All Import ist und das Problem nicht am Feed "
1220
- "liegt.<br/><br/>Wenn Sie Hilfe brauchen, kontaktieren Sie bitte den Support – <a "
1221
- "href=\"mailto:support@wpallimport.com\">support@wpallimport.com</a> - mit Ihrer XML/"
1222
- "CSV Datei. Wir werden das Problem finden und eine Behebung des Fehlers herausgeben "
1223
- "falls das nötig ist."
1224
-
1225
- #: ../../controllers/admin/import.php:452
1226
- msgid ""
1227
- "WP All Import unable to detect file type.<br/><br/>WP All Import not able to "
1228
- "determine what type of file you are importing. Make sure your file extension is "
1229
- "correct for the file type you are importing.<br/> Please choose the correct file "
1230
- "type from the dropdown below, or try adding &type=xml or &type=csv to the end of the "
1231
- "URL, for example http://example.com/export-products.php?&type=xml"
1232
- msgstr ""
1233
- "WP All Import kann den Dateityp nicht feststellen.<br/><br/>WP All Import kann den "
1234
- "Typ Ihrer Importdatei nicht bestimmen. Stellen Sie sicher, dass die Dateiendung der "
1235
- "zu importierenden Datei korrekt ist.<br/>Bitte wählen Sie einen korrekten Dateityp "
1236
- "von der Dropdown-Liste unterhalb. Oder versuchen Sie &type=xml oder &type=csv an das "
1237
- "Ende der URL anzufügen. Beispiel: http://example.com/export-products.php?&type=xml"
1238
-
1239
- #: ../../controllers/admin/import.php:485
1240
- msgid "No elements selected"
1241
- msgstr "Keine Elemente gewählt"
1242
-
1243
- #: ../../controllers/admin/import.php:490 ../../controllers/admin/import.php:716
1244
- msgid ""
1245
- "Your XPath is not valid.<br/><br/>Click \"get default XPath\" to get the default "
1246
- "XPath."
1247
- msgstr ""
1248
- "Ihr XPath ist nicht korrekt. <br/><br/>Klicken Sie auf \"Hole Standard XPath\" um "
1249
- "den Standard XPath zu erhalten."
1250
-
1251
- #: ../../controllers/admin/import.php:494 ../../controllers/admin/import.php:722
1252
- msgid "XPath must match only elements"
1253
- msgstr "XPath muss Elementen entsprechen"
1254
-
1255
- #: ../../controllers/admin/import.php:524
1256
- msgid ""
1257
- "Warning: No matching elements found for XPath expression from the import being "
1258
- "updated. It probably means that new XML file has different format. Though you can "
1259
- "update XPath, procceed only if you sure about update operation being valid."
1260
- msgstr ""
1261
- "Warnung: Keine passenden Elemente für diesen XPath gefunden von dem Import der "
1262
- "aktualisiert wird. Das bedeutet eventuell, dass die XML Datei ein anderes Format "
1263
- "hat. Obwohl Sie XPath aktualisieren können, sollten Sie das nur ausführen wenn Sie "
1264
- "sicher sind dass die Aktualisierung zulässig ist. "
1265
-
1266
- #: ../../controllers/admin/import.php:566 ../../controllers/admin/import.php:709
1267
- msgid ""
1268
- "Your XPath is empty.<br/><br/>Please enter an XPath expression, or click \"get "
1269
- "default XPath\" to get the default XPath."
1270
- msgstr ""
1271
- "Ihr XPath is leer.<br/><br/>Bitte geben Sie einen XPath Ausdruck ein, oder klicken "
1272
- "Sie auf \"Hole Standard XPath\" um den Standard XPath zu erhalten."
1273
-
1274
- #: ../../controllers/admin/import.php:718
1275
- msgid "No matching variations found for XPath specified"
1276
- msgstr "Keine passenden Varianten für den XPath gefunden"
1277
-
1278
- #: ../../controllers/admin/import.php:959 ../../controllers/admin/import.php:975 .
1279
- #: ../controllers/admin/import.php:1105
1280
- msgid ""
1281
- "WP All Import lost track of where you are.<br/><br/>Maybe you cleared your cookies "
1282
- "or maybe it is just a temporary issue on your web host's end.<br/>If you can't do an "
1283
- "import without seeing this error, change your session settings on the All Import -> "
1284
- "Settings page."
1285
- msgstr ""
1286
- "WP All Import hat die Spur verloren.<br/><br/>Vielleicht haben Sie Ihre Cookies "
1287
- "gelöscht oder es handelt sich um einen vorübergehenden Fehler bei Ihnen oder Ihrem "
1288
- "Dienstanbieter.<br/>Wenn Sie einen Import durchführen können ohne diesen Fehler zu "
1289
- "sehen, ändern Sie Ihre Einstellungen unter All Import -> Einstellungen."
1290
-
1291
- #: ../../controllers/admin/import.php:961
1292
- msgid "<strong>Warning</strong>: your title is blank."
1293
- msgstr "<strong>Warnung:</strong>Ihr Titel ist leer."
1294
-
1295
- #: ../../controllers/admin/import.php:966
1296
- msgid "<strong>Warning</strong>: resulting post title is empty"
1297
- msgstr "<strong>Warnung:</strong>:Ergebnis post Titel ist leer."
1298
-
1299
- #: ../../controllers/admin/import.php:971
1300
- #, php-format
1301
- msgid "Error parsing title: %s"
1302
- msgstr "Fehler beim Parsen des Titel: %s"
1303
-
1304
- #: ../../controllers/admin/import.php:977
1305
- msgid "<strong>Warning</strong>: your content is blank."
1306
- msgstr "<strong>Warnung:</strong>: Ihr Inhalt ist leer."
1307
-
1308
- #: ../../controllers/admin/import.php:982
1309
- msgid "<strong>Warning</strong>: resulting post content is empty"
1310
- msgstr "<strong>Warnung:</strong>:Ergebnis post Titel ist leer."
1311
-
1312
- #: ../../controllers/admin/import.php:987
1313
- #, php-format
1314
- msgid "Error parsing content: %s"
1315
- msgstr "Fehler beim Parsen des Inhalts: %s"
1316
-
1317
- #: ../../controllers/admin/import.php:1125 ../../controllers/admin/import.php: 1280
1318
- #: ../../controllers/admin/import.php:1412
1319
- #, php-format
1320
- msgid "Error parsing: %s"
1321
- msgstr "Fehler beim Parsen: %s"
1322
-
1323
- #: ../../controllers/admin/import.php:1236 ../../controllers/admin/import.php:1391
1324
- msgid "Error parsing: String could not be parsed as XML"
1325
- msgstr "Fehler beim Parsen: String kann nicht als XML geparst werden."
1326
-
1327
- #: ../../controllers/admin/import.php:1277 ../../controllers/admin/import.php:1409
1328
- msgid "There is no data to preview"
1329
- msgstr "Keine Daten zur Vorschau"
1330
-
1331
- #: ../../controllers/admin/import.php:1514 ../../views/admin/import/template.php:67
1332
- msgid "Excerpt"
1333
- msgstr "Ausschnitt"
1334
-
1335
- #: ../../controllers/admin/import.php:1518 ../../controllers/admin/import.php: 1522
1336
- #: ../../models/import/record.php:1186 ../../views/admin/import/template.php: 112
1337
- #: ../../views/admin/import/options/_reimport_options.php:135
1338
- msgid "Images"
1339
- msgstr "Bilder"
1340
-
1341
- #: ../../controllers/admin/import.php:1540
1342
- msgid "Both name and value must be set for all custom parameters"
1343
- msgstr "Name und Wert müssen für alle Merkmale gesetzt sein."
1344
-
1345
- #: ../../controllers/admin/import.php:1543
1346
- msgid "Custom Field Name"
1347
- msgstr "Name individuelles Feld"
1348
-
1349
- #: ../../controllers/admin/import.php:1547
1350
- msgid "Custom Field Value"
1351
- msgstr "Wert individuelles Feld"
1352
-
1353
- #: ../../controllers/admin/import.php:1560
1354
- msgid "Both name and value must be set for all woocommerce attributes"
1355
- msgstr "Name und Wert müssen für alle WooCommerce Merkmale gesetzt sein."
1356
-
1357
- #: ../../controllers/admin/import.php:1563
1358
- msgid "Attribute Field Name"
1359
- msgstr "Name Merkmalfeld"
1360
-
1361
- #: ../../controllers/admin/import.php:1566
1362
- msgid "Attribute Field Value"
1363
- msgstr "Wert Merkmalfeld"
1364
-
1365
- #: ../../controllers/admin/import.php:1577
1366
- msgid "Tags"
1367
- msgstr "Tags"
1368
-
1369
- #: ../../controllers/admin/import.php:1580 ../../views/admin/history/index.php:33
1370
- msgid "Date"
1371
- msgstr "Datum"
1372
-
1373
- #: ../../controllers/admin/import.php:1582 ../../controllers/admin/import.php:1583
1374
- msgid "Start Date"
1375
- msgstr "Start Datum"
1376
-
1377
- #: ../../controllers/admin/import.php:1617
1378
- msgid "Template updated"
1379
- msgstr "Vorlage aktualisiert"
1380
-
1381
- #: ../../controllers/admin/import.php:1699
1382
- #, php-format
1383
- msgid "%s template is invalid: %s"
1384
- msgstr "%s Vorlage ist ungültig: %s"
1385
-
1386
- #: ../../controllers/admin/import.php:1802
1387
- msgid ""
1388
- "Records to import must be specified or uncheck `Import only specified records` "
1389
- "option to process all records"
1390
- msgstr ""
1391
- "Zu importierende Datensätze müssen ausgewählt werden, oder entfernen Sie die "
1392
- "Markierung bei `Nur ausgewählte Datensätze importieren` um alle Datensätze zu "
1393
- "verarbeiten."
1394
-
1395
- #: ../../controllers/admin/import.php:1807
1396
- msgid "Wrong format of `Import only specified records` value"
1397
- msgstr "Falsches Format bei `Nur ausgewählte Datensätze importieren`"
1398
-
1399
- #: ../../controllers/admin/import.php:1810
1400
- msgid ""
1401
- "One of the numbers in `Import only specified records` value exceeds record quantity "
1402
- "in XML file"
1403
- msgstr ""
1404
- "Eine der Nummern in `Nur ausgewählte Datensätze importieren` übersteigt die "
1405
- "Datensatz Anzahl in der XML"
1406
-
1407
- #: ../../controllers/admin/import.php:1817
1408
- msgid ""
1409
- "Expression for `Post Unique Key` must be set, use the same expression as specified "
1410
- "for post title if you are not sure what to put there"
1411
- msgstr ""
1412
- "Ausdruck für `Sende einzigartige ID` muss gesetzt sein. Nutzen Sie den selben "
1413
- "Ausdruck den Sie für den post Titel gewählt haben, wenn Sie nicht sicher sind."
1414
-
1415
- #: ../../controllers/admin/import.php:1819
1416
- msgid "Post Unique Key"
1417
- msgstr "Sende einzigartige ID"
1418
-
1419
- #: ../../controllers/admin/import.php:1823
1420
- msgid "Custom field name must be specified."
1421
- msgstr "Name vom individuellen Feld muss angegeben werden."
1422
-
1423
- #: ../../controllers/admin/import.php:1825
1424
- msgid "Custom field value must be specified."
1425
- msgstr "Wert vom individuellen Feld muss angegeben werden."
1426
-
1427
- #: ../../controllers/admin/import.php:1906
1428
- msgid "WP All Import doesn't support this import type."
1429
- msgstr "WP All Import unterstützt diesen Import Typ nicht."
1430
-
1431
- #: ../../controllers/admin/import.php:1950
1432
- msgid ""
1433
- "<strong>Warning:</strong> this file does not have the same structure as the last "
1434
- "file associated with this import. WP All Import won't be able to import this file "
1435
- "with your current settings. Probably you'll need to adjust your XPath in the "
1436
- "\"Configure Advanced Settings\" box below, and reconfigure your import by clicking "
1437
- "\"Edit\" on the Manage Imports page."
1438
- msgstr ""
1439
- "<strong>Warnung:</strong>diese Datei hat nicht die gleiche Struktur wie die letzte "
1440
- "Datei die mit diesem Import durchgeführt wurde. WP All Import wird die Datei mit den "
1441
- "gegenwärtigen Einstellungen nicht importieren können. Möglicherweise müssen Sie "
1442
- "Ihren XPath umstellen in \" Konfiguriere erweiterte Einstellungen\" und ändern ihn "
1443
- "durch klicken auf \"Bearbeiten\" auf der Imports verwalten Seite."
1444
-
1445
- #: ../../controllers/admin/import.php:1995
1446
- msgid "Root element not found for uploaded feed."
1447
- msgstr "Wurzelelement nicht gefunden für den hochgeladenen Feed."
1448
-
1449
- #: ../../controllers/admin/import.php:2047
1450
- msgid "Import updated"
1451
- msgstr "Import aktualisiert"
1452
-
1453
- #: ../../controllers/admin/import.php:2047
1454
- msgid "Import created"
1455
- msgstr "Import erstellt"
1456
-
1457
- #: ../../controllers/admin/import.php:2149
1458
- msgid "Configuration updated"
1459
- msgstr "Konfiguration aktualisiert"
1460
-
1461
- #: ../../controllers/admin/import.php:2321 ../../controllers/admin/import.php: 2604
1462
- #: ../../controllers/admin/import.php:2732
1463
- #, php-format
1464
- msgid "%d %ss created %d updated %d deleted %d skipped"
1465
- msgstr "%d %ss erstellt %d aktualisiert %d gelöscht %d übersprungen"
1466
-
1467
- #: ../../controllers/admin/import.php:2739
1468
- msgid "Canceled"
1469
- msgstr "Abgebrochen"
1470
-
1471
- #: ../../controllers/admin/import.php:2739
1472
- msgid "Complete"
1473
- msgstr "Fertiggestellt"
1474
-
1475
- #: ../../controllers/admin/license.php:43
1476
- msgid "Licenses saved"
1477
- msgstr "Lizenz gespeichert"
1478
-
1479
- #: ../../controllers/admin/manage.php:298 ../../views/admin/manage/index.php:272
1480
- msgid "Import canceled"
1481
- msgstr "Import abgebrochen "
1482
-
1483
- #: ../../controllers/admin/manage.php:363
1484
- msgid ""
1485
- "This import appears to be using FTP. Unfortunately WP All Import no longer supports "
1486
- "the FTP protocol. Please contact <a href=\"mailto:support@wpallimport.com"
1487
- "\">support@wpallimport.com</a> if you have any questions."
1488
- msgstr ""
1489
- "Dieser Import scheint FTP zu nutzen. Leider unterstützt WP All Import das FTP "
1490
- "Protokoll nicht mehr. Bitte kontaktieren Sie <a href=\"mailto:support@wpallimport.com"
1491
- "\">support@wpallimport.com</a> wenn Sie fragen haben."
1492
-
1493
- #: ../../controllers/admin/manage.php:459
1494
- msgid "No matching elements found for Root element and XPath expression specified"
1495
- msgstr ""
1496
- "Keine passenden Elemente für das Wurzelelement und den XPath Ausdruck gefunden"
1497
-
1498
- #: ../../controllers/admin/manage.php:555
1499
- msgid "File does not exists."
1500
- msgstr "Datei existiert nicht"
1501
-
1502
- #: ../../controllers/admin/settings.php:60
1503
- msgid "History File Count must be a non-negative integer"
1504
- msgstr "Zählung der Datei Chronik muss ein nicht negativer integer sein"
1505
-
1506
- #: ../../controllers/admin/settings.php:63
1507
- msgid "History Age must be a non-negative integer"
1508
- msgstr "Chronik alter muss ein nicht negativer integer sein."
1509
-
1510
- #: ../../controllers/admin/settings.php:83
1511
- msgid "Settings saved"
1512
- msgstr "Einstellungen gespeichert"
1513
-
1514
- #: ../../controllers/admin/settings.php:114
1515
- msgid "Unknown File extension. Only txt files are permitted"
1516
- msgstr "Unbekannte Dateiendung. Nur txt Dateien sind erlaubt"
1517
-
1518
- #: ../../controllers/admin/settings.php:129
1519
- msgid "Wrong imported data format"
1520
- msgstr "Falsches Import Dateiformat"
1521
-
1522
- #: ../../controllers/admin/settings.php:131
1523
- msgid "File is empty or doesn't exests"
1524
- msgstr "Datei ist leer oder existiert nicht"
1525
-
1526
- #: ../../controllers/admin/settings.php:134
1527
- msgid "Undefined entry!"
1528
- msgstr "Undefinierter Eintrag"
1529
-
1530
- #: ../../controllers/admin/settings.php:136
1531
- msgid "Please select file."
1532
- msgstr "Bitte wählen Sie eine Datei"
1533
-
1534
- #: ../../controllers/admin/settings.php:142
1535
- msgid "Templates must be selected"
1536
- msgstr "Vorlagen müssen gewählt sein"
1537
-
1538
- #: ../../controllers/admin/settings.php:279
1539
- msgid "Files not found"
1540
- msgstr "Dateien nicht gefunden"
1541
-
1542
- #: ../../controllers/admin/settings.php:287
1543
- msgid "Clean Up has been successfully completed."
1544
- msgstr "Aufräumarbeiten erfolgreich beendet."
1545
-
1546
- #: ../../controllers/admin/settings.php:438
1547
- msgid "Uploads folder is not writable."
1548
- msgstr "Upload Verzeichnis ist nicht beschreibbar."
1549
-
1550
- #: ../../controllers/admin/settings.php:495
1551
- msgid "Failed to open temp directory."
1552
- msgstr "Fehler bei öffnen des temp Verzeichnisses."
1553
-
1554
- #: ../../controllers/admin/settings.php:520 ../../controllers/admin/settings.php: 545
1555
- msgid "Failed to open input stream."
1556
- msgstr "Fehler bei öffnen des Input streams."
1557
-
1558
- #: ../../controllers/admin/settings.php:527 ../../controllers/admin/settings.php: 552
1559
- msgid "Failed to open output stream."
1560
- msgstr "Fehler bei öffnen des Output streams."
1561
-
1562
- #: ../../controllers/admin/settings.php:531
1563
- msgid "Failed to move uploaded file."
1564
- msgstr "Fehler bei verschieben der hochgeladenen Datei."
1565
-
1566
- #: ../../helpers/import_custom_meta_box.php:25
1567
- msgid ""
1568
- "Custom fields can be used to add extra metadata to a post that you can <a href="
1569
- "\"http://codex.wordpress.org/Using_Custom_Fields\" target=\"_blank\">use in your "
1570
- "theme</a>."
1571
- msgstr ""
1572
- "Individuelle Felder können genutzt werden um zusätzliche Daten in einen Post "
1573
- "einzufügen. Sie können <a href=\"http://codex.wordpress.org/Using_Custom_Fields\" "
1574
- "target=\"_blank\">sie in Ihrem Theme nutzen</a>."
1575
-
1576
- #: ../../helpers/reverse_taxonomies_html.php:18 ../..
1577
- #: /views/admin/import/template/_taxonomies_template.php:41
1578
- #: /views/admin/import/template/_taxonomies_template.php:63
1579
- #: /views/admin/import/template/_taxonomies_template.php:97
1580
- #: /views/admin/import/template/_taxonomies_template.php:107
1581
- #: /views/admin/import/template/_taxonomies_template.php:116
1582
- #: /views/admin/import/template/_taxonomies_template.php:164
1583
- #: /views/admin/import/template/_taxonomies_template.php:182
1584
- #: /views/admin/import/template/_taxonomies_template.php:189
1585
- #: /views/admin/import/template/_taxonomies_template.php:201
1586
- msgid "Assign post to the taxonomy."
1587
- msgstr "Post zuordnen zu Taxonomie."
1588
-
1589
- #: ../../helpers/wp_all_import_addon_notifications.php:108
1590
- #, php-format
1591
- msgid ""
1592
- "Make imports easier with the <strong>Advanced Custom Fields Add-On</strong> for WP "
1593
- "All Import: <a href=\"%s\" target=\"_blank\">Read More</a>"
1594
- msgstr ""
1595
- "Machen Sie die Imports einfacher mit <strong>Erweiterte benutzerdefinierte Felder "
1596
- "Add-on</strong> für WP All Import: <a href=\"%s\" target=\"_blank\">Mehr erfahren</a>"
1597
-
1598
- #: ../../helpers/wp_all_import_addon_notifications.php:141
1599
- #, php-format
1600
- msgid ""
1601
- "Make imports easier with the <strong>free %s Add-On</strong> for WP All Import: <a "
1602
- "href=\"%s\" target=\"_blank\">Get Add-On</a>"
1603
- msgstr ""
1604
- "Machen Sie die Imports einfacher mit <strong>freie %s Add-on</strong> für WP All "
1605
- "Import: <a href=\"%s\" target=\"_blank\">Get Add-on</a>"
1606
-
1607
- #: ../../helpers/wp_all_import_is_json.php:12
1608
- msgid "Maximum stack depth exceeded"
1609
- msgstr "Maximale Stapeltiefe überschritten"
1610
-
1611
- #: ../../helpers/wp_all_import_is_json.php:15
1612
- msgid "Underflow or the modes mismatch"
1613
- msgstr "Unterlauf oder die Modi passen nicht"
1614
-
1615
- #: ../../helpers/wp_all_import_is_json.php:18
1616
- msgid "Unexpected control character found"
1617
- msgstr "Unerwarteter Buchstabe gefunden"
1618
-
1619
- #: ../../helpers/wp_all_import_is_json.php:21
1620
- msgid "Syntax error, malformed JSON"
1621
- msgstr "Syntax Fehler, deformiertes JSON"
1622
-
1623
- #: ../../helpers/wp_all_import_is_json.php:24
1624
- msgid "Malformed UTF-8 characters, possibly incorrectly encoded"
1625
- msgstr "Deformierte UTF-8 Buchstaben, möglicherweise falsch codiert"
1626
-
1627
- #: ../../helpers/wp_all_import_is_json.php:27
1628
- msgid "Unknown json error"
1629
- msgstr "Unbekannter JSON Fehler "
1630
-
1631
- #: ../../helpers/wp_all_import_template_notifications.php:23
1632
- msgid ""
1633
- "The import template you are using requires the User Import Add-On. If you continue "
1634
- "without it your data may import incorrectly.<br/><br/><a href=\"http://www."
1635
- "wpallimport.com/add-ons/user-import/?utm_source=wordpress.org&utm_medium=wpai-import-"
1636
- "template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">Purchase the "
1637
- "User Import Add-On</a>."
1638
- msgstr ""
1639
- "Die Import Vorlage die sie benutzen, benötigt das Benutzer Import Add-on. Wenn Sie "
1640
- "ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a "
1641
- "href=\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress."
1642
- "org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" target="
1643
- "\"_blank\">Benutzer Import Add-On hier kaufen</a>."
1644
-
1645
- #: ../../helpers/wp_all_import_template_notifications.php:27
1646
- msgid ""
1647
- "The import template you are using requires the WooCommerce Import Add-On. If you "
1648
- "continue without it your data may import incorrectly.<br/><br/><a href=\"http://www."
1649
- "wpallimport.com/woocommerce-product-import/\" target=\"_blank\">Purchase the "
1650
- "WooCommerce Import Add-On</a>."
1651
- msgstr ""
1652
- "Die Import Vorlage die sie benutzen, benötigt das WooCommerce Import Add-on. Wenn "
1653
- "Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a "
1654
- "href=\"http://www.wpallimport.com/woocommerce-product-import/\" target=\"_blank"
1655
- "\">WooCommerce Import Add-On hier kaufen</a>."
1656
-
1657
- #: ../../helpers/wp_all_import_template_notifications.php:32
1658
- msgid ""
1659
- "The import template you are using requires the Realia Add-On. If you continue "
1660
- "without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress."
1661
- "org/plugins/realia-xml-csv-property-listings-import/\" target=\"_blank\">Download "
1662
- "the Realia Add-On</a>."
1663
- msgstr ""
1664
- "Die Import Vorlage die sie benutzen, benötigt das Realia Add-on. Wenn Sie ohne "
1665
- "fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href="
1666
- "\"https://wordpress.org/plugins/realia-xml-csv-property-listings-import/\" target="
1667
- "\"_blank\">Realia Add-On hier herunterladen</a>."
1668
-
1669
- #: ../../helpers/wp_all_import_template_notifications.php:39
1670
- msgid ""
1671
- "The import template you are using requires the WP Residence Add-On. If you continue "
1672
- "without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress."
1673
- "org/plugins/wp-residence-add-on-for-wp-all-import/\" target=\"_blank\">Download the "
1674
- "WP Residence Add-On</a>."
1675
- msgstr ""
1676
- "Die Import Vorlage die sie benutzen, benötigt das WP Residence Add-on. Wenn Sie ohne "
1677
- "fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href="
1678
- "\"https://wordpress.org/plugins/wp-residence-add-on-for-wp-all-import/\" target="
1679
- "\"_blank\">WP Residence Add-On hier herunterladen</a>."
1680
-
1681
- #: ../../helpers/wp_all_import_template_notifications.php:46
1682
- msgid ""
1683
- "The import template you are using requires the RealHomes Add-On. If you continue "
1684
- "without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress."
1685
- "org/plugins/realhomes-xml-csv-property-listings-import/\" target=\"_blank\">Download "
1686
- "the RealHomes Add-On</a>."
1687
- msgstr ""
1688
- "Die Import Vorlage die sie benutzen, benötigt das RealHomes Add-on. Wenn Sie ohne "
1689
- "fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href="
1690
- "\"https://wordpress.org/plugins/realhomes-xml-csv-property-listings-import/\" target="
1691
- "\"_blank\">RealHomes Add-On hier herunterladen</a>."
1692
-
1693
- #: ../../helpers/wp_all_import_template_notifications.php:52
1694
- msgid ""
1695
- "The import template you are using requires the Jobify Add-On. If you continue "
1696
- "without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress."
1697
- "org/plugins/jobify-xml-csv-listings-import/\" target=\"_blank\">Download the Jobify "
1698
- "Add-On</a>."
1699
- msgstr ""
1700
- "Die Import Vorlage die sie benutzen, benötigt das Jobify Add-on. Wenn Sie ohne "
1701
- "fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href="
1702
- "\"https://wordpress.org/plugins/jobify-xml-csv-listings-import/\" target=\"_blank"
1703
- "\">Jobify Add-On hier herunterladen</a>."
1704
-
1705
- #: ../../helpers/wp_all_import_template_notifications.php:58
1706
- msgid ""
1707
- "The import template you are using requires the Listify Add-On. If you continue "
1708
- "without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress."
1709
- "org/plugins/listify-xml-csv-listings-import/\" target=\"_blank\">Download the "
1710
- "Listify Add-On</a>."
1711
- msgstr ""
1712
- "Die Import Vorlage die sie benutzen, benötigt das Listify Add-on. Wenn Sie ohne "
1713
- "fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href="
1714
- "\"https://wordpress.org/plugins/listify-xml-csv-listings-import/\" target=\"_blank"
1715
- "\">Listify Add-On hier herunterladen</a>."
1716
-
1717
- #: ../../helpers/wp_all_import_template_notifications.php:64
1718
- msgid ""
1719
- "The import template you are using requires the Reales WP Add-On. If you continue "
1720
- "without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress."
1721
- "org/plugins/reales-wp-xml-csv-property-listings-import/\" target=\"_blank\">Download "
1722
- "the Reales WP Add-On</a>."
1723
- msgstr ""
1724
- "Die Import Vorlage die sie benutzen, benötigt das Reales WP Add-on. Wenn Sie ohne "
1725
- "fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href="
1726
- "\"https://wordpress.org/plugins/reales-wp-xml-csv-property-listings-import/\" target="
1727
- "\"_blank\">Reales WP Add-On hier herunterladen</a>."
1728
-
1729
- #: ../../helpers/wp_all_import_template_notifications.php:70
1730
- msgid ""
1731
- "The import template you are using requires the WP Job Manager Add-On. If you "
1732
- "continue without it your data may import incorrectly.<br/><br/><a href=\"https://"
1733
- "wordpress.org/plugins/wp-job-manager-xml-csv-listings-import/\" target=\"_blank"
1734
- "\">Download the WP Job Manager Add-On</a>."
1735
- msgstr ""
1736
- "Die Import Vorlage die sie benutzen, benötigt das WP Job Add-on. Wenn Sie ohne "
1737
- "fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href="
1738
- "\"https://wordpress.org/plugins/wp-job-manager-xml-csv-listings-import/\" target="
1739
- "\"_blank\">WP Job Manager Add-On hier herunterladen</a>."
1740
-
1741
- #: ../../helpers/wp_all_import_template_notifications.php:76
1742
- msgid ""
1743
- "The import template you are using requires the Yoast SEO Add-On. If you continue "
1744
- "without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress."
1745
- "org/plugins/yoast-seo-settings-xml-csv-import/\" target=\"_blank\">Download the "
1746
- "Yoast SEO Add-On</a>."
1747
- msgstr ""
1748
- "Die Import Vorlage die sie benutzen, benötigt das Yoast SEO Add-on. Wenn Sie ohne "
1749
- "fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href="
1750
- "\"https://wordpress.org/plugins/yoast-seo-settings-xml-csv-import/\" target=\"_blank"
1751
- "\">Yoast SEO Add-On hier herunterladen</a>."
1752
-
1753
- #: ../../helpers/wp_all_import_template_notifications.php:81
1754
- msgid ""
1755
- "The import template you are using requires an Add-On for WP All Import. If you "
1756
- "continue without using this Add-On your data may import incorrectly."
1757
- msgstr ""
1758
- "Die Import Vorlage die sie benutzen, benötigt ein Add-on für WP All Import. Wenn Sie "
1759
- "ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden."
1760
-
1761
- #: ../../helpers/wp_all_import_template_notifications.php:93
1762
- msgid "<strong>Warning:</strong>"
1763
- msgstr "<strong>Warnung:</strong>"
1764
-
1765
- #: ../../models/import/record.php:42
1766
- #, php-format
1767
- msgid ""
1768
- "WP All Import can't read your file.<br/><br/>Probably, you are trying to import an "
1769
- "invalid XML feed. Try opening the XML feed in a web browser (Google Chrome is "
1770
- "recommended for opening XML files) to see if there is an error message.<br/"
1771
- ">Alternatively, run the feed through a validator: http://validator.w3.org/<br/"
1772
- ">99% of the time, the reason for this error is because your XML feed isn't valid.<br/"
1773
- ">If you are 100% sure you are importing a valid XML feed, please contact WP All "
1774
- "Import support."
1775
- msgstr ""
1776
- "WP All Import kann Ihre Datei nicht lesen. <br/><br/> Eventuell versuchen Sie einen "
1777
- "ungültigen XML Feed zu importieren. Versuchen Sie das XML in einem Browser zu öffnen "
1778
- "( Google Chrome wird empfohlen um XML Dateien zu öffnen) um zu sehen ob eine "
1779
- "Fehlermeldung erscheint. <br/>Alternativ können Sie den Feed durch einen Validator "
1780
- "prüfen lassen: http://validator.w3.org/<br/> In 99% der Fälle ist der Grund für "
1781
- "einen Fehler ein ungültiger XML Feed. <br/> Wenn Sie 100% sicher sind dass sie einen "
1782
- "gültigen XML Feed importieren, Kontaktieren Sie den WP All Import Support."
1783
-
1784
- #: ../../models/import/record.php:54
1785
- msgid "Invalid XML"
1786
- msgstr "Ungültiges XML"
1787
-
1788
- #: ../../models/import/record.php:57
1789
- msgid "Line"
1790
- msgstr "Zeile"
1791
-
1792
- #: ../../models/import/record.php:58
1793
- msgid "Column"
1794
- msgstr "Spalte"
1795
-
1796
- #: ../../models/import/record.php:59
1797
- msgid "Code"
1798
- msgstr "Code"
1799
-
1800
- #: ../../models/import/record.php:70
1801
- msgid "Required PHP components are missing."
1802
- msgstr "Benötige PHP Komponenten fehlen."
1803
-
1804
- #: ../../models/import/record.php:71
1805
- msgid ""
1806
- "WP All Import requires the SimpleXML PHP module to be installed. This is a standard "
1807
- "feature of PHP, and is necessary for WP All Import to read the files you are trying "
1808
- "to import.<br/>Please contact your web hosting provider and ask them to install and "
1809
- "activate the SimpleXML PHP module."
1810
- msgstr ""
1811
- "WP All Import benötigt einfache XML PHP Module die installiert sein müssen. Diese "
1812
- "sind Standardinhalte in PHP und werden von WP All Import benötigt um die Dateien zu "
1813
- "lesen die Sie versuchen zu importieren.<br/>Bitte kontaktieren Sie Ihren "
1814
- "Dienstanbieter und fragen Sie nach der Installation und Aktivierung der einfachen "
1815
- "XML PHP Module."
1816
-
1817
- #: ../../models/import/record.php:115
1818
- #, php-format
1819
- msgid ""
1820
- "This import appears to be using FTP. Unfortunately WP All Import no longer supports "
1821
- "the FTP protocol. Please contact <a href=\"mailto:support@wpallimport.com\">%s</a> "
1822
- "if you have any questions."
1823
- msgstr ""
1824
- "Dieser Import scheint FTP zu nutzen. Leider unterstützt WP All Import das FTP "
1825
- "Protokoll nicht mehr. Bitte kontaktieren Sie <a href=\"mailto:support@wpallimport.com"
1826
- "\">%s</a> wenn Sie fragen haben."
1827
-
1828
- #: ../../models/import/record.php:261
1829
- #, php-format
1830
- msgid "#%s No matching elements found for Root element and XPath expression specified"
1831
- msgstr ""
1832
- "#%s Keine passenden Elemente für das Wurzelelement und den XPath Ausdruck gefunden"
1833
-
1834
- #: ../../models/import/record.php:506
1835
- #, php-format
1836
- msgid ""
1837
- "import finished & cron un-triggered<br>%s %s created %s updated %s deleted %s skipped"
1838
- msgstr ""
1839
- "Import Abgeschlossen & cron nicht ausgelöst<br/>%s%s erstellt %s aktualisiert %s "
1840
- "gelöscht %s übersprungen"
1841
-
1842
- #: ../../models/import/record.php:532
1843
- #, php-format
1844
- msgid "%d %s created %d updated %d deleted %d skipped"
1845
- msgstr "%d %s erstellt %d aktualisiert %d gelöscht %d übersprungen"
1846
-
1847
- #: ../../models/import/record.php:558
1848
- #, php-format
1849
- msgid "#%s source file not found"
1850
- msgstr "#%s Quelle der Datei nicht gefunden"
1851
-
1852
- #: ../../models/import/record.php:600
1853
- msgid "Composing titles..."
1854
- msgstr "Zusammengesetzte Titel..."
1855
-
1856
- #: ../../models/import/record.php:608
1857
- msgid "Composing excerpts..."
1858
- msgstr "Zusammengesetzte Auszüge..."
1859
-
1860
- #: ../../models/import/record.php:618
1861
- msgid "Composing statuses..."
1862
- msgstr "Zusammengesetzter Status..."
1863
-
1864
- #: ../../models/import/record.php:629
1865
- msgid "Composing comment statuses..."
1866
- msgstr "Zusammengesetzter kommentierter Status..."
1867
-
1868
- #: ../../models/import/record.php:640
1869
- msgid "Composing ping statuses..."
1870
- msgstr "Zusammengesetzter ping Status..."
1871
-
1872
- #: ../../models/import/record.php:651
1873
- msgid "Composing post formats..."
1874
- msgstr "Zusammengesetzte post Formate..."
1875
-
1876
- #: ../../models/import/record.php:673
1877
- msgid "Composing page templates..."
1878
- msgstr "Zusammengesetzte Seiten Vorlagen..."
1879
-
1880
- #: ../../models/import/record.php:684
1881
- msgid "Composing post types..."
1882
- msgstr "Zusammengesetzte post Typen..."
1883
-
1884
- #: ../../models/import/record.php:698
1885
- msgid "Composing page parent..."
1886
- msgstr "Zusammengesetzte Elternseiten..."
1887
-
1888
- #: ../../models/import/record.php:758
1889
- msgid "Composing authors..."
1890
- msgstr "Zusammengesetzte Autoren..."
1891
-
1892
- #: ../../models/import/record.php:799
1893
- msgid "Composing slugs..."
1894
- msgstr "Zusammengesetzte slugs..."
1895
-
1896
- #: ../../models/import/record.php:808
1897
- msgid "Composing menu order..."
1898
- msgstr "Zusammengesetzte Menü Reihenfolge..."
1899
-
1900
- #: ../../models/import/record.php:817
1901
- msgid "Composing contents..."
1902
- msgstr "Zusammengesetzte Inhalte..."
1903
-
1904
- #: ../../models/import/record.php:830
1905
- msgid "Composing dates..."
1906
- msgstr "Zusammengesetztes Datum..."
1907
-
1908
- #: ../../models/import/record.php:838 ../../models/import/record.php:851 ../..
1909
- #: /models/import/record.php:857
1910
- #, php-format
1911
- msgid "<b>WARNING</b>: unrecognized date format `%s`, assigning current date"
1912
- msgstr "<b>WARNUNG</b>: Nicht erkanntes Datums Format `%s`, übertrage aktuelles Datum"
1913
-
1914
- #: ../../models/import/record.php:873
1915
- #, php-format
1916
- msgid "Composing terms for `%s` taxonomy..."
1917
- msgstr "Zusammengesetzte Bezeichnung für `%s` Taxonomien..."
1918
-
1919
- #: ../../models/import/record.php:1085
1920
- msgid "Composing custom parameters..."
1921
- msgstr "Zusammengesetzte individuelle Parameter..."
1922
-
1923
- #: ../../models/import/record.php:1192 ../../models/import/record.php:1310
1924
- msgid "<b>WARNING</b>"
1925
- msgstr "<b>WARNUNG</b>"
1926
-
1927
- #: ../../models/import/record.php:1193
1928
- msgid ""
1929
- "<b>WARNING</b>: No featured images will be created. Uploads folder is not found."
1930
- msgstr ""
1931
- "<b>WARNUNG</b>: Keine Erstellung von featured Bildern. Upload Verzeichnis wurde "
1932
- "nicht gefunden."
1933
-
1934
- #: ../../models/import/record.php:1311
1935
- msgid "<b>WARNING</b>: No attachments will be created"
1936
- msgstr "<b>WARNUNG</b>:Anhänge werden nicht erstellt."
1937
-
1938
- #: ../../models/import/record.php:1314
1939
- msgid "Composing URLs for attachments files..."
1940
- msgstr "Zusammengesetzte URLs für Angehängte Dateien..."
1941
-
1942
- #: ../../models/import/record.php:1343
1943
- msgid "Composing unique keys..."
1944
- msgstr "Zusammengesetzte einzigartige Schlüssel..."
1945
-
1946
- #: ../../models/import/record.php:1351
1947
- msgid "Processing posts..."
1948
- msgstr "Bearbeite Posts..."
1949
-
1950
- #: ../../models/import/record.php:1357
1951
- msgid "Data parsing via add-ons..."
1952
- msgstr "Übersetze Daten mittels Add-on..."
1953
-
1954
- #: ../../models/import/record.php:1396
1955
- msgid "Calculate specified records to import..."
1956
- msgstr "Berechne spezifizierte Datensätze für den Import..."
1957
-
1958
- #: ../../models/import/record.php:1417
1959
- msgid "---"
1960
- msgstr "---"
1961
-
1962
- #: ../../models/import/record.php:1418
1963
- #, php-format
1964
- msgid "Record #%s"
1965
- msgstr "Aufnahme #%s"
1966
-
1967
- #: ../../models/import/record.php:1422
1968
- msgid "<b>ACTION</b>: pmxi_before_post_import ..."
1969
- msgstr "<b>ACTION</b>: pmxi_before_post_import ..."
1970
-
1971
- #: ../../models/import/record.php:1430
1972
- msgid "<b>WARNING</b>: title is empty."
1973
- msgstr "<b>WARNUNG</b>: Titel ist leer."
1974
-
1975
- #: ../../models/import/record.php:1450
1976
- #, php-format
1977
- msgid "Combine all data for user %s..."
1978
- msgstr "Kombiniere alle Daten für Benutzer %s..."
1979
-
1980
- #: ../../models/import/record.php:1468
1981
- #, php-format
1982
- msgid "Combine all data for post `%s`..."
1983
- msgstr "Kombiniere alle Daten für post %s..."
1984
-
1985
- #: ../../models/import/record.php:1481
1986
- #, php-format
1987
- msgid "Find corresponding article among previously imported for post `%s`..."
1988
- msgstr "Finde zugehörige Artikel unter den vorherigen importieren Posts `%s`..."
1989
-
1990
- #: ../../models/import/record.php:1489
1991
- #, php-format
1992
- msgid "Duplicate post was found for post %s with unique key `%s`..."
1993
- msgstr ""
1994
- "Doppelter post wurde für post %s erkannt mit dem einzigartigen Schlüssel `%s`..."
1995
-
1996
- #: ../../models/import/record.php:1498
1997
- #, php-format
1998
- msgid "Duplicate post wasn't found with unique key `%s`..."
1999
- msgstr "Doppelter post wurde nicht erkannt mit dem einzigartigen Schlüssel `%s`..."
2000
-
2001
- #: ../../models/import/record.php:1512
2002
- #, php-format
2003
- msgid "Find corresponding article among database for post `%s`..."
2004
- msgstr "Finde zugehörige Artikel in der Datenbank für Posts `%s`..."
2005
-
2006
- #: ../../models/import/record.php:1525
2007
- #, php-format
2008
- msgid "Duplicate post was found for post `%s`..."
2009
- msgstr "Doppelter post wurde erkannt in post `%s`..."
2010
-
2011
- #: ../../models/import/record.php:1534
2012
- #, php-format
2013
- msgid "Duplicate post wasn'n found for post `%s`..."
2014
- msgstr "Doppelter post wurde nicht erkannt in post `%s`..."
2015
-
2016
- #: ../../models/import/record.php:1545
2017
- msgid "<b>SKIPPED</b>: by specified records option"
2018
- msgstr "<b>SKIPPED</b>: Von spezifizierter schreib Option"
2019
-
2020
- #: ../../models/import/record.php:1566
2021
- #, php-format
2022
- msgid "<b>SKIPPED</b>: By filter wp_all_import_is_post_to_update `%s`"
2023
- msgstr "<b>SKIPPED</b>: Von Filter: wp_all_import_is_post_to_update `%s`"
2024
-
2025
- #: ../../models/import/record.php:1583
2026
- #, php-format
2027
- msgid "<b>SKIPPED</b>: Previously imported record found for `%s`"
2028
- msgstr "<b>SKIPPED</b>: Vorherige Import Aufzeichnung gefunden für `%s`"
2029
-
2030
- #: ../../models/import/record.php:1598
2031
- #, php-format
2032
- msgid "Preserve taxonomies of already existing article for `%s`"
2033
- msgstr "Erhalte Taxonomien von bereits existierenden Artikeln `%s`"
2034
-
2035
- #: ../../models/import/record.php:1603
2036
- #, php-format
2037
- msgid ""
2038
- "<b>WARNING</b>: Unable to get current taxonomies for article #%d, updating with "
2039
- "those read from XML file"
2040
- msgstr ""
2041
- "<b>WARNING</b>: Erhalt von gegenwärtigen Taxonomien der Artikel #%d nicht möglich, "
2042
- "aktualisiere mit Daten der XML Datei."
2043
-
2044
- #: ../../models/import/record.php:1620
2045
- #, php-format
2046
- msgid "Preserve date of already existing article for `%s`"
2047
- msgstr "Erhalte Daten von bereits existierenden Artikeln `%s`"
2048
-
2049
- #: ../../models/import/record.php:1624
2050
- #, php-format
2051
- msgid "Preserve status of already existing article for `%s`"
2052
- msgstr "Erhalte Status von bereits existierenden Artikeln `%s`"
2053
-
2054
- #: ../../models/import/record.php:1628
2055
- #, php-format
2056
- msgid "Preserve content of already existing article for `%s`"
2057
- msgstr "Erhalte Inhalt von bereits existierenden Artikeln `%s`"
2058
-
2059
- #: ../../models/import/record.php:1632
2060
- #, php-format
2061
- msgid "Preserve title of already existing article for `%s`"
2062
- msgstr "Erhalte Titel von bereits existierenden Artikeln `%s`"
2063
-
2064
- #: ../../models/import/record.php:1636
2065
- #, php-format
2066
- msgid "Preserve slug of already existing article for `%s`"
2067
- msgstr "Erhalte slug von bereits existierenden Artikeln `%s`"
2068
-
2069
- #: ../../models/import/record.php:1644
2070
- #, php-format
2071
- msgid "Preserve excerpt of already existing article for `%s`"
2072
- msgstr "Erhalte Auszug von bereits existierenden Artikeln `%s`"
2073
-
2074
- #: ../../models/import/record.php:1648
2075
- #, php-format
2076
- msgid "Preserve menu order of already existing article for `%s`"
2077
- msgstr "Erhalte Menü von bereits existierenden Artikeln `%s`"
2078
-
2079
- #: ../../models/import/record.php:1652
2080
- #, php-format
2081
- msgid "Preserve post parent of already existing article for `%s`"
2082
- msgstr "Erhalte Post von bereits existierenden Artikeln `%s`"
2083
-
2084
- #: ../../models/import/record.php:1660
2085
- #, php-format
2086
- msgid "Preserve post author of already existing article for `%s`"
2087
- msgstr "Erhalte Post Autor von bereits existierenden Artikeln `%s`"
2088
-
2089
- #: ../../models/import/record.php:1678
2090
- #, php-format
2091
- msgid "Applying filter `pmxi_article_data` for `%s`"
2092
- msgstr "Benutze Filter `pmxi_article_data` für `%s`"
2093
-
2094
- #: ../../models/import/record.php:1690
2095
- #, php-format
2096
- msgid "Deleting attachments for `%s`"
2097
- msgstr "Lösche Anhänge für `%s`"
2098
-
2099
- #: ../../models/import/record.php:1695
2100
- #, php-format
2101
- msgid "Deleting images for `%s`"
2102
- msgstr "Lösche Bilder für `%s`"
2103
-
2104
- #: ../../models/import/record.php:1713
2105
- msgid "<b>SKIPPED</b>: by do not create new posts option."
2106
- msgstr "<b>SKIPPED</b>:erstelle keine neue post Optionen"
2107
-
2108
- #: ../../models/import/record.php:1785
2109
- #, php-format
2110
- msgid "<b>WARNING</b>: Unable to create cloaked link for %s"
2111
- msgstr "<b>WARNING</b>:Verhüllten Link erstellen nicht möglich %s"
2112
-
2113
- #: ../../models/import/record.php:1822
2114
- #, php-format
2115
- msgid "<b>CREATING</b> `%s` `%s`"
2116
- msgstr "<b>CREATING</b> `%s` `%s`"
2117
-
2118
- #: ../../models/import/record.php:1825
2119
- #, php-format
2120
- msgid "<b>UPDATING</b> `%s` `%s`"
2121
- msgstr "<b>UPDATING</b> `%s` `%s`"
2122
-
2123
- #: ../../models/import/record.php:1836 ../../models/import/record.php:1841 ../..
2124
- #: /models/import/record.php:2885
2125
- msgid "<b>ERROR</b>"
2126
- msgstr "<b>ERROR</b>"
2127
-
2128
- #: ../../models/import/record.php:1860
2129
- #, php-format
2130
- msgid "Associate post `%s` with current import ..."
2131
- msgstr "Verknüpfe post `%s` mit gegenwärtigen Import..."
2132
-
2133
- #: ../../models/import/record.php:1866
2134
- #, php-format
2135
- msgid "Associate post `%s` with post format %s ..."
2136
- msgstr "Verknüpfe post `%s` mit gegenwärtigen Format %s..."
2137
-
2138
- #: ../../models/import/record.php:1878
2139
- msgid "<b>CUSTOM FIELDS:</b>"
2140
- msgstr "<b>CUSTOM FIELDS:</b>"
2141
-
2142
- #: ../../models/import/record.php:1915
2143
- #, php-format
2144
- msgid ""
2145
- "- Custom field %s has been deleted for `%s` attempted to `update all custom fields` "
2146
- "setting ..."
2147
- msgstr ""
2148
- "- Individuelles Feld %s wurde gelöscht für `%s` ausgelöst durch `aktualisiere alle "
2149
- "individuellen Felder` Einstellungen... "
2150
-
2151
- #: ../../models/import/record.php:1928
2152
- #, php-format
2153
- msgid ""
2154
- "- Custom field %s has been deleted for `%s` attempted to `update only these custom "
2155
- "fields: %s, leave rest alone` setting ..."
2156
- msgstr ""
2157
- "- Individuelles Feld %s wurde gelöscht für `%s` ausgelöst durch `aktualisiere nur "
2158
- "diese individuellen Felder: %s, Rest bleibt leer` Einstellungen... "
2159
-
2160
- #: ../../models/import/record.php:1942
2161
- #, php-format
2162
- msgid ""
2163
- "- Custom field %s has been deleted for `%s` attempted to `leave these fields alone: "
2164
- "%s, update all other Custom Fields` setting ..."
2165
- msgstr ""
2166
- "- Individuelles Feld %s wurde gelöscht für `%s` ausgelöst durch `Lasse diese Felder "
2167
- "in Ruhe: %s, aktualisiere alle anderen individuellen Felder` Einstellungen... "
2168
-
2169
- #: ../../models/import/record.php:2013
2170
- #, php-format
2171
- msgid "- Custom field `%s` has been skipped attempted to record matching options ..."
2172
- msgstr ""
2173
- "-Benutzerdefiniertes Feld `%s` wurde übersprungen, versuche übereinstimmende "
2174
- "Optionen aufzuzeichnen..."
2175
-
2176
- #: ../../models/import/record.php:2021
2177
- msgid "- <b>ACTION</b>: pmxi_custom_field"
2178
- msgstr "- <b>ACTION</b>: pmxi_custom_field"
2179
-
2180
- #: ../../models/import/record.php:2049
2181
- #, php-format
2182
- msgid "- Custom field `%s` has been updated with value `%s` for post `%s` ..."
2183
- msgstr "-Benutzerdefiniertes Feld `%s` wurde mit Wert '`%s` für Post `%s` ..."
2184
-
2185
- #: ../../models/import/record.php:2050
2186
- msgid "- <b>ACTION</b>: pmxi_update_post_meta"
2187
- msgstr "- <b>ACTION</b>: pmxi_update_post_meta"
2188
-
2189
- #: ../../models/import/record.php:2090
2190
- msgid "<b>IMAGES:</b>"
2191
- msgstr "<b>IMAGES:</b>"
2192
-
2193
- #: ../../models/import/record.php:2094
2194
- #, php-format
2195
- msgid "<b>ERROR</b>: Target directory %s is not writable"
2196
- msgstr "<b>Fehler</b>: Ziel-Verzeichnis %s ist nicht beschreibbar"
2197
-
2198
- #: ../../models/import/record.php:2123
2199
- msgid "- Keep existing and add newest images ..."
2200
- msgstr "- Behalte existierende und ergänze neueste Bilder"
2201
-
2202
- #: ../../models/import/record.php:2205
2203
- #, php-format
2204
- msgid "- Importing image `%s` for `%s` ..."
2205
- msgstr "- Importiere Bild `%s` für `%s`..."
2206
-
2207
- #: ../../models/import/record.php:2219
2208
- msgid "- found base64_encoded image"
2209
- msgstr "- base64_codiertes Bild gefunden"
2210
-
2211
- #: ../../models/import/record.php:2490
2212
- #, php-format
2213
- msgid "- Post `%s` saved as Draft, because no images are downloaded successfully"
2214
- msgstr ""
2215
- "- Post `%s` als Entwurf gespeichert, da keine Bilder heruntergeladen werden konnten"
2216
-
2217
- #: ../../models/import/record.php:2499
2218
- #, php-format
2219
- msgid "Post `%s` saved as Draft, because no images are downloaded successfully"
2220
- msgstr ""
2221
- "Post `%s` als Entwurf gespeichert, da keine Bilder heruntergeladen werden konnten"
2222
-
2223
- #: ../../models/import/record.php:2549
2224
- msgid "<b>ATTACHMENTS:</b>"
2225
- msgstr "<b>ATTACHMENTS:</b>"
2226
-
2227
- #: ../../models/import/record.php:2552
2228
- #, php-format
2229
- msgid "- <b>ERROR</b>: Target directory %s is not writable"
2230
- msgstr "<b>Fehler</b>: Ziel-Verzeichnis %s ist nicht beschreibbar"
2231
-
2232
- #: ../../models/import/record.php:2561
2233
- #, php-format
2234
- msgid "- Importing attachments for `%s` ..."
2235
- msgstr "- Importiere Anhänge für `%s`..."
2236
-
2237
- #: ../../models/import/record.php:2593
2238
- #, php-format
2239
- msgid "- Filename for attachment was generated as %s"
2240
- msgstr "- Dateiname für Anhang wurde generiert als %s"
2241
-
2242
- #: ../../models/import/record.php:2598
2243
- #, php-format
2244
- msgid "- <b>WARNING</b>: Attachment file %s cannot be saved locally as %s"
2245
- msgstr "- <b>WARNUNG</b>: Anhang Datei %s kann lokal nicht gespeichert werden als %s"
2246
-
2247
- #: ../../models/import/record.php:2599
2248
- #, php-format
2249
- msgid "- <b>WP Error</b>: %s"
2250
- msgstr "- <b>WP Error</b>: %s"
2251
-
2252
- #: ../../models/import/record.php:2613
2253
- #, php-format
2254
- msgid "- File %s has been successfully downloaded"
2255
- msgstr "- Datei %s wurde erfolgreich heruntergeladen"
2256
-
2257
- #: ../../models/import/record.php:2629
2258
- #, php-format
2259
- msgid "- Attachment has been successfully created for post `%s`"
2260
- msgstr "- Anhang wurde erstellt für den Post `%s`"
2261
-
2262
- #: ../../models/import/record.php:2630 ../../models/import/record.php:2636
2263
- msgid "- <b>ACTION</b>: pmxi_attachment_uploaded"
2264
- msgstr "- <b>ACTION</b>: pmxi_attachment_uploaded"
2265
-
2266
- #: ../../models/import/record.php:2654
2267
- msgid "<b>TAXONOMIES:</b>"
2268
- msgstr "<b>TAXONOMIES:</b>"
2269
-
2270
- #: ../../models/import/record.php:2663
2271
- #, php-format
2272
- msgid "- Importing taxonomy `%s` ..."
2273
- msgstr "- Importiere Taxonomie `%s`..."
2274
-
2275
- #: ../../models/import/record.php:2666
2276
- #, php-format
2277
- msgid "- Auto-nest enabled with separator `%s` ..."
2278
- msgstr "- Automatische Verschachtelung aktiviert mit Trennzeichen `%s`..."
2279
-
2280
- #: ../../models/import/record.php:2672
2281
- #, php-format
2282
- msgid ""
2283
- "- %s %s `%s` has been skipped attempted to `Leave these taxonomies alone, update all "
2284
- "others`..."
2285
- msgstr ""
2286
- "- %s %s `%s` wurde übersprungen durch den Versuch `Lasse die Taxonomien in Ruhe, "
2287
- "aktualisiere alle anderen`..."
2288
-
2289
- #: ../../models/import/record.php:2677
2290
- #, php-format
2291
- msgid ""
2292
- "- %s %s `%s` has been skipped attempted to `Update only these taxonomies, leave the "
2293
- "rest alone`..."
2294
- msgstr ""
2295
- "- %s %s `%s` wurde übersprungen durch den Versuch `Aktualisiere nur diese "
2296
- "Taxonomien, lasse den Rest in ruhe`..."
2297
-
2298
- #: ../../models/import/record.php:2714
2299
- #, php-format
2300
- msgid "- Creating parent %s %s `%s` ..."
2301
- msgstr "- Erstelle aktuell %s %s `%s` ..."
2302
-
2303
- #: ../../models/import/record.php:2717
2304
- #, php-format
2305
- msgid "- Creating child %s %s for %s named `%s` ..."
2306
- msgstr "- Erstelle Kind %s %s für %s Name: `%s` ..."
2307
-
2308
- #: ../../models/import/record.php:2724
2309
- #, php-format
2310
- msgid "- <b>WARNING</b>: `%s`"
2311
- msgstr "- <b>WARNING</b>: `%s`"
2312
-
2313
- #: ../../models/import/record.php:2745
2314
- #, php-format
2315
- msgid ""
2316
- "- Attempted to create parent %s %s `%s`, duplicate detected. Importing %s to "
2317
- "existing `%s` %s, ID %d, slug `%s` ..."
2318
- msgstr ""
2319
- "- Versuche Eltern Element zu erstellen %s %s `%s`, Duplikat entdeckt. Importiere %s "
2320
- "in existierendes` %s` %s, ID %d, slug `%s`..."
2321
-
2322
- #: ../../models/import/record.php:2748
2323
- #, php-format
2324
- msgid ""
2325
- "- Attempted to create child %s %s `%s`, duplicate detected. Importing %s to existing "
2326
- "`%s` %s, ID %d, slug `%s` ..."
2327
- msgstr ""
2328
- "- Versuche Kind Element zu erstellen %s %s `%s`, Duplikat entdeckt. Importiere %s in "
2329
- "existierendes` %s` %s, ID %d, slug `%s`..."
2330
-
2331
- #: ../../models/import/record.php:2763
2332
- #, php-format
2333
- msgid ""
2334
- "- %s %s `%s` has been skipped attempted to `Do not update Taxonomies (incl. "
2335
- "Categories and Tags)`..."
2336
- msgstr ""
2337
- "- %s %s `%s` wurde übersprungen durch den Versuch `Taxonomien nicht aktualisieren "
2338
- "( incl. Kategorien und Tags)`..."
2339
-
2340
- #: ../../models/import/record.php:2782
2341
- #, php-format
2342
- msgid "<b>CREATED</b> `%s` `%s` (ID: %s)"
2343
- msgstr "<b>CREATED</b> `%s` `%s` (ID: %s)"
2344
-
2345
- #: ../../models/import/record.php:2784
2346
- #, php-format
2347
- msgid "<b>UPDATED</b> `%s` `%s` (ID: %s)"
2348
- msgstr "<b>UPDATED</b> `%s` `%s` (ID: %s)"
2349
-
2350
- #: ../../models/import/record.php:2825
2351
- msgid "<b>ACTION</b>: pmxi_saved_post"
2352
- msgstr "<b>ACTION</b>: pmxi_saved_post"
2353
-
2354
- #: ../../models/import/record.php:2832
2355
- #, php-format
2356
- msgid ""
2357
- "<span class=\"processing_info\"><span class=\"created_count\">%s</span><span class="
2358
- "\"updated_count\">%s</span><span class=\"percents_count\">%s</span></span>"
2359
- msgstr ""
2360
- "<span class=\"processing_info\"><span class=\"created_count\">%s</span><span class="
2361
- "\"updated_count\">%s</span><span class=\"percents_count\">%s</span></span>"
2362
-
2363
- #: ../../models/import/record.php:2836
2364
- msgid "<b>ACTION</b>: pmxi_after_post_import"
2365
- msgstr "<b>ACTION</b>: pmxi_after_post_import"
2366
-
2367
- #: ../../models/import/record.php:2865
2368
- msgid "Update stock status previously imported posts which are no longer actual..."
2369
- msgstr ""
2370
- "Aktualisiere Lager Status vorherig importierter Posts welche nicht länger aktuell "
2371
- "sind..."
2372
-
2373
- #: ../../models/import/record.php:2889
2374
- msgid "Cleaning temporary data..."
2375
- msgstr "Reinige temporäre Daten..."
2376
-
2377
- #: ../../models/import/record.php:2905
2378
- msgid "Deleting source XML file..."
2379
- msgstr "Lösche Ursprüngliche XML Datei..."
2380
-
2381
- #: ../../models/import/record.php:2909
2382
- msgid "Deleting chunks files..."
2383
- msgstr "Lösche Block Dateien..."
2384
-
2385
- #: ../../models/import/record.php:2916 ../../models/import/record.php:2925
2386
- #, php-format
2387
- msgid "<b>WARNING</b>: Unable to remove %s"
2388
- msgstr "<b>WARNING</b>: Entfernen nicht möglich %s"
2389
-
2390
- #: ../../models/import/record.php:2937
2391
- msgid "Removing previously imported posts which are no longer actual..."
2392
- msgstr "Entferne vorher importierte Posts welche nicht länger aktuell sind..."
2393
-
2394
- #: ../../models/import/record.php:2959
2395
- msgid "<b>ACTION</b>: pmxi_delete_post"
2396
- msgstr "<b>ACTION</b>: pmxi_delete_post"
2397
-
2398
- #: ../../models/import/record.php:2961
2399
- msgid "Deleting posts from database"
2400
- msgstr "Lösche Posts aus der Datenbank"
2401
-
2402
- #: ../../models/import/record.php:2977
2403
- #, php-format
2404
- msgid "Instead of deletion post with ID `%s`, set Custom Field `%s` to value `%s`"
2405
- msgstr ""
2406
- "Anstatt die Posts mit der ID `%s` zu löschen, setze Individuelles Feld `%s` auf Wert "
2407
- "`%s`"
2408
-
2409
- #: ../../models/import/record.php:2985
2410
- #, php-format
2411
- msgid "Instead of deletion, change post with ID `%s` status to Draft"
2412
- msgstr "Anstatt die Posts mit der ID `%s` zu löschen, setze Status auf Entwurf"
2413
-
2414
- #: ../../models/import/record.php:3118
2415
- msgid "<b>ERROR</b> Could not insert term relationship into the database"
2416
- msgstr ""
2417
- "<b>ERROR</b> Einfügen von Beziehungen der Begriff in die Datenbank nicht möglich"
2418
-
2419
- #: ../../views/admin/addons/index.php:3
2420
- msgid "WP All Import Add-ons"
2421
- msgstr "WP All Import Add-ons"
2422
-
2423
- #: ../../views/admin/addons/index.php:8
2424
- msgid "Premium Add-ons"
2425
- msgstr "Premium Add-ons"
2426
-
2427
- #: ../../views/admin/addons/index.php:20 ../../views/admin/addons/index.php:61
2428
- msgid "Installed"
2429
- msgstr "Installiert"
2430
-
2431
- #: ../../views/admin/addons/index.php:22
2432
- msgid "Free Version Installed"
2433
- msgstr "Gratis Version Installiert"
2434
-
2435
- #: ../../views/admin/addons/index.php:29 ../../views/admin/addons/index.php:70
2436
- msgid " required"
2437
- msgstr "Benötigt"
2438
-
2439
- #: ../../views/admin/addons/index.php:36 ../../views/admin/addons/index.php:77 ..
2440
- #: /../views/admin/addons/index.php:82 ../../views/admin/import/index.php:108
2441
- msgid "Download"
2442
- msgstr "Herunterladen"
2443
-
2444
- #: ../../views/admin/addons/index.php:41
2445
- msgid "Purchase & Install"
2446
- msgstr "Bezahlen & Installieren"
2447
-
2448
- #: ../../views/admin/addons/index.php:49
2449
- msgid "Free Add-ons"
2450
- msgstr "Gratis Add-ons"
2451
-
2452
- #: ../../views/admin/addons/index.php:63
2453
- msgid "Paid Version Installed"
2454
- msgstr "Bezahlte Version Installiert"
2455
-
2456
- #: ../../views/admin/help/index.php:1
2457
- msgid "WP All Import Help"
2458
- msgstr "WP All Import Hilfe"
2459
-
2460
- #: ../../views/admin/history/index.php:16 ../../views/admin/history/index.php:18 .
2461
- #: ../views/admin/history/index.php:20
2462
- #, php-format
2463
- msgid "%s - Import History"
2464
- msgstr "%s - Import Chronik"
2465
-
2466
- #: ../../views/admin/history/index.php:32 ../../views/admin/manage/index.php:27
2467
- msgid "ID"
2468
- msgstr "ID"
2469
-
2470
- #: ../../views/admin/history/index.php:34
2471
- msgid "Run Time"
2472
- msgstr "Laufzeit"
2473
-
2474
- #: ../../views/admin/history/index.php:35
2475
- msgid "Type"
2476
- msgstr "Typ"
2477
-
2478
- #: ../../views/admin/history/index.php:36 ../../views/admin/manage/index.php:30
2479
- msgid "Summary"
2480
- msgstr "Zusammenfassung"
2481
-
2482
- #: ../../views/admin/history/index.php:42
2483
- msgid "Scheduling Status"
2484
- msgstr "Planung Status"
2485
-
2486
- #: ../../views/admin/history/index.php:42
2487
- msgid "triggered"
2488
- msgstr "ausgelöst"
2489
-
2490
- #: ../../views/admin/history/index.php:42
2491
- msgid "and processing"
2492
- msgstr "und bearbeitend"
2493
-
2494
- #: ../../views/admin/history/index.php:52 ../../views/admin/history/index.php:226
2495
- #: ../../views/admin/manage/index.php:44 ../../views/admin/manage/index.php:350
2496
- msgid "Bulk Actions"
2497
- msgstr "Massen Aktion"
2498
-
2499
- #: ../../views/admin/history/index.php:53 ../../views/admin/history/index.php:228
2500
- #: ../../views/admin/manage/index.php:45 ../../views/admin/manage/index.php:192 ..
2501
- #: /../views/admin/manage/index.php:352
2502
- msgid "Delete"
2503
- msgstr "Löschen"
2504
-
2505
- #: ../../views/admin/history/index.php:55 ../../views/admin/history/index.php:234
2506
- #: ../../views/admin/import/element.php:86 ../../views/admin/manage/index.php:47 .
2507
- #: ../views/admin/manage/index.php:358
2508
- msgid "Apply"
2509
- msgstr "Anwenden"
2510
-
2511
- #: ../../views/admin/history/index.php:61 ../../views/admin/manage/index.php:53
2512
- #, php-format
2513
- msgid "Displaying %s&#8211;%s of %s"
2514
- msgstr "Zeige %s&#8211;%s von %s"
2515
-
2516
- #: ../../views/admin/history/index.php:108
2517
- msgid "No previous history found."
2518
- msgstr "Keine vorherige Chronik gefunden."
2519
-
2520
- #: ../../views/admin/history/index.php:161
2521
- msgid "manual run"
2522
- msgstr "Manueller Lauf"
2523
-
2524
- #: ../../views/admin/history/index.php:164
2525
- msgid "continue run"
2526
- msgstr "Lauf fortsetzen"
2527
-
2528
- #: ../../views/admin/history/index.php:189
2529
- msgid "Download Log"
2530
- msgstr "Download Log"
2531
-
2532
- #: ../../views/admin/history/index.php:193
2533
- msgid "Log Unavailable"
2534
- msgstr "Log nicht verfügbar"
2535
-
2536
- #: ../../views/admin/history/index.php:230 ../../views/admin/manage/index.php:354
2537
- msgid "Restore"
2538
- msgstr "Wiederherstellen"
2539
-
2540
- #: ../../views/admin/history/index.php:231 ../../views/admin/manage/index.php:355
2541
- msgid "Delete Permanently"
2542
- msgstr "Permanent Löschen"
2543
-
2544
- #: ../../views/admin/history/index.php:238 ../../views/admin/import/confirm.php: 337
2545
- #: ../../views/admin/import/element.php:213 ../../views/admin/import/index. php:286
2546
- #: ../../views/admin/import/options.php:73 ../.. /views/admin/import/process.php:107
2547
- #: ../../views/admin/import/template.php:219 . ../views/admin/manage/index.php:363
2548
- #: ../../views/admin/manage/scheduling.php: 62 ../../views/admin/settings/index.php:212
2549
- msgid "Created by"
2550
- msgstr "Erstellt von"
2551
-
2552
- #: ../../views/admin/import/confirm.php:12 ../../views/admin/import/element.php:9
2553
- #: ../../views/admin/import/index.php:44 ../../views/admin/import/options.php:19 .
2554
- #: ../views/admin/import/process.php:9 ../../views/admin/import/template.php:10
2555
- msgid "Import XML / CSV"
2556
- msgstr "Importiere XML / CSV"
2557
-
2558
- #: ../../views/admin/import/confirm.php:15 ../../views/admin/import/element.php: 12
2559
- #: ../../views/admin/import/index.php:47 ../../views/admin/import/options.php: 22
2560
- #: ../../views/admin/import/process.php:12 ../../views/admin/import/template. php:13
2561
- msgid "Support"
2562
- msgstr "Support"
2563
-
2564
- #: ../../views/admin/import/confirm.php:15 ../../views/admin/import/element.php: 12
2565
- #: ../../views/admin/import/index.php:47 ../../views/admin/import/options.php: 22
2566
- #: ../../views/admin/import/process.php:12 ../../views/admin/import/template. php:13
2567
- msgid "Documentation"
2568
- msgstr "Dokumentation"
2569
-
2570
- #: ../../views/admin/import/confirm.php:56
2571
- msgid "Your file is all set up!"
2572
- msgstr "Ihre Datei ist bereit!"
2573
-
2574
- #: ../../views/admin/import/confirm.php:58
2575
- msgid "This import did not finish successfuly last time it was run."
2576
- msgstr "Dieser Import wurde beim letzten mal nicht erfolgreich beendet."
2577
-
2578
- #: ../../views/admin/import/confirm.php:62
2579
- msgid "Check the settings below, then click the green button to run the import."
2580
- msgstr ""
2581
- "Überprüfen Sie die Einstellungen unten, und klicken Sie auf den grünen Button um den "
2582
- "Import zu starten."
2583
-
2584
- #: ../../views/admin/import/confirm.php:64
2585
- msgid "You can attempt to continue where it left off."
2586
- msgstr "Versuchen Sie an der letzten Stelle fortzusetzen."
2587
-
2588
- #: ../../views/admin/import/confirm.php:72 ../../views/admin/import/confirm.php:326
2589
- msgid "Confirm & Run Import"
2590
- msgstr "Bestätigen & Import starten"
2591
-
2592
- #: ../../views/admin/import/confirm.php:82
2593
- msgid "Continue from the last run"
2594
- msgstr "Vom letzten Lauf fortsetzen"
2595
-
2596
- #: ../../views/admin/import/confirm.php:86
2597
- msgid "Run from the beginning"
2598
- msgstr "Starte von Beginn"
2599
-
2600
- #: ../../views/admin/import/confirm.php:89 ../../views/admin/import/process.php:82
2601
- msgid "Continue Import"
2602
- msgstr "Import Fortsetzen"
2603
-
2604
- #: ../../views/admin/import/confirm.php:91
2605
- msgid "Run entire import from the beginning"
2606
- msgstr "Starte gesamten Import von Vorne"
2607
-
2608
- #: ../../views/admin/import/confirm.php:110
2609
- msgid "Import Summary"
2610
- msgstr "Import Zusammenfassung"
2611
-
2612
- #: ../../views/admin/import/confirm.php:116
2613
- #, php-format
2614
- msgid "Your max_execution_time is %s seconds"
2615
- msgstr "Ihre max_execution_time ist %s Sekunden"
2616
-
2617
- #: ../../views/admin/import/confirm.php:140
2618
- #, php-format
2619
- msgid ""
2620
- "WP All Import will import the file <span style=\"color:#40acad;\">%s</span>, which "
2621
- "is <span style=\"color:#000; font-weight:bold;\">%s</span>"
2622
- msgstr ""
2623
- "WP All Import wird die Datei <span style=\"color:#40acad;\">%s</span> importieren, "
2624
- "welche <span style=\"color:#000; font-weight:bold;\">%s</span>ist."
2625
-
2626
- #: ../../views/admin/import/confirm.php:140
2627
- msgid "undefined"
2628
- msgstr "Undefiniert"
2629
-
2630
- #: ../../views/admin/import/confirm.php:143
2631
- #, php-format
2632
- msgid ""
2633
- "WP All Import will process the records matching the XPath expression: <span style="
2634
- "\"color:#46ba69; font-weight:bold;\">%s</span>"
2635
- msgstr ""
2636
- "WP All Import bearbeitet die Datensätze die mit folgendem XPath Ausdruck: <span "
2637
- "style=\"color:#46ba69; font-weight:bold;\">%s</span>"
2638
-
2639
- #: ../../views/admin/import/confirm.php:145
2640
- #, php-format
2641
- msgid ""
2642
- "WP All Import will process <span style=\"color:#46ba69; font-weight:bold;\">%s</"
2643
- "span> rows in your file"
2644
- msgstr ""
2645
- "WP All Import bearbeitet <span style=\"color:#46ba69; font-weight:bold;\">%s</span> "
2646
- "Zeilen in Ihrer Datei"
2647
-
2648
- #: ../../views/admin/import/confirm.php:147
2649
- #, php-format
2650
- msgid ""
2651
- "WP All Import will process all %s <span style=\"color:#46ba69; font-weight:bold;"
2652
- "\">&lt;%s&gt;</span> records in your file"
2653
- msgstr ""
2654
- "WP All Import bearbeitet alle %s <span style=\"color:#46ba69; font-weight:bold;"
2655
- "\">&lt;%s&gt;</span> Datensätze in Ihrer Datei"
2656
-
2657
- #: ../../views/admin/import/confirm.php:151
2658
- #, php-format
2659
- msgid "WP All Import will process only specified records: %s"
2660
- msgstr "WP All Import bearbeitet nur die spezifizierten Datensätze: %s"
2661
-
2662
- #: ../../views/admin/import/confirm.php:159
2663
- #, php-format
2664
- msgid "Your unique key is <span style=\"color:#000; font-weight:bold;\">%s</span>"
2665
- msgstr ""
2666
- "Ihr einzigartiger Schlüssel ist <span style=\"color:#000; font-weight:bold;\">%s</"
2667
- "span>"
2668
-
2669
- #: ../../views/admin/import/confirm.php:163
2670
- #, php-format
2671
- msgid ""
2672
- "%ss previously imported by this import (ID: %s) with the same unique key will be "
2673
- "updated."
2674
- msgstr ""
2675
- "%ss vorher importiert von diesem Import (ID: %s) mit dem selben einzigartigen "
2676
- "Schlüssel werden aktualisiert."
2677
-
2678
- #: ../../views/admin/import/confirm.php:166
2679
- #, php-format
2680
- msgid ""
2681
- "%ss previously imported by this import (ID: %s) that aren't present for this run of "
2682
- "the import will be deleted."
2683
- msgstr ""
2684
- "%ss vorher importiert von diesem Import (ID: %s) die nicht präsent sind in diesem "
2685
- "Import lauf, werden gelöscht."
2686
-
2687
- #: ../../views/admin/import/confirm.php:170
2688
- #, php-format
2689
- msgid ""
2690
- "%ss previously imported by this import (ID: %s) that aren't present for this run of "
2691
- "the import will be set to draft."
2692
- msgstr ""
2693
- "%ss vorher importiert von diesem Import (ID: %s) die nicht präsent sind in diesem "
2694
- "Import lauf, werden auf Entwurf gesetzt."
2695
-
2696
- #: ../../views/admin/import/confirm.php:174
2697
- #, php-format
2698
- msgid ""
2699
- "Records with unique keys that don't match any unique keys from %ss created by "
2700
- "previous runs of this import (ID: %s) will be created."
2701
- msgstr ""
2702
- "Datensätze mit eindeutigem Schlüssel, die zu keinem Schlüssel von %ss passen, "
2703
- "erstellt von früheren Durchläufen dieses Import (ID:%s) werden erstellt."
2704
-
2705
- #: ../../views/admin/import/confirm.php:188
2706
- #, php-format
2707
- msgid ""
2708
- "WP All Import will merge data into existing %ss, matching the following criteria: %s"
2709
- msgstr ""
2710
- "WP All Import werden die Daten in bestehende %ss, mit folgenden Suchkriterien "
2711
- "zusammenzuführen:%s"
2712
-
2713
- #: ../../views/admin/import/confirm.php:191
2714
- msgid "Existing data will be updated with the data specified in this import."
2715
- msgstr ""
2716
- "Bestehende Daten werden mit den in diesem Import angegebenen Daten aktualisiert "
2717
- "werden."
2718
-
2719
- #: ../../views/admin/import/confirm.php:194
2720
- #, php-format
2721
- msgid ""
2722
- "Next %s data will be updated, <strong>all other data will be left alone</strong>"
2723
- msgstr ""
2724
- "Nächste %s Daten werden aktualisiert, <strong>alle anderen Daten werden in Ruhe "
2725
- "gelassen</strong>"
2726
-
2727
- #: ../../views/admin/import/confirm.php:197
2728
- msgid "status"
2729
- msgstr "Status"
2730
-
2731
- #: ../../views/admin/import/confirm.php:200
2732
- msgid "title"
2733
- msgstr "Titel"
2734
-
2735
- #: ../../views/admin/import/confirm.php:203
2736
- msgid "slug"
2737
- msgstr "Slug"
2738
-
2739
- #: ../../views/admin/import/confirm.php:206
2740
- msgid "content"
2741
- msgstr "Inhalt"
2742
-
2743
- #: ../../views/admin/import/confirm.php:209
2744
- msgid "excerpt"
2745
- msgstr "Ausschnitt"
2746
-
2747
- #: ../../views/admin/import/confirm.php:212
2748
- msgid "dates"
2749
- msgstr "Datum"
2750
-
2751
- #: ../../views/admin/import/confirm.php:215
2752
- msgid "menu order"
2753
- msgstr "Menü Reihenfolge"
2754
-
2755
- #: ../../views/admin/import/confirm.php:218
2756
- msgid "parent post"
2757
- msgstr "Eltern post"
2758
-
2759
- #: ../../views/admin/import/confirm.php:221
2760
- msgid "attachments"
2761
- msgstr "Anhänge"
2762
-
2763
- #: ../../views/admin/import/confirm.php:228
2764
- msgid "all advanced custom fields"
2765
- msgstr "Alle erweiterte benutzerdefinierte Felder"
2766
-
2767
- #: ../../views/admin/import/confirm.php:231
2768
- msgid "only ACF presented in import options"
2769
- msgstr "Nur ACF präsent in den Import Optionen"
2770
-
2771
- #: ../../views/admin/import/confirm.php:234
2772
- #, php-format
2773
- msgid "only these ACF : %s"
2774
- msgstr "Nur diese ACF: %s"
2775
-
2776
- #: ../../views/admin/import/confirm.php:237
2777
- #, php-format
2778
- msgid "all ACF except these: %s"
2779
- msgstr "Alle ACF ausser diese: %s"
2780
-
2781
- #: ../../views/admin/import/confirm.php:247
2782
- msgid "old images will be updated with new"
2783
- msgstr "Alte Bilder werden aktualisiert"
2784
-
2785
- #: ../../views/admin/import/confirm.php:250
2786
- msgid "only new images will be added"
2787
- msgstr "Nur neue Bilder werden hinzugefügt"
2788
-
2789
- #: ../../views/admin/import/confirm.php:260
2790
- msgid "all custom fields"
2791
- msgstr "Alle individuellen Felder"
2792
-
2793
- #: ../../views/admin/import/confirm.php:263
2794
- #, php-format
2795
- msgid "only these custom fields : %s"
2796
- msgstr "Nur diese individuellen Felder: %s"
2797
-
2798
- #: ../../views/admin/import/confirm.php:266
2799
- #, php-format
2800
- msgid "all cusom fields except these: %s"
2801
- msgstr "Alle individuellen Felder ausser diese: %s"
2802
-
2803
- #: ../../views/admin/import/confirm.php:276
2804
- msgid "remove existing taxonomies, add new taxonomies"
2805
- msgstr "Entferne bestehende Taxonomien, füge neue hinzu"
2806
-
2807
- #: ../../views/admin/import/confirm.php:279
2808
- msgid "only add new"
2809
- msgstr "Nur neue hinzufügen"
2810
-
2811
- #: ../../views/admin/import/confirm.php:282
2812
- #, php-format
2813
- msgid "update only these taxonomies: %s , leave the rest alone"
2814
- msgstr "Aktualisiere nur diese Taxonomien: %s, lasse den Rest in Ruhe"
2815
-
2816
- #: ../../views/admin/import/confirm.php:285
2817
- #, php-format
2818
- msgid "leave these taxonomies: %s alone, update all others"
2819
- msgstr "Lasse diese Taxonomien in Ruhe: %s, aktualisiere alle anderen"
2820
-
2821
- #: ../../views/admin/import/confirm.php:294
2822
- #, php-format
2823
- msgid "New %ss will be created from records that don't match the above criteria."
2824
- msgstr ""
2825
- "Neue %ss werden erstellt von den Datensätzen die nicht den oberen Kriterien "
2826
- "entsprechen."
2827
-
2828
- #: ../../views/admin/import/confirm.php:300
2829
- msgid ""
2830
- "High-Speed, Small File Processing enabled. Your import will fail if it takes longer "
2831
- "than your server's max_execution_time."
2832
- msgstr ""
2833
- "High-Speed, Bearbeitung kleiner Dateien aktiviert. Ihr Import wird fehlschlagen wenn "
2834
- "es länger dauert als Ihr Server max_execution_time."
2835
-
2836
- #: ../../views/admin/import/confirm.php:302
2837
- #, php-format
2838
- msgid ""
2839
- "Piece By Piece Processing enabled. %s records will be processed each iteration. If "
2840
- "it takes longer than your server's max_execution_time to process %s records, your "
2841
- "import will fail."
2842
- msgstr ""
2843
- "Stück für Stück Bearbeitung aktiviert. %s Datensätze werden mit jedem Durchlauf "
2844
- "bearbeitet. Wenn es länger dauert als Ihr Server max_execution_time benötigt für %s "
2845
- "Datensätze, wird Ihr Import fehlschlagen."
2846
-
2847
- #: ../../views/admin/import/confirm.php:306
2848
- #, php-format
2849
- msgid "Your file will be split into %s records chunks before processing."
2850
- msgstr "Ihre Datei wird geteilt in %s Datensatz Blöcke vor der Bearbeitung."
2851
-
2852
- #: ../../views/admin/import/confirm.php:310
2853
- msgid ""
2854
- "do_action calls will be disabled in wp_insert_post and wp_insert_attachment during "
2855
- "the import."
2856
- msgstr ""
2857
- "do_action Aufrufe werden deaktiviert in wp_insert_post und wp_insert_attachment "
2858
- "während des Imports."
2859
-
2860
- #: ../../views/admin/import/confirm.php:329
2861
- msgid "or go back to Step 4"
2862
- msgstr "oder gehe zurück zu Schritt 4"
2863
-
2864
- #: ../../views/admin/import/confirm.php:331
2865
- msgid "or go back to Manage Imports"
2866
- msgstr "oder gehe zurück zu Imports Verwalten"
2867
-
2868
- #: ../../views/admin/import/element.php:23 ../../views/admin/import/element.php:210
2869
- msgid "Continue to Step 3"
2870
- msgstr "Weiter zu Schritt 3"
2871
-
2872
- #: ../../views/admin/import/element.php:36
2873
- msgid "What element are you looking for?"
2874
- msgstr "Welches Element suchen Sie?"
2875
-
2876
- #: ../../views/admin/import/element.php:65
2877
- #, php-format
2878
- msgid "of <span class=\"wpallimport-elements-count-info\">%s</span>"
2879
- msgstr "von <span class=\"wpallimport-elements-count-info\">%s</span>"
2880
-
2881
- #: ../../views/admin/import/element.php:83
2882
- msgid "Set delimiter for CSV fields:"
2883
- msgstr "Setze Beschränkung für CSV Felder:"
2884
-
2885
- #: ../../views/admin/import/element.php:104
2886
- #, php-format
2887
- msgid ""
2888
- "Each <span>&lt;<span class=\"root_element\">%s</span>&gt;</span> element will be "
2889
- "imported into a <span>New %s</span>"
2890
- msgstr ""
2891
- "Jedes <span>&lt;<span class=\"root_element\">%s</span>&gt;</span> Element wird "
2892
- "importiert in ein <span>neues %s</span>"
2893
-
2894
- #: ../../views/admin/import/element.php:108
2895
- #, php-format
2896
- msgid ""
2897
- "Data in <span>&lt;<span class=\"root_element\">%s</span>&gt;</span> elements will be "
2898
- "imported to <span>%s</span>"
2899
- msgstr ""
2900
- "Daten in <span>&lt;<span class=\"root_element\">%s</span>&gt;</span> Element werden "
2901
- "Importiert in <span>%s</span>"
2902
-
2903
- #: ../../views/admin/import/element.php:113
2904
- msgid ""
2905
- "This doesn't look right, try manually selecting a different root element on the left."
2906
- msgstr ""
2907
- "Das sieht nicht korrekt aus, versuchen Sie auf der linken Seite manuell ein anderes "
2908
- "Wurzelelement zu wählen."
2909
-
2910
- #: ../../views/admin/import/element.php:125
2911
- msgid "Add Filtering Options"
2912
- msgstr "Füge Filteroptionen hinzu"
2913
-
2914
- #: ../../views/admin/import/element.php:132 ../../views/admin/import/element.php: 184
2915
- msgid "Element"
2916
- msgstr "Element"
2917
-
2918
- #: ../../views/admin/import/element.php:133 ../../views/admin/import/element.php: 185
2919
- msgid "Rule"
2920
- msgstr "Regel"
2921
-
2922
- #: ../../views/admin/import/element.php:134 ../../views/admin/import/element.php: 186
2923
- #: ../../views/admin/import/options/_reimport_options.php:42 ../..
2924
- #: /views/admin/import/options/_reimport_template.php:107
2925
- #: /views/admin/import/template/_custom_fields_template.php:40
2926
- #: /views/admin/import/template/_custom_fields_template.php:74
2927
- #: /views/admin/import/template/_custom_fields_template.php:283
2928
- #: /views/admin/import/template/_custom_fields_template.php:417
2929
- msgid "Value"
2930
- msgstr "Wert"
2931
-
2932
- #: ../../views/admin/import/element.php:140
2933
- msgid "Select Element"
2934
- msgstr "Wähle Element"
2935
-
2936
- #: ../../views/admin/import/element.php:146
2937
- msgid "Select Rule"
2938
- msgstr "Wähle Regel"
2939
-
2940
- #: ../../views/admin/import/element.php:147
2941
- msgid "equals"
2942
- msgstr "gleich"
2943
-
2944
- #: ../../views/admin/import/element.php:148
2945
- msgid "not equals"
2946
- msgstr "ungleich"
2947
-
2948
- #: ../../views/admin/import/element.php:149
2949
- msgid "greater than"
2950
- msgstr "grösser als"
2951
-
2952
- #: ../../views/admin/import/element.php:150
2953
- msgid "equals or greater than"
2954
- msgstr "gleich oder grösser als"
2955
-
2956
- #: ../../views/admin/import/element.php:151
2957
- msgid "less than"
2958
- msgstr "weniger als"
2959
-
2960
- #: ../../views/admin/import/element.php:152
2961
- msgid "equals or less than"
2962
- msgstr "gleich oder weniger als"
2963
-
2964
- #: ../../views/admin/import/element.php:153
2965
- msgid "contains"
2966
- msgstr "beinhaltet"
2967
-
2968
- #: ../../views/admin/import/element.php:154
2969
- msgid "not contains"
2970
- msgstr "beinhaltet nicht"
2971
-
2972
- #: ../../views/admin/import/element.php:155
2973
- msgid "is empty"
2974
- msgstr "ist leer"
2975
-
2976
- #: ../../views/admin/import/element.php:156
2977
- msgid "is not empty"
2978
- msgstr "ist nicht leer"
2979
-
2980
- #: ../../views/admin/import/element.php:163
2981
- msgid "Add Rule"
2982
- msgstr "Regel hinzufügen"
2983
-
2984
- #: ../../views/admin/import/element.php:172 ../..
2985
- #: /views/admin/import/options/_settings_template.php:88
2986
- msgid "XPath"
2987
- msgstr "XPath"
2988
-
2989
- #: ../../views/admin/import/element.php:187
2990
- msgid "Condition"
2991
- msgstr "Bedingung"
2992
-
2993
- #: ../../views/admin/import/element.php:192
2994
- msgid ""
2995
- "No filtering options. Add filtering options to only import records matching some "
2996
- "specified criteria."
2997
- msgstr ""
2998
- "Keine Filteroptionen. Füge Filteroptionen hinzu um nur Datensätze zu importieren, "
2999
- "die spezifische Kriterien erfüllen."
3000
-
3001
- #: ../../views/admin/import/element.php:197
3002
- msgid "Apply Filters To XPath"
3003
- msgstr "Wende Filter für XPath an"
3004
-
3005
- #: ../../views/admin/import/element.php:206
3006
- msgid "Back to Step 1"
3007
- msgstr "Zurück zu Schritt 1"
3008
-
3009
- #: ../../views/admin/import/evaluate.php:3
3010
- #, php-format
3011
- msgid "<span class=\"matches_count\">%s</span> <strong>%s</strong> will be imported"
3012
- msgstr "<span class=\"matches_count\">%s</span> <strong>%s</strong> wird importiert"
3013
-
3014
- #: ../../views/admin/import/evaluate.php:5
3015
- #, php-format
3016
- msgid "<span class=\"matches_count\">%s</span> <strong>%s</strong> %s will be imported"
3017
- msgstr "<span class=\"matches_count\">%s</span> <strong>%s</strong> %s wird importiert"
3018
-
3019
- #: ../../views/admin/import/evaluate.php:7
3020
- msgid "Click an element to select it, or scroll down to add filtering options."
3021
- msgstr ""
3022
- "Klicken Sie auf ein Element um es auszuwählen, oder scrollen Sie runter um "
3023
- "Filteroptionen hinzuzufügen."
3024
-
3025
- #: ../../views/admin/import/evaluate.php:9 ../..
3026
- #: /views/admin/import/evaluate_variations.php:5
3027
- msgid ""
3028
- "<strong>Note</strong>: Highlighting is turned off since can be very slow on large "
3029
- "sets of elements."
3030
- msgstr ""
3031
- "<strong>Note</strong>: Hervorhebung ist ausgeschaltet, da es bei grosser Elementzahl "
3032
- "verlangsamen kann."
3033
-
3034
- #: ../../views/admin/import/evaluate_variations.php:3
3035
- #, php-format
3036
- msgid "Current selection matches <span class=\"matches_count\">%s</span> %s."
3037
- msgstr "Gegenwärtige Selektion passt bei <span class=\"matches_count\">%s</span> %s."
3038
-
3039
- #: ../../views/admin/import/evaluate_variations.php:14
3040
- #, php-format
3041
- msgid "#<strong>%s</strong> out of <strong>%s</strong>"
3042
- msgstr "#<strong>%s</strong> aus <strong>%s</strong>"
3043
-
3044
- #: ../../views/admin/import/index.php:69
3045
- msgid "First, specify how you want to import your data"
3046
- msgstr "Wählen Sie zuerst wie Sie die Daten importieren wollen"
3047
-
3048
- #: ../../views/admin/import/index.php:71
3049
- msgid "First, specify previously exported file"
3050
- msgstr "Spezifizieren Sie zuerst Ihre exportierte Datei"
3051
-
3052
- #: ../../views/admin/import/index.php:72
3053
- msgid ""
3054
- "The data in this file can be modified, but the structure of the file (column/element "
3055
- "names) should not change."
3056
- msgstr ""
3057
- "Die Daten in dieser Datei können geändert werden, aber die Struktur (Spalte/Element "
3058
- "Namen) sollten sich nicht ändern."
3059
-
3060
- #: ../../views/admin/import/index.php:76 ../..
3061
- #: /views/admin/import/options/_import_file.php:74
3062
- msgid "Upload a file"
3063
- msgstr "Datei hochladen"
3064
-
3065
- #: ../../views/admin/import/index.php:80 ../..
3066
- #: /views/admin/import/options/_import_file.php:78
3067
- msgid "Download from URL"
3068
- msgstr "Download von URL"
3069
-
3070
- #: ../../views/admin/import/index.php:84 ../..
3071
- #: /views/admin/import/options/_import_file.php:82
3072
- msgid "Use existing file"
3073
- msgstr "Nutze bestehende Datei"
3074
-
3075
- #: ../../views/admin/import/index.php:94 ../..
3076
- #: /views/admin/import/options/_import_file.php:92
3077
- msgid "Click here to select file from your computer..."
3078
- msgstr "Hier klicken um Datei von Ihrem Computer zu wählen..."
3079
-
3080
- #: ../../views/admin/import/index.php:112
3081
- msgid ""
3082
- "<strong>Hint:</strong> After you create this import, you can schedule it to run "
3083
- "automatically, on a pre-defined schedule, with cron jobs. If anything in your file "
3084
- "has changed, WP All Import can update your site with the changed data automatically."
3085
- msgstr ""
3086
- "<strong>Hint:</strong> Nachdem Sie diesen Import erstellt haben, können Sie mit cron "
3087
- "Jobs planen ihn automatisch auszuführen. Sollte sich in Ihrer Datei etwas ändern, "
3088
- "kann WP All Import Ihre Seite mit den geänderten Daten automatisch aktualisieren."
3089
-
3090
- #: ../../views/admin/import/index.php:151 ../..
3091
- #: /views/admin/import/options/_import_file.php:144
3092
- msgid "Select a previously uploaded file"
3093
- msgstr "Wählen Sie eine vorher Hochgeladene Datei"
3094
-
3095
- #: ../../views/admin/import/index.php:160 ../..
3096
- #: /views/admin/import/options/_import_file.php:156
3097
- #, php-format
3098
- msgid "Upload files to <strong>%s</strong> and they will appear in this list"
3099
- msgstr ""
3100
- "Laden Sie eine Datei in <strong>%s</strong> hoch und sie erscheint in dieser Liste"
3101
-
3102
- #: ../../views/admin/import/index.php:174
3103
- msgid "Import data from this file into..."
3104
- msgstr "Importiere Daten von dieser Datei in..."
3105
-
3106
- #: ../../views/admin/import/index.php:178
3107
- msgid "New Items"
3108
- msgstr "Neue Artikel"
3109
-
3110
- #: ../../views/admin/import/index.php:182
3111
- msgid "Existing Items"
3112
- msgstr "Bestehende Artikel"
3113
-
3114
- #: ../../views/admin/import/index.php:204
3115
- msgid "Create new"
3116
- msgstr "Erstelle neue"
3117
-
3118
- #: ../../views/admin/import/index.php:205
3119
- msgid "Import to existing"
3120
- msgstr "Importiere in bestehende"
3121
-
3122
- #: ../../views/admin/import/index.php:208
3123
- msgid "for each record in my data file."
3124
- msgstr "für jeden Datensatz in der Datei."
3125
-
3126
- #: ../../views/admin/import/index.php:209
3127
- msgid "and update some or all of their data."
3128
- msgstr "und aktualisiere einige von den Daten."
3129
-
3130
- #: ../../views/admin/import/index.php:238
3131
- msgid ""
3132
- "In Step 4, you will map the records in your file to the existing items on your site "
3133
- "and specify which data points will be updated and which will be left alone."
3134
- msgstr ""
3135
- "In Schritt 4 können Sie die Datensätze Ihrer Datei mit den existierenden Artikeln "
3136
- "Ihrer Seite zusammenführen und bestimmen welche Daten aktualisiert werden und welche "
3137
- "nicht."
3138
-
3139
- #: ../../views/admin/import/index.php:239
3140
- msgid ""
3141
- "The Existing Items option is commonly used to update existing products with new "
3142
- "stock quantities while leaving all their other data alone, update properties on your "
3143
- "site with new pricing, etc."
3144
- msgstr ""
3145
- "Die bestehende Artikel Option wird normalerweise genutzt um bestehende Produkte mit "
3146
- "neuen Zahlen für die Lagerhaltung zu aktualisieren, während die anderen Daten "
3147
- "unberührt bleiben. Aktualisieren Sie andere Eigenschaften wie neue Preise, etc."
3148
-
3149
- #: ../../views/admin/import/index.php:280
3150
- msgid "Skip to Step 4"
3151
- msgstr "Überspringe zu Schritt 4"
3152
-
3153
- #: ../../views/admin/import/index.php:281
3154
- msgid "Continue to Step 2"
3155
- msgstr "Weiter zu Schritt 2"
3156
-
3157
- #: ../../views/admin/import/options.php:88 ../..
3158
- #: /views/admin/import/options/_reimport_template.php:14
3159
- #: /views/admin/import/options/_reimport_template.php:81
3160
- msgid "Record Matching"
3161
- msgstr "Datensatz Abgleich"
3162
-
3163
- #: ../../views/admin/import/options.php:91
3164
- msgid ""
3165
- "Record Matching is how WP All Import matches records in your file with posts that "
3166
- "already exist WordPress."
3167
- msgstr ""
3168
- "Datensatz Abgleich ist der Vorgang von WP All Import in dem Datensätze in Ihrer "
3169
- "Datei mit bereits bestehenden Posts in WordPress abgeglichen werden."
3170
-
3171
- #: ../../views/admin/import/options.php:95
3172
- msgid ""
3173
- "Record Matching is most commonly used to tell WP All Import how to match up records "
3174
- "in your file with posts WP All Import has already created on your site, so that if "
3175
- "your file is updated with new data, WP All Import can update your posts accordingly."
3176
- msgstr ""
3177
- "Datensatz Abgleich wird meistens genutzt um WP All Import mitzuteilen wie die "
3178
- "Datensätze in Ihrer Datei mit den Posts abgeglichen werden sollen, die WP All Import "
3179
- "bereits auf Ihrer Seite erstellt hat. So kann WP All Import Änderungen in Ihrer "
3180
- "Datei direkt in die Posts übertragen."
3181
-
3182
- #: ../../views/admin/import/options.php:100
3183
- msgid "AUTOMATIC RECORD MATCHING"
3184
- msgstr "AUTOMATISCHER DATENSATZ ABGLEICH"
3185
-
3186
- #: ../../views/admin/import/options.php:103
3187
- msgid ""
3188
- "Automatic Record Matching allows WP All Import to update records that were imported "
3189
- "or updated during the last run of this same import."
3190
- msgstr ""
3191
- "Automatischer Datensatz Abgleich erlaubt WP All Import die Datensätze zu "
3192
- "aktualisieren die während dem letzten Import importiert wurden."
3193
-
3194
- #: ../../views/admin/import/options.php:107
3195
- msgid ""
3196
- "Your unique key must be UNIQUE for each record in your feed. Make sure you get it "
3197
- "right - you can't change it later. You'll have to re-create your import."
3198
- msgstr ""
3199
- "Ihr einzigartiger Schlüssel muss EINZIGARTIG in jedem Datensatz Ihres Feeds sein. "
3200
- "Stellen Sie sicher dass Sie es korrekt haben - Sie können es später ändern. Sie "
3201
- "werden Ihren Import neu erstellen müssen."
3202
-
3203
- #: ../../views/admin/import/options.php:112
3204
- msgid "MANUAL RECORD MATCHING"
3205
- msgstr "MANUELLER DATENSATZ ABGLEICH"
3206
-
3207
- #: ../../views/admin/import/options.php:115
3208
- msgid ""
3209
- "Manual record matching allows WP All Import to update any records, even records that "
3210
- "were not imported with WP All Import, or are part of a different import."
3211
- msgstr ""
3212
- "Manueller Datensatz Abgleich erlaubt WP All Import alle Datensätze zu aktualisieren, "
3213
- "sogar Datensätze die nicht von WP All Import importiert wurden, oder die Teil eines "
3214
- "anderen Imports sind."
3215
-
3216
- #: ../../views/admin/import/preview.php:6 ../../views/admin/import/preview_images.
3217
- #: php:6 ../../views/admin/import/preview_prices.php:6 ../..
3218
- #: /views/admin/import/preview_taxonomies.php:6 ../../views/admin/import/tag.php:8
3219
- #, php-format
3220
- msgid ""
3221
- "<strong><input type=\"text\" value=\"%s\" name=\"tagno\" class=\"tagno\"/></"
3222
- "strong><span class=\"out_of\"> of <strong class=\"pmxi_count\">%s</strong></span>"
3223
- msgstr ""
3224
- "<strong><input type=\"text\" value=\"%s\" name=\"tagno\" class=\"tagno\"/></"
3225
- "strong><span class=\"out_of\"> von <strong class=\"pmxi_count\">%s</strong></span>"
3226
-
3227
- #: ../../views/admin/import/preview_images.php:60
3228
- msgid "Retrieving images..."
3229
- msgstr "Bilder wiederherstellen..."
3230
-
3231
- #: ../../views/admin/import/preview_images.php:64
3232
- msgid "WP All Import will import images from the following file paths:"
3233
- msgstr "WP All Import wird Bilder von folgenden Pfaden importieren:"
3234
-
3235
- #: ../../views/admin/import/preview_images.php:65
3236
- msgid "Please ensure the images exists at these file paths"
3237
- msgstr "Bitte gehen Sie sicher, dass die Bilder bei diesen Pfaden existieren"
3238
-
3239
- #: ../../views/admin/import/preview_images.php:73 ../..
3240
- #: /views/admin/import/preview_images.php:115
3241
- #: /views/admin/import/preview_images.php:153
3242
- msgid "Here are the above URLs, in &lt;img&gt; tags. "
3243
- msgstr "Hier sind die obigen URLs in &lt;img&gt; tags. "
3244
-
3245
- #: ../../views/admin/import/preview_images.php:140
3246
- msgid "Download in progress..."
3247
- msgstr "Herunterladen in Fortschritt..."
3248
-
3249
- #: ../../views/admin/import/preview_images.php:144
3250
- msgid "WP All Import will attempt to import images from the following URLs:"
3251
- msgstr "WP All Import wird versuchen die Bilder von folgender URL zu importieren:"
3252
-
3253
- #: ../../views/admin/import/preview_images.php:145
3254
- msgid "Please check the URLs to ensure they point to valid images"
3255
- msgstr ""
3256
- "Bitte kontrollieren Sie die URL um sicher zu gehen dass sie auf korrekte Bilder "
3257
- "zeigen"
3258
-
3259
- #: ../../views/admin/import/preview_images.php:168
3260
- msgid "Images not found for current record."
3261
- msgstr "Keine Bilder gefunden für diesen Datensatz."
3262
-
3263
- #: ../../views/admin/import/preview_prices.php:16
3264
- msgid "Preview Prices"
3265
- msgstr "Vorschau Preis"
3266
-
3267
- #: ../../views/admin/import/preview_prices.php:18
3268
- msgid "Regular Price"
3269
- msgstr "Regulärer Preis"
3270
-
3271
- #: ../../views/admin/import/preview_prices.php:19
3272
- msgid "Sale Price"
3273
- msgstr "Angebotspreis"
3274
-
3275
- #: ../../views/admin/import/preview_taxonomies.php:16
3276
- msgid "Test Taxonomies Hierarchy"
3277
- msgstr "Teste Taxonomie Hierarchie "
3278
-
3279
- #: ../../views/admin/import/process.php:21
3280
- msgid "Import <span id=\"status\">in Progress</span>"
3281
- msgstr "Import <span id=\"status\">in Bearbeitung</span>"
3282
-
3283
- #: ../../views/admin/import/process.php:22
3284
- msgid ""
3285
- "Importing may take some time. Please do not close your browser or refresh the page "
3286
- "until the process is complete."
3287
- msgstr ""
3288
- "Der Import wird einige Zeit benötigen. Bitte nicht den Browser schliessen oder "
3289
- "aktualisieren während die Bearbeitung läuft."
3290
-
3291
- #: ../../views/admin/import/process.php:29
3292
- msgid "Time Elapsed"
3293
- msgstr "Zeit vergangen"
3294
-
3295
- #: ../../views/admin/import/process.php:31
3296
- msgid "Created"
3297
- msgstr "Erstellt"
3298
-
3299
- #: ../../views/admin/import/process.php:31
3300
- msgid "Updated"
3301
- msgstr "Aktualisiert"
3302
-
3303
- #: ../../views/admin/import/process.php:31
3304
- msgid "of"
3305
- msgstr "von"
3306
-
3307
- #: ../../views/admin/import/process.php:31 ../..
3308
- #: /views/admin/import/options/_settings_template.php:23
3309
- msgid "records"
3310
- msgstr "Datensätze"
3311
-
3312
- #: ../../views/admin/import/process.php:38
3313
- msgid "Import Complete!"
3314
- msgstr "Import abgeschlossen"
3315
-
3316
- #: ../../views/admin/import/process.php:40
3317
- msgid "Duplicate records detected during import"
3318
- msgstr "Datensatz Duplikate während des Imports festgestellt"
3319
-
3320
- #: ../../views/admin/import/process.php:40
3321
- msgid ""
3322
- "The unique identifier is how WP All Import tells two items in your import file "
3323
- "apart. If it is the same for two items, then the first item will be overwritten when "
3324
- "the second is imported."
3325
- msgstr ""
3326
- "Die einzigartige ID ermöglicht es WP All Import zwei Artikel in Ihrer Datei "
3327
- "unterscheiden zu können. Wenn dieser für zwei Artikel gleich ist, dann wird der "
3328
- "erste überschrieben wenn der zweite importiert wird."
3329
-
3330
- #: ../../views/admin/import/process.php:42
3331
- #, php-format
3332
- msgid ""
3333
- "The file you are importing has %s records, but WP All Import only created <span "
3334
- "class=\"inserted_count\"></span> %s. It detected the other records in your file as "
3335
- "duplicates. This could be because they actually are duplicates or it could be "
3336
- "because your Unique Identifier is not unique for each record.<br><br>If your import "
3337
- "file has no duplicates and you want to import all %s records, you should delete "
3338
- "everything that was just imported and then edit your Unique Identifier so it's "
3339
- "unique for each item."
3340
- msgstr ""
3341
- "Die Datei die Sie importieren hat %s Datensätze, aber WP All Import erstellte nur "
3342
- "<span class=\"inserted_count\"></span> %s. Es erkannte die anderen Datensätze in "
3343
- "Ihrer Datei als Duplikate. Entweder weil es Duplikate sind oder weil Ihre "
3344
- "einzigartige ID nicht einzigartig für jeden Datensatz ist. <br><br>Wenn Ihre Import "
3345
- "Datei keine Duplikate hat und Sie alle Datensätze %s importieren wollen, sollten Sie "
3346
- "alles Löschen was gerade importiert wurde und dann Ihre einzigartige ID ändern, so "
3347
- "dass dieser einzigartig für jeden Artikel ist."
3348
-
3349
- #: ../../views/admin/import/process.php:44
3350
- msgid "Delete & Edit"
3351
- msgstr "Löschen & Ändern"
3352
-
3353
- #: ../../views/admin/import/process.php:46
3354
- #, php-format
3355
- msgid ""
3356
- "WP All Import successfully imported your file <span>%s</span> into your WordPress "
3357
- "installation!"
3358
- msgstr ""
3359
- "WP All Import hat Ihre Datei <span>%s</span> erfolgreich in Ihre WordPress "
3360
- "Installation importiert!"
3361
-
3362
- #: ../../views/admin/import/process.php:48 ../../views/admin/import/process.php:50
3363
- #, php-format
3364
- msgid ""
3365
- "There were <span class=\"wpallimport-errors-count\">%s</span> errors and <span class="
3366
- "\"wpallimport-warnings-count\">%s</span> warnings in this import. You can see these "
3367
- "in the import log."
3368
- msgstr ""
3369
- "Es gab <span class=\"wpallimport-errors-count\">%s</span> Fehler und <span class="
3370
- "\"wpallimport-warnings-count\">%s</span> Warnungen in diesem Import. Sie können "
3371
- "diese im Import Log sehen."
3372
-
3373
- #: ../../views/admin/import/process.php:53
3374
- msgid "View Logs"
3375
- msgstr "Logs ansehen"
3376
-
3377
- #: ../../views/admin/import/process.php:89
3378
- msgid "Log"
3379
- msgstr "Log"
3380
-
3381
- #: ../../views/admin/import/tag.php:5
3382
- msgid "Elements"
3383
- msgstr "Elemente"
3384
-
3385
- #: ../../views/admin/import/tag.php:27
3386
- msgid "History file not found. Probably you are using wrong encoding."
3387
- msgstr "Chronik Datei nicht gefunden. Eventuell nutzen Sie eine andere Codierung."
3388
-
3389
- #: ../../views/admin/import/template.php:41
3390
- msgid "Title & Content"
3391
- msgstr "Titel & Inhalt"
3392
-
3393
- #: ../../views/admin/import/template.php:48
3394
- msgid "Drag & drop any element on the right to set the title."
3395
- msgstr "Drag & drop ein Element von der rechten Seite um den Titel zu setzen."
3396
-
3397
- #: ../../views/admin/import/template.php:67
3398
- msgid "WooCommerce Short Description"
3399
- msgstr "WooCommerce Kurzbeschreibung"
3400
-
3401
- #: ../../views/admin/import/template.php:71 ../..
3402
- #: /views/admin/import/template/_taxonomies_template.php:138
3403
- msgid "Preview"
3404
- msgstr "Vorschau"
3405
-
3406
- #: ../../views/admin/import/template.php:77
3407
- msgid "Advanced Options"
3408
- msgstr "Erweiterte Optionen"
3409
-
3410
- #: ../../views/admin/import/template.php:84
3411
- msgid "Keep line breaks from file"
3412
- msgstr "Behalte Zeilenumbruch der Datei"
3413
-
3414
- #: ../../views/admin/import/template.php:89
3415
- msgid "Decode HTML entities with <b>html_entity_decode</b>"
3416
- msgstr "Dekodiere HTML Entitäten mit <b>html_entity_decode</b>"
3417
-
3418
- #: ../../views/admin/import/template.php:182
3419
- msgid "Save settings as a template"
3420
- msgstr "Speichere Einstellungen als Vorlage"
3421
-
3422
- #: ../../views/admin/import/template.php:185
3423
- msgid "Template name..."
3424
- msgstr "Vorlagen Name..."
3425
-
3426
- #: ../../views/admin/import/template.php:190
3427
- msgid "Load Template..."
3428
- msgstr "Lade Vorlage..."
3429
-
3430
- #: ../../views/admin/import/template.php:210
3431
- msgid "Back to Step 2"
3432
- msgstr "Zurück zu Schritt 2"
3433
-
3434
- #: ../../views/admin/import/template.php:212 ../..
3435
- #: /views/admin/import/options/_buttons_template.php:21
3436
- msgid "Back to Manage Imports"
3437
- msgstr "Zurück zur Import Verwaltung"
3438
-
3439
- #: ../../views/admin/import/options/_buttons_template.php:2
3440
- msgid "To run the import, click Run Import on the Manage Imports page."
3441
- msgstr ""
3442
- "Um den Import zu starten, klicken Sie auf Starte Import auf der Imports verwalten "
3443
- "Seite."
3444
-
3445
- #: ../../views/admin/import/options/_buttons_template.php:11
3446
- msgid "Back to Step 3"
3447
- msgstr "Zurück zu Schritt 3"
3448
-
3449
- #: ../../views/admin/import/options/_buttons_template.php:15
3450
- msgid "Save Only"
3451
- msgstr "Nur Speichern"
3452
-
3453
- #: ../../views/admin/import/options/_buttons_template.php:18
3454
- msgid "Continue"
3455
- msgstr "Weiter"
3456
-
3457
- #: ../../views/admin/import/options/_buttons_template.php:22
3458
- msgid "Save Import Configuration"
3459
- msgstr "Speichere Import Einstellungen"
3460
-
3461
- #: ../../views/admin/import/options/_import_file.php:62
3462
- msgid "Import File"
3463
- msgstr "Importiere Datei"
3464
-
3465
- #: ../../views/admin/import/options/_import_file.php:71
3466
- msgid "Specify the location of the file to use for future runs of this import."
3467
- msgstr "Bestimmen Sie den Ort der Datei für zukünftige Läufe dieses Imports."
3468
-
3469
- #: ../../views/admin/import/options/_import_file.php:106
3470
- msgid "Upload"
3471
- msgstr "Hochladen"
3472
-
3473
- #: ../../views/admin/import/options/_reimport_options.php:2
3474
- msgid "When WP All Import finds new or changed data..."
3475
- msgstr "Wenn WP All Import neue oder geänderte Daten findet..."
3476
-
3477
- #: ../../views/admin/import/options/_reimport_options.php:9
3478
- msgid "Create new posts from records newly present in your file"
3479
- msgstr "Erstelle neue Posts von Datensätzen die neu sind in Ihrer Datei"
3480
-
3481
- #: ../../views/admin/import/options/_reimport_options.php:11
3482
- msgid ""
3483
- "New posts will only be created when ID column is present and value in ID column is "
3484
- "unique."
3485
- msgstr ""
3486
- "Neue Posts werden nur erstellt wenn die spalte ID vorhanden ist und der Wert in der "
3487
- "Spalte ID einzigartig ist."
3488
-
3489
- #: ../../views/admin/import/options/_reimport_options.php:18
3490
- msgid "Delete posts that are no longer present in your file"
3491
- msgstr "Lösche Posts die nicht länger vorhanden sind in der Datei"
3492
-
3493
- #: ../../views/admin/import/options/_reimport_options.php:27
3494
- msgid "Do not remove attachments"
3495
- msgstr "Anhänge nicht entfernen"
3496
-
3497
- #: ../../views/admin/import/options/_reimport_options.php:32
3498
- msgid "Do not remove images"
3499
- msgstr "Bilder nicht entfernen"
3500
-
3501
- #: ../../views/admin/import/options/_reimport_options.php:37
3502
- msgid "Instead of deletion, set Custom Field"
3503
- msgstr "Anstatt zu löschen, setze individuelles Feld"
3504
-
3505
- #: ../../views/admin/import/options/_reimport_options.php:40 ../..
3506
- #: /views/admin/import/options/_reimport_template.php:105
3507
- #: /views/admin/import/template/_custom_fields_template.php:39
3508
- msgid "Name"
3509
- msgstr "Name"
3510
-
3511
- #: ../../views/admin/import/options/_reimport_options.php:50
3512
- msgid "Instead of deletion, change post status to Draft"
3513
- msgstr "Anstatt zu löschen, ändere den Status des Posts auf Entwurf"
3514
-
3515
- #: ../../views/admin/import/options/_reimport_options.php:57
3516
- msgid "Update existing posts with changed data in your file"
3517
- msgstr "Aktualisiere existierende Posts mit geänderten Daten in Ihrer Datei"
3518
-
3519
- #: ../../views/admin/import/options/_reimport_options.php:63
3520
- msgid "Update all data"
3521
- msgstr "Aktualisiere alle Daten"
3522
-
3523
- #: ../../views/admin/import/options/_reimport_options.php:66
3524
- msgid "Choose which data to update"
3525
- msgstr "Wählen Sie welch Daten aktualisiert werden sollen"
3526
-
3527
- #: ../../views/admin/import/options/_reimport_options.php:71
3528
- msgid "Post status"
3529
- msgstr "Post Status"
3530
-
3531
- #: ../../views/admin/import/options/_reimport_options.php:72
3532
- msgid "Hint: uncheck this box to keep trashed posts in the trash."
3533
- msgstr ""
3534
- "Hinweis: Deaktivieren Sie dieses Kästchen, um Posts im Papierkorb im Papierkorb zu "
3535
- "lassen."
3536
-
3537
- #: ../../views/admin/import/options/_reimport_options.php:77 ../..
3538
- #: /views/admin/import/options/_reimport_template.php:98
3539
- msgid "Title"
3540
- msgstr "Titel"
3541
-
3542
- #: ../../views/admin/import/options/_reimport_options.php:82
3543
- msgid "Author"
3544
- msgstr "Autor "
3545
-
3546
- #: ../../views/admin/import/options/_reimport_options.php:87 ../..
3547
- #: /views/admin/import/template/_other_template.php:279
3548
- msgid "Slug"
3549
- msgstr "Slug"
3550
-
3551
- #: ../../views/admin/import/options/_reimport_options.php:92 ../..
3552
- #: /views/admin/import/options/_reimport_template.php:100
3553
- msgid "Content"
3554
- msgstr "Inhalt"
3555
-
3556
- #: ../../views/admin/import/options/_reimport_options.php:97
3557
- msgid "Excerpt/Short Description"
3558
- msgstr "Auszug / Kurzbeschreibung"
3559
-
3560
- #: ../../views/admin/import/options/_reimport_options.php:102
3561
- msgid "Dates"
3562
- msgstr "Datum"
3563
-
3564
- #: ../../views/admin/import/options/_reimport_options.php:107
3565
- msgid "Menu order"
3566
- msgstr "Menü Reihenfolge"
3567
-
3568
- #: ../../views/admin/import/options/_reimport_options.php:112
3569
- msgid "Parent post"
3570
- msgstr "Eltern post"
3571
-
3572
- #: ../../views/admin/import/options/_reimport_options.php:122
3573
- msgid "Attachments"
3574
- msgstr "Anhänge"
3575
-
3576
- #: ../../views/admin/import/options/_reimport_options.php:136
3577
- msgid ""
3578
- "This will keep the featured image if it exists, so you could modify the post image "
3579
- "manually, and then do a reimport, and it would not overwrite the manually modified "
3580
- "post image."
3581
- msgstr ""
3582
- "Dies wird die featured Bilder behalten wenn diese existieren, so können Sie die "
3583
- "Bilder der Posts manuell ändern und dann einen Reimport machen. Dies wird die "
3584
- "manuell geänderten Bilder nicht überschreiben."
3585
-
3586
- #: ../../views/admin/import/options/_reimport_options.php:140
3587
- msgid "Update all images"
3588
- msgstr "Aktualisiere alle Bilder "
3589
-
3590
- #: ../../views/admin/import/options/_reimport_options.php:146
3591
- msgid "Don't touch existing images, append new images"
3592
- msgstr "Fasse existierende Bilder nicht an, hänge neue Bilder an"
3593
-
3594
- #: ../../views/admin/import/options/_reimport_options.php:155 ../..
3595
- #: /views/admin/import/template/_custom_fields_template.php:5
3596
- msgid "Custom Fields"
3597
- msgstr "Individuelle Felder"
3598
-
3599
- #: ../../views/admin/import/options/_reimport_options.php:156
3600
- msgid ""
3601
- "If Keep Custom Fields box is checked, it will keep all Custom Fields, and add any "
3602
- "new Custom Fields specified in Custom Fields section, as long as they do not "
3603
- "overwrite existing fields. If 'Only keep this Custom Fields' is specified, it will "
3604
- "only keep the specified fields."
3605
- msgstr ""
3606
- "Wenn die Box: Behalte individuelle Felder markiert ist, wird es alle individuellen "
3607
- "Felder behalten und neue hinzufügen die im Abschnitt individuelle Felder bestimmt "
3608
- "wurden, solange sie bestehende Felder nicht überschreiben. Wenn 'Nur dieses "
3609
- "individuelle Feld behalten' markiert ist, wird es nur die bestimmten Felder behalten."
3610
-
3611
- #: ../../views/admin/import/options/_reimport_options.php:160
3612
- msgid "Update all Custom Fields"
3613
- msgstr "Aktualisiere alle individuellen Felder"
3614
-
3615
- #: ../../views/admin/import/options/_reimport_options.php:164
3616
- msgid "Update only these Custom Fields, leave the rest alone"
3617
- msgstr "Aktualisiere nur diese individuellen Felder, lasse den Rest in Ruhe"
3618
-
3619
- #: ../../views/admin/import/options/_reimport_options.php:172
3620
- msgid "Leave these fields alone, update all other Custom Fields"
3621
- msgstr "Lasse den Rest in Ruhe, aktualisiere alle anderen individuellen Felder"
3622
-
3623
- #: ../../views/admin/import/options/_reimport_options.php:184
3624
- msgid "Taxonomies (incl. Categories and Tags)"
3625
- msgstr "Taxonomien ( incl. Kategorien und Tags)"
3626
-
3627
- #: ../../views/admin/import/options/_reimport_options.php:198
3628
- msgid "Leave these taxonomies alone, update all others"
3629
- msgstr "Lasse die Taxonomien in Ruhe, aktualisiere alle anderen"
3630
-
3631
- #: ../../views/admin/import/options/_reimport_options.php:206
3632
- msgid "Update only these taxonomies, leave the rest alone"
3633
- msgstr "Aktualisiere nur diese Taxonomien, lasse den Rest in Ruhe"
3634
-
3635
- #: ../../views/admin/import/options/_reimport_options.php:214
3636
- msgid "Remove existing taxonomies, add new taxonomies"
3637
- msgstr "Entferne bestehende Taxonomien, füge neue hinzu"
3638
-
3639
- #: ../../views/admin/import/options/_reimport_options.php:218
3640
- msgid "Only add new"
3641
- msgstr "Nur neue hinzufügen"
3642
-
3643
- #: ../../views/admin/import/options/_reimport_template.php:22
3644
- msgid "Choose how exported data will be re-imported."
3645
- msgstr "Wähle wie exportierte Daten erneut importiert werden."
3646
-
3647
- #: ../../views/admin/import/options/_reimport_template.php:28
3648
- #, php-format
3649
- msgid "WP All Import will create new %s for each unique record in your file."
3650
- msgstr ""
3651
- "WP All Import wird neue %s erstellen, für jeden einzigartigen Datensatz in Ihrer "
3652
- "Datei."
3653
-
3654
- #: ../../views/admin/import/options/_reimport_template.php:41
3655
- #, php-format
3656
- msgid ""
3657
- "WP All Import will associate records in your file with %s it has already created "
3658
- "from previous runs of this import based on the Unique Identifier."
3659
- msgstr ""
3660
- "WP All Import verknüpft die Datensätze in Ihrer Datei mit %s die es bereits bei "
3661
- "früheren Läufen erstellt hat, basierend auf der einzigartigen ID."
3662
-
3663
- #: ../../views/admin/import/options/_reimport_template.php:44
3664
- msgid "Unique Identifier"
3665
- msgstr "Einzigartige ID"
3666
-
3667
- #: ../../views/admin/import/options/_reimport_template.php:50 ../..
3668
- #: /views/admin/import/options/_reimport_template.php:61
3669
- msgid "Auto-detect"
3670
- msgstr "Automatische Erkennung"
3671
-
3672
- #: ../../views/admin/import/options/_reimport_template.php:53 ../..
3673
- #: /views/admin/manage/index.php:318
3674
- msgid "Edit"
3675
- msgstr "Ändern"
3676
-
3677
- #: ../../views/admin/import/options/_reimport_template.php:54
3678
- msgid "Warning: Are you sure you want to edit the Unique Identifier?"
3679
- msgstr "Warnung: Sind Sie sicher dass Sie die einzigartige ID ändern wollen?"
3680
-
3681
- #: ../../views/admin/import/options/_reimport_template.php:55
3682
- #, php-format
3683
- msgid ""
3684
- "It is recommended you delete all %s associated with this import before editing the "
3685
- "unique identifier."
3686
- msgstr ""
3687
- "Es wird empfohlen dass Sie alle %s löschen, die mit diesem Import zusammenhängen. "
3688
- "Bevor Sie die einzigartige ID Löschen."
3689
-
3690
- #: ../../views/admin/import/options/_reimport_template.php:56
3691
- #, php-format
3692
- msgid ""
3693
- "Editing the unique identifier will dissociate all existing %s linked to this import. "
3694
- "Future runs of the import will result in duplicates, as WP All Import will no longer "
3695
- "be able to update these %s."
3696
- msgstr ""
3697
- "Ändern der einzigartigen ID wird alle existierenden %s zu diesem Import trennen. "
3698
- "Zukünftige Läufe des Importes wird in Duplikaten enden, da es WP All Import nicht "
3699
- "möglich sein wird diese zu aktualisieren: %s."
3700
-
3701
- #: ../../views/admin/import/options/_reimport_template.php:57
3702
- msgid ""
3703
- "You really should just re-create your import, and pick the right unique identifier "
3704
- "to start with."
3705
- msgstr ""
3706
- "Sie sollten wirklich Ihren Import neu erstellen und die richtige einzigartige ID "
3707
- "wählen."
3708
-
3709
- #: ../../views/admin/import/options/_reimport_template.php:67
3710
- msgid ""
3711
- "Drag an element, or combo of elements, to the box above. The Unique Identifier "
3712
- "should be unique for each record in your file, and should stay the same even if your "
3713
- "file is updated. Things like product IDs, titles, and SKUs are good Unique "
3714
- "Identifiers because they probably won't change. Don't use a description or price, "
3715
- "since that might be changed."
3716
- msgstr ""
3717
- "Ziehen Sie ein Element, oder eine Kombination von Element in die Box oben. Die "
3718
- "einzigartige ID sollte einzigartig sein für jeden Datensatz in Ihrer Datei und "
3719
- "sollte sich nicht verändern, auch nicht wenn die Datei aktualisiert wird. Dinge wie "
3720
- "Produkt ID, Titel und SKU sind gute einzigartige IDs, da diese sich gewöhnlich nicht "
3721
- "ändern. Nutzen Sie keine Beschreibung oder Preis, da sich diese häufig ändern."
3722
-
3723
- #: ../../views/admin/import/options/_reimport_template.php:68
3724
- #, php-format
3725
- msgid ""
3726
- "If you run this import again with an updated file, the Unique Identifier allows WP "
3727
- "All Import to correctly link the records in your updated file with the %s it will "
3728
- "create right now. If multiple records in this file have the same Unique Identifier, "
3729
- "only the first will be created. The others will be detected as duplicates."
3730
- msgstr ""
3731
- "Wenn Sie diesen Import mit einer aktualisierten Datei erneut starten, erlaubt die "
3732
- "einzigartige ID dem Importer die Datensätze mit der aktualisierten Datei %s zu "
3733
- "verbinden. Wenn mehrere Datensätze in dieser Datei die selbe einzigartige ID haben, "
3734
- "wird nur der erste erstellt, die anderen werden als Duplikate erkannt."
3735
-
3736
- #: ../../views/admin/import/options/_reimport_template.php:83
3737
- #, php-format
3738
- msgid "WP All Import will merge data into existing %s."
3739
- msgstr "WP All Import wird die Daten zusammenfügen mit den existierenden %s."
3740
-
3741
- #: ../../views/admin/import/options/_reimport_template.php:93
3742
- #, php-format
3743
- msgid "Records in your file will be matched with %ss on your site based on..."
3744
- msgstr ""
3745
- "Datensätze in Ihrer Datei werden angepasst mit %ss auf Ihrer Seite basierend auf..."
3746
-
3747
- #: ../../views/admin/import/options/_reimport_template.php:103
3748
- msgid "Custom field"
3749
- msgstr "Individuelles Feld"
3750
-
3751
- #: ../../views/admin/import/options/_settings_template.php:4
3752
- msgid "Configure Advanced Settings"
3753
- msgstr "Bearbeite erweiterte Einstellungen"
3754
-
3755
- #: ../../views/admin/import/options/_settings_template.php:11
3756
- msgid "Import Speed Optimization"
3757
- msgstr "Importiere Geschwindigkeits Optimierung "
3758
-
3759
- #: ../../views/admin/import/options/_settings_template.php:15
3760
- msgid "High Speed Small File Processing"
3761
- msgstr "High-Speed Bearbeitung kleiner Dateien"
3762
-
3763
- #: ../../views/admin/import/options/_settings_template.php:15
3764
- msgid ""
3765
- "If the import takes longer than your server's timeout settings (max_execution_time, "
3766
- "mod_fcgid read data timeout, etc.) it will fail."
3767
- msgstr ""
3768
- "Wenn der Import länger dauert als Ihr Server timeout ist, (max_execution_time, "
3769
- "mod_fcgid read data timeout, etc.) wird er fehlschlagen."
3770
-
3771
- #: ../../views/admin/import/options/_settings_template.php:19
3772
- msgid "Iterative, Piece-by-Piece Processing"
3773
- msgstr "Wiederholende, Stück für Stück Bearbeitung"
3774
-
3775
- #: ../../views/admin/import/options/_settings_template.php:23
3776
- msgid "In each iteration, process"
3777
- msgstr "In jedem Durchlauf, bearbeiten"
3778
-
3779
- #: ../../views/admin/import/options/_settings_template.php:24
3780
- msgid ""
3781
- "WP All Import must be able to process this many records in less than your server's "
3782
- "timeout settings. If your import fails before completion, to troubleshoot you should "
3783
- "lower this number. If you are importing images, especially high resolution images, "
3784
- "high numbers here are probably a bad idea, since downloading the images can take "
3785
- "lots of time - for example, 20 posts with 5 images each = 100 images. At 500Kb per "
3786
- "image that's 50Mb that needs to be downloaded. Can your server download that before "
3787
- "timing out? If not, the import will fail."
3788
- msgstr ""
3789
- "WP All Import muss ermöglicht werden die Datensätze verarbeiten zu können innerhalb "
3790
- "Ihres Server timeouts. Wenn Ihr Import fehlschlägt bevor er fertig ist, sollten Sie "
3791
- "diese Zahl verringern. Wenn Sie Bilder importieren, speziell bei Hochauflösenden, "
3792
- "ist eine hohe Anzahl eine schlechte Idee. Da der Download viel Zeit in Anspruch "
3793
- "nehmen kann - Beispielsweise 20 Posts mit je 5 Bildern = 100 Bilder. Bei 500kb pro "
3794
- "Bild sind das 50Mb die heruntergeladen werden müssen. Kann Ihr Server das "
3795
- "herunterladen vor dem Timeout? Wenn nicht, wird der Import fehlschlagen."
3796
-
3797
- #: ../../views/admin/import/options/_settings_template.php:30
3798
- msgid ""
3799
- "This option will decrease the amount of slowdown experienced at the end of large "
3800
- "imports. The slowdown is partially caused by the need for WP All Import to read "
3801
- "deeper and deeper into the file on each successive iteration. Splitting the file "
3802
- "into pieces means that, for example, instead of having to read 19000 records into a "
3803
- "20000 record file when importing the last 1000 records, WP All Import will just "
3804
- "split it into 20 chunks, and then read the last chunk from the beginning."
3805
- msgstr ""
3806
- "Diese Option verringert die Anzahl der Verlangsamungen am Ende von grossen Importen. "
3807
- "Die Verlangsamung wird teilweise dadurch ausgelöst, dass WP All Import immer tiefer "
3808
- "und tiefer in der Datei liest, sukzessiv mit jedem Durchlauf. Eine Aufteilung der "
3809
- "Datei bedeutet beispielsweise, dass anstatt 19'000 Datensätze in 20'000 Datensätzen "
3810
- "zu lesen, wenn die letzten 1000 Datensätze importiert werden, eine Aufteilung in 20 "
3811
- "Datenblöcke erfolgt und dann der letzte Datenblock von Beginn gelesen wird."
3812
-
3813
- #: ../../views/admin/import/options/_settings_template.php:37
3814
- msgid "Increase speed by disabling do_action calls in wp_insert_post during import."
3815
- msgstr ""
3816
- "Steigere die Geschwindigkeit durch Deaktivierung von do_action Aufrufen in "
3817
- "wp_insert_post während dem Import."
3818
-
3819
- #: ../../views/admin/import/options/_settings_template.php:38
3820
- msgid ""
3821
- "This option is for advanced users with knowledge of WordPress development. Your "
3822
- "theme or plugins may require these calls when posts are created. Next action will be "
3823
- "disabled: 'transition_post_status', 'save_post', 'pre_post_update', "
3824
- "'add_attachment', 'edit_attachment', 'edit_post', 'post_updated', 'wp_insert_post'. "
3825
- "Verify your created posts work properly if you check this box."
3826
- msgstr ""
3827
- "Diese Option ist für fortgeschrittene Benutzer mit Kenntnissen in der WordPress "
3828
- "Entwicklung. Ihr Theme oder Plugin könnte diese Aufrufe benötigen wenn Posts "
3829
- "erstellt werden. Die nächste Aktion wird deaktiviert: 'transition_post_status', "
3830
- "'save_post', 'pre_post_update', 'add_attachment', 'edit_attachment', 'edit_post', "
3831
- "'post_updated', 'wp_insert_post'. Verifizieren Sie Ihre Posts und arbeiten Sie "
3832
- "sauber wenn Sie dieses Häkchen setzen."
3833
-
3834
- #: ../../views/admin/import/options/_settings_template.php:42
3835
- msgid "Post Type"
3836
- msgstr "Post Typ:"
3837
-
3838
- #: ../../views/admin/import/options/_settings_template.php:43
3839
- msgid ""
3840
- "Editing this will change the post type of the posts processed by this import. Re-run "
3841
- "the import for the changes to take effect."
3842
- msgstr ""
3843
- "Die Bearbeitung wird den post typ von den Posts dieses Imports ändern. Starten Sie "
3844
- "den Import erneut um die Änderungen zu erwirken."
3845
-
3846
- #: ../../views/admin/import/options/_settings_template.php:89
3847
- msgid ""
3848
- "Editing this can break your entire import. You will have to re-create it from "
3849
- "scratch."
3850
- msgstr ""
3851
- "Diese Bearbeitung kann Ihren gesamten Import unterbrechen. Sie werden ihn von Grund "
3852
- "auf neu erstellen müssen."
3853
-
3854
- #: ../../views/admin/import/options/_settings_template.php:101
3855
- msgid "Other"
3856
- msgstr "Sonstige"
3857
-
3858
- #: ../../views/admin/import/options/_settings_template.php:105
3859
- msgid "Import only specified records"
3860
- msgstr "Nur angegebene Datensätze importieren"
3861
-
3862
- #: ../../views/admin/import/options/_settings_template.php:105
3863
- msgid ""
3864
- "Enter records or record ranges separated by commas, e.g. <b>1,5,7-10</b> would "
3865
- "import the first, the fifth, and the seventh to tenth."
3866
- msgstr ""
3867
- "Geben Sie Datensätze oder Datensatz Bereiche durch Kommas getrennt an, z.B. "
3868
- "<b>1,5,7-10</b> wäre der erste, der fünfte und der siebte bis zehnte Import."
3869
-
3870
- #: ../../views/admin/import/options/_settings_template.php:116
3871
- msgid "Delete source XML file after importing"
3872
- msgstr "XML-Quelldatei nach dem Importieren löschen"
3873
-
3874
- #: ../../views/admin/import/options/_settings_template.php:116
3875
- msgid ""
3876
- "This setting takes effect only when script has access rights to perform the action, "
3877
- "e.g. file is not deleted when pulled via HTTP or delete permission is not granted to "
3878
- "the user that script is executed under."
3879
- msgstr ""
3880
- "Diese Einstellung nimmt nur Einfluss, wenn das Skript Zugriffsrechte auf die Aktion "
3881
- "hat. Bsp: Die Datei ist nicht gelöscht, wenn es mittelt HTTP gezogen wurde. Oder "
3882
- "eine Erlaubnis zum Löschen liegt für das Skript, das der Benutzer gestartet, hat "
3883
- "nicht vor."
3884
-
3885
- #: ../../views/admin/import/options/_settings_template.php:123
3886
- msgid "Auto-Cloak Links"
3887
- msgstr "Automatische Linkmaskierung"
3888
-
3889
- #: ../../views/admin/import/options/_settings_template.php:123
3890
- #, php-format
3891
- msgid ""
3892
- "Automatically process all links present in body of created post or page with <b>%s</"
3893
- "b> plugin"
3894
- msgstr ""
3895
- "Bearbeite automatisch alle Links die im Body des erstellten Posts oder der "
3896
- "erstellten Seite sind mit <b>%s</b> Plug-In"
3897
-
3898
- #: ../../views/admin/import/options/_settings_template.php:128
3899
- msgid "Friendly Name"
3900
- msgstr "Benutzerfreundlicher Name"
3901
-
3902
- #: ../../views/admin/import/template/_custom_fields_template.php:15
3903
- #, php-format
3904
- msgid "Your website is using Custom Fields to store data for %s."
3905
- msgstr "Ihre Website benutzt individuelle Felder zur Datenspeicherung von %s."
3906
-
3907
- #: ../../views/admin/import/template/_custom_fields_template.php:16
3908
- msgid "See Detected Fields"
3909
- msgstr "Siehe erkannte Felder"
3910
-
3911
- #: ../../views/admin/import/template/_custom_fields_template.php:18
3912
- #, php-format
3913
- msgid "No Custom Fields are present in your database for %s."
3914
- msgstr "Keine selbst erstellten Felder in der Datenbank für %s"
3915
-
3916
- #: ../../views/admin/import/template/_custom_fields_template.php:19
3917
- #, php-format
3918
- msgid ""
3919
- "Manually create a %s, and fill out each field you want to import data to. WP All "
3920
- "Import will then display these fields as available for import below."
3921
- msgstr ""
3922
- "Erstellen Sie Manuell ein %s und füllen Sie jedes Feld aus das Sie importieren "
3923
- "wollen. WP All Import wird diese Felder als Verfügbar für den Import anzeigen."
3924
-
3925
- #: ../../views/admin/import/template/_custom_fields_template.php:21 ../..
3926
- #: /views/admin/import/template/_custom_fields_template.php:29
3927
- msgid "Hide Notice"
3928
- msgstr "Hinweis ausblenden"
3929
-
3930
- #: ../../views/admin/import/template/_custom_fields_template.php:26
3931
- msgid "Clear All Fields"
3932
- msgstr "Alle Felder leeren"
3933
-
3934
- #: ../../views/admin/import/template/_custom_fields_template.php:28
3935
- #, php-format
3936
- msgid ""
3937
- "If not all fields were detected, manually create a %s, and fill out each field you "
3938
- "want to import data to. Then create a new import, and WP All Import will display "
3939
- "these fields as available for import below."
3940
- msgstr ""
3941
- "Wenn nicht alle Felder erkannt wurden, erstellen Sie manuell ein %s und füllen Sie "
3942
- "jedes Feld das Sie importieren wollen aus. Erstellen Sie dann einen neuen Import und "
3943
- "WP All Import wird diese Felder für den Import anzeigen."
3944
-
3945
- #: ../../views/admin/import/template/_custom_fields_template.php:55 ../..
3946
- #: /views/admin/import/template/_custom_fields_template.php:264
3947
- #: /views/admin/import/template/_custom_fields_template.php:398
3948
- msgid "Click to specify"
3949
- msgstr "Hier klicken zum Bestimmen"
3950
-
3951
- #: ../../views/admin/import/template/_custom_fields_template.php:60 ../..
3952
- #: /views/admin/import/template/_custom_fields_template.php:269
3953
- #: /views/admin/import/template/_custom_fields_template.php:403
3954
- msgid "Serialized"
3955
- msgstr "Fortsetzung"
3956
-
3957
- #: ../../views/admin/import/template/_custom_fields_template.php:73 ../..
3958
- #: /views/admin/import/template/_custom_fields_template.php:282
3959
- #: /views/admin/import/template/_custom_fields_template.php:416
3960
- msgid "Key"
3961
- msgstr "Schlüssel"
3962
-
3963
- #: ../../views/admin/import/template/_custom_fields_template.php:144 ../..
3964
- #: /views/admin/import/template/_custom_fields_template.php:524
3965
- msgid "Add Custom Field"
3966
- msgstr "Individuelles Feld hinzufügen"
3967
-
3968
- #: ../../views/admin/import/template/_custom_fields_template.php:150 ../..
3969
- #: /views/admin/import/template/_custom_fields_template.php:318
3970
- #: /views/admin/import/template/_custom_fields_template.php:452
3971
- msgid "Auto-Detect"
3972
- msgstr "Automatische Erkennung"
3973
-
3974
- #: ../../views/admin/import/template/_custom_fields_template.php:155 ../..
3975
- #: /views/admin/import/template/_custom_fields_template.php:323
3976
- #: /views/admin/import/template/_custom_fields_template.php:457
3977
- #: /views/admin/license/index.php:40
3978
- msgid "Save"
3979
- msgstr "Speichern"
3980
-
3981
- #: ../../views/admin/import/template/_featured_template.php:8
3982
- msgid "Show hints"
3983
- msgstr "Zeige Hinweise"
3984
-
3985
- #: ../../views/admin/import/template/_featured_template.php:19
3986
- msgid "Enter image URL one per line, or separate them with a "
3987
- msgstr "Geben Sie eine Bild URL pro Zeile ein, oder teilen Sie diese mit einem"
3988
-
3989
- #: ../../views/admin/import/template/_featured_template.php:29 ../..
3990
- #: /views/admin/import/template/_featured_template.php:39
3991
- msgid "Enter image filenames one per line, or separate them with a "
3992
- msgstr "Geben Sie einen Bildnamen pro Zeile ein, oder teilen Sie diese mit einem"
3993
-
3994
- #: ../../views/admin/import/template/_featured_template.php:49
3995
- msgid ""
3996
- "Search through the Media Library for existing images before importing new images"
3997
- msgstr ""
3998
- "Durchsuche die Medien Bibliothek nach existierenden Bildern bevor neue Bilder "
3999
- "importiert werden."
4000
-
4001
- #: ../../views/admin/import/template/_featured_template.php:50
4002
- msgid ""
4003
- "If an image with the same file name is found in the Media Library then that image "
4004
- "will be attached to this record instead of importing a new image. Disable this "
4005
- "setting if your import has different images with the same file name."
4006
- msgstr ""
4007
- "Wird ein Bild mit dem selben Dateinamen in der Medien Bibliothek gefunden, dann wird "
4008
- "dieses Bild an den Datensatz angehängt anstatt ein neues importiert. Deaktivieren "
4009
- "Sie diese Einstellung wenn Ihr Import mehrere Bilder mit dem selben Dateinamen hat."
4010
-
4011
- #: ../../views/admin/import/template/_featured_template.php:62
4012
- msgid "Preview & Test"
4013
- msgstr "Vorschau & Test"
4014
-
4015
- #: ../../views/admin/import/template/_featured_template.php:67
4016
- msgid "Set the first image to the Featured Image (_thumbnail_id)"
4017
- msgstr "Setze das erste Bild als Featured Bild (_thumbnail_id)"
4018
-
4019
- #: ../../views/admin/import/template/_featured_template.php:72
4020
- msgid "If no images are downloaded successfully, create entry as Draft."
4021
- msgstr ""
4022
- "Wenn keine Bilder heruntergeladen werden können, erstelle den Eintrag als Entwurf."
4023
-
4024
- #: ../../views/admin/import/template/_featured_template.php:83
4025
- msgid "SEO & Advanced Options"
4026
- msgstr "SEO & Erweiterte Optionen"
4027
-
4028
- #: ../../views/admin/import/template/_featured_template.php:91
4029
- msgid "Meta Data"
4030
- msgstr "Meta Daten"
4031
-
4032
- #: ../../views/admin/import/template/_featured_template.php:95
4033
- msgid "Set Title(s)"
4034
- msgstr "SEO Titel"
4035
-
4036
- #: ../../views/admin/import/template/_featured_template.php:97 ../..
4037
- #: /views/admin/import/template/_featured_template.php:108
4038
- #: /views/admin/import/template/_featured_template.php:119
4039
- msgid "Enter one per line, or separate them with a "
4040
- msgstr "Geben Sie eine pro Zeile ein, oder teilen Sie diese mit einem"
4041
-
4042
- #: ../../views/admin/import/template/_featured_template.php:99
4043
- msgid ""
4044
- "The first title will be linked to the first image, the second title will be linked "
4045
- "to the second image, ..."
4046
- msgstr ""
4047
- "Der erste Titel wird mit dem ersten Bild verlinkt, der zweite wird mit dem zweiten "
4048
- "Bild verlinkt, ..."
4049
-
4050
- #: ../../views/admin/import/template/_featured_template.php:106
4051
- msgid "Set Caption(s)"
4052
- msgstr "Setze Beschriftung"
4053
-
4054
- #: ../../views/admin/import/template/_featured_template.php:110
4055
- msgid ""
4056
- "The first caption will be linked to the first image, the second caption will be "
4057
- "linked to the second image, ..."
4058
- msgstr ""
4059
- "Die erste Beschriftung wird mit dem ersten Bild verlinkt, die zweite wird mit dem "
4060
- "zweiten Bild verlinkt, ..."
4061
-
4062
- #: ../../views/admin/import/template/_featured_template.php:117
4063
- msgid "Set Alt Text(s)"
4064
- msgstr "Setze alle Texte"
4065
-
4066
- #: ../../views/admin/import/template/_featured_template.php:121
4067
- msgid ""
4068
- "The first alt text will be linked to the first image, the second alt text will be "
4069
- "linked to the second image, ..."
4070
- msgstr ""
4071
- "Der erste Text wird mit dem ersten Bild verlinkt, der zweite wird mit dem zweiten "
4072
- "Bild verlinkt, ..."
4073
-
4074
- #: ../../views/admin/import/template/_featured_template.php:128
4075
- msgid "Set Description(s)"
4076
- msgstr "Setze Beschreibung(en)"
4077
-
4078
- #: ../../views/admin/import/template/_featured_template.php:139
4079
- msgid ""
4080
- "The first description will be linked to the first image, the second description will "
4081
- "be linked to the second image, ..."
4082
- msgstr ""
4083
- "Die erste Beschreibung wird mit dem ersten Bild verlinkt, die zweite wird mit dem "
4084
- "zweiten Bild verlinkt, ..."
4085
-
4086
- #: ../../views/admin/import/template/_featured_template.php:143 ../..
4087
- #: /views/admin/settings/index.php:79
4088
- msgid "Files"
4089
- msgstr "Dateien"
4090
-
4091
- #: ../../views/admin/import/template/_featured_template.php:149
4092
- msgid "Change image file names to"
4093
- msgstr "Ändere die Dateinamen der Bilder zu"
4094
-
4095
- #: ../../views/admin/import/template/_featured_template.php:152
4096
- msgid ""
4097
- "Multiple image will have numbers appended, i.e. image-name-1.jpg, image-name-2.jpg "
4098
- msgstr ""
4099
- "Mehrfachen Bildern werden Zahlen angehängt, Bsp: Bild-name-1.jpg,Bild-name-2.jpg"
4100
-
4101
- #: ../../views/admin/import/template/_featured_template.php:158
4102
- msgid "Change image file extensions"
4103
- msgstr "Ändere Bild Dateierweiterung"
4104
-
4105
- #: ../../views/admin/import/template/_featured_template.php:176
4106
- msgid ""
4107
- "WP All Import will automatically ignore elements with blank image URLs/filenames."
4108
- msgstr ""
4109
- "WP All Import wird automatisch die Elemente ignorieren die leere Bild URLs oder "
4110
- "Dateinamen haben."
4111
-
4112
- #: ../../views/admin/import/template/_featured_template.php:177
4113
- msgid ""
4114
- "WP All Import must download the images to your server. You can't have images in a "
4115
- "Gallery that are referenced by external URL. That's just how WordPress works."
4116
- msgstr ""
4117
- "WP All Import muss die Bilder auf Ihren Server laden. Sie können keine Bilder in "
4118
- "Ihrer Galerie haben die einen Link auf eine externe URL haben. So funktioniert "
4119
- "WordPress."
4120
-
4121
- #: ../../views/admin/import/template/_featured_template.php:178
4122
- #, php-format
4123
- msgid ""
4124
- "Importing a variable number of images can be done using a <a href=\"%s\" target="
4125
- "\"_blank\">FOREACH LOOP</a>"
4126
- msgstr ""
4127
- "Eine Variable Anzahl an Bildern zu importieren kann mittels <a href=\"%s\" target="
4128
- "\"_blank\">Schleifendurchlauf</a> durchgeführt werden."
4129
-
4130
- #: ../../views/admin/import/template/_featured_template.php:179
4131
- #, php-format
4132
- msgid ""
4133
- "For more information check out our <a href=\"%s\" target=\"_blank\">comprehensive "
4134
- "documentation</a>"
4135
- msgstr ""
4136
- "Für mehr Informationen schauen Sie doch in unserer <a href=\"%s\" target=\"_blank"
4137
- "\">Umfassender Dokumentation</a>"
4138
-
4139
- #: ../../views/admin/import/template/_nested_template.php:35
4140
- msgid "Nested XML/CSV files"
4141
- msgstr "Verschachtelte XML/CSV Dateien"
4142
-
4143
- #: ../../views/admin/import/template/_nested_template.php:48
4144
- msgid "remove"
4145
- msgstr "Entfernen"
4146
-
4147
- #: ../../views/admin/import/template/_nested_template.php:69
4148
- msgid "Specify the URL of the nested file to use."
4149
- msgstr "Bestimmen Sie die URL der verschachtelten Datei."
4150
-
4151
- #: ../../views/admin/import/template/_nested_template.php:73
4152
- msgid "Add"
4153
- msgstr "Hinzufügen"
4154
-
4155
- #: ../../views/admin/import/template/_other_template.php:5
4156
- #, php-format
4157
- msgid "Other %s Options"
4158
- msgstr "Andere %s Optionen"
4159
-
4160
- #: ../../views/admin/import/template/_other_template.php:17
4161
- msgid "Post Status"
4162
- msgstr "Post Status"
4163
-
4164
- #: ../../views/admin/import/template/_other_template.php:20
4165
- msgid "Published"
4166
- msgstr "Veröffentlicht"
4167
-
4168
- #: ../../views/admin/import/template/_other_template.php:24
4169
- msgid "Draft"
4170
- msgstr "Entwurf"
4171
-
4172
- #: ../../views/admin/import/template/_other_template.php:32
4173
- msgid ""
4174
- "The value of presented XPath should be one of the following: ('publish', 'draft', "
4175
- "'trash')."
4176
- msgstr ""
4177
- "Der Wert des gegenwärtigen XPath sollte einer der folgenden sein: "
4178
- "('veröffentlichen', 'Entwurf', 'Papierkorb')."
4179
-
4180
- #: ../../views/admin/import/template/_other_template.php:41
4181
- msgid "Post Dates"
4182
- msgstr "Post Datum"
4183
-
4184
- #: ../../views/admin/import/template/_other_template.php:41
4185
- msgid ""
4186
- "Use any format supported by the PHP <b>strtotime</b> function. That means pretty "
4187
- "much any human-readable date will work."
4188
- msgstr ""
4189
- "Benutzen Sie ein Format das von der PHP <b>strtotime</b> Funktion unterstützt wird. "
4190
- "Das bedeutet, dass jedes menschlich lesbare Datum funktioniert."
4191
-
4192
- #: ../../views/admin/import/template/_other_template.php:45
4193
- msgid "As specified"
4194
- msgstr "Wie Bestimmt"
4195
-
4196
- #: ../../views/admin/import/template/_other_template.php:54
4197
- msgid "Random dates"
4198
- msgstr "Zufällige Datum"
4199
-
4200
- #: ../../views/admin/import/template/_other_template.php:54
4201
- msgid ""
4202
- "Posts will be randomly assigned dates in this range. WordPress ensures posts with "
4203
- "dates in the future will not appear until their date has been reached."
4204
- msgstr ""
4205
- "Posts bekommen zufällige Datum in diesem Bereich. WordPress lässt Posts mit Datum in "
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 \"&lt;?php\" and \"?&gt;\""
177
+ msgstr "PHP code muss von \"&lt;?php\" und \"?&gt;\" 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 "&laquo;"
614
+ msgstr "&laquo;"
615
+
616
+ #: controllers/admin/history.php:58 controllers/admin/manage.php:61
617
+ msgid "&raquo;"
618
+ msgstr "&raquo;"
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&#8211;%s of %s"
1867
+ msgstr "Zeige %s&#8211;%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;\">&lt;%s&gt;</span> records in your file"
2003
+ msgstr "WP All Import bearbeitet alle %s <span style=\"color:#46ba69; font-weight:bold;\">&lt;%s&gt;</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>&lt;<span class=\"root_element\">%s</span>&gt;</span> element will be imported into a <span>New %s</span>"
2179
+ msgstr "Jedes <span>&lt;<span class=\"root_element\">%s</span>&gt;</span> Element wird importiert in ein <span>neues %s</span>"
2180
+
2181
+ #: views/admin/import/element.php:119
2182
+ msgid "Data in <span>&lt;<span class=\"root_element\">%s</span>&gt;</span> elements will be imported to <span>%s</span>"
2183
+ msgstr "Daten in <span>&lt;<span class=\"root_element\">%s</span>&gt;</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 &lt;img&gt; tags. "
3061
+ msgstr "Hier sind die obigen URLs in &lt;img&gt; 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
- "Project-Id-Version: WP All Import\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-10-13 09:37+0200\n"
6
- "PO-Revision-Date: Mon Dec 21 2015 19:54:52 GMT+0200 (EET)\n"
7
- "Last-Translator: admin <makstsiplyskov@gmail.loc>\n"
8
- "Language-Team: \n"
9
- "Language: German\n"
10
- "Plural-Forms: nplurals=2; plural=n != 1\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Loco - https://localise.biz/\n"
16
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
17
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
18
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
19
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
20
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
21
- "X-Poedit-Basepath: .\n"
22
- "X-Poedit-SearchPath-0: .\n"
23
- "X-Loco-Target-Locale: de_DE"
24
-
25
- #. Name of the plugin
26
- msgid "WP All Import Pro"
27
- msgstr ""
28
-
29
- #. URI of the plugin
30
- msgid "http://www.wpallimport.com"
31
- msgstr ""
32
-
33
- #. Description of the plugin
34
- msgid ""
35
- "The most powerful solution for importing XML and CSV files to WordPress. "
36
- "Import to Posts, Pages, and Custom Post Types. Support for imports that run "
37
- "on a schedule, ability to update existing imports, and much more."
38
- msgstr ""
39
-
40
- #. Author of the plugin
41
- msgid "Soflyy"
42
- msgstr ""
43
-
44
- #: ../../actions/wp_ajax_delete_import.php:36 ../../controllers/admin/manage.php:
45
- #: 594
46
- msgid "All associated posts deleted."
47
- msgstr ""
48
-
49
- #: ../../actions/wp_ajax_delete_import.php:40 ../../controllers/admin/manage.php:
50
- #: 598
51
- msgid "Import and all associated posts deleted."
52
- msgstr ""
53
-
54
- #: ../../actions/wp_ajax_delete_import.php:44 ../../controllers/admin/manage.php:
55
- #: 579
56
- msgid "Nothing to delete."
57
- msgstr ""
58
-
59
- #: ../../actions/wp_ajax_delete_import.php:66
60
- #, php-format
61
- msgid "Import #%d - %d records deleted"
62
- msgstr ""
63
-
64
- #: ../../actions/wp_ajax_save_import_functions.php:43
65
- msgid "PHP code must be wrapped in \"&lt;?php\" and \"?&gt;\""
66
- msgstr ""
67
-
68
- #: ../../actions/wp_ajax_save_import_functions.php:52
69
- msgid "File has been successfully updated."
70
- msgstr ""
71
-
72
- #: ../../actions/wp_ajax_test_images.php:95
73
- #, php-format
74
- msgid "Image `%s` not found in media library."
75
- msgstr ""
76
-
77
- #: ../../actions/wp_ajax_test_images.php:102
78
- #, php-format
79
- msgid "%d image was successfully founded in media gallery"
80
- msgstr ""
81
-
82
- #: ../../actions/wp_ajax_test_images.php:106
83
- #, php-format
84
- msgid "%d images were successfully founded in media gallery"
85
- msgstr ""
86
-
87
- #: ../../actions/wp_ajax_upload_resource.php:116
88
- msgid "Please verify that the URL returns a valid import file."
89
- msgstr ""
90
-
91
- #: ../../actions/wp_loaded.php:253
92
- #, php-format
93
- msgid "Import #%s canceled"
94
- msgstr ""
95
-
96
- #: ../../classes/render.php:68 ../../classes/render.php:88 ../../classes/render.
97
- #: php:166 ../../classes/render.php:186 ../../views/admin/import/evaluate.php:5 ..
98
- #: /../views/admin/import/evaluate_variations.php:3
99
- msgid "element"
100
- msgid_plural "elements"
101
- msgstr[0] ""
102
- msgstr[1] ""
103
-
104
- #: ../../controllers/admin/history.php:139
105
- msgid "history"
106
- msgid_plural "histories"
107
- msgstr[0] ""
108
- msgstr[1] ""
109
-
110
- #: ../../controllers/admin/import.php:1829
111
- msgid "Post ID must be specified."
112
- msgstr ""
113
-
114
- #: ../../controllers/admin/manage.php:243
115
- msgid ""
116
- "The other two files in this zip are the export file containing all of your "
117
- "data and the import template for WP All Import. \n"
118
- "\n"
119
- "To import this data, create a new import with WP All Import and upload this "
120
- "zip file."
121
- msgstr ""
122
-
123
- #: ../../controllers/admin/manage.php:634 ../../views/admin/manage/bulk.php:10
124
- msgid "import"
125
- msgid_plural "imports"
126
- msgstr[0] ""
127
- msgstr[1] ""
128
-
129
- #: ../../controllers/admin/settings.php:127
130
- #, php-format
131
- msgid "%d template imported"
132
- msgid_plural "%d templates imported"
133
- msgstr[0] ""
134
- msgstr[1] ""
135
-
136
- #: ../../controllers/admin/settings.php:151
137
- #, php-format
138
- msgid "%d template deleted"
139
- msgid_plural "%d templates deleted"
140
- msgstr[0] ""
141
- msgstr[1] ""
142
-
143
- #: ../../controllers/admin/settings.php:652
144
- #, php-format
145
- msgid "This %s file has errors and is not valid."
146
- msgstr ""
147
-
148
- #: ../../helpers/wp_all_import_addon_notifications.php:124
149
- msgid "WP All Export"
150
- msgstr ""
151
-
152
- #: ../../helpers/wp_all_import_addon_notifications.php:125
153
- msgid "Export anything in WordPress to CSV, XML, or Excel."
154
- msgstr ""
155
-
156
- #: ../../helpers/wp_all_import_addon_notifications.php:128 ../..
157
- #: /views/admin/import/confirm.php:47 ../../views/admin/import/index.php:254 ../..
158
- #: /views/admin/import/index.php:271 ../../views/admin/import/process.php:69 ../..
159
- #: /views/admin/import/process.php:103 ../..
160
- #: /views/admin/import/options/_import_file.php:40 ../..
161
- #: /views/admin/import/options/_import_file.php:57
162
- msgid "Read More"
163
- msgstr ""
164
-
165
- #: ../../models/import/record.php:662
166
- msgid "Composing post IDs..."
167
- msgstr ""
168
-
169
- #: ../../models/import/record.php:1656
170
- #, php-format
171
- msgid "Preserve comment status of already existing article for `%s`"
172
- msgstr ""
173
-
174
- #: ../../models/import/record.php:1812
175
- #, php-format
176
- msgid "<b>SKIPPED</b>: By filter wp_all_import_is_post_to_create `%s`"
177
- msgstr ""
178
-
179
- #: ../../models/import/record.php:2280
180
- #, php-format
181
- msgid "- <b>WARNING</b>: Image %s not found in media gallery."
182
- msgstr ""
183
-
184
- #: ../../models/import/record.php:2284
185
- #, php-format
186
- msgid "- Using existing image `%s` for post `%s` ..."
187
- msgstr ""
188
-
189
- #: ../../models/import/record.php:2473
190
- #, php-format
191
- msgid "- Attachment has been successfully updated for image `%s`"
192
- msgstr ""
193
-
194
- #: ../../models/import/record.php:2537
195
- #, php-format
196
- msgid ""
197
- "Images import skipped for post `%s` according to 'pmxi_is_images_to_update' "
198
- "filter..."
199
- msgstr ""
200
-
201
- #: ../../models/import/record.php:2647
202
- #, php-format
203
- msgid ""
204
- "Attachments import skipped for post `%s` according to "
205
- "'pmxi_is_attachments_to_update' filter..."
206
- msgstr ""
207
-
208
- #: ../../models/import/record.php:3030
209
- #, php-format
210
- msgid "%d Posts deleted from database"
211
- msgstr ""
212
-
213
- #: ../../views/admin/import/confirm.php:43 ../../views/admin/import/index.php:260
214
- #: ../../views/admin/import/options/_import_file.php:46
215
- msgid "There's a problem with your import file"
216
- msgstr ""
217
-
218
- #: ../../views/admin/import/confirm.php:44
219
- msgid "It has changed and is not compatible with this import template."
220
- msgstr ""
221
-
222
- #: ../../views/admin/import/evaluate.php:3
223
- msgid "row"
224
- msgid_plural "rows"
225
- msgstr[0] ""
226
- msgstr[1] ""
227
-
228
- #: ../../views/admin/import/index.php:250 ../..
229
- #: /views/admin/import/options/_import_file.php:36
230
- msgid "File upload rejected by server"
231
- msgstr ""
232
-
233
- #: ../../views/admin/import/index.php:251 ../..
234
- #: /views/admin/import/options/_import_file.php:37
235
- msgid "Contact your host and have them check your server's error log."
236
- msgstr ""
237
-
238
- #: ../../views/admin/import/index.php:265 ../..
239
- #: /views/admin/import/options/_import_file.php:51
240
- #, php-format
241
- msgid "Please verify that the file you using is a valid %s file."
242
- msgstr ""
243
-
244
- #: ../../views/admin/import/preview_images.php:17
245
- msgid "Test Images"
246
- msgstr ""
247
-
248
- #: ../../views/admin/import/preview_images.php:24
249
- msgid "Click to test that your images are able to be accessed by WP All Import."
250
- msgstr ""
251
-
252
- #: ../../views/admin/import/preview_images.php:26
253
- msgid "Run Test"
254
- msgstr ""
255
-
256
- #: ../../views/admin/import/preview_images.php:92
257
- msgid "Searching images..."
258
- msgstr ""
259
-
260
- #: ../../views/admin/import/preview_images.php:96
261
- msgid "WP All Import will import images from the media library"
262
- msgstr ""
263
-
264
- #: ../../views/admin/import/preview_images.php:97
265
- msgid "Please ensure the images exists at media library"
266
- msgstr ""
267
-
268
- #: ../../views/admin/import/process.php:61
269
- msgid "Hide this notice."
270
- msgstr ""
271
-
272
- #: ../../views/admin/import/process.php:65
273
- msgid "Want to speed up your import?"
274
- msgstr ""
275
-
276
- #: ../../views/admin/import/process.php:66
277
- msgid "Check out our guide on increasing import speed."
278
- msgstr ""
279
-
280
- #: ../../views/admin/import/process.php:70
281
- msgid "opens in new tab"
282
- msgstr ""
283
-
284
- #: ../../views/admin/import/process.php:78 ../../views/admin/import/process.php:99
285
- msgid "Your server terminated the import process"
286
- msgstr ""
287
-
288
- #: ../../views/admin/import/process.php:79
289
- #, php-format
290
- msgid ""
291
- "<a href='%s' target='_blank'>Read more</a> about how to prevent this from "
292
- "happening again."
293
- msgstr ""
294
-
295
- #: ../../views/admin/import/process.php:83
296
- #, php-format
297
- msgid ""
298
- "with <span id='wpallimport-new-records-per-iteration'>%s</span> records per "
299
- "iteration"
300
- msgstr ""
301
-
302
- #: ../../views/admin/import/process.php:100
303
- msgid ""
304
- "Ask your host to check your server's error log. They will be able to "
305
- "determine why your server is terminating the import process."
306
- msgstr ""
307
-
308
- #: ../../views/admin/import/template.php:146 ../../views/admin/settings/index.php:
309
- #: 194
310
- msgid "Function Editor"
311
- msgstr ""
312
-
313
- #: ../../views/admin/import/template.php:156 ../../views/admin/settings/index.php:
314
- #: 202
315
- msgid "Save Functions"
316
- msgstr ""
317
-
318
- #: ../../views/admin/import/template.php:157 ../../views/admin/settings/index.php:
319
- #: 203
320
- #, php-format
321
- msgid "Add functions here for use during your import. You can access this file at %s"
322
- msgstr ""
323
-
324
- #: ../../views/admin/import/options/_reimport_options.php:4
325
- msgid "If this import is run again and WP All Import finds new or changed data..."
326
- msgstr ""
327
-
328
- #: ../../views/admin/import/options/_reimport_options.php:20
329
- msgid ""
330
- "Records removed from the import file can only be deleted when importing into "
331
- "New Items. This feature cannot be enabled when importing into Existing Items."
332
- msgstr ""
333
-
334
- #: ../../views/admin/import/options/_reimport_options.php:59
335
- msgid ""
336
- "These options will only be used if you run this import again later. All data "
337
- "is imported the first time you run an import."
338
- msgstr ""
339
-
340
- #: ../../views/admin/import/options/_reimport_options.php:117
341
- msgid "Comment status"
342
- msgstr ""
343
-
344
- #: ../../views/admin/import/options/_reimport_template.php:113
345
- msgid "Post ID"
346
- msgstr ""
347
-
348
- #: ../../views/admin/import/options/_settings_template.php:94
349
- msgid "Downloads"
350
- msgstr ""
351
-
352
- #: ../../views/admin/import/options/_settings_template.php:97
353
- msgid "Import Template"
354
- msgstr ""
355
-
356
- #: ../../views/admin/import/options/_settings_template.php:98
357
- msgid "Import Bundle"
358
- msgstr ""
359
-
360
- #: ../../views/admin/import/template/_featured_template.php:15
361
- msgid "Download images hosted elsewhere"
362
- msgstr ""
363
-
364
- #: ../../views/admin/import/template/_featured_template.php:25
365
- msgid "Use images currently in Media Library"
366
- msgstr ""
367
-
368
- #: ../../views/admin/import/template/_featured_template.php:36
369
- #, php-format
370
- msgid "Use images currently uploaded in %s"
371
- msgstr ""
372
-
373
- #: ../../views/admin/import/template/_featured_template.php:44
374
- msgid "Image Options"
375
- msgstr ""
376
-
377
- #: ../../views/admin/import/template/_featured_template.php:55
378
- msgid "Keep images currently in Media Library"
379
- msgstr ""
380
-
381
- #: ../../views/admin/import/template/_featured_template.php:56
382
- msgid ""
383
- "If disabled, images attached to imported posts will be deleted and then all "
384
- "images will be imported."
385
- msgstr ""
386
-
387
- #: ../../views/admin/import/template/_featured_template.php:132
388
- msgid "Separate them with a"
389
- msgstr ""
390
-
391
- #: ../../views/admin/import/template/_featured_template.php:137
392
- msgid "Enter them one per line"
393
- msgstr ""
394
-
395
- #: ../../views/admin/import/template/_featured_template.php:145
396
- msgid ""
397
- "These options only available if Download images hosted elsewhere is selected "
398
- "above."
399
- msgstr ""
400
-
401
- #: ../../views/admin/import/template/_other_template.php:274
402
- msgid "Dynamic Post Type"
403
- msgstr ""
404
-
405
- #: ../../views/admin/import/template/_other_template.php:284
406
- msgid ""
407
- "If records in this import have different post types specify the slug of the "
408
- "desired post type here.\n"
409
- msgstr ""
410
-
411
- #: ../../views/admin/import/template/_taxonomies_template.php:215
412
- msgid "Add Another Row"
413
- msgstr ""
414
-
415
- #: ../../views/admin/import/template/_taxonomies_template.php:296 ../..
416
- #: /views/admin/import/template/_taxonomies_template.php:296
417
- msgid "Add Another Rule"
418
- msgstr ""
419
-
420
- #: ../../views/admin/manage/bulk.php:1
421
- msgid "Bulk Delete Imports"
422
- msgstr ""
423
-
424
- #: ../../views/admin/manage/delete.php:8
425
- msgid "Delete import"
426
- msgstr ""
427
-
428
- #: ../../views/admin/manage/delete.php:13
429
- #, php-format
430
- msgid "Delete posts created by %s"
431
- msgstr ""
432
-
433
- #: ../../views/admin/manage/delete.php:46
434
- msgid "Are you sure you want to delete "
435
- msgstr ""
436
-
437
- #: ../../views/admin/manage/delete.php:46
438
- #, php-format
439
- msgid "the <strong>%s</strong> import"
440
- msgstr ""
441
-
442
- #: ../../wp-all-import-pro.php:20
443
- msgid ""
444
- "Please de-activate and remove the free version of WP All Import before "
445
- "activating the paid version."
446
- msgstr ""
447
- "Bitte deaktivieren und entfernen Sie die freie Version von WP All Import "
448
- "bevor Sie die bezahlte Version aktivieren."
449
-
450
- #: ../../wp-all-import-pro.php:335
451
- #, php-format
452
- msgid ""
453
- "To enable updates, please enter your license key on the <a "
454
- "href=\"%s\">Licenses</a> page. If you don't have a licence key, please see <a "
455
- "href=\"%s\">details & pricing</a>"
456
- msgstr ""
457
- "Um Updates zu aktivieren, geben Sie bitte Ihren Lizenz Schlüssel auf der <a "
458
- "href=\"%s\">Lizenzen</a> Seite ein. Wenn Sie noch keinen Lizenz Schlüssel "
459
- "haben, finden Sie hier <a href=\"%s\">Details und Preise</a>"
460
-
461
- #: ../../wp-all-import-pro.php:825 ../../wp-all-import-pro.php:829
462
- #, php-format
463
- msgid "Uploads folder %s must be writable"
464
- msgstr "Ordner %s muss beschreibbar sein"
465
-
466
- #: ../../wp-all-import-pro.php:939
467
- #, php-format
468
- msgid "<b>%s Plugin</b>: Current sql user %s doesn't have ALTER privileges"
469
- msgstr "<b>%s Plugin:</b> Aktuelle SQL-Benutzer%s verfügen nicht über Änderungsrechte"
470
-
471
- #: ../../actions/admin_menu.php:12
472
- msgid "New Import"
473
- msgstr "Neuer Import"
474
-
475
- #: ../../actions/admin_menu.php:13 ../../views/admin/import/process.php:54 ../..
476
- #: /views/admin/manage/index.php:5
477
- msgid "Manage Imports"
478
- msgstr "Imports verwalten"
479
-
480
- #: ../../actions/admin_menu.php:14 ../../views/admin/settings/index.php:7
481
- msgid "Settings"
482
- msgstr "Einstellungen"
483
-
484
- #: ../../actions/admin_menu.php:16
485
- msgid "History"
486
- msgstr "Chronik"
487
-
488
- #: ../../actions/admin_menu.php:22 ../../controllers/admin/license.php:18 ../..
489
- #: /controllers/admin/settings.php:50 ../../views/admin/import/confirm.php:11 ../.
490
- #: ./views/admin/import/element.php:8 ../../views/admin/import/index.php:43 ../..
491
- #: /views/admin/import/options.php:18 ../../views/admin/import/process.php:8 ../..
492
- #: /views/admin/import/template.php:9 ../../views/admin/manage/index.php:4 ../..
493
- #: /views/admin/settings/index.php:6
494
- msgid "WP All Import"
495
- msgstr "WP All Import"
496
-
497
- #: ../../actions/admin_menu.php:22
498
- msgid "All Import"
499
- msgstr "All Import"
500
-
501
- #: ../../actions/admin_notices.php:12
502
- #, php-format
503
- msgid ""
504
- "<b>%s Plugin</b>: Please update your WP All Import WooCommerce add-on to the "
505
- "latest version"
506
- msgstr ""
507
- "<b>%s Plugin</b>: Bitte aktualisieren Sie das WP All Import WooCommerce add-"
508
- "on."
509
-
510
- #: ../../actions/admin_notices.php:39
511
- #, php-format
512
- msgid ""
513
- "<b>%s Plugin</b>: Please update your WP All Import ACF add-on to the latest "
514
- "version"
515
- msgstr "<b>%s Plugin</b>: Bitte aktualisieren Sie das WP All Import ACF add-on."
516
-
517
- #: ../../actions/admin_notices.php:56
518
- #, php-format
519
- msgid ""
520
- "<b>%s Plugin</b>: Please update your WP All Import Linkcloak add-on to the "
521
- "latest version"
522
- msgstr "<b>%s Plugin</b>: Bitte aktualisieren Sie das WP All Import Linkcloak add-on."
523
-
524
- #: ../../actions/admin_notices.php:73
525
- #, php-format
526
- msgid ""
527
- "<b>%s Plugin</b>: Please update your WP All Import User add-on to the latest "
528
- "version"
529
- msgstr "<b>%s Plugin</b>: Bitte aktualisieren Sie das WP All Import User add-on."
530
-
531
- #: ../../actions/admin_notices.php:90
532
- #, php-format
533
- msgid ""
534
- "<b>%s Plugin</b>: The WPML Add-On Plugin is no longer compatible with this "
535
- "version of WP All Import - please contact support@wpallimport.com and we "
536
- "will supply the latest version of WP All Import that is compatible with the "
537
- "WPML Add-On."
538
- msgstr ""
539
- "<b>%s Plugin</b>: Das WPML add-on Plugin ist leider nicht mehr kompatibel "
540
- "mit dieser Version von WP All Import. Bitte kontaktieren Sie den Support "
541
- "unter support@wpallimport.com und wir werden Ihnen die neueste Version von "
542
- "WP All Import anbieten die mit dem WPML add-on kompatibel ist."
543
-
544
- #: ../../actions/admin_notices.php:119 ../../controllers/admin/import.php:1498 ..
545
- #: /../controllers/admin/import.php:1720 ../../controllers/admin/import.php:2223
546
- msgid "<strong>Warning:</strong> your title is blank."
547
- msgstr "<strong>Warnung:</strong>Ihr Titel ist leer."
548
-
549
- #: ../../actions/admin_notices.php:122 ../../controllers/admin/import.php:1505 ..
550
- #: /../controllers/admin/import.php:1722 ../../controllers/admin/import.php:2225
551
- msgid "<strong>Warning:</strong> your content is blank."
552
- msgstr "<strong>Warnung:</strong> Ihr Inhalt ist leer."
553
-
554
- #: ../../actions/wp_ajax_auto_detect_cf.php:5 ../..
555
- #: /actions/wp_ajax_auto_detect_cf.php:9 ../../actions/wp_ajax_auto_detect_sf.php:
556
- #: 5 ../../actions/wp_ajax_auto_detect_sf.php:9 ../..
557
- #: /actions/wp_ajax_delete_import.php:5 ../../actions/wp_ajax_delete_import.php:9
558
- #: ../../actions/wp_ajax_dismiss_notifications.php:5 ../..
559
- #: /actions/wp_ajax_dismiss_notifications.php:9 ../..
560
- #: /actions/wp_ajax_import_failed.php:5 ../../actions/wp_ajax_import_failed.php:9
561
- #: ../../actions/wp_ajax_nested_merge.php:6 ../../actions/wp_ajax_nested_merge.
562
- #: php:10 ../../actions/wp_ajax_nested_xpath.php:6 ../..
563
- #: /actions/wp_ajax_nested_xpath.php:10 ../../actions/wp_ajax_parse_nested_file.
564
- #: php:10 ../../actions/wp_ajax_parse_nested_file.php:14 ../..
565
- #: /actions/wp_ajax_save_import_functions.php:6 ../..
566
- #: /actions/wp_ajax_save_import_functions.php:10 ../..
567
- #: /actions/wp_ajax_test_images.php:6 ../../actions/wp_ajax_test_images.php:10 ..
568
- #: /../actions/wp_ajax_unmerge_file.php:5 ../../actions/wp_ajax_unmerge_file.php:
569
- #: 9 ../../actions/wp_ajax_upload_resource.php:6 ../..
570
- #: /actions/wp_ajax_upload_resource.php:10 ../../controllers/admin/history.php:74
571
- #: ../../controllers/admin/import.php:563 ../../controllers/admin/import.php:868 .
572
- #: ./../controllers/admin/import.php:1006 ../../controllers/admin/import.php:1145
573
- #: ../../controllers/admin/import.php:1300 ../../controllers/admin/import.php:
574
- #: 2462 ../../controllers/admin/manage.php:126 ../../controllers/admin/manage.php:
575
- #: 169 ../../controllers/admin/manage.php:279 ../../controllers/admin/manage.php:
576
- #: 527 ../../controllers/admin/settings.php:420
577
- msgid "Security check"
578
- msgstr "Sicherheitskontrolle"
579
-
580
- #: ../../actions/wp_ajax_auto_detect_cf.php:59
581
- #, php-format
582
- msgid "No Custom Fields are present in your database for %s"
583
- msgstr "Keine selbst erstellten Felder in der Datenbank %s"
584
-
585
- #: ../../actions/wp_ajax_auto_detect_cf.php:62
586
- #, php-format
587
- msgid "%s field was automatically detected."
588
- msgstr "%s Feld wurde automatisch erkannt."
589
-
590
- #: ../../actions/wp_ajax_auto_detect_cf.php:64
591
- #, php-format
592
- msgid "%s fields were automatically detected."
593
- msgstr "%s Felder wurden automatisch erkannt."
594
-
595
- #: ../../actions/wp_ajax_delete_import.php:32 ../../controllers/admin/manage.php:
596
- #: 590
597
- msgid "Import deleted"
598
- msgstr "Import gelöscht"
599
-
600
- #: ../../actions/wp_ajax_nested_xpath.php:51
601
- msgid "XPath is required"
602
- msgstr "XPath wird benötigt"
603
-
604
- #: ../../actions/wp_ajax_nested_xpath.php:65 ../..
605
- #: /actions/wp_ajax_parse_nested_file.php:159
606
- msgid "Elements found"
607
- msgstr "Elemente gefunden"
608
-
609
- #: ../../actions/wp_ajax_nested_xpath.php:65 ../..
610
- #: /actions/wp_ajax_parse_nested_file.php:159
611
- msgid "Elements not found"
612
- msgstr "Elemente nicht gefunden"
613
-
614
- #: ../../actions/wp_ajax_test_images.php:32
615
- #, php-format
616
- msgid "Uploads folder `%s` is not writable."
617
- msgstr "Upload Ordner %s muss beschreibbar sein"
618
-
619
- #: ../../actions/wp_ajax_test_images.php:46
620
- #, php-format
621
- msgid "Use image name instead of URL `%s`."
622
- msgstr "Benutzen Sie ein Bild anstatt einer URL '%s'"
623
-
624
- #: ../../actions/wp_ajax_test_images.php:53
625
- #, php-format
626
- msgid "File `%s` isn't readable"
627
- msgstr "Datei `%s` nicht lesbar"
628
-
629
- #: ../../actions/wp_ajax_test_images.php:57
630
- #, php-format
631
- msgid "File `%s` doesn't exist"
632
- msgstr "Datei `%s` existiert nicht"
633
-
634
- #: ../../actions/wp_ajax_test_images.php:63
635
- #, php-format
636
- msgid "%d image was successfully retrieved from `%s`"
637
- msgstr "%d Bild wurde erfolgreich erneuert von `%s`"
638
-
639
- #: ../../actions/wp_ajax_test_images.php:67
640
- #, php-format
641
- msgid "%d images were successfully retrieved from `%s`"
642
- msgstr "%d Bilder wurden erfolgreich erneuert von `%s`"
643
-
644
- #: ../../actions/wp_ajax_test_images.php:120
645
- #, php-format
646
- msgid "URL `%s` is not valid."
647
- msgstr "URL `%s` ist ungültig."
648
-
649
- #: ../../actions/wp_ajax_test_images.php:132
650
- #, php-format
651
- msgid "File `%s` cannot be saved locally"
652
- msgstr "Datei `%s` kann nicht lokal gespeichert werden"
653
-
654
- #: ../../actions/wp_ajax_test_images.php:134
655
- #, php-format
656
- msgid "File `%s` is not a valid image."
657
- msgstr "Datei `%s` ist kein zulässiges Bild"
658
-
659
- #: ../../actions/wp_ajax_test_images.php:145
660
- #, php-format
661
- msgid "%d image was successfully downloaded in %s seconds"
662
- msgstr "%d Bild wurde erfolgreich heruntergeladen in %s sekunden"
663
-
664
- #: ../../actions/wp_ajax_test_images.php:149
665
- #, php-format
666
- msgid "%d images were successfully downloaded in %s seconds"
667
- msgstr "%d Bilder wurden erfolgreich heruntergeladen in %s Sekunden"
668
-
669
- #: ../../actions/wp_loaded.php:53
670
- #, php-format
671
- msgid "Other imports are currently in process [%s]."
672
- msgstr "Zur Zeit sind andere Imports in Bearbeitung [%s]"
673
-
674
- #: ../../actions/wp_loaded.php:63
675
- #, php-format
676
- msgid "Scheduling update is not working with \"upload\" import type. Import #%s."
677
- msgstr "Planung von updates funktioniert nicht mit \"upload\" Importtyp. Import #%s."
678
-
679
- #: ../../actions/wp_loaded.php:76 ../../actions/wp_loaded.php:148
680
- #, php-format
681
- msgid "Import #%s is currently in manually process. Request skipped."
682
- msgstr "Import #%s ist zur Zeit im manuellen Prozess. Anfrage übersprungen."
683
-
684
- #: ../../actions/wp_loaded.php:99 ../../views/admin/history/index.php:170
685
- msgid "triggered by cron"
686
- msgstr "Ausgelöst von cron"
687
-
688
- #: ../../actions/wp_loaded.php:105
689
- #, php-format
690
- msgid "#%s Cron job triggered."
691
- msgstr "#%s Cron Job ausgelöst"
692
-
693
- #: ../../actions/wp_loaded.php:112
694
- #, php-format
695
- msgid "Import #%s currently in process. Request skipped."
696
- msgstr "Import #%s ist zur Zeit in Prozess. Anfrage übersprungen."
697
-
698
- #: ../../actions/wp_loaded.php:121
699
- #, php-format
700
- msgid "Import #%s already triggered. Request skipped."
701
- msgstr "Import #%s bereits ausgelöst. Anfrage übersprungen."
702
-
703
- #: ../../actions/wp_loaded.php:141
704
- #, php-format
705
- msgid "Import #%s is not triggered. Request skipped."
706
- msgstr "Import #%s nicht ausgelöst. Anfrage übersprungen."
707
-
708
- #: ../../actions/wp_loaded.php:177 ../../views/admin/history/index.php:167
709
- msgid "cron processing"
710
- msgstr "cron Bearbeitung"
711
-
712
- #: ../../actions/wp_loaded.php:208 ../../models/import/record.php:515
713
- #, php-format
714
- msgid "Import #%s complete"
715
- msgstr "Import #%s Fertiggestellt."
716
-
717
- #: ../../actions/wp_loaded.php:217 ../../models/import/record.php:539
718
- #, php-format
719
- msgid "Records Processed %s. Records Count %s."
720
- msgstr "Datensätze bearbeitet %s. Datensätze gezählt %s."
721
-
722
- #: ../../actions/wp_loaded.php:229
723
- #, php-format
724
- msgid "Import #%s already processing. Request skipped."
725
- msgstr "Import #%s bereits in Bearbeitung. Anfrage übersprungen."
726
-
727
- #: ../../classes/api.php:113 ../../views/admin/import/template/_other_template.
728
- #: php:28 ../../views/admin/import/template/_other_template.php:77 ../..
729
- #: /views/admin/import/template/_other_template.php:100 ../..
730
- #: /views/admin/import/template/_other_template.php:167 ../..
731
- #: /views/admin/import/template/_other_template.php:197 ../..
732
- #: /views/admin/import/template/_other_template.php:225 ../..
733
- #: /views/admin/import/template/_other_template.php:251
734
- msgid "Set with XPath"
735
- msgstr "Gesetzt mit XPath"
736
-
737
- #: ../../classes/api.php:129 ../..
738
- #: /views/admin/import/template/_custom_fields_template.php:57 ../..
739
- #: /views/admin/import/template/_custom_fields_template.php:266 ../..
740
- #: /views/admin/import/template/_custom_fields_template.php:400
741
- msgid "Field Options..."
742
- msgstr "Feld Optionen..."
743
-
744
- #: ../../classes/api.php:132 ../..
745
- #: /views/admin/import/template/_custom_fields_template.php:63 ../..
746
- #: /views/admin/import/template/_custom_fields_template.php:272 ../..
747
- #: /views/admin/import/template/_custom_fields_template.php:406
748
- msgid "Mapping"
749
- msgstr "Zuordnung"
750
-
751
- #: ../../classes/api.php:141 ../..
752
- #: /views/admin/import/template/_custom_fields_template.php:170 ../..
753
- #: /views/admin/import/template/_custom_fields_template.php:338 ../..
754
- #: /views/admin/import/template/_custom_fields_template.php:472 ../..
755
- #: /views/admin/import/template/_taxonomies_template.php:233
756
- msgid "In Your File"
757
- msgstr "In Ihrer Datei"
758
-
759
- #: ../../classes/api.php:142 ../..
760
- #: /views/admin/import/template/_custom_fields_template.php:171 ../..
761
- #: /views/admin/import/template/_custom_fields_template.php:339 ../..
762
- #: /views/admin/import/template/_custom_fields_template.php:473 ../..
763
- #: /views/admin/import/template/_taxonomies_template.php:234
764
- msgid "Translated To"
765
- msgstr "Übersetzt zu"
766
-
767
- #: ../../classes/api.php:221 ../../classes/api.php:221 ../..
768
- #: /views/admin/import/template/_custom_fields_template.php:144 ../..
769
- #: /views/admin/import/template/_custom_fields_template.php:233 ../..
770
- #: /views/admin/import/template/_custom_fields_template.php:233 ../..
771
- #: /views/admin/import/template/_custom_fields_template.php:312 ../..
772
- #: /views/admin/import/template/_custom_fields_template.php:312 ../..
773
- #: /views/admin/import/template/_custom_fields_template.php:368 ../..
774
- #: /views/admin/import/template/_custom_fields_template.php:368 ../..
775
- #: /views/admin/import/template/_custom_fields_template.php:446 ../..
776
- #: /views/admin/import/template/_custom_fields_template.php:446 ../..
777
- #: /views/admin/import/template/_custom_fields_template.php:502 ../..
778
- #: /views/admin/import/template/_custom_fields_template.php:502
779
- msgid "Add Another"
780
- msgstr "Weitere Hinzufügen"
781
-
782
- #: ../../classes/api.php:227 ../..
783
- #: /views/admin/import/template/_custom_fields_template.php:239 ../..
784
- #: /views/admin/import/template/_custom_fields_template.php:374 ../..
785
- #: /views/admin/import/template/_custom_fields_template.php:508
786
- msgid "Save Rules"
787
- msgstr "Regel speichern"
788
-
789
- #: ../../classes/api.php:258
790
- msgid "Download image hosted elsewhere"
791
- msgstr "Bilder von Host herunterladen"
792
-
793
- #: ../../classes/api.php:259 ../../classes/api.php:279 ../..
794
- #: /views/admin/import/template/_featured_template.php:16 ../..
795
- #: /views/admin/import/template/_featured_template.php:26
796
- msgid "http:// or https://"
797
- msgstr "http:// oder https://"
798
-
799
- #: ../../classes/api.php:264
800
- #, php-format
801
- msgid "Use image(s) currently uploaded in %s"
802
- msgstr "Nutze Bild(er) die gerade hochgeladen werden in %s"
803
-
804
- #: ../../classes/api.php:278
805
- msgid "Download file hosted elsewhere"
806
- msgstr "Datei von Host herunterladen"
807
-
808
- #: ../../classes/api.php:284
809
- #, php-format
810
- msgid "Use file(s) currently uploaded in %s"
811
- msgstr "Nutze Datei(en die gerade hochgeladen werden in %s"
812
-
813
- #: ../../classes/api.php:397 ../../models/import/record.php:2302
814
- #, php-format
815
- msgid "- Searching for existing image `%s` in `%s` folder"
816
- msgstr "- Suche nach existierendem Bild `%s` im Verzeichnis `%s` "
817
-
818
- #: ../../classes/api.php:404 ../../classes/api.php:477 ../../models/import/record.
819
- #: php:2309 ../../models/import/record.php:2380 ../../models/import/record.php:2603
820
- #, php-format
821
- msgid "- <b>WARNING</b>: Can't detect attachment file type %s"
822
- msgstr "- <b>WARNUNG</b>: Kann den Dateityp nicht erkennen %s"
823
-
824
- #: ../../classes/api.php:410 ../../classes/api.php:482 ../../models/import/record.
825
- #: php:2315 ../../models/import/record.php:2386
826
- #, php-format
827
- msgid "- File `%s` has been successfully found"
828
- msgstr "- Datei `%s` wurde gefunden"
829
-
830
- #: ../../classes/api.php:416 ../../classes/api.php:468 ../../models/import/record.
831
- #: php:2225 ../../models/import/record.php:2321 ../../models/import/record.php:2370
832
- #, php-format
833
- msgid ""
834
- "- <b>WARNING</b>: File %s is not a valid image and cannot be set as featured "
835
- "one"
836
- msgstr ""
837
- "- <b>WARNUNG</b>: Datei %s ist kein zulässiges Bild und kann nicht als "
838
- "Featured-Bild gesetzt werden"
839
-
840
- #: ../../classes/api.php:419 ../../models/import/record.php:2326
841
- #, php-format
842
- msgid "- Image `%s` has been successfully found"
843
- msgstr "- Bild `%s` wurde gefunden"
844
-
845
- #: ../../classes/api.php:429 ../../models/import/record.php:2333
846
- #, php-format
847
- msgid "- Downloading image from `%s`"
848
- msgstr "- Bild wird Herunterladen von `%s`"
849
-
850
- #: ../../classes/api.php:432
851
- #, php-format
852
- msgid "- Downloading file from `%s`"
853
- msgstr "- Datei wird Herunterladen von `%s`"
854
-
855
- #: ../../classes/api.php:444 ../../classes/api.php:472 ../../models/import/record.
856
- #: php:2344 ../../models/import/record.php:2375
857
- #, php-format
858
- msgid "- Image `%s` has been successfully downloaded"
859
- msgstr "- Bild `%s` wurde erfolgreich heruntergeladen"
860
-
861
- #: ../../classes/api.php:450 ../../models/import/record.php:2350
862
- #, php-format
863
- msgid "- File `%s` has been successfully downloaded"
864
- msgstr "- Datei `%s` wurde erfolgreich heruntergeladen"
865
-
866
- #: ../../classes/api.php:462 ../../models/import/record.php:2363
867
- #, php-format
868
- msgid "- <b>WARNING</b>: File %s cannot be saved locally as %s"
869
- msgstr "- <b>WARNUNG</b>: Datei %s kann lokal nicht gespeichert werden als %s"
870
-
871
- #: ../../classes/api.php:496 ../../models/import/record.php:2405
872
- #, php-format
873
- msgid "- Creating an attachment for image `%s`"
874
- msgstr "- Erstelle einen Anhang für Bild `%s`"
875
-
876
- #: ../../classes/api.php:499
877
- #, php-format
878
- msgid "- Creating an attachment for file `%s`"
879
- msgstr "- Erstelle einen Anhang für Datei `%s`"
880
-
881
- #: ../../classes/api.php:518 ../../models/import/record.php:2427 ../..
882
- #: /models/import/record.php:2625
883
- msgid "- <b>WARNING</b>"
884
- msgstr "- <b>WARNUNG</b>"
885
-
886
- #: ../../classes/api.php:522 ../../models/import/record.php:2477
887
- #, php-format
888
- msgid "- Attachment has been successfully created for image `%s`"
889
- msgstr "- Anhang wurde erstellt für das Bild `%s`"
890
-
891
- #: ../../classes/render.php:68 ../../classes/render.php:88 ../../classes/render.
892
- #: php:166 ../../classes/render.php:186
893
- #, php-format
894
- msgid "<strong>%s</strong> %s more"
895
- msgstr "<strong>%s</strong> %s mehr"
896
-
897
- #: ../../classes/render.php:94 ../../classes/render.php:192
898
- msgid "more"
899
- msgstr "mehr"
900
-
901
- #: ../../classes/updater.php:240
902
- #, php-format
903
- msgid ""
904
- "There is a new version of %1$s available. <a target=\"_blank\" "
905
- "class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
906
- msgstr ""
907
- "Eine neue Version von %1$s ist verfügbar. <a target=\"_blank\" "
908
- "class=\"thickbox\" href=\"%2$s\">Details ansehen von %3$s</a>."
909
-
910
- #: ../../classes/updater.php:247
911
- #, php-format
912
- msgid ""
913
- "There is a new version of %1$s available. <a target=\"_blank\" "
914
- "class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a "
915
- "href=\"%4$s\">update now</a>."
916
- msgstr ""
917
- "Eine neue Version von %1$s ist verfügbar. <a target=\"_blank\" "
918
- "class=\"thickbox\" href=\"%2$s\">Details ansehen von %3$s</a> oder <a "
919
- "href=\"%4$s\">jetzt aktualisieren</a>."
920
-
921
- #: ../../classes/updater.php:435
922
- msgid "You do not have permission to install plugin updates"
923
- msgstr "Sie haben keine Berechtigung um Plug-In Aktualisierungen durchzuführen."
924
-
925
- #: ../../classes/updater.php:435
926
- msgid "Error"
927
- msgstr "Fehler"
928
-
929
- #: ../../classes/upload.php:46
930
- msgid ""
931
- "Please specify a file to import.<br/><br/>If you are uploading the file from "
932
- "your computer, please wait for it to finish uploading (progress bar at 100%),"
933
- " before trying to continue."
934
- msgstr ""
935
- "Bitte wählen Sie eine Datei für den Import.<br/><br/>Wenn Sie eine Datei von "
936
- "Ihrem Computer hochladen, warten Sie bitte bis der Upload fertig ist "
937
- "(Fortschrittsbalken bei 100% ) bevor Sie auf weiter klicken."
938
-
939
- #: ../../classes/upload.php:48
940
- msgid "Uploaded file is empty"
941
- msgstr "Hochgeladene Datei ist leer."
942
-
943
- #: ../../classes/upload.php:50 ../../controllers/admin/settings.php:459
944
- msgid "Uploaded file must be XML, CSV, ZIP, GZIP, GZ, JSON, SQL, TXT, DAT or PSV"
945
- msgstr ""
946
- "Hochgeladene Datei muss XML, CSV, ZIP, GZIP, GZ, JSON, SQL, TXT, DAT oder "
947
- "PSV sein."
948
-
949
- #: ../../classes/upload.php:57 ../../classes/upload.php:114 ../../classes/upload.
950
- #: php:358 ../../classes/upload.php:399 ../../classes/upload.php:704 ../..
951
- #: /classes/upload.php:745
952
- msgid ""
953
- "WP All Import couldn't find a file to import inside your ZIP."
954
- "<br/><br/>Either the .ZIP file is broken, or doesn't contain a file with an "
955
- "extension of XML, CSV, PSV, DAT, or TXT. <br/>Please attempt to unzip your ."
956
- "ZIP file on your computer to ensure it is a valid .ZIP file which can "
957
- "actually be unzipped, and that it contains a file which WP All Import can "
958
- "import."
959
- msgstr ""
960
- "WP All Import kann in Ihrem ZIP keine importierbare Datei finden."
961
- "<br/><br/>Entweder ist die .ZIP beschädigt, oder sie enthält keinen Dateityp "
962
- "mit XML, CSV, PSV, DAT, or TXT. <br/>Bitte versuchen Sie das .ZIP auf Ihrem "
963
- "Computer zu entpacken um sicher zu gehen, dass es sich um ein gültiges .ZIP "
964
- "handelt. Und dass es eine von WP All Import importierbare Datei enthält."
965
-
966
- #: ../../classes/upload.php:94 ../../classes/upload.php:128 ../../classes/upload.
967
- #: php:185 ../../classes/upload.php:379 ../../classes/upload.php:691 ../..
968
- #: /classes/upload.php:725 ../../classes/upload.php:759 ../../classes/upload.php:
969
- #: 819 ../../classes/upload.php:846 ../../classes/upload.php:885 ../..
970
- #: /classes/upload.php:909 ../../classes/upload.php:933
971
- msgid "WP All Import can't access your WordPress uploads folder."
972
- msgstr "WP All Import hat keinen Zugang zu Ihrem Wordpress Upload Verzeichnis."
973
-
974
- #: ../../classes/upload.php:151 ../../classes/upload.php:252 ../../classes/upload.
975
- #: php:436 ../../classes/upload.php:525 ../../classes/upload.php:627 ../..
976
- #: /classes/upload.php:783 ../../classes/upload.php:872
977
- msgid "Can not import this file. JSON to XML convertation failed."
978
- msgstr "Kann die Datei nicht importieren. JSON zu XML Umwandlung fehlgeschlagen."
979
-
980
- #: ../../classes/upload.php:327 ../../classes/upload.php:687
981
- msgid "Please specify a file to import."
982
- msgstr "Bitte wählen Sie eine Datei zum importieren"
983
-
984
- #: ../../classes/upload.php:329
985
- msgid ""
986
- "The URL to your file is not valid.<br/><br/>Please make sure the URL starts "
987
- "with http:// or https://. To import from https://, your server must have "
988
- "OpenSSL installed."
989
- msgstr ""
990
- "Die URL zu Ihrer Datei ist nicht korrekt. <br/><br/>Bitte stellen Sie sicher,"
991
- " dass die URL mit http:// oder https:// beginnt. Um von https:// zu "
992
- "importieren, muss Ihr Server OpenSSL installiert haben."
993
-
994
- #: ../../classes/upload.php:351
995
- msgid "Failed upload ZIP archive"
996
- msgstr "Fehler bei ZIP Upload"
997
-
998
- #: ../../classes/upload.php:486 ../../classes/upload.php:590
999
- msgid ""
1000
- "WP All Import was not able to download your file.<br/><br/>Please make sure "
1001
- "the URL to your file is valid.<br/>You can test this by pasting it into your "
1002
- "browser.<br/>Other reasons for this error can include some server setting on "
1003
- "your host restricting access to this particular URL or external URLs in "
1004
- "general, or some setting on the server hosting the file you are trying to "
1005
- "access preventing your server from accessing it."
1006
- msgstr ""
1007
- "WP All Import konnte Ihre Datei nicht herunterladen.<br/><br/>Bitte stellen "
1008
- "Sie sicher dass die URL zu Ihrer Datei korrekt ist.<br/>Sie können das "
1009
- "testen indem Sie die URL in Ihren Browser kopieren.<br/>Andere Gründe für "
1010
- "diesen Fehler können Servereinstellungen sein, die den Zugriff auf diese URL "
1011
- "oder generell auf externe URLs verhindern. Oder Einstellungen auf dem Server "
1012
- "verhindern den Zugriff."
1013
-
1014
- #: ../../controllers/admin/addons.php:21
1015
- msgid "WooCommerce Addon"
1016
- msgstr "WooCommerce Add-on"
1017
-
1018
- #: ../../controllers/admin/addons.php:22 ../../controllers/admin/addons.php:76
1019
- msgid "Import Products from any XML or CSV to WooCommerce"
1020
- msgstr "Importiere Produkte von XML oder CSV in WooCommerce"
1021
-
1022
- #: ../../controllers/admin/addons.php:32
1023
- msgid "ACF Addon"
1024
- msgstr "ACF Add-on"
1025
-
1026
- #: ../../controllers/admin/addons.php:33
1027
- msgid "Import to advanced custom fields"
1028
- msgstr "Importiere in erweiterte benutzerdefinierte Felder"
1029
-
1030
- #: ../../controllers/admin/addons.php:43
1031
- msgid "WPML Addon"
1032
- msgstr "WPML Add-on"
1033
-
1034
- #: ../../controllers/admin/addons.php:44
1035
- msgid "Import to WPML"
1036
- msgstr "Importiere in WPML"
1037
-
1038
- #: ../../controllers/admin/addons.php:54
1039
- msgid "User Addon"
1040
- msgstr "Benutzer Add-on"
1041
-
1042
- #: ../../controllers/admin/addons.php:55
1043
- msgid "Import Users"
1044
- msgstr "Importiere Benutzer"
1045
-
1046
- #: ../../controllers/admin/addons.php:65
1047
- msgid "Link cloaking Addon"
1048
- msgstr "Maskiere Link Add-on"
1049
-
1050
- #: ../../controllers/admin/addons.php:66
1051
- msgid "Affiliate link cloaking"
1052
- msgstr "Maskiere Affiliate Link"
1053
-
1054
- #: ../../controllers/admin/addons.php:75
1055
- msgid "WooCommerce Addon - free edition"
1056
- msgstr "WooCommerce Add-on - Freie Version"
1057
-
1058
- #: ../../controllers/admin/addons.php:84
1059
- msgid "WooCommerce Tabs Addon"
1060
- msgstr "WooCommerce Tab Add-on"
1061
-
1062
- #: ../../controllers/admin/addons.php:85
1063
- msgid "Import data to WooCommerce tabs"
1064
- msgstr "Importiere Daten in WooCommerce Tabs"
1065
-
1066
- #: ../../controllers/admin/history.php:31
1067
- msgid "Import is not specified."
1068
- msgstr "Import nicht spezifiziert"
1069
-
1070
- #: ../../controllers/admin/history.php:57 ../../controllers/admin/manage.php:60
1071
- msgid "&laquo;"
1072
- msgstr "&laquo;"
1073
-
1074
- #: ../../controllers/admin/history.php:58 ../../controllers/admin/manage.php:61
1075
- msgid "&raquo;"
1076
- msgstr "&raquo;"
1077
-
1078
- #: ../../controllers/admin/history.php:92
1079
- msgid "Log file does not exists."
1080
- msgstr "Log Datei existiert nicht."
1081
-
1082
- #: ../../controllers/admin/history.php:112
1083
- msgid "History deleted"
1084
- msgstr "Chronik gelöscht"
1085
-
1086
- #: ../../controllers/admin/history.php:139 ../../controllers/admin/manage.php:634
1087
- #, php-format
1088
- msgid "%d %s deleted"
1089
- msgstr "%d %s gelöscht"
1090
-
1091
- #: ../../controllers/admin/import.php:75
1092
- msgid ""
1093
- "WP All Import lost track of where you are.<br/><br/>Maybe you cleared your "
1094
- "cookies or maybe it is just a temporary issue on your or your web host's end."
1095
- "<br/>If you can't do an import without seeing this error, change your "
1096
- "session settings on the All Import -> Settings page."
1097
- msgstr ""
1098
- "WP All Import hat die Spur verloren.<br/><br/>Vielleicht haben Sie Ihre "
1099
- "Cookies gelöscht oder es handelt sich um einen vorübergehenden Fehler bei "
1100
- "Ihnen oder Ihrem Webspace Dienstanbieter.<br/>Wenn Sie einen Import "
1101
- "durchführen können ohne diesen Fehler zu sehen, dann ändern Sie die "
1102
- "Einstellung Ihrer Sitzung unter All Import -> Einstellungen"
1103
-
1104
- #: ../../controllers/admin/import.php:92 ../../controllers/admin/import.php:655
1105
- msgid ""
1106
- "There are no elements to import based on your XPath.<br/><br/>If you are in "
1107
- "Step 2, you probably specified filtering options that don’t match any "
1108
- "elements present in your file.<br/>If you are seeing this error elsewhere, "
1109
- "it means that while the XPath expression for your initial import matched "
1110
- "some elements in your file previously, there are now zero elements in the "
1111
- "file that match this expression.<br/>You can edit the XPath for your import "
1112
- "by going to the Manage Imports -> Import Settings page."
1113
- msgstr ""
1114
- "Keine Elemente für den Import auf Ihrem XPath.<br/><br/>Wenn Sie bei Schritt "
1115
- "2 sind, haben Sie eventuell Filteroptionen eingestellt, die zu keinen "
1116
- "Elementen in Ihrer Datei passen.<br/>Wenn Sie diesen Fehler anderswo sehen, "
1117
- "bedeutet das, dass der XPath von Ihrem initialen Import mit Elementen Ihrer "
1118
- "vorherigen Datei übereinstimmt. Jetzt sind Null Elemente in der Datei die "
1119
- "mit diesem XPath übereinstimmen. <br/>Sie können den XPath für Ihren Import "
1120
- "ändern unter Imports verwalten -> Import Einstellungen"
1121
-
1122
- #: ../../controllers/admin/import.php:150
1123
- msgid "The import associated with this export has been deleted."
1124
- msgstr "Der Import in Zusammenhang mit diesem Export wurde gelöscht."
1125
-
1126
- #: ../../controllers/admin/import.php:150
1127
- msgid ""
1128
- "Please re-run your export by clicking Run Export on the All Export -> Manage "
1129
- "Exports page. Then try your import again."
1130
- msgstr ""
1131
- "Bitte starten Sie Ihren Export erneut durch klicken auf Export ausführen "
1132
- "unter All Export -> Exports verwalten. Dann versuchen Sie den Import erneut."
1133
-
1134
- #: ../../controllers/admin/import.php:155
1135
- msgid "This import has been deleted."
1136
- msgstr "Dieser Import wurde gelöscht."
1137
-
1138
- #: ../../controllers/admin/import.php:167
1139
- msgid ""
1140
- "Required PHP components are missing.<br/><br/>WP All Import requires "
1141
- "DOMDocument, XMLReader, and XMLWriter PHP modules to be installed.<br/>These "
1142
- "are standard features of PHP, and are necessary for WP All Import to read "
1143
- "the files you are trying to import.<br/>Please contact your web hosting "
1144
- "provider and ask them to install and activate the DOMDocument, XMLReader, "
1145
- "and XMLWriter PHP modules."
1146
- msgstr ""
1147
- "Benötigte PHP Komponenten fehlen.<br/><br/>WP All Import benötigt "
1148
- "DOMDocument, XMLReader und XMLWriter PHP Module.<br/>Diese sind Standard "
1149
- "Merkmale von PHP und werden von WP All Import benötigt um die Dateien zu "
1150
- "lesen die Sie importieren wollen.<br/>Bitte kontaktieren Sie Ihren "
1151
- "Webhosting Anbieter und fragen Sie nach der Installation und Aktivierung von "
1152
- "DOMDocument, XMLReader und XMLWriter PHP Module."
1153
-
1154
- #: ../../controllers/admin/import.php:242
1155
- msgid "Select an item type to import the data"
1156
- msgstr "Wählen Sie einen Produkttyp um die Daten zu importieren."
1157
-
1158
- #: ../../controllers/admin/import.php:246
1159
- msgid "Previous import for update must be selected to proceed with a new one"
1160
- msgstr ""
1161
- "Um vorherige Imports zu aktualisieren, müssen diese mit neuen selektiert "
1162
- "werden."
1163
-
1164
- #: ../../controllers/admin/import.php:289
1165
- msgid "File is no longer in the correct format"
1166
- msgstr "Datei ist nicht mehr im korrekten Format."
1167
-
1168
- #: ../../controllers/admin/import.php:292 ../../controllers/admin/import.php:323
1169
- msgid ""
1170
- "Certain columns are required to be present in your file to enable it to be "
1171
- "re-imported with WP All Import. These columns are missing. Re-export your "
1172
- "file using WP All Export, and don't delete any of the columns when editing "
1173
- "it. Then, re-import will work correctly."
1174
- msgstr ""
1175
- "Bestimmte Spalten werden benötigt um erneut importiert werden zu können mit "
1176
- "WP All Import. Diese Spalten fehlen. Exportieren Sie Ihre Datei erneut mit "
1177
- "WP All Export. Löschen Sie dabei keine Spalte, dann wird der erneute Import "
1178
- "korrekt funktionieren."
1179
-
1180
- #: ../../controllers/admin/import.php:295
1181
- msgid ""
1182
- "The import template you are using requires User Import Add-On.<br/><a "
1183
- "href=\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress."
1184
- "org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" "
1185
- "target=\"_blank\">Purchase the User Import Add-On</a>"
1186
- msgstr ""
1187
- "Die Import Vorlage die Sie benutzen, benötigt das Benutzer Import Add-on."
1188
- "<br/><a href=\"http://www.wpallimport.com/add-ons/user-import/?"
1189
- "utm_source=wordpress.org&utm_medium=wpai-import-"
1190
- "template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">User Import "
1191
- "Add-on kaufen</a>"
1192
-
1193
- #: ../../controllers/admin/import.php:358
1194
- msgid "Unable to download feed resource."
1195
- msgstr "Herunterladen des Feeds nicht möglich."
1196
-
1197
- #: ../../controllers/admin/import.php:433 ../../controllers/admin/import.php:457 .
1198
- #: ./../controllers/admin/settings.php:644
1199
- msgid ""
1200
- "Please confirm you are importing a valid feed.<br/> Often, feed providers "
1201
- "distribute feeds with invalid data, improperly wrapped HTML, line breaks "
1202
- "where they should not be, faulty character encodings, syntax errors in the "
1203
- "XML, and other issues.<br/><br/>WP All Import has checks in place to "
1204
- "automatically fix some of the most common problems, but we can’t catch every "
1205
- "single one.<br/><br/>It is also possible that there is a bug in WP All "
1206
- "Import, and the problem is not with the feed.<br/><br/>If you need "
1207
- "assistance, please contact support – <a href=\"mailto:support@wpallimport."
1208
- "com\">support@wpallimport.com</a> – with your XML/CSV file. We will identify "
1209
- "the problem and release a bug fix if necessary."
1210
- msgstr ""
1211
- "Bitte bestätigen: Sie importieren einen gültigen Feed.<br/> Oftmals "
1212
- "enthalten Feeds von Anbietern falsche Daten wie, unpassend eingepacktes HTML,"
1213
- " neue Zeile wo sie nicht sein soll, falsche Buchstaben Codierung, Syntax "
1214
- "Fehler in der XML und andere Probleme.<br/><br/>WP All Import hat Kontrollen "
1215
- "die automatisch einige der häufigsten Probleme beheben, aber wir können "
1216
- "nicht jeden finden.<br/><br/>Es ist auch Möglich dass ein Fehler in WP All "
1217
- "Import ist und das Problem nicht am Feed liegt.<br/><br/>Wenn Sie Hilfe "
1218
- "brauchen, kontaktieren Sie bitte den Support – <a href=\"mailto:"
1219
- "support@wpallimport.com\">support@wpallimport.com</a> - mit Ihrer XML/CSV "
1220
- "Datei. Wir werden das Problem finden und eine Behebung des Fehlers "
1221
- "herausgeben falls das nötig ist."
1222
-
1223
- #: ../../controllers/admin/import.php:452
1224
- msgid ""
1225
- "WP All Import unable to detect file type.<br/><br/>WP All Import not able to "
1226
- "determine what type of file you are importing. Make sure your file extension "
1227
- "is correct for the file type you are importing.<br/> Please choose the "
1228
- "correct file type from the dropdown below, or try adding &type=xml or "
1229
- "&type=csv to the end of the URL, for example http://example.com/export-"
1230
- "products.php?&type=xml"
1231
- msgstr ""
1232
- "WP All Import kann den Dateityp nicht feststellen.<br/><br/>WP All Import "
1233
- "kann den Typ Ihrer Importdatei nicht bestimmen. Stellen Sie sicher, dass die "
1234
- "Dateiendung der zu importierenden Datei korrekt ist.<br/>Bitte wählen Sie "
1235
- "einen korrekten Dateityp von der Dropdown-Liste unterhalb. Oder versuchen "
1236
- "Sie &type=xml oder &type=csv an das Ende der URL anzufügen. Beispiel: http:"
1237
- "//example.com/export-products.php?&type=xml"
1238
-
1239
- #: ../../controllers/admin/import.php:485
1240
- msgid "No elements selected"
1241
- msgstr "Keine Elemente gewählt"
1242
-
1243
- #: ../../controllers/admin/import.php:490 ../../controllers/admin/import.php:716
1244
- msgid ""
1245
- "Your XPath is not valid.<br/><br/>Click \"get default XPath\" to get the "
1246
- "default XPath."
1247
- msgstr ""
1248
- "Ihr XPath ist nicht korrekt. <br/><br/>Klicken Sie auf \"Hole Standard XPath\" "
1249
- "um den Standard XPath zu erhalten."
1250
-
1251
- #: ../../controllers/admin/import.php:494 ../../controllers/admin/import.php:722
1252
- msgid "XPath must match only elements"
1253
- msgstr "XPath muss Elementen entsprechen"
1254
-
1255
- #: ../../controllers/admin/import.php:524
1256
- msgid ""
1257
- "Warning: No matching elements found for XPath expression from the import "
1258
- "being updated. It probably means that new XML file has different format. "
1259
- "Though you can update XPath, procceed only if you sure about update "
1260
- "operation being valid."
1261
- msgstr ""
1262
- "Warnung: Keine passenden Elemente für diesen XPath gefunden von dem Import "
1263
- "der aktualisiert wird. Das bedeutet eventuell, dass die XML Datei ein "
1264
- "anderes Format hat. Obwohl Sie XPath aktualisieren können, sollten Sie das "
1265
- "nur ausführen wenn Sie sicher sind dass die Aktualisierung zulässig ist. "
1266
-
1267
- #: ../../controllers/admin/import.php:566 ../../controllers/admin/import.php:709
1268
- msgid ""
1269
- "Your XPath is empty.<br/><br/>Please enter an XPath expression, or click "
1270
- "\"get default XPath\" to get the default XPath."
1271
- msgstr ""
1272
- "Ihr XPath is leer.<br/><br/>Bitte geben Sie einen XPath Ausdruck ein, oder "
1273
- "klicken Sie auf \"Hole Standard XPath\" um den Standard XPath zu erhalten."
1274
-
1275
- #: ../../controllers/admin/import.php:718
1276
- msgid "No matching variations found for XPath specified"
1277
- msgstr "Keine passenden Varianten für den XPath gefunden"
1278
-
1279
- #: ../../controllers/admin/import.php:959 ../../controllers/admin/import.php:975 .
1280
- #: ./../controllers/admin/import.php:1105
1281
- msgid ""
1282
- "WP All Import lost track of where you are.<br/><br/>Maybe you cleared your "
1283
- "cookies or maybe it is just a temporary issue on your web host's end.<br/>If "
1284
- "you can't do an import without seeing this error, change your session "
1285
- "settings on the All Import -> Settings page."
1286
- msgstr ""
1287
- "WP All Import hat die Spur verloren.<br/><br/>Vielleicht haben Sie Ihre "
1288
- "Cookies gelöscht oder es handelt sich um einen vorübergehenden Fehler bei "
1289
- "Ihnen oder Ihrem Dienstanbieter.<br/>Wenn Sie einen Import durchführen "
1290
- "können ohne diesen Fehler zu sehen, ändern Sie Ihre Einstellungen unter All "
1291
- "Import -> Einstellungen."
1292
-
1293
- #: ../../controllers/admin/import.php:961
1294
- msgid "<strong>Warning</strong>: your title is blank."
1295
- msgstr "<strong>Warnung:</strong>Ihr Titel ist leer."
1296
-
1297
- #: ../../controllers/admin/import.php:966
1298
- msgid "<strong>Warning</strong>: resulting post title is empty"
1299
- msgstr "<strong>Warnung:</strong>:Ergebnis post Titel ist leer."
1300
-
1301
- #: ../../controllers/admin/import.php:971
1302
- #, php-format
1303
- msgid "Error parsing title: %s"
1304
- msgstr "Fehler beim Parsen des Titel: %s"
1305
-
1306
- #: ../../controllers/admin/import.php:977
1307
- msgid "<strong>Warning</strong>: your content is blank."
1308
- msgstr "<strong>Warnung:</strong>: Ihr Inhalt ist leer."
1309
-
1310
- #: ../../controllers/admin/import.php:982
1311
- msgid "<strong>Warning</strong>: resulting post content is empty"
1312
- msgstr "<strong>Warnung:</strong>:Ergebnis post Titel ist leer."
1313
-
1314
- #: ../../controllers/admin/import.php:987
1315
- #, php-format
1316
- msgid "Error parsing content: %s"
1317
- msgstr "Fehler beim Parsen des Inhalts: %s"
1318
-
1319
- #: ../../controllers/admin/import.php:1125 ../../controllers/admin/import.php:
1320
- #: 1280 ../../controllers/admin/import.php:1412
1321
- #, php-format
1322
- msgid "Error parsing: %s"
1323
- msgstr "Fehler beim Parsen: %s"
1324
-
1325
- #: ../../controllers/admin/import.php:1236 ../../controllers/admin/import.php:1391
1326
- msgid "Error parsing: String could not be parsed as XML"
1327
- msgstr "Fehler beim Parsen: String kann nicht als XML geparst werden."
1328
-
1329
- #: ../../controllers/admin/import.php:1277 ../../controllers/admin/import.php:1409
1330
- msgid "There is no data to preview"
1331
- msgstr "Keine Daten zur Vorschau"
1332
-
1333
- #: ../../controllers/admin/import.php:1514 ../../views/admin/import/template.php:67
1334
- msgid "Excerpt"
1335
- msgstr "Ausschnitt"
1336
-
1337
- #: ../../controllers/admin/import.php:1518 ../../controllers/admin/import.php:
1338
- #: 1522 ../../models/import/record.php:1186 ../../views/admin/import/template.php:
1339
- #: 112 ../../views/admin/import/options/_reimport_options.php:135
1340
- msgid "Images"
1341
- msgstr "Bilder"
1342
-
1343
- #: ../../controllers/admin/import.php:1540
1344
- msgid "Both name and value must be set for all custom parameters"
1345
- msgstr "Name und Wert müssen für alle Merkmale gesetzt sein."
1346
-
1347
- #: ../../controllers/admin/import.php:1543
1348
- msgid "Custom Field Name"
1349
- msgstr "Name individuelles Feld"
1350
-
1351
- #: ../../controllers/admin/import.php:1547
1352
- msgid "Custom Field Value"
1353
- msgstr "Wert individuelles Feld"
1354
-
1355
- #: ../../controllers/admin/import.php:1560
1356
- msgid "Both name and value must be set for all woocommerce attributes"
1357
- msgstr "Name und Wert müssen für alle WooCommerce Merkmale gesetzt sein."
1358
-
1359
- #: ../../controllers/admin/import.php:1563
1360
- msgid "Attribute Field Name"
1361
- msgstr "Name Merkmalfeld"
1362
-
1363
- #: ../../controllers/admin/import.php:1566
1364
- msgid "Attribute Field Value"
1365
- msgstr "Wert Merkmalfeld"
1366
-
1367
- #: ../../controllers/admin/import.php:1577
1368
- msgid "Tags"
1369
- msgstr "Tags"
1370
-
1371
- #: ../../controllers/admin/import.php:1580 ../../views/admin/history/index.php:33
1372
- msgid "Date"
1373
- msgstr "Datum"
1374
-
1375
- #: ../../controllers/admin/import.php:1582 ../../controllers/admin/import.php:1583
1376
- msgid "Start Date"
1377
- msgstr "Start Datum"
1378
-
1379
- #: ../../controllers/admin/import.php:1617
1380
- msgid "Template updated"
1381
- msgstr "Vorlage aktualisiert"
1382
-
1383
- #: ../../controllers/admin/import.php:1699
1384
- #, php-format
1385
- msgid "%s template is invalid: %s"
1386
- msgstr "%s Vorlage ist ungültig: %s"
1387
-
1388
- #: ../../controllers/admin/import.php:1802
1389
- msgid ""
1390
- "Records to import must be specified or uncheck `Import only specified "
1391
- "records` option to process all records"
1392
- msgstr ""
1393
- "Zu importierende Datensätze müssen ausgewählt werden, oder entfernen Sie die "
1394
- "Markierung bei `Nur ausgewählte Datensätze importieren` um alle Datensätze "
1395
- "zu verarbeiten."
1396
-
1397
- #: ../../controllers/admin/import.php:1807
1398
- msgid "Wrong format of `Import only specified records` value"
1399
- msgstr "Falsches Format bei `Nur ausgewählte Datensätze importieren`"
1400
-
1401
- #: ../../controllers/admin/import.php:1810
1402
- msgid ""
1403
- "One of the numbers in `Import only specified records` value exceeds record "
1404
- "quantity in XML file"
1405
- msgstr ""
1406
- "Eine der Nummern in `Nur ausgewählte Datensätze importieren` übersteigt die "
1407
- "Datensatz Anzahl in der XML"
1408
-
1409
- #: ../../controllers/admin/import.php:1817
1410
- msgid ""
1411
- "Expression for `Post Unique Key` must be set, use the same expression as "
1412
- "specified for post title if you are not sure what to put there"
1413
- msgstr ""
1414
- "Ausdruck für `Sende einzigartige ID` muss gesetzt sein. Nutzen Sie den "
1415
- "selben Ausdruck den Sie für den post Titel gewählt haben, wenn Sie nicht "
1416
- "sicher sind."
1417
-
1418
- #: ../../controllers/admin/import.php:1819
1419
- msgid "Post Unique Key"
1420
- msgstr "Sende einzigartige ID"
1421
-
1422
- #: ../../controllers/admin/import.php:1823
1423
- msgid "Custom field name must be specified."
1424
- msgstr "Name vom individuellen Feld muss angegeben werden."
1425
-
1426
- #: ../../controllers/admin/import.php:1825
1427
- msgid "Custom field value must be specified."
1428
- msgstr "Wert vom individuellen Feld muss angegeben werden."
1429
-
1430
- #: ../../controllers/admin/import.php:1906
1431
- msgid "WP All Import doesn't support this import type."
1432
- msgstr "WP All Import unterstützt diesen Import Typ nicht."
1433
-
1434
- #: ../../controllers/admin/import.php:1950
1435
- msgid ""
1436
- "<strong>Warning:</strong> this file does not have the same structure as the "
1437
- "last file associated with this import. WP All Import won't be able to import "
1438
- "this file with your current settings. Probably you'll need to adjust your "
1439
- "XPath in the \"Configure Advanced Settings\" box below, and reconfigure your "
1440
- "import by clicking \"Edit\" on the Manage Imports page."
1441
- msgstr ""
1442
- "<strong>Warnung:</strong>diese Datei hat nicht die gleiche Struktur wie die "
1443
- "letzte Datei die mit diesem Import durchgeführt wurde. WP All Import wird "
1444
- "die Datei mit den gegenwärtigen Einstellungen nicht importieren können. "
1445
- "Möglicherweise müssen Sie Ihren XPath umstellen in \" Konfiguriere erweiterte "
1446
- "Einstellungen\" und ändern ihn durch klicken auf \"Bearbeiten\" auf der Imports "
1447
- "verwalten Seite."
1448
-
1449
- #: ../../controllers/admin/import.php:1995
1450
- msgid "Root element not found for uploaded feed."
1451
- msgstr "Wurzelelement nicht gefunden für den hochgeladenen Feed."
1452
-
1453
- #: ../../controllers/admin/import.php:2047
1454
- msgid "Import updated"
1455
- msgstr "Import aktualisiert"
1456
-
1457
- #: ../../controllers/admin/import.php:2047
1458
- msgid "Import created"
1459
- msgstr "Import erstellt"
1460
-
1461
- #: ../../controllers/admin/import.php:2149
1462
- msgid "Configuration updated"
1463
- msgstr "Konfiguration aktualisiert"
1464
-
1465
- #: ../../controllers/admin/import.php:2321 ../../controllers/admin/import.php:
1466
- #: 2604 ../../controllers/admin/import.php:2732
1467
- #, php-format
1468
- msgid "%d %ss created %d updated %d deleted %d skipped"
1469
- msgstr "%d %ss erstellt %d aktualisiert %d gelöscht %d übersprungen"
1470
-
1471
- #: ../../controllers/admin/import.php:2739
1472
- msgid "Canceled"
1473
- msgstr "Abgebrochen"
1474
-
1475
- #: ../../controllers/admin/import.php:2739
1476
- msgid "Complete"
1477
- msgstr "Fertiggestellt"
1478
-
1479
- #: ../../controllers/admin/license.php:43
1480
- msgid "Licenses saved"
1481
- msgstr "Lizenz gespeichert"
1482
-
1483
- #: ../../controllers/admin/manage.php:298 ../../views/admin/manage/index.php:272
1484
- msgid "Import canceled"
1485
- msgstr "Import abgebrochen "
1486
-
1487
- #: ../../controllers/admin/manage.php:363
1488
- msgid ""
1489
- "This import appears to be using FTP. Unfortunately WP All Import no longer "
1490
- "supports the FTP protocol. Please contact <a href=\"mailto:"
1491
- "support@wpallimport.com\">support@wpallimport.com</a> if you have any "
1492
- "questions."
1493
- msgstr ""
1494
- "Dieser Import scheint FTP zu nutzen. Leider unterstützt WP All Import das "
1495
- "FTP Protokoll nicht mehr. Bitte kontaktieren Sie <a href=\"mailto:"
1496
- "support@wpallimport.com\">support@wpallimport.com</a> wenn Sie fragen haben."
1497
-
1498
- #: ../../controllers/admin/manage.php:459
1499
- msgid "No matching elements found for Root element and XPath expression specified"
1500
- msgstr ""
1501
- "Keine passenden Elemente für das Wurzelelement und den XPath Ausdruck "
1502
- "gefunden"
1503
-
1504
- #: ../../controllers/admin/manage.php:555
1505
- msgid "File does not exists."
1506
- msgstr "Datei existiert nicht"
1507
-
1508
- #: ../../controllers/admin/settings.php:60
1509
- msgid "History File Count must be a non-negative integer"
1510
- msgstr "Zählung der Datei Chronik muss ein nicht negativer integer sein"
1511
-
1512
- #: ../../controllers/admin/settings.php:63
1513
- msgid "History Age must be a non-negative integer"
1514
- msgstr "Chronik alter muss ein nicht negativer integer sein."
1515
-
1516
- #: ../../controllers/admin/settings.php:83
1517
- msgid "Settings saved"
1518
- msgstr "Einstellungen gespeichert"
1519
-
1520
- #: ../../controllers/admin/settings.php:114
1521
- msgid "Unknown File extension. Only txt files are permitted"
1522
- msgstr "Unbekannte Dateiendung. Nur txt Dateien sind erlaubt"
1523
-
1524
- #: ../../controllers/admin/settings.php:129
1525
- msgid "Wrong imported data format"
1526
- msgstr "Falsches Import Dateiformat"
1527
-
1528
- #: ../../controllers/admin/settings.php:131
1529
- msgid "File is empty or doesn't exests"
1530
- msgstr "Datei ist leer oder existiert nicht"
1531
-
1532
- #: ../../controllers/admin/settings.php:134
1533
- msgid "Undefined entry!"
1534
- msgstr "Undefinierter Eintrag"
1535
-
1536
- #: ../../controllers/admin/settings.php:136
1537
- msgid "Please select file."
1538
- msgstr "Bitte wählen Sie eine Datei"
1539
-
1540
- #: ../../controllers/admin/settings.php:142
1541
- msgid "Templates must be selected"
1542
- msgstr "Vorlagen müssen gewählt sein"
1543
-
1544
- #: ../../controllers/admin/settings.php:279
1545
- msgid "Files not found"
1546
- msgstr "Dateien nicht gefunden"
1547
-
1548
- #: ../../controllers/admin/settings.php:287
1549
- msgid "Clean Up has been successfully completed."
1550
- msgstr "Aufräumarbeiten erfolgreich beendet."
1551
-
1552
- #: ../../controllers/admin/settings.php:438
1553
- msgid "Uploads folder is not writable."
1554
- msgstr "Upload Verzeichnis ist nicht beschreibbar."
1555
-
1556
- #: ../../controllers/admin/settings.php:495
1557
- msgid "Failed to open temp directory."
1558
- msgstr "Fehler bei öffnen des temp Verzeichnisses."
1559
-
1560
- #: ../../controllers/admin/settings.php:520 ../../controllers/admin/settings.php:
1561
- #: 545
1562
- msgid "Failed to open input stream."
1563
- msgstr "Fehler bei öffnen des Input streams."
1564
-
1565
- #: ../../controllers/admin/settings.php:527 ../../controllers/admin/settings.php:
1566
- #: 552
1567
- msgid "Failed to open output stream."
1568
- msgstr "Fehler bei öffnen des Output streams."
1569
-
1570
- #: ../../controllers/admin/settings.php:531
1571
- msgid "Failed to move uploaded file."
1572
- msgstr "Fehler bei verschieben der hochgeladenen Datei."
1573
-
1574
- #: ../../helpers/import_custom_meta_box.php:25
1575
- msgid ""
1576
- "Custom fields can be used to add extra metadata to a post that you can <a "
1577
- "href=\"http://codex.wordpress.org/Using_Custom_Fields\" target=\"_blank\">use in "
1578
- "your theme</a>."
1579
- msgstr ""
1580
- "Individuelle Felder können genutzt werden um zusätzliche Daten in einen Post "
1581
- "einzufügen. Sie können <a href=\"http://codex.wordpress."
1582
- "org/Using_Custom_Fields\" target=\"_blank\">sie in Ihrem Theme nutzen</a>."
1583
-
1584
- #: ../../helpers/reverse_taxonomies_html.php:18 ../..
1585
- #: /views/admin/import/template/_taxonomies_template.php:41 ../..
1586
- #: /views/admin/import/template/_taxonomies_template.php:63 ../..
1587
- #: /views/admin/import/template/_taxonomies_template.php:97 ../..
1588
- #: /views/admin/import/template/_taxonomies_template.php:107 ../..
1589
- #: /views/admin/import/template/_taxonomies_template.php:116 ../..
1590
- #: /views/admin/import/template/_taxonomies_template.php:164 ../..
1591
- #: /views/admin/import/template/_taxonomies_template.php:182 ../..
1592
- #: /views/admin/import/template/_taxonomies_template.php:189 ../..
1593
- #: /views/admin/import/template/_taxonomies_template.php:201
1594
- msgid "Assign post to the taxonomy."
1595
- msgstr "Post zuordnen zu Taxonomie."
1596
-
1597
- #: ../../helpers/wp_all_import_addon_notifications.php:108
1598
- #, php-format
1599
- msgid ""
1600
- "Make imports easier with the <strong>Advanced Custom Fields Add-On</strong> "
1601
- "for WP All Import: <a href=\"%s\" target=\"_blank\">Read More</a>"
1602
- msgstr ""
1603
- "Machen Sie die Imports einfacher mit <strong>Erweiterte benutzerdefinierte "
1604
- "Felder Add-on</strong> für WP All Import: <a href=\"%s\" target=\"_blank\">Mehr "
1605
- "erfahren</a>"
1606
-
1607
- #: ../../helpers/wp_all_import_addon_notifications.php:141
1608
- #, php-format
1609
- msgid ""
1610
- "Make imports easier with the <strong>free %s Add-On</strong> for WP All "
1611
- "Import: <a href=\"%s\" target=\"_blank\">Get Add-On</a>"
1612
- msgstr ""
1613
- "Machen Sie die Imports einfacher mit <strong>freie %s Add-on</strong> für WP "
1614
- "All Import: <a href=\"%s\" target=\"_blank\">Get Add-on</a>"
1615
-
1616
- #: ../../helpers/wp_all_import_is_json.php:12
1617
- msgid "Maximum stack depth exceeded"
1618
- msgstr "Maximale Stapeltiefe überschritten"
1619
-
1620
- #: ../../helpers/wp_all_import_is_json.php:15
1621
- msgid "Underflow or the modes mismatch"
1622
- msgstr "Unterlauf oder die Modi passen nicht"
1623
-
1624
- #: ../../helpers/wp_all_import_is_json.php:18
1625
- msgid "Unexpected control character found"
1626
- msgstr "Unerwarteter Buchstabe gefunden"
1627
-
1628
- #: ../../helpers/wp_all_import_is_json.php:21
1629
- msgid "Syntax error, malformed JSON"
1630
- msgstr "Syntax Fehler, deformiertes JSON"
1631
-
1632
- #: ../../helpers/wp_all_import_is_json.php:24
1633
- msgid "Malformed UTF-8 characters, possibly incorrectly encoded"
1634
- msgstr "Deformierte UTF-8 Buchstaben, möglicherweise falsch codiert"
1635
-
1636
- #: ../../helpers/wp_all_import_is_json.php:27
1637
- msgid "Unknown json error"
1638
- msgstr "Unbekannter JSON Fehler "
1639
-
1640
- #: ../../helpers/wp_all_import_template_notifications.php:23
1641
- msgid ""
1642
- "The import template you are using requires the User Import Add-On. If you "
1643
- "continue without it your data may import incorrectly.<br/><br/><a href=\"http:"
1644
- "//www.wpallimport.com/add-ons/user-import/?utm_source=wordpress."
1645
- "org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" "
1646
- "target=\"_blank\">Purchase the User Import Add-On</a>."
1647
- msgstr ""
1648
- "Die Import Vorlage die sie benutzen, benötigt das Benutzer Import Add-on. "
1649
- "Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden."
1650
- "<br/><br/><a href=\"http://www.wpallimport.com/add-ons/user-import/?"
1651
- "utm_source=wordpress.org&utm_medium=wpai-import-"
1652
- "template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">Benutzer "
1653
- "Import Add-On hier kaufen</a>."
1654
-
1655
- #: ../../helpers/wp_all_import_template_notifications.php:27
1656
- msgid ""
1657
- "The import template you are using requires the WooCommerce Import Add-On. If "
1658
- "you continue without it your data may import incorrectly.<br/><br/><a "
1659
- "href=\"http://www.wpallimport.com/woocommerce-product-import/\" "
1660
- "target=\"_blank\">Purchase the WooCommerce Import Add-On</a>."
1661
- msgstr ""
1662
- "Die Import Vorlage die sie benutzen, benötigt das WooCommerce Import Add-on. "
1663
- "Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden."
1664
- "<br/><br/><a href=\"http://www.wpallimport.com/woocommerce-product-import/\" "
1665
- "target=\"_blank\">WooCommerce Import Add-On hier kaufen</a>."
1666
-
1667
- #: ../../helpers/wp_all_import_template_notifications.php:32
1668
- msgid ""
1669
- "The import template you are using requires the Realia Add-On. If you "
1670
- "continue without it your data may import incorrectly.<br/><br/><a "
1671
- "href=\"https://wordpress.org/plugins/realia-xml-csv-property-listings-"
1672
- "import/\" target=\"_blank\">Download the Realia Add-On</a>."
1673
- msgstr ""
1674
- "Die Import Vorlage die sie benutzen, benötigt das Realia Add-on. Wenn Sie "
1675
- "ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden."
1676
- "<br/><br/><a href=\"https://wordpress.org/plugins/realia-xml-csv-property-"
1677
- "listings-import/\" target=\"_blank\">Realia Add-On hier herunterladen</a>."
1678
-
1679
- #: ../../helpers/wp_all_import_template_notifications.php:39
1680
- msgid ""
1681
- "The import template you are using requires the WP Residence Add-On. If you "
1682
- "continue without it your data may import incorrectly.<br/><br/><a "
1683
- "href=\"https://wordpress.org/plugins/wp-residence-add-on-for-wp-all-import/\" "
1684
- "target=\"_blank\">Download the WP Residence Add-On</a>."
1685
- msgstr ""
1686
- "Die Import Vorlage die sie benutzen, benötigt das WP Residence Add-on. Wenn "
1687
- "Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden."
1688
- "<br/><br/><a href=\"https://wordpress.org/plugins/wp-residence-add-on-for-wp-"
1689
- "all-import/\" target=\"_blank\">WP Residence Add-On hier herunterladen</a>."
1690
-
1691
- #: ../../helpers/wp_all_import_template_notifications.php:46
1692
- msgid ""
1693
- "The import template you are using requires the RealHomes Add-On. If you "
1694
- "continue without it your data may import incorrectly.<br/><br/><a "
1695
- "href=\"https://wordpress.org/plugins/realhomes-xml-csv-property-listings-"
1696
- "import/\" target=\"_blank\">Download the RealHomes Add-On</a>."
1697
- msgstr ""
1698
- "Die Import Vorlage die sie benutzen, benötigt das RealHomes Add-on. Wenn Sie "
1699
- "ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden."
1700
- "<br/><br/><a href=\"https://wordpress.org/plugins/realhomes-xml-csv-property-"
1701
- "listings-import/\" target=\"_blank\">RealHomes Add-On hier herunterladen</a>."
1702
-
1703
- #: ../../helpers/wp_all_import_template_notifications.php:52
1704
- msgid ""
1705
- "The import template you are using requires the Jobify Add-On. If you "
1706
- "continue without it your data may import incorrectly.<br/><br/><a "
1707
- "href=\"https://wordpress.org/plugins/jobify-xml-csv-listings-import/\" "
1708
- "target=\"_blank\">Download the Jobify Add-On</a>."
1709
- msgstr ""
1710
- "Die Import Vorlage die sie benutzen, benötigt das Jobify Add-on. Wenn Sie "
1711
- "ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden."
1712
- "<br/><br/><a href=\"https://wordpress.org/plugins/jobify-xml-csv-listings-"
1713
- "import/\" target=\"_blank\">Jobify Add-On hier herunterladen</a>."
1714
-
1715
- #: ../../helpers/wp_all_import_template_notifications.php:58
1716
- msgid ""
1717
- "The import template you are using requires the Listify Add-On. If you "
1718
- "continue without it your data may import incorrectly.<br/><br/><a "
1719
- "href=\"https://wordpress.org/plugins/listify-xml-csv-listings-import/\" "
1720
- "target=\"_blank\">Download the Listify Add-On</a>."
1721
- msgstr ""
1722
- "Die Import Vorlage die sie benutzen, benötigt das Listify Add-on. Wenn Sie "
1723
- "ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden."
1724
- "<br/><br/><a href=\"https://wordpress.org/plugins/listify-xml-csv-listings-"
1725
- "import/\" target=\"_blank\">Listify Add-On hier herunterladen</a>."
1726
-
1727
- #: ../../helpers/wp_all_import_template_notifications.php:64
1728
- msgid ""
1729
- "The import template you are using requires the Reales WP Add-On. If you "
1730
- "continue without it your data may import incorrectly.<br/><br/><a "
1731
- "href=\"https://wordpress.org/plugins/reales-wp-xml-csv-property-listings-"
1732
- "import/\" target=\"_blank\">Download the Reales WP Add-On</a>."
1733
- msgstr ""
1734
- "Die Import Vorlage die sie benutzen, benötigt das Reales WP Add-on. Wenn Sie "
1735
- "ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden."
1736
- "<br/><br/><a href=\"https://wordpress.org/plugins/reales-wp-xml-csv-property-"
1737
- "listings-import/\" target=\"_blank\">Reales WP Add-On hier herunterladen</a>."
1738
-
1739
- #: ../../helpers/wp_all_import_template_notifications.php:70
1740
- msgid ""
1741
- "The import template you are using requires the WP Job Manager Add-On. If you "
1742
- "continue without it your data may import incorrectly.<br/><br/><a "
1743
- "href=\"https://wordpress.org/plugins/wp-job-manager-xml-csv-listings-import/\" "
1744
- "target=\"_blank\">Download the WP Job Manager Add-On</a>."
1745
- msgstr ""
1746
- "Die Import Vorlage die sie benutzen, benötigt das WP Job Add-on. Wenn Sie "
1747
- "ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden."
1748
- "<br/><br/><a href=\"https://wordpress.org/plugins/wp-job-manager-xml-csv-"
1749
- "listings-import/\" target=\"_blank\">WP Job Manager Add-On hier "
1750
- "herunterladen</a>."
1751
-
1752
- #: ../../helpers/wp_all_import_template_notifications.php:76
1753
- msgid ""
1754
- "The import template you are using requires the Yoast SEO Add-On. If you "
1755
- "continue without it your data may import incorrectly.<br/><br/><a "
1756
- "href=\"https://wordpress.org/plugins/yoast-seo-settings-xml-csv-import/\" "
1757
- "target=\"_blank\">Download the Yoast SEO Add-On</a>."
1758
- msgstr ""
1759
- "Die Import Vorlage die sie benutzen, benötigt das Yoast SEO Add-on. Wenn Sie "
1760
- "ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden."
1761
- "<br/><br/><a href=\"https://wordpress.org/plugins/yoast-seo-settings-xml-csv-"
1762
- "import/\" target=\"_blank\">Yoast SEO Add-On hier herunterladen</a>."
1763
-
1764
- #: ../../helpers/wp_all_import_template_notifications.php:81
1765
- msgid ""
1766
- "The import template you are using requires an Add-On for WP All Import. If "
1767
- "you continue without using this Add-On your data may import incorrectly."
1768
- msgstr ""
1769
- "Die Import Vorlage die sie benutzen, benötigt ein Add-on für WP All Import. "
1770
- "Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden."
1771
-
1772
- #: ../../helpers/wp_all_import_template_notifications.php:93
1773
- msgid "<strong>Warning:</strong>"
1774
- msgstr "<strong>Warnung:</strong>"
1775
-
1776
- #: ../../models/import/record.php:42
1777
- #, php-format
1778
- msgid ""
1779
- "WP All Import can't read your file.<br/><br/>Probably, you are trying to "
1780
- "import an invalid XML feed. Try opening the XML feed in a web browser "
1781
- "(Google Chrome is recommended for opening XML files) to see if there is an "
1782
- "error message.<br/>Alternatively, run the feed through a validator: http:"
1783
- "//validator.w3.org/<br/>99% of the time, the reason for this error is "
1784
- "because your XML feed isn't valid.<br/>If you are 100% sure you are "
1785
- "importing a valid XML feed, please contact WP All Import support."
1786
- msgstr ""
1787
- "WP All Import kann Ihre Datei nicht lesen. <br/><br/> Eventuell versuchen "
1788
- "Sie einen ungültigen XML Feed zu importieren. Versuchen Sie das XML in einem "
1789
- "Browser zu öffnen ( Google Chrome wird empfohlen um XML Dateien zu öffnen) "
1790
- "um zu sehen ob eine Fehlermeldung erscheint. <br/>Alternativ können Sie den "
1791
- "Feed durch einen Validator prüfen lassen: http://validator.w3.org/<br/> In "
1792
- "99% der Fälle ist der Grund für einen Fehler ein ungültiger XML Feed. <br/> "
1793
- "Wenn Sie 100% sicher sind dass sie einen gültigen XML Feed importieren, "
1794
- "Kontaktieren Sie den WP All Import Support."
1795
-
1796
- #: ../../models/import/record.php:54
1797
- msgid "Invalid XML"
1798
- msgstr "Ungültiges XML"
1799
-
1800
- #: ../../models/import/record.php:57
1801
- msgid "Line"
1802
- msgstr "Zeile"
1803
-
1804
- #: ../../models/import/record.php:58
1805
- msgid "Column"
1806
- msgstr "Spalte"
1807
-
1808
- #: ../../models/import/record.php:59
1809
- msgid "Code"
1810
- msgstr "Code"
1811
-
1812
- #: ../../models/import/record.php:70
1813
- msgid "Required PHP components are missing."
1814
- msgstr "Benötige PHP Komponenten fehlen."
1815
-
1816
- #: ../../models/import/record.php:71
1817
- msgid ""
1818
- "WP All Import requires the SimpleXML PHP module to be installed. This is a "
1819
- "standard feature of PHP, and is necessary for WP All Import to read the "
1820
- "files you are trying to import.<br/>Please contact your web hosting provider "
1821
- "and ask them to install and activate the SimpleXML PHP module."
1822
- msgstr ""
1823
- "WP All Import benötigt einfache XML PHP Module die installiert sein müssen. "
1824
- "Diese sind Standardinhalte in PHP und werden von WP All Import benötigt um "
1825
- "die Dateien zu lesen die Sie versuchen zu importieren.<br/>Bitte "
1826
- "kontaktieren Sie Ihren Dienstanbieter und fragen Sie nach der Installation "
1827
- "und Aktivierung der einfachen XML PHP Module."
1828
-
1829
- #: ../../models/import/record.php:115
1830
- #, php-format
1831
- msgid ""
1832
- "This import appears to be using FTP. Unfortunately WP All Import no longer "
1833
- "supports the FTP protocol. Please contact <a href=\"mailto:"
1834
- "support@wpallimport.com\">%s</a> if you have any questions."
1835
- msgstr ""
1836
- "Dieser Import scheint FTP zu nutzen. Leider unterstützt WP All Import das "
1837
- "FTP Protokoll nicht mehr. Bitte kontaktieren Sie <a href=\"mailto:"
1838
- "support@wpallimport.com\">%s</a> wenn Sie fragen haben."
1839
-
1840
- #: ../../models/import/record.php:261
1841
- #, php-format
1842
- msgid ""
1843
- "#%s No matching elements found for Root element and XPath expression "
1844
- "specified"
1845
- msgstr ""
1846
- "#%s Keine passenden Elemente für das Wurzelelement und den XPath Ausdruck "
1847
- "gefunden"
1848
-
1849
- #: ../../models/import/record.php:506
1850
- #, php-format
1851
- msgid ""
1852
- "import finished & cron un-triggered<br>%s %s created %s updated %s deleted "
1853
- "%s skipped"
1854
- msgstr ""
1855
- "Import Abgeschlossen & cron nicht ausgelöst<br/>%s%s erstellt %s "
1856
- "aktualisiert %s gelöscht %s übersprungen"
1857
-
1858
- #: ../../models/import/record.php:532
1859
- #, php-format
1860
- msgid "%d %s created %d updated %d deleted %d skipped"
1861
- msgstr "%d %s erstellt %d aktualisiert %d gelöscht %d übersprungen"
1862
-
1863
- #: ../../models/import/record.php:558
1864
- #, php-format
1865
- msgid "#%s source file not found"
1866
- msgstr "#%s Quelle der Datei nicht gefunden"
1867
-
1868
- #: ../../models/import/record.php:600
1869
- msgid "Composing titles..."
1870
- msgstr "Zusammengesetzte Titel..."
1871
-
1872
- #: ../../models/import/record.php:608
1873
- msgid "Composing excerpts..."
1874
- msgstr "Zusammengesetzte Auszüge..."
1875
-
1876
- #: ../../models/import/record.php:618
1877
- msgid "Composing statuses..."
1878
- msgstr "Zusammengesetzter Status..."
1879
-
1880
- #: ../../models/import/record.php:629
1881
- msgid "Composing comment statuses..."
1882
- msgstr "Zusammengesetzter kommentierter Status..."
1883
-
1884
- #: ../../models/import/record.php:640
1885
- msgid "Composing ping statuses..."
1886
- msgstr "Zusammengesetzter ping Status..."
1887
-
1888
- #: ../../models/import/record.php:651
1889
- msgid "Composing post formats..."
1890
- msgstr "Zusammengesetzte post Formate..."
1891
-
1892
- #: ../../models/import/record.php:673
1893
- msgid "Composing page templates..."
1894
- msgstr "Zusammengesetzte Seiten Vorlagen..."
1895
-
1896
- #: ../../models/import/record.php:684
1897
- msgid "Composing post types..."
1898
- msgstr "Zusammengesetzte post Typen..."
1899
-
1900
- #: ../../models/import/record.php:698
1901
- msgid "Composing page parent..."
1902
- msgstr "Zusammengesetzte Elternseiten..."
1903
-
1904
- #: ../../models/import/record.php:758
1905
- msgid "Composing authors..."
1906
- msgstr "Zusammengesetzte Autoren..."
1907
-
1908
- #: ../../models/import/record.php:799
1909
- msgid "Composing slugs..."
1910
- msgstr "Zusammengesetzte slugs..."
1911
-
1912
- #: ../../models/import/record.php:808
1913
- msgid "Composing menu order..."
1914
- msgstr "Zusammengesetzte Menü Reihenfolge..."
1915
-
1916
- #: ../../models/import/record.php:817
1917
- msgid "Composing contents..."
1918
- msgstr "Zusammengesetzte Inhalte..."
1919
-
1920
- #: ../../models/import/record.php:830
1921
- msgid "Composing dates..."
1922
- msgstr "Zusammengesetztes Datum..."
1923
-
1924
- #: ../../models/import/record.php:838 ../../models/import/record.php:851 ../..
1925
- #: /models/import/record.php:857
1926
- #, php-format
1927
- msgid "<b>WARNING</b>: unrecognized date format `%s`, assigning current date"
1928
- msgstr "<b>WARNUNG</b>: Nicht erkanntes Datums Format `%s`, übertrage aktuelles Datum"
1929
-
1930
- #: ../../models/import/record.php:873
1931
- #, php-format
1932
- msgid "Composing terms for `%s` taxonomy..."
1933
- msgstr "Zusammengesetzte Bezeichnung für `%s` Taxonomien..."
1934
-
1935
- #: ../../models/import/record.php:1085
1936
- msgid "Composing custom parameters..."
1937
- msgstr "Zusammengesetzte individuelle Parameter..."
1938
-
1939
- #: ../../models/import/record.php:1192 ../../models/import/record.php:1310
1940
- msgid "<b>WARNING</b>"
1941
- msgstr "<b>WARNUNG</b>"
1942
-
1943
- #: ../../models/import/record.php:1193
1944
- msgid ""
1945
- "<b>WARNING</b>: No featured images will be created. Uploads folder is not "
1946
- "found."
1947
- msgstr ""
1948
- "<b>WARNUNG</b>: Keine Erstellung von featured Bildern. Upload Verzeichnis "
1949
- "wurde nicht gefunden."
1950
-
1951
- #: ../../models/import/record.php:1311
1952
- msgid "<b>WARNING</b>: No attachments will be created"
1953
- msgstr "<b>WARNUNG</b>:Anhänge werden nicht erstellt."
1954
-
1955
- #: ../../models/import/record.php:1314
1956
- msgid "Composing URLs for attachments files..."
1957
- msgstr "Zusammengesetzte URLs für Angehängte Dateien..."
1958
-
1959
- #: ../../models/import/record.php:1343
1960
- msgid "Composing unique keys..."
1961
- msgstr "Zusammengesetzte einzigartige Schlüssel..."
1962
-
1963
- #: ../../models/import/record.php:1351
1964
- msgid "Processing posts..."
1965
- msgstr "Bearbeite Posts..."
1966
-
1967
- #: ../../models/import/record.php:1357
1968
- msgid "Data parsing via add-ons..."
1969
- msgstr "Übersetze Daten mittels Add-on..."
1970
-
1971
- #: ../../models/import/record.php:1396
1972
- msgid "Calculate specified records to import..."
1973
- msgstr "Berechne spezifizierte Datensätze für den Import..."
1974
-
1975
- #: ../../models/import/record.php:1417
1976
- msgid "---"
1977
- msgstr "---"
1978
-
1979
- #: ../../models/import/record.php:1418
1980
- #, php-format
1981
- msgid "Record #%s"
1982
- msgstr "Aufnahme #%s"
1983
-
1984
- #: ../../models/import/record.php:1422
1985
- msgid "<b>ACTION</b>: pmxi_before_post_import ..."
1986
- msgstr "<b>ACTION</b>: pmxi_before_post_import ..."
1987
-
1988
- #: ../../models/import/record.php:1430
1989
- msgid "<b>WARNING</b>: title is empty."
1990
- msgstr "<b>WARNUNG</b>: Titel ist leer."
1991
-
1992
- #: ../../models/import/record.php:1450
1993
- #, php-format
1994
- msgid "Combine all data for user %s..."
1995
- msgstr "Kombiniere alle Daten für Benutzer %s..."
1996
-
1997
- #: ../../models/import/record.php:1468
1998
- #, php-format
1999
- msgid "Combine all data for post `%s`..."
2000
- msgstr "Kombiniere alle Daten für post %s..."
2001
-
2002
- #: ../../models/import/record.php:1481
2003
- #, php-format
2004
- msgid "Find corresponding article among previously imported for post `%s`..."
2005
- msgstr "Finde zugehörige Artikel unter den vorherigen importieren Posts `%s`..."
2006
-
2007
- #: ../../models/import/record.php:1489
2008
- #, php-format
2009
- msgid "Duplicate post was found for post %s with unique key `%s`..."
2010
- msgstr ""
2011
- "Doppelter post wurde für post %s erkannt mit dem einzigartigen Schlüssel "
2012
- "`%s`..."
2013
-
2014
- #: ../../models/import/record.php:1498
2015
- #, php-format
2016
- msgid "Duplicate post wasn't found with unique key `%s`..."
2017
- msgstr "Doppelter post wurde nicht erkannt mit dem einzigartigen Schlüssel `%s`..."
2018
-
2019
- #: ../../models/import/record.php:1512
2020
- #, php-format
2021
- msgid "Find corresponding article among database for post `%s`..."
2022
- msgstr "Finde zugehörige Artikel in der Datenbank für Posts `%s`..."
2023
-
2024
- #: ../../models/import/record.php:1525
2025
- #, php-format
2026
- msgid "Duplicate post was found for post `%s`..."
2027
- msgstr "Doppelter post wurde erkannt in post `%s`..."
2028
-
2029
- #: ../../models/import/record.php:1534
2030
- #, php-format
2031
- msgid "Duplicate post wasn'n found for post `%s`..."
2032
- msgstr "Doppelter post wurde nicht erkannt in post `%s`..."
2033
-
2034
- #: ../../models/import/record.php:1545
2035
- msgid "<b>SKIPPED</b>: by specified records option"
2036
- msgstr "<b>SKIPPED</b>: Von spezifizierter schreib Option"
2037
-
2038
- #: ../../models/import/record.php:1566
2039
- #, php-format
2040
- msgid "<b>SKIPPED</b>: By filter wp_all_import_is_post_to_update `%s`"
2041
- msgstr "<b>SKIPPED</b>: Von Filter: wp_all_import_is_post_to_update `%s`"
2042
-
2043
- #: ../../models/import/record.php:1583
2044
- #, php-format
2045
- msgid "<b>SKIPPED</b>: Previously imported record found for `%s`"
2046
- msgstr "<b>SKIPPED</b>: Vorherige Import Aufzeichnung gefunden für `%s`"
2047
-
2048
- #: ../../models/import/record.php:1598
2049
- #, php-format
2050
- msgid "Preserve taxonomies of already existing article for `%s`"
2051
- msgstr "Erhalte Taxonomien von bereits existierenden Artikeln `%s`"
2052
-
2053
- #: ../../models/import/record.php:1603
2054
- #, php-format
2055
- msgid ""
2056
- "<b>WARNING</b>: Unable to get current taxonomies for article #%d, updating "
2057
- "with those read from XML file"
2058
- msgstr ""
2059
- "<b>WARNING</b>: Erhalt von gegenwärtigen Taxonomien der Artikel #%d nicht "
2060
- "möglich, aktualisiere mit Daten der XML Datei."
2061
-
2062
- #: ../../models/import/record.php:1620
2063
- #, php-format
2064
- msgid "Preserve date of already existing article for `%s`"
2065
- msgstr "Erhalte Daten von bereits existierenden Artikeln `%s`"
2066
-
2067
- #: ../../models/import/record.php:1624
2068
- #, php-format
2069
- msgid "Preserve status of already existing article for `%s`"
2070
- msgstr "Erhalte Status von bereits existierenden Artikeln `%s`"
2071
-
2072
- #: ../../models/import/record.php:1628
2073
- #, php-format
2074
- msgid "Preserve content of already existing article for `%s`"
2075
- msgstr "Erhalte Inhalt von bereits existierenden Artikeln `%s`"
2076
-
2077
- #: ../../models/import/record.php:1632
2078
- #, php-format
2079
- msgid "Preserve title of already existing article for `%s`"
2080
- msgstr "Erhalte Titel von bereits existierenden Artikeln `%s`"
2081
-
2082
- #: ../../models/import/record.php:1636
2083
- #, php-format
2084
- msgid "Preserve slug of already existing article for `%s`"
2085
- msgstr "Erhalte slug von bereits existierenden Artikeln `%s`"
2086
-
2087
- #: ../../models/import/record.php:1644
2088
- #, php-format
2089
- msgid "Preserve excerpt of already existing article for `%s`"
2090
- msgstr "Erhalte Auszug von bereits existierenden Artikeln `%s`"
2091
-
2092
- #: ../../models/import/record.php:1648
2093
- #, php-format
2094
- msgid "Preserve menu order of already existing article for `%s`"
2095
- msgstr "Erhalte Menü von bereits existierenden Artikeln `%s`"
2096
-
2097
- #: ../../models/import/record.php:1652
2098
- #, php-format
2099
- msgid "Preserve post parent of already existing article for `%s`"
2100
- msgstr "Erhalte Post von bereits existierenden Artikeln `%s`"
2101
-
2102
- #: ../../models/import/record.php:1660
2103
- #, php-format
2104
- msgid "Preserve post author of already existing article for `%s`"
2105
- msgstr "Erhalte Post Autor von bereits existierenden Artikeln `%s`"
2106
-
2107
- #: ../../models/import/record.php:1678
2108
- #, php-format
2109
- msgid "Applying filter `pmxi_article_data` for `%s`"
2110
- msgstr "Benutze Filter `pmxi_article_data` für `%s`"
2111
-
2112
- #: ../../models/import/record.php:1690
2113
- #, php-format
2114
- msgid "Deleting attachments for `%s`"
2115
- msgstr "Lösche Anhänge für `%s`"
2116
-
2117
- #: ../../models/import/record.php:1695
2118
- #, php-format
2119
- msgid "Deleting images for `%s`"
2120
- msgstr "Lösche Bilder für `%s`"
2121
-
2122
- #: ../../models/import/record.php:1713
2123
- msgid "<b>SKIPPED</b>: by do not create new posts option."
2124
- msgstr "<b>SKIPPED</b>:erstelle keine neue post Optionen"
2125
-
2126
- #: ../../models/import/record.php:1785
2127
- #, php-format
2128
- msgid "<b>WARNING</b>: Unable to create cloaked link for %s"
2129
- msgstr "<b>WARNING</b>:Verhüllten Link erstellen nicht möglich %s"
2130
-
2131
- #: ../../models/import/record.php:1822
2132
- #, php-format
2133
- msgid "<b>CREATING</b> `%s` `%s`"
2134
- msgstr "<b>CREATING</b> `%s` `%s`"
2135
-
2136
- #: ../../models/import/record.php:1825
2137
- #, php-format
2138
- msgid "<b>UPDATING</b> `%s` `%s`"
2139
- msgstr "<b>UPDATING</b> `%s` `%s`"
2140
-
2141
- #: ../../models/import/record.php:1836 ../../models/import/record.php:1841 ../..
2142
- #: /models/import/record.php:2885
2143
- msgid "<b>ERROR</b>"
2144
- msgstr "<b>ERROR</b>"
2145
-
2146
- #: ../../models/import/record.php:1860
2147
- #, php-format
2148
- msgid "Associate post `%s` with current import ..."
2149
- msgstr "Verknüpfe post `%s` mit gegenwärtigen Import..."
2150
-
2151
- #: ../../models/import/record.php:1866
2152
- #, php-format
2153
- msgid "Associate post `%s` with post format %s ..."
2154
- msgstr "Verknüpfe post `%s` mit gegenwärtigen Format %s..."
2155
-
2156
- #: ../../models/import/record.php:1878
2157
- msgid "<b>CUSTOM FIELDS:</b>"
2158
- msgstr "<b>CUSTOM FIELDS:</b>"
2159
-
2160
- #: ../../models/import/record.php:1915
2161
- #, php-format
2162
- msgid ""
2163
- "- Custom field %s has been deleted for `%s` attempted to `update all custom "
2164
- "fields` setting ..."
2165
- msgstr ""
2166
- "- Individuelles Feld %s wurde gelöscht für `%s` ausgelöst durch "
2167
- "`aktualisiere alle individuellen Felder` Einstellungen... "
2168
-
2169
- #: ../../models/import/record.php:1928
2170
- #, php-format
2171
- msgid ""
2172
- "- Custom field %s has been deleted for `%s` attempted to `update only these "
2173
- "custom fields: %s, leave rest alone` setting ..."
2174
- msgstr ""
2175
- "- Individuelles Feld %s wurde gelöscht für `%s` ausgelöst durch "
2176
- "`aktualisiere nur diese individuellen Felder: %s, Rest bleibt leer` "
2177
- "Einstellungen... "
2178
-
2179
- #: ../../models/import/record.php:1942
2180
- #, php-format
2181
- msgid ""
2182
- "- Custom field %s has been deleted for `%s` attempted to `leave these fields "
2183
- "alone: %s, update all other Custom Fields` setting ..."
2184
- msgstr ""
2185
- "- Individuelles Feld %s wurde gelöscht für `%s` ausgelöst durch `Lasse diese "
2186
- "Felder in Ruhe: %s, aktualisiere alle anderen individuellen Felder` "
2187
- "Einstellungen... "
2188
-
2189
- #: ../../models/import/record.php:2013
2190
- #, php-format
2191
- msgid "- Custom field `%s` has been skipped attempted to record matching options ..."
2192
- msgstr ""
2193
- "-Benutzerdefiniertes Feld `%s` wurde übersprungen, versuche übereinstimmende "
2194
- "Optionen aufzuzeichnen..."
2195
-
2196
- #: ../../models/import/record.php:2021
2197
- msgid "- <b>ACTION</b>: pmxi_custom_field"
2198
- msgstr "- <b>ACTION</b>: pmxi_custom_field"
2199
-
2200
- #: ../../models/import/record.php:2049
2201
- #, php-format
2202
- msgid "- Custom field `%s` has been updated with value `%s` for post `%s` ..."
2203
- msgstr "-Benutzerdefiniertes Feld `%s` wurde mit Wert '`%s` für Post `%s` ..."
2204
-
2205
- #: ../../models/import/record.php:2050
2206
- msgid "- <b>ACTION</b>: pmxi_update_post_meta"
2207
- msgstr "- <b>ACTION</b>: pmxi_update_post_meta"
2208
-
2209
- #: ../../models/import/record.php:2090
2210
- msgid "<b>IMAGES:</b>"
2211
- msgstr "<b>IMAGES:</b>"
2212
-
2213
- #: ../../models/import/record.php:2094
2214
- #, php-format
2215
- msgid "<b>ERROR</b>: Target directory %s is not writable"
2216
- msgstr "<b>Fehler</b>: Ziel-Verzeichnis %s ist nicht beschreibbar"
2217
-
2218
- #: ../../models/import/record.php:2123
2219
- msgid "- Keep existing and add newest images ..."
2220
- msgstr "- Behalte existierende und ergänze neueste Bilder"
2221
-
2222
- #: ../../models/import/record.php:2205
2223
- #, php-format
2224
- msgid "- Importing image `%s` for `%s` ..."
2225
- msgstr "- Importiere Bild `%s` für `%s`..."
2226
-
2227
- #: ../../models/import/record.php:2219
2228
- msgid "- found base64_encoded image"
2229
- msgstr "- base64_codiertes Bild gefunden"
2230
-
2231
- #: ../../models/import/record.php:2490
2232
- #, php-format
2233
- msgid "- Post `%s` saved as Draft, because no images are downloaded successfully"
2234
- msgstr ""
2235
- "- Post `%s` als Entwurf gespeichert, da keine Bilder heruntergeladen werden "
2236
- "konnten"
2237
-
2238
- #: ../../models/import/record.php:2499
2239
- #, php-format
2240
- msgid "Post `%s` saved as Draft, because no images are downloaded successfully"
2241
- msgstr ""
2242
- "Post `%s` als Entwurf gespeichert, da keine Bilder heruntergeladen werden "
2243
- "konnten"
2244
-
2245
- #: ../../models/import/record.php:2549
2246
- msgid "<b>ATTACHMENTS:</b>"
2247
- msgstr "<b>ATTACHMENTS:</b>"
2248
-
2249
- #: ../../models/import/record.php:2552
2250
- #, php-format
2251
- msgid "- <b>ERROR</b>: Target directory %s is not writable"
2252
- msgstr "<b>Fehler</b>: Ziel-Verzeichnis %s ist nicht beschreibbar"
2253
-
2254
- #: ../../models/import/record.php:2561
2255
- #, php-format
2256
- msgid "- Importing attachments for `%s` ..."
2257
- msgstr "- Importiere Anhänge für `%s`..."
2258
-
2259
- #: ../../models/import/record.php:2593
2260
- #, php-format
2261
- msgid "- Filename for attachment was generated as %s"
2262
- msgstr "- Dateiname für Anhang wurde generiert als %s"
2263
-
2264
- #: ../../models/import/record.php:2598
2265
- #, php-format
2266
- msgid "- <b>WARNING</b>: Attachment file %s cannot be saved locally as %s"
2267
- msgstr "- <b>WARNUNG</b>: Anhang Datei %s kann lokal nicht gespeichert werden als %s"
2268
-
2269
- #: ../../models/import/record.php:2599
2270
- #, php-format
2271
- msgid "- <b>WP Error</b>: %s"
2272
- msgstr "- <b>WP Error</b>: %s"
2273
-
2274
- #: ../../models/import/record.php:2613
2275
- #, php-format
2276
- msgid "- File %s has been successfully downloaded"
2277
- msgstr "- Datei %s wurde erfolgreich heruntergeladen"
2278
-
2279
- #: ../../models/import/record.php:2629
2280
- #, php-format
2281
- msgid "- Attachment has been successfully created for post `%s`"
2282
- msgstr "- Anhang wurde erstellt für den Post `%s`"
2283
-
2284
- #: ../../models/import/record.php:2630 ../../models/import/record.php:2636
2285
- msgid "- <b>ACTION</b>: pmxi_attachment_uploaded"
2286
- msgstr "- <b>ACTION</b>: pmxi_attachment_uploaded"
2287
-
2288
- #: ../../models/import/record.php:2654
2289
- msgid "<b>TAXONOMIES:</b>"
2290
- msgstr "<b>TAXONOMIES:</b>"
2291
-
2292
- #: ../../models/import/record.php:2663
2293
- #, php-format
2294
- msgid "- Importing taxonomy `%s` ..."
2295
- msgstr "- Importiere Taxonomie `%s`..."
2296
-
2297
- #: ../../models/import/record.php:2666
2298
- #, php-format
2299
- msgid "- Auto-nest enabled with separator `%s` ..."
2300
- msgstr "- Automatische Verschachtelung aktiviert mit Trennzeichen `%s`..."
2301
-
2302
- #: ../../models/import/record.php:2672
2303
- #, php-format
2304
- msgid ""
2305
- "- %s %s `%s` has been skipped attempted to `Leave these taxonomies alone, "
2306
- "update all others`..."
2307
- msgstr ""
2308
- "- %s %s `%s` wurde übersprungen durch den Versuch `Lasse die Taxonomien in "
2309
- "Ruhe, aktualisiere alle anderen`..."
2310
-
2311
- #: ../../models/import/record.php:2677
2312
- #, php-format
2313
- msgid ""
2314
- "- %s %s `%s` has been skipped attempted to `Update only these taxonomies, "
2315
- "leave the rest alone`..."
2316
- msgstr ""
2317
- "- %s %s `%s` wurde übersprungen durch den Versuch `Aktualisiere nur diese "
2318
- "Taxonomien, lasse den Rest in ruhe`..."
2319
-
2320
- #: ../../models/import/record.php:2714
2321
- #, php-format
2322
- msgid "- Creating parent %s %s `%s` ..."
2323
- msgstr "- Erstelle aktuell %s %s `%s` ..."
2324
-
2325
- #: ../../models/import/record.php:2717
2326
- #, php-format
2327
- msgid "- Creating child %s %s for %s named `%s` ..."
2328
- msgstr "- Erstelle Kind %s %s für %s Name: `%s` ..."
2329
-
2330
- #: ../../models/import/record.php:2724
2331
- #, php-format
2332
- msgid "- <b>WARNING</b>: `%s`"
2333
- msgstr "- <b>WARNING</b>: `%s`"
2334
-
2335
- #: ../../models/import/record.php:2745
2336
- #, php-format
2337
- msgid ""
2338
- "- Attempted to create parent %s %s `%s`, duplicate detected. Importing %s to "
2339
- "existing `%s` %s, ID %d, slug `%s` ..."
2340
- msgstr ""
2341
- "- Versuche Eltern Element zu erstellen %s %s `%s`, Duplikat entdeckt. "
2342
- "Importiere %s in existierendes` %s` %s, ID %d, slug `%s`..."
2343
-
2344
- #: ../../models/import/record.php:2748
2345
- #, php-format
2346
- msgid ""
2347
- "- Attempted to create child %s %s `%s`, duplicate detected. Importing %s to "
2348
- "existing `%s` %s, ID %d, slug `%s` ..."
2349
- msgstr ""
2350
- "- Versuche Kind Element zu erstellen %s %s `%s`, Duplikat entdeckt. "
2351
- "Importiere %s in existierendes` %s` %s, ID %d, slug `%s`..."
2352
-
2353
- #: ../../models/import/record.php:2763
2354
- #, php-format
2355
- msgid ""
2356
- "- %s %s `%s` has been skipped attempted to `Do not update Taxonomies (incl. "
2357
- "Categories and Tags)`..."
2358
- msgstr ""
2359
- "- %s %s `%s` wurde übersprungen durch den Versuch `Taxonomien nicht "
2360
- "aktualisieren ( incl. Kategorien und Tags)`..."
2361
-
2362
- #: ../../models/import/record.php:2782
2363
- #, php-format
2364
- msgid "<b>CREATED</b> `%s` `%s` (ID: %s)"
2365
- msgstr "<b>CREATED</b> `%s` `%s` (ID: %s)"
2366
-
2367
- #: ../../models/import/record.php:2784
2368
- #, php-format
2369
- msgid "<b>UPDATED</b> `%s` `%s` (ID: %s)"
2370
- msgstr "<b>UPDATED</b> `%s` `%s` (ID: %s)"
2371
-
2372
- #: ../../models/import/record.php:2825
2373
- msgid "<b>ACTION</b>: pmxi_saved_post"
2374
- msgstr "<b>ACTION</b>: pmxi_saved_post"
2375
-
2376
- #: ../../models/import/record.php:2832
2377
- #, php-format
2378
- msgid ""
2379
- "<span class=\"processing_info\"><span class=\"created_count\">%s</span><span "
2380
- "class=\"updated_count\">%s</span><span class=\"percents_count\">%s</span></span>"
2381
- msgstr ""
2382
- "<span class=\"processing_info\"><span class=\"created_count\">%s</span><span "
2383
- "class=\"updated_count\">%s</span><span class=\"percents_count\">%s</span></span>"
2384
-
2385
- #: ../../models/import/record.php:2836
2386
- msgid "<b>ACTION</b>: pmxi_after_post_import"
2387
- msgstr "<b>ACTION</b>: pmxi_after_post_import"
2388
-
2389
- #: ../../models/import/record.php:2865
2390
- msgid "Update stock status previously imported posts which are no longer actual..."
2391
- msgstr ""
2392
- "Aktualisiere Lager Status vorherig importierter Posts welche nicht länger "
2393
- "aktuell sind..."
2394
-
2395
- #: ../../models/import/record.php:2889
2396
- msgid "Cleaning temporary data..."
2397
- msgstr "Reinige temporäre Daten..."
2398
-
2399
- #: ../../models/import/record.php:2905
2400
- msgid "Deleting source XML file..."
2401
- msgstr "Lösche Ursprüngliche XML Datei..."
2402
-
2403
- #: ../../models/import/record.php:2909
2404
- msgid "Deleting chunks files..."
2405
- msgstr "Lösche Block Dateien..."
2406
-
2407
- #: ../../models/import/record.php:2916 ../../models/import/record.php:2925
2408
- #, php-format
2409
- msgid "<b>WARNING</b>: Unable to remove %s"
2410
- msgstr "<b>WARNING</b>: Entfernen nicht möglich %s"
2411
-
2412
- #: ../../models/import/record.php:2937
2413
- msgid "Removing previously imported posts which are no longer actual..."
2414
- msgstr "Entferne vorher importierte Posts welche nicht länger aktuell sind..."
2415
-
2416
- #: ../../models/import/record.php:2959
2417
- msgid "<b>ACTION</b>: pmxi_delete_post"
2418
- msgstr "<b>ACTION</b>: pmxi_delete_post"
2419
-
2420
- #: ../../models/import/record.php:2961
2421
- msgid "Deleting posts from database"
2422
- msgstr "Lösche Posts aus der Datenbank"
2423
-
2424
- #: ../../models/import/record.php:2977
2425
- #, php-format
2426
- msgid "Instead of deletion post with ID `%s`, set Custom Field `%s` to value `%s`"
2427
- msgstr ""
2428
- "Anstatt die Posts mit der ID `%s` zu löschen, setze Individuelles Feld `%s` "
2429
- "auf Wert `%s`"
2430
-
2431
- #: ../../models/import/record.php:2985
2432
- #, php-format
2433
- msgid "Instead of deletion, change post with ID `%s` status to Draft"
2434
- msgstr "Anstatt die Posts mit der ID `%s` zu löschen, setze Status auf Entwurf"
2435
-
2436
- #: ../../models/import/record.php:3118
2437
- msgid "<b>ERROR</b> Could not insert term relationship into the database"
2438
- msgstr ""
2439
- "<b>ERROR</b> Einfügen von Beziehungen der Begriff in die Datenbank nicht "
2440
- "möglich"
2441
-
2442
- #: ../../views/admin/addons/index.php:3
2443
- msgid "WP All Import Add-ons"
2444
- msgstr "WP All Import Add-ons"
2445
-
2446
- #: ../../views/admin/addons/index.php:8
2447
- msgid "Premium Add-ons"
2448
- msgstr "Premium Add-ons"
2449
-
2450
- #: ../../views/admin/addons/index.php:20 ../../views/admin/addons/index.php:61
2451
- msgid "Installed"
2452
- msgstr "Installiert"
2453
-
2454
- #: ../../views/admin/addons/index.php:22
2455
- msgid "Free Version Installed"
2456
- msgstr "Gratis Version Installiert"
2457
-
2458
- #: ../../views/admin/addons/index.php:29 ../../views/admin/addons/index.php:70
2459
- msgid " required"
2460
- msgstr "Benötigt"
2461
-
2462
- #: ../../views/admin/addons/index.php:36 ../../views/admin/addons/index.php:77 ..
2463
- #: /../views/admin/addons/index.php:82 ../../views/admin/import/index.php:108
2464
- msgid "Download"
2465
- msgstr "Herunterladen"
2466
-
2467
- #: ../../views/admin/addons/index.php:41
2468
- msgid "Purchase & Install"
2469
- msgstr "Bezahlen & Installieren"
2470
-
2471
- #: ../../views/admin/addons/index.php:49
2472
- msgid "Free Add-ons"
2473
- msgstr "Gratis Add-ons"
2474
-
2475
- #: ../../views/admin/addons/index.php:63
2476
- msgid "Paid Version Installed"
2477
- msgstr "Bezahlte Version Installiert"
2478
-
2479
- #: ../../views/admin/help/index.php:1
2480
- msgid "WP All Import Help"
2481
- msgstr "WP All Import Hilfe"
2482
-
2483
- #: ../../views/admin/history/index.php:16 ../../views/admin/history/index.php:18 .
2484
- #: ./../views/admin/history/index.php:20
2485
- #, php-format
2486
- msgid "%s - Import History"
2487
- msgstr "%s - Import Chronik"
2488
-
2489
- #: ../../views/admin/history/index.php:32 ../../views/admin/manage/index.php:27
2490
- msgid "ID"
2491
- msgstr "ID"
2492
-
2493
- #: ../../views/admin/history/index.php:34
2494
- msgid "Run Time"
2495
- msgstr "Laufzeit"
2496
-
2497
- #: ../../views/admin/history/index.php:35
2498
- msgid "Type"
2499
- msgstr "Typ"
2500
-
2501
- #: ../../views/admin/history/index.php:36 ../../views/admin/manage/index.php:30
2502
- msgid "Summary"
2503
- msgstr "Zusammenfassung"
2504
-
2505
- #: ../../views/admin/history/index.php:42
2506
- msgid "Scheduling Status"
2507
- msgstr "Planung Status"
2508
-
2509
- #: ../../views/admin/history/index.php:42
2510
- msgid "triggered"
2511
- msgstr "ausgelöst"
2512
-
2513
- #: ../../views/admin/history/index.php:42
2514
- msgid "and processing"
2515
- msgstr "und bearbeitend"
2516
-
2517
- #: ../../views/admin/history/index.php:52 ../../views/admin/history/index.php:226
2518
- #: ../../views/admin/manage/index.php:44 ../../views/admin/manage/index.php:350
2519
- msgid "Bulk Actions"
2520
- msgstr "Massen Aktion"
2521
-
2522
- #: ../../views/admin/history/index.php:53 ../../views/admin/history/index.php:228
2523
- #: ../../views/admin/manage/index.php:45 ../../views/admin/manage/index.php:192 ..
2524
- #: /../views/admin/manage/index.php:352
2525
- msgid "Delete"
2526
- msgstr "Löschen"
2527
-
2528
- #: ../../views/admin/history/index.php:55 ../../views/admin/history/index.php:234
2529
- #: ../../views/admin/import/element.php:86 ../../views/admin/manage/index.php:47 .
2530
- #: ./../views/admin/manage/index.php:358
2531
- msgid "Apply"
2532
- msgstr "Anwenden"
2533
-
2534
- #: ../../views/admin/history/index.php:61 ../../views/admin/manage/index.php:53
2535
- #, php-format
2536
- msgid "Displaying %s&#8211;%s of %s"
2537
- msgstr "Zeige %s&#8211;%s von %s"
2538
-
2539
- #: ../../views/admin/history/index.php:108
2540
- msgid "No previous history found."
2541
- msgstr "Keine vorherige Chronik gefunden."
2542
-
2543
- #: ../../views/admin/history/index.php:161
2544
- msgid "manual run"
2545
- msgstr "Manueller Lauf"
2546
-
2547
- #: ../../views/admin/history/index.php:164
2548
- msgid "continue run"
2549
- msgstr "Lauf fortsetzen"
2550
-
2551
- #: ../../views/admin/history/index.php:189
2552
- msgid "Download Log"
2553
- msgstr "Download Log"
2554
-
2555
- #: ../../views/admin/history/index.php:193
2556
- msgid "Log Unavailable"
2557
- msgstr "Log nicht verfügbar"
2558
-
2559
- #: ../../views/admin/history/index.php:230 ../../views/admin/manage/index.php:354
2560
- msgid "Restore"
2561
- msgstr "Wiederherstellen"
2562
-
2563
- #: ../../views/admin/history/index.php:231 ../../views/admin/manage/index.php:355
2564
- msgid "Delete Permanently"
2565
- msgstr "Permanent Löschen"
2566
-
2567
- #: ../../views/admin/history/index.php:238 ../../views/admin/import/confirm.php:
2568
- #: 337 ../../views/admin/import/element.php:213 ../../views/admin/import/index.
2569
- #: php:286 ../../views/admin/import/options.php:73 ../..
2570
- #: /views/admin/import/process.php:107 ../../views/admin/import/template.php:219 .
2571
- #: ./../views/admin/manage/index.php:363 ../../views/admin/manage/scheduling.php:
2572
- #: 62 ../../views/admin/settings/index.php:212
2573
- msgid "Created by"
2574
- msgstr "Erstellt von"
2575
-
2576
- #: ../../views/admin/import/confirm.php:12 ../../views/admin/import/element.php:9
2577
- #: ../../views/admin/import/index.php:44 ../../views/admin/import/options.php:19 .
2578
- #: ./../views/admin/import/process.php:9 ../../views/admin/import/template.php:10
2579
- msgid "Import XML / CSV"
2580
- msgstr "Importiere XML / CSV"
2581
-
2582
- #: ../../views/admin/import/confirm.php:15 ../../views/admin/import/element.php:
2583
- #: 12 ../../views/admin/import/index.php:47 ../../views/admin/import/options.php:
2584
- #: 22 ../../views/admin/import/process.php:12 ../../views/admin/import/template.
2585
- #: php:13
2586
- msgid "Support"
2587
- msgstr "Support"
2588
-
2589
- #: ../../views/admin/import/confirm.php:15 ../../views/admin/import/element.php:
2590
- #: 12 ../../views/admin/import/index.php:47 ../../views/admin/import/options.php:
2591
- #: 22 ../../views/admin/import/process.php:12 ../../views/admin/import/template.
2592
- #: php:13
2593
- msgid "Documentation"
2594
- msgstr "Dokumentation"
2595
-
2596
- #: ../../views/admin/import/confirm.php:56
2597
- msgid "Your file is all set up!"
2598
- msgstr "Ihre Datei ist bereit!"
2599
-
2600
- #: ../../views/admin/import/confirm.php:58
2601
- msgid "This import did not finish successfuly last time it was run."
2602
- msgstr "Dieser Import wurde beim letzten mal nicht erfolgreich beendet."
2603
-
2604
- #: ../../views/admin/import/confirm.php:62
2605
- msgid "Check the settings below, then click the green button to run the import."
2606
- msgstr ""
2607
- "Überprüfen Sie die Einstellungen unten, und klicken Sie auf den grünen "
2608
- "Button um den Import zu starten."
2609
-
2610
- #: ../../views/admin/import/confirm.php:64
2611
- msgid "You can attempt to continue where it left off."
2612
- msgstr "Versuchen Sie an der letzten Stelle fortzusetzen."
2613
-
2614
- #: ../../views/admin/import/confirm.php:72 ../../views/admin/import/confirm.php:326
2615
- msgid "Confirm & Run Import"
2616
- msgstr "Bestätigen & Import starten"
2617
-
2618
- #: ../../views/admin/import/confirm.php:82
2619
- msgid "Continue from the last run"
2620
- msgstr "Vom letzten Lauf fortsetzen"
2621
-
2622
- #: ../../views/admin/import/confirm.php:86
2623
- msgid "Run from the beginning"
2624
- msgstr "Starte von Beginn"
2625
-
2626
- #: ../../views/admin/import/confirm.php:89 ../../views/admin/import/process.php:82
2627
- msgid "Continue Import"
2628
- msgstr "Import Fortsetzen"
2629
-
2630
- #: ../../views/admin/import/confirm.php:91
2631
- msgid "Run entire import from the beginning"
2632
- msgstr "Starte gesamten Import von Vorne"
2633
-
2634
- #: ../../views/admin/import/confirm.php:110
2635
- msgid "Import Summary"
2636
- msgstr "Import Zusammenfassung"
2637
-
2638
- #: ../../views/admin/import/confirm.php:116
2639
- #, php-format
2640
- msgid "Your max_execution_time is %s seconds"
2641
- msgstr "Ihre max_execution_time ist %s Sekunden"
2642
-
2643
- #: ../../views/admin/import/confirm.php:140
2644
- #, php-format
2645
- msgid ""
2646
- "WP All Import will import the file <span style=\"color:#40acad;\">%s</span>, "
2647
- "which is <span style=\"color:#000; font-weight:bold;\">%s</span>"
2648
- msgstr ""
2649
- "WP All Import wird die Datei <span style=\"color:#40acad;\">%s</span> "
2650
- "importieren, welche <span style=\"color:#000; font-weight:bold;\">%s</span>ist."
2651
-
2652
- #: ../../views/admin/import/confirm.php:140
2653
- msgid "undefined"
2654
- msgstr "Undefiniert"
2655
-
2656
- #: ../../views/admin/import/confirm.php:143
2657
- #, php-format
2658
- msgid ""
2659
- "WP All Import will process the records matching the XPath expression: <span "
2660
- "style=\"color:#46ba69; font-weight:bold;\">%s</span>"
2661
- msgstr ""
2662
- "WP All Import bearbeitet die Datensätze die mit folgendem XPath Ausdruck: "
2663
- "<span style=\"color:#46ba69; font-weight:bold;\">%s</span>"
2664
-
2665
- #: ../../views/admin/import/confirm.php:145
2666
- #, php-format
2667
- msgid ""
2668
- "WP All Import will process <span style=\"color:#46ba69; font-weight:bold;"
2669
- "\">%s</span> rows in your file"
2670
- msgstr ""
2671
- "WP All Import bearbeitet <span style=\"color:#46ba69; font-weight:bold;"
2672
- "\">%s</span> Zeilen in Ihrer Datei"
2673
-
2674
- #: ../../views/admin/import/confirm.php:147
2675
- #, php-format
2676
- msgid ""
2677
- "WP All Import will process all %s <span style=\"color:#46ba69; font-weight:"
2678
- "bold;\">&lt;%s&gt;</span> records in your file"
2679
- msgstr ""
2680
- "WP All Import bearbeitet alle %s <span style=\"color:#46ba69; font-weight:"
2681
- "bold;\">&lt;%s&gt;</span> Datensätze in Ihrer Datei"
2682
-
2683
- #: ../../views/admin/import/confirm.php:151
2684
- #, php-format
2685
- msgid "WP All Import will process only specified records: %s"
2686
- msgstr "WP All Import bearbeitet nur die spezifizierten Datensätze: %s"
2687
-
2688
- #: ../../views/admin/import/confirm.php:159
2689
- #, php-format
2690
- msgid "Your unique key is <span style=\"color:#000; font-weight:bold;\">%s</span>"
2691
- msgstr ""
2692
- "Ihr einzigartiger Schlüssel ist <span style=\"color:#000; font-weight:bold;"
2693
- "\">%s</span>"
2694
-
2695
- #: ../../views/admin/import/confirm.php:163
2696
- #, php-format
2697
- msgid ""
2698
- "%ss previously imported by this import (ID: %s) with the same unique key "
2699
- "will be updated."
2700
- msgstr ""
2701
- "%ss vorher importiert von diesem Import (ID: %s) mit dem selben "
2702
- "einzigartigen Schlüssel werden aktualisiert."
2703
-
2704
- #: ../../views/admin/import/confirm.php:166
2705
- #, php-format
2706
- msgid ""
2707
- "%ss previously imported by this import (ID: %s) that aren't present for this "
2708
- "run of the import will be deleted."
2709
- msgstr ""
2710
- "%ss vorher importiert von diesem Import (ID: %s) die nicht präsent sind in "
2711
- "diesem Import lauf, werden gelöscht."
2712
-
2713
- #: ../../views/admin/import/confirm.php:170
2714
- #, php-format
2715
- msgid ""
2716
- "%ss previously imported by this import (ID: %s) that aren't present for this "
2717
- "run of the import will be set to draft."
2718
- msgstr ""
2719
- "%ss vorher importiert von diesem Import (ID: %s) die nicht präsent sind in "
2720
- "diesem Import lauf, werden auf Entwurf gesetzt."
2721
-
2722
- #: ../../views/admin/import/confirm.php:174
2723
- #, php-format
2724
- msgid ""
2725
- "Records with unique keys that don't match any unique keys from %ss created "
2726
- "by previous runs of this import (ID: %s) will be created."
2727
- msgstr ""
2728
- "Datensätze mit eindeutigem Schlüssel, die zu keinem Schlüssel von %ss passen,"
2729
- " erstellt von früheren Durchläufen dieses Import (ID:%s) werden erstellt."
2730
-
2731
- #: ../../views/admin/import/confirm.php:188
2732
- #, php-format
2733
- msgid ""
2734
- "WP All Import will merge data into existing %ss, matching the following "
2735
- "criteria: %s"
2736
- msgstr ""
2737
- "WP All Import werden die Daten in bestehende %ss, mit folgenden "
2738
- "Suchkriterien zusammenzuführen:%s"
2739
-
2740
- #: ../../views/admin/import/confirm.php:191
2741
- msgid "Existing data will be updated with the data specified in this import."
2742
- msgstr ""
2743
- "Bestehende Daten werden mit den in diesem Import angegebenen Daten "
2744
- "aktualisiert werden."
2745
-
2746
- #: ../../views/admin/import/confirm.php:194
2747
- #, php-format
2748
- msgid ""
2749
- "Next %s data will be updated, <strong>all other data will be left "
2750
- "alone</strong>"
2751
- msgstr ""
2752
- "Nächste %s Daten werden aktualisiert, <strong>alle anderen Daten werden in "
2753
- "Ruhe gelassen</strong>"
2754
-
2755
- #: ../../views/admin/import/confirm.php:197
2756
- msgid "status"
2757
- msgstr "Status"
2758
-
2759
- #: ../../views/admin/import/confirm.php:200
2760
- msgid "title"
2761
- msgstr "Titel"
2762
-
2763
- #: ../../views/admin/import/confirm.php:203
2764
- msgid "slug"
2765
- msgstr "Slug"
2766
-
2767
- #: ../../views/admin/import/confirm.php:206
2768
- msgid "content"
2769
- msgstr "Inhalt"
2770
-
2771
- #: ../../views/admin/import/confirm.php:209
2772
- msgid "excerpt"
2773
- msgstr "Ausschnitt"
2774
-
2775
- #: ../../views/admin/import/confirm.php:212
2776
- msgid "dates"
2777
- msgstr "Datum"
2778
-
2779
- #: ../../views/admin/import/confirm.php:215
2780
- msgid "menu order"
2781
- msgstr "Menü Reihenfolge"
2782
-
2783
- #: ../../views/admin/import/confirm.php:218
2784
- msgid "parent post"
2785
- msgstr "Eltern post"
2786
-
2787
- #: ../../views/admin/import/confirm.php:221
2788
- msgid "attachments"
2789
- msgstr "Anhänge"
2790
-
2791
- #: ../../views/admin/import/confirm.php:228
2792
- msgid "all advanced custom fields"
2793
- msgstr "Alle erweiterte benutzerdefinierte Felder"
2794
-
2795
- #: ../../views/admin/import/confirm.php:231
2796
- msgid "only ACF presented in import options"
2797
- msgstr "Nur ACF präsent in den Import Optionen"
2798
-
2799
- #: ../../views/admin/import/confirm.php:234
2800
- #, php-format
2801
- msgid "only these ACF : %s"
2802
- msgstr "Nur diese ACF: %s"
2803
-
2804
- #: ../../views/admin/import/confirm.php:237
2805
- #, php-format
2806
- msgid "all ACF except these: %s"
2807
- msgstr "Alle ACF außer diese: %s"
2808
-
2809
- #: ../../views/admin/import/confirm.php:247
2810
- msgid "old images will be updated with new"
2811
- msgstr "Alte Bilder werden aktualisiert"
2812
-
2813
- #: ../../views/admin/import/confirm.php:250
2814
- msgid "only new images will be added"
2815
- msgstr "Nur neue Bilder werden hinzugefügt"
2816
-
2817
- #: ../../views/admin/import/confirm.php:260
2818
- msgid "all custom fields"
2819
- msgstr "Alle individuellen Felder"
2820
-
2821
- #: ../../views/admin/import/confirm.php:263
2822
- #, php-format
2823
- msgid "only these custom fields : %s"
2824
- msgstr "Nur diese individuellen Felder: %s"
2825
-
2826
- #: ../../views/admin/import/confirm.php:266
2827
- #, php-format
2828
- msgid "all cusom fields except these: %s"
2829
- msgstr "Alle individuellen Felder außer diese: %s"
2830
-
2831
- #: ../../views/admin/import/confirm.php:276
2832
- msgid "remove existing taxonomies, add new taxonomies"
2833
- msgstr "Entferne bestehende Taxonomien, füge neue hinzu"
2834
-
2835
- #: ../../views/admin/import/confirm.php:279
2836
- msgid "only add new"
2837
- msgstr "Nur neue hinzufügen"
2838
-
2839
- #: ../../views/admin/import/confirm.php:282
2840
- #, php-format
2841
- msgid "update only these taxonomies: %s , leave the rest alone"
2842
- msgstr "Aktualisiere nur diese Taxonomien: %s, lasse den Rest in Ruhe"
2843
-
2844
- #: ../../views/admin/import/confirm.php:285
2845
- #, php-format
2846
- msgid "leave these taxonomies: %s alone, update all others"
2847
- msgstr "Lasse diese Taxonomien in Ruhe: %s, aktualisiere alle anderen"
2848
-
2849
- #: ../../views/admin/import/confirm.php:294
2850
- #, php-format
2851
- msgid "New %ss will be created from records that don't match the above criteria."
2852
- msgstr ""
2853
- "Neue %ss werden erstellt von den Datensätzen die nicht den oberen Kriterien "
2854
- "entsprechen."
2855
-
2856
- #: ../../views/admin/import/confirm.php:300
2857
- msgid ""
2858
- "High-Speed, Small File Processing enabled. Your import will fail if it takes "
2859
- "longer than your server's max_execution_time."
2860
- msgstr ""
2861
- "High-Speed, Bearbeitung kleiner Dateien aktiviert. Ihr Import wird "
2862
- "fehlschlagen wenn es länger dauert als Ihr Server max_execution_time."
2863
-
2864
- #: ../../views/admin/import/confirm.php:302
2865
- #, php-format
2866
- msgid ""
2867
- "Piece By Piece Processing enabled. %s records will be processed each "
2868
- "iteration. If it takes longer than your server's max_execution_time to "
2869
- "process %s records, your import will fail."
2870
- msgstr ""
2871
- "Stück für Stück Bearbeitung aktiviert. %s Datensätze werden mit jedem "
2872
- "Durchlauf bearbeitet. Wenn es länger dauert als Ihr Server "
2873
- "max_execution_time benötigt für %s Datensätze, wird Ihr Import fehlschlagen."
2874
-
2875
- #: ../../views/admin/import/confirm.php:306
2876
- #, php-format
2877
- msgid "Your file will be split into %s records chunks before processing."
2878
- msgstr "Ihre Datei wird geteilt in %s Datensatz Blöcke vor der Bearbeitung."
2879
-
2880
- #: ../../views/admin/import/confirm.php:310
2881
- msgid ""
2882
- "do_action calls will be disabled in wp_insert_post and wp_insert_attachment "
2883
- "during the import."
2884
- msgstr ""
2885
- "do_action Aufrufe werden deaktiviert in wp_insert_post und "
2886
- "wp_insert_attachment während des Imports."
2887
-
2888
- #: ../../views/admin/import/confirm.php:329
2889
- msgid "or go back to Step 4"
2890
- msgstr "oder gehe zurück zu Schritt 4"
2891
-
2892
- #: ../../views/admin/import/confirm.php:331
2893
- msgid "or go back to Manage Imports"
2894
- msgstr "oder gehe zurück zu Imports Verwalten"
2895
-
2896
- #: ../../views/admin/import/element.php:23 ../../views/admin/import/element.php:210
2897
- msgid "Continue to Step 3"
2898
- msgstr "Weiter zu Schritt 3"
2899
-
2900
- #: ../../views/admin/import/element.php:36
2901
- msgid "What element are you looking for?"
2902
- msgstr "Welches Element suchen Sie?"
2903
-
2904
- #: ../../views/admin/import/element.php:65
2905
- #, php-format
2906
- msgid "of <span class=\"wpallimport-elements-count-info\">%s</span>"
2907
- msgstr "von <span class=\"wpallimport-elements-count-info\">%s</span>"
2908
-
2909
- #: ../../views/admin/import/element.php:83
2910
- msgid "Set delimiter for CSV fields:"
2911
- msgstr "Setze Beschränkung für CSV Felder:"
2912
-
2913
- #: ../../views/admin/import/element.php:104
2914
- #, php-format
2915
- msgid ""
2916
- "Each <span>&lt;<span class=\"root_element\">%s</span>&gt;</span> element will "
2917
- "be imported into a <span>New %s</span>"
2918
- msgstr ""
2919
- "Jedes <span>&lt;<span class=\"root_element\">%s</span>&gt;</span> Element wird "
2920
- "importiert in ein <span>neues %s</span>"
2921
-
2922
- #: ../../views/admin/import/element.php:108
2923
- #, php-format
2924
- msgid ""
2925
- "Data in <span>&lt;<span class=\"root_element\">%s</span>&gt;</span> elements "
2926
- "will be imported to <span>%s</span>"
2927
- msgstr ""
2928
- "Daten in <span>&lt;<span class=\"root_element\">%s</span>&gt;</span> Element "
2929
- "werden Importiert in <span>%s</span>"
2930
-
2931
- #: ../../views/admin/import/element.php:113
2932
- msgid ""
2933
- "This doesn't look right, try manually selecting a different root element on "
2934
- "the left."
2935
- msgstr ""
2936
- "Das sieht nicht korrekt aus, versuchen Sie auf der linken Seite manuell ein "
2937
- "anderes Wurzelelement zu wählen."
2938
-
2939
- #: ../../views/admin/import/element.php:125
2940
- msgid "Add Filtering Options"
2941
- msgstr "Füge Filteroptionen hinzu"
2942
-
2943
- #: ../../views/admin/import/element.php:132 ../../views/admin/import/element.php:
2944
- #: 184
2945
- msgid "Element"
2946
- msgstr "Element"
2947
-
2948
- #: ../../views/admin/import/element.php:133 ../../views/admin/import/element.php:
2949
- #: 185
2950
- msgid "Rule"
2951
- msgstr "Regel"
2952
-
2953
- #: ../../views/admin/import/element.php:134 ../../views/admin/import/element.php:
2954
- #: 186 ../../views/admin/import/options/_reimport_options.php:42 ../..
2955
- #: /views/admin/import/options/_reimport_template.php:107 ../..
2956
- #: /views/admin/import/template/_custom_fields_template.php:40 ../..
2957
- #: /views/admin/import/template/_custom_fields_template.php:74 ../..
2958
- #: /views/admin/import/template/_custom_fields_template.php:283 ../..
2959
- #: /views/admin/import/template/_custom_fields_template.php:417
2960
- msgid "Value"
2961
- msgstr "Wert"
2962
-
2963
- #: ../../views/admin/import/element.php:140
2964
- msgid "Select Element"
2965
- msgstr "Wähle Element"
2966
-
2967
- #: ../../views/admin/import/element.php:146
2968
- msgid "Select Rule"
2969
- msgstr "Wähle Regel"
2970
-
2971
- #: ../../views/admin/import/element.php:147
2972
- msgid "equals"
2973
- msgstr "gleich"
2974
-
2975
- #: ../../views/admin/import/element.php:148
2976
- msgid "not equals"
2977
- msgstr "ungleich"
2978
-
2979
- #: ../../views/admin/import/element.php:149
2980
- msgid "greater than"
2981
- msgstr "größer als"
2982
-
2983
- #: ../../views/admin/import/element.php:150
2984
- msgid "equals or greater than"
2985
- msgstr "gleich oder größer als"
2986
-
2987
- #: ../../views/admin/import/element.php:151
2988
- msgid "less than"
2989
- msgstr "weniger als"
2990
-
2991
- #: ../../views/admin/import/element.php:152
2992
- msgid "equals or less than"
2993
- msgstr "gleich oder weniger als"
2994
-
2995
- #: ../../views/admin/import/element.php:153
2996
- msgid "contains"
2997
- msgstr "beinhaltet"
2998
-
2999
- #: ../../views/admin/import/element.php:154
3000
- msgid "not contains"
3001
- msgstr "beinhaltet nicht"
3002
-
3003
- #: ../../views/admin/import/element.php:155
3004
- msgid "is empty"
3005
- msgstr "ist leer"
3006
-
3007
- #: ../../views/admin/import/element.php:156
3008
- msgid "is not empty"
3009
- msgstr "ist nicht leer"
3010
-
3011
- #: ../../views/admin/import/element.php:163
3012
- msgid "Add Rule"
3013
- msgstr "Regel hinzufügen"
3014
-
3015
- #: ../../views/admin/import/element.php:172 ../..
3016
- #: /views/admin/import/options/_settings_template.php:88
3017
- msgid "XPath"
3018
- msgstr "XPath"
3019
-
3020
- #: ../../views/admin/import/element.php:187
3021
- msgid "Condition"
3022
- msgstr "Bedingung"
3023
-
3024
- #: ../../views/admin/import/element.php:192
3025
- msgid ""
3026
- "No filtering options. Add filtering options to only import records matching "
3027
- "some specified criteria."
3028
- msgstr ""
3029
- "Keine Filteroptionen. Füge Filteroptionen hinzu um nur Datensätze zu "
3030
- "importieren, die spezifische Kriterien erfüllen."
3031
-
3032
- #: ../../views/admin/import/element.php:197
3033
- msgid "Apply Filters To XPath"
3034
- msgstr "Wende Filter für XPath an"
3035
-
3036
- #: ../../views/admin/import/element.php:206
3037
- msgid "Back to Step 1"
3038
- msgstr "Zurück zu Schritt 1"
3039
-
3040
- #: ../../views/admin/import/evaluate.php:3
3041
- #, php-format
3042
- msgid "<span class=\"matches_count\">%s</span> <strong>%s</strong> will be imported"
3043
- msgstr "<span class=\"matches_count\">%s</span> <strong>%s</strong> wird importiert"
3044
-
3045
- #: ../../views/admin/import/evaluate.php:5
3046
- #, php-format
3047
- msgid "<span class=\"matches_count\">%s</span> <strong>%s</strong> %s will be imported"
3048
- msgstr "<span class=\"matches_count\">%s</span> <strong>%s</strong> %s wird importiert"
3049
-
3050
- #: ../../views/admin/import/evaluate.php:7
3051
- msgid "Click an element to select it, or scroll down to add filtering options."
3052
- msgstr ""
3053
- "Klicken Sie auf ein Element um es auszuwählen, oder scrollen Sie runter um "
3054
- "Filteroptionen hinzuzufügen."
3055
-
3056
- #: ../../views/admin/import/evaluate.php:9 ../..
3057
- #: /views/admin/import/evaluate_variations.php:5
3058
- msgid ""
3059
- "<strong>Note</strong>: Highlighting is turned off since can be very slow on "
3060
- "large sets of elements."
3061
- msgstr ""
3062
- "<strong>Note</strong>: Hervorhebung ist ausgeschaltet, da es bei großer "
3063
- "Elementzahl verlangsamen kann."
3064
-
3065
- #: ../../views/admin/import/evaluate_variations.php:3
3066
- #, php-format
3067
- msgid "Current selection matches <span class=\"matches_count\">%s</span> %s."
3068
- msgstr "Gegenwärtige Selektion passt bei <span class=\"matches_count\">%s</span> %s."
3069
-
3070
- #: ../../views/admin/import/evaluate_variations.php:14
3071
- #, php-format
3072
- msgid "#<strong>%s</strong> out of <strong>%s</strong>"
3073
- msgstr "#<strong>%s</strong> aus <strong>%s</strong>"
3074
-
3075
- #: ../../views/admin/import/index.php:69
3076
- msgid "First, specify how you want to import your data"
3077
- msgstr "Wählen Sie zuerst wie Sie die Daten importieren wollen"
3078
-
3079
- #: ../../views/admin/import/index.php:71
3080
- msgid "First, specify previously exported file"
3081
- msgstr "Spezifizieren Sie zuerst Ihre exportierte Datei"
3082
-
3083
- #: ../../views/admin/import/index.php:72
3084
- msgid ""
3085
- "The data in this file can be modified, but the structure of the file "
3086
- "(column/element names) should not change."
3087
- msgstr ""
3088
- "Die Daten in dieser Datei können geändert werden, aber die Struktur "
3089
- "(Spalte/Element Namen) sollten sich nicht ändern."
3090
-
3091
- #: ../../views/admin/import/index.php:76 ../..
3092
- #: /views/admin/import/options/_import_file.php:74
3093
- msgid "Upload a file"
3094
- msgstr "Datei hochladen"
3095
-
3096
- #: ../../views/admin/import/index.php:80 ../..
3097
- #: /views/admin/import/options/_import_file.php:78
3098
- msgid "Download from URL"
3099
- msgstr "Download von URL"
3100
-
3101
- #: ../../views/admin/import/index.php:84 ../..
3102
- #: /views/admin/import/options/_import_file.php:82
3103
- msgid "Use existing file"
3104
- msgstr "Nutze bestehende Datei"
3105
-
3106
- #: ../../views/admin/import/index.php:94 ../..
3107
- #: /views/admin/import/options/_import_file.php:92
3108
- msgid "Click here to select file from your computer..."
3109
- msgstr "Hier klicken um Datei von Ihrem Computer zu wählen..."
3110
-
3111
- #: ../../views/admin/import/index.php:112
3112
- msgid ""
3113
- "<strong>Hint:</strong> After you create this import, you can schedule it to "
3114
- "run automatically, on a pre-defined schedule, with cron jobs. If anything in "
3115
- "your file has changed, WP All Import can update your site with the changed "
3116
- "data automatically."
3117
- msgstr ""
3118
- "<strong>Hint:</strong> Nachdem Sie diesen Import erstellt haben, können Sie "
3119
- "mit cron Jobs planen ihn automatisch auszuführen. Sollte sich in Ihrer Datei "
3120
- "etwas ändern, kann WP All Import Ihre Seite mit den geänderten Daten "
3121
- "automatisch aktualisieren."
3122
-
3123
- #: ../../views/admin/import/index.php:151 ../..
3124
- #: /views/admin/import/options/_import_file.php:144
3125
- msgid "Select a previously uploaded file"
3126
- msgstr "Wählen Sie eine vorher Hochgeladene Datei"
3127
-
3128
- #: ../../views/admin/import/index.php:160 ../..
3129
- #: /views/admin/import/options/_import_file.php:156
3130
- #, php-format
3131
- msgid "Upload files to <strong>%s</strong> and they will appear in this list"
3132
- msgstr ""
3133
- "Laden Sie eine Datei in <strong>%s</strong> hoch und sie erscheint in dieser "
3134
- "Liste"
3135
-
3136
- #: ../../views/admin/import/index.php:174
3137
- msgid "Import data from this file into..."
3138
- msgstr "Importiere Daten von dieser Datei in..."
3139
-
3140
- #: ../../views/admin/import/index.php:178
3141
- msgid "New Items"
3142
- msgstr "Neue Artikel"
3143
-
3144
- #: ../../views/admin/import/index.php:182
3145
- msgid "Existing Items"
3146
- msgstr "Bestehende Artikel"
3147
-
3148
- #: ../../views/admin/import/index.php:204
3149
- msgid "Create new"
3150
- msgstr "Erstelle neue"
3151
-
3152
- #: ../../views/admin/import/index.php:205
3153
- msgid "Import to existing"
3154
- msgstr "Importiere in bestehende"
3155
-
3156
- #: ../../views/admin/import/index.php:208
3157
- msgid "for each record in my data file."
3158
- msgstr "für jeden Datensatz in der Datei."
3159
-
3160
- #: ../../views/admin/import/index.php:209
3161
- msgid "and update some or all of their data."
3162
- msgstr "und aktualisiere einige von den Daten."
3163
-
3164
- #: ../../views/admin/import/index.php:238
3165
- msgid ""
3166
- "In Step 4, you will map the records in your file to the existing items on "
3167
- "your site and specify which data points will be updated and which will be "
3168
- "left alone."
3169
- msgstr ""
3170
- "In Schritt 4 können Sie die Datensätze Ihrer Datei mit den existierenden "
3171
- "Artikeln Ihrer Seite zusammenführen und bestimmen welche Daten aktualisiert "
3172
- "werden und welche nicht."
3173
-
3174
- #: ../../views/admin/import/index.php:239
3175
- msgid ""
3176
- "The Existing Items option is commonly used to update existing products with "
3177
- "new stock quantities while leaving all their other data alone, update "
3178
- "properties on your site with new pricing, etc."
3179
- msgstr ""
3180
- "Die bestehende Artikel Option wird normalerweise genutzt um bestehende "
3181
- "Produkte mit neuen Zahlen für die Lagerhaltung zu aktualisieren, während die "
3182
- "anderen Daten unberührt bleiben. Aktualisieren Sie andere Eigenschaften wie "
3183
- "neue Preise, etc."
3184
-
3185
- #: ../../views/admin/import/index.php:280
3186
- msgid "Skip to Step 4"
3187
- msgstr "Überspringe zu Schritt 4"
3188
-
3189
- #: ../../views/admin/import/index.php:281
3190
- msgid "Continue to Step 2"
3191
- msgstr "Weiter zu Schritt 2"
3192
-
3193
- #: ../../views/admin/import/options.php:88 ../..
3194
- #: /views/admin/import/options/_reimport_template.php:14 ../..
3195
- #: /views/admin/import/options/_reimport_template.php:81
3196
- msgid "Record Matching"
3197
- msgstr "Datensatz Abgleich"
3198
-
3199
- #: ../../views/admin/import/options.php:91
3200
- msgid ""
3201
- "Record Matching is how WP All Import matches records in your file with posts "
3202
- "that already exist WordPress."
3203
- msgstr ""
3204
- "Datensatz Abgleich ist der Vorgang von WP All Import in dem Datensätze in "
3205
- "Ihrer Datei mit bereits bestehenden Posts in WordPress abgeglichen werden."
3206
-
3207
- #: ../../views/admin/import/options.php:95
3208
- msgid ""
3209
- "Record Matching is most commonly used to tell WP All Import how to match up "
3210
- "records in your file with posts WP All Import has already created on your "
3211
- "site, so that if your file is updated with new data, WP All Import can "
3212
- "update your posts accordingly."
3213
- msgstr ""
3214
- "Datensatz Abgleich wird meistens genutzt um WP All Import mitzuteilen wie "
3215
- "die Datensätze in Ihrer Datei mit den Posts abgeglichen werden sollen, die "
3216
- "WP All Import bereits auf Ihrer Seite erstellt hat. So kann WP All Import "
3217
- "Änderungen in Ihrer Datei direkt in die Posts übertragen."
3218
-
3219
- #: ../../views/admin/import/options.php:100
3220
- msgid "AUTOMATIC RECORD MATCHING"
3221
- msgstr "AUTOMATISCHER DATENSATZ ABGLEICH"
3222
-
3223
- #: ../../views/admin/import/options.php:103
3224
- msgid ""
3225
- "Automatic Record Matching allows WP All Import to update records that were "
3226
- "imported or updated during the last run of this same import."
3227
- msgstr ""
3228
- "Automatischer Datensatz Abgleich erlaubt WP All Import die Datensätze zu "
3229
- "aktualisieren die während dem letzten Import importiert wurden."
3230
-
3231
- #: ../../views/admin/import/options.php:107
3232
- msgid ""
3233
- "Your unique key must be UNIQUE for each record in your feed. Make sure you "
3234
- "get it right - you can't change it later. You'll have to re-create your "
3235
- "import."
3236
- msgstr ""
3237
- "Ihr einzigartiger Schlüssel muss EINZIGARTIG in jedem Datensatz Ihres Feeds "
3238
- "sein. Stellen Sie sicher dass Sie es korrekt haben - Sie können es später "
3239
- "ändern. Sie werden Ihren Import neu erstellen müssen."
3240
-
3241
- #: ../../views/admin/import/options.php:112
3242
- msgid "MANUAL RECORD MATCHING"
3243
- msgstr "MANUELLER DATENSATZ ABGLEICH"
3244
-
3245
- #: ../../views/admin/import/options.php:115
3246
- msgid ""
3247
- "Manual record matching allows WP All Import to update any records, even "
3248
- "records that were not imported with WP All Import, or are part of a "
3249
- "different import."
3250
- msgstr ""
3251
- "Manueller Datensatz Abgleich erlaubt WP All Import alle Datensätze zu "
3252
- "aktualisieren, sogar Datensätze die nicht von WP All Import importiert "
3253
- "wurden, oder die Teil eines anderen Imports sind."
3254
-
3255
- #: ../../views/admin/import/preview.php:6 ../../views/admin/import/preview_images.
3256
- #: php:6 ../../views/admin/import/preview_prices.php:6 ../..
3257
- #: /views/admin/import/preview_taxonomies.php:6 ../../views/admin/import/tag.php:8
3258
- #, php-format
3259
- msgid ""
3260
- "<strong><input type=\"text\" value=\"%s\" name=\"tagno\" "
3261
- "class=\"tagno\"/></strong><span class=\"out_of\"> of <strong "
3262
- "class=\"pmxi_count\">%s</strong></span>"
3263
- msgstr ""
3264
- "<strong><input type=\"text\" value=\"%s\" name=\"tagno\" "
3265
- "class=\"tagno\"/></strong><span class=\"out_of\"> von <strong "
3266
- "class=\"pmxi_count\">%s</strong></span>"
3267
-
3268
- #: ../../views/admin/import/preview_images.php:60
3269
- msgid "Retrieving images..."
3270
- msgstr "Bilder wiederherstellen..."
3271
-
3272
- #: ../../views/admin/import/preview_images.php:64
3273
- msgid "WP All Import will import images from the following file paths:"
3274
- msgstr "WP All Import wird Bilder von folgenden Pfaden importieren:"
3275
-
3276
- #: ../../views/admin/import/preview_images.php:65
3277
- msgid "Please ensure the images exists at these file paths"
3278
- msgstr "Bitte gehen Sie sicher, dass die Bilder bei diesen Pfaden existieren"
3279
-
3280
- #: ../../views/admin/import/preview_images.php:73 ../..
3281
- #: /views/admin/import/preview_images.php:115 ../..
3282
- #: /views/admin/import/preview_images.php:153
3283
- msgid "Here are the above URLs, in &lt;img&gt; tags. "
3284
- msgstr "Hier sind die obigen URLs in &lt;img&gt; tags. "
3285
-
3286
- #: ../../views/admin/import/preview_images.php:140
3287
- msgid "Download in progress..."
3288
- msgstr "Herunterladen in Fortschritt..."
3289
-
3290
- #: ../../views/admin/import/preview_images.php:144
3291
- msgid "WP All Import will attempt to import images from the following URLs:"
3292
- msgstr "WP All Import wird versuchen die Bilder von folgender URL zu importieren:"
3293
-
3294
- #: ../../views/admin/import/preview_images.php:145
3295
- msgid "Please check the URLs to ensure they point to valid images"
3296
- msgstr ""
3297
- "Bitte kontrollieren Sie die URL um sicher zu gehen dass sie auf korrekte "
3298
- "Bilder zeigen"
3299
-
3300
- #: ../../views/admin/import/preview_images.php:168
3301
- msgid "Images not found for current record."
3302
- msgstr "Keine Bilder gefunden für diesen Datensatz."
3303
-
3304
- #: ../../views/admin/import/preview_prices.php:16
3305
- msgid "Preview Prices"
3306
- msgstr "Vorschau Preis"
3307
-
3308
- #: ../../views/admin/import/preview_prices.php:18
3309
- msgid "Regular Price"
3310
- msgstr "Regulärer Preis"
3311
-
3312
- #: ../../views/admin/import/preview_prices.php:19
3313
- msgid "Sale Price"
3314
- msgstr "Angebotspreis"
3315
-
3316
- #: ../../views/admin/import/preview_taxonomies.php:16
3317
- msgid "Test Taxonomies Hierarchy"
3318
- msgstr "Teste Taxonomie Hierarchie "
3319
-
3320
- #: ../../views/admin/import/process.php:21
3321
- msgid "Import <span id=\"status\">in Progress</span>"
3322
- msgstr "Import <span id=\"status\">in Bearbeitung</span>"
3323
-
3324
- #: ../../views/admin/import/process.php:22
3325
- msgid ""
3326
- "Importing may take some time. Please do not close your browser or refresh "
3327
- "the page until the process is complete."
3328
- msgstr ""
3329
- "Der Import wird einige Zeit benötigen. Bitte nicht den Browser schließen "
3330
- "oder aktualisieren während die Bearbeitung läuft."
3331
-
3332
- #: ../../views/admin/import/process.php:29
3333
- msgid "Time Elapsed"
3334
- msgstr "Zeit vergangen"
3335
-
3336
- #: ../../views/admin/import/process.php:31
3337
- msgid "Created"
3338
- msgstr "Erstellt"
3339
-
3340
- #: ../../views/admin/import/process.php:31
3341
- msgid "Updated"
3342
- msgstr "Aktualisiert"
3343
-
3344
- #: ../../views/admin/import/process.php:31
3345
- msgid "of"
3346
- msgstr "von"
3347
-
3348
- #: ../../views/admin/import/process.php:31 ../..
3349
- #: /views/admin/import/options/_settings_template.php:23
3350
- msgid "records"
3351
- msgstr "Datensätze"
3352
-
3353
- #: ../../views/admin/import/process.php:38
3354
- msgid "Import Complete!"
3355
- msgstr "Import abgeschlossen"
3356
-
3357
- #: ../../views/admin/import/process.php:40
3358
- msgid "Duplicate records detected during import"
3359
- msgstr "Datensatz Duplikate während des Imports festgestellt"
3360
-
3361
- #: ../../views/admin/import/process.php:40
3362
- msgid ""
3363
- "The unique identifier is how WP All Import tells two items in your import "
3364
- "file apart. If it is the same for two items, then the first item will be "
3365
- "overwritten when the second is imported."
3366
- msgstr ""
3367
- "Die einzigartige ID ermöglicht es WP All Import zwei Artikel in Ihrer Datei "
3368
- "unterscheiden zu können. Wenn dieser für zwei Artikel gleich ist, dann wird "
3369
- "der erste überschrieben wenn der zweite importiert wird."
3370
-
3371
- #: ../../views/admin/import/process.php:42
3372
- #, php-format
3373
- msgid ""
3374
- "The file you are importing has %s records, but WP All Import only created "
3375
- "<span class=\"inserted_count\"></span> %s. It detected the other records in "
3376
- "your file as duplicates. This could be because they actually are duplicates "
3377
- "or it could be because your Unique Identifier is not unique for each record."
3378
- "<br><br>If your import file has no duplicates and you want to import all %s "
3379
- "records, you should delete everything that was just imported and then edit "
3380
- "your Unique Identifier so it's unique for each item."
3381
- msgstr ""
3382
- "Die Datei die Sie importieren hat %s Datensätze, aber WP All Import "
3383
- "erstellte nur <span class=\"inserted_count\"></span> %s. Es erkannte die "
3384
- "anderen Datensätze in Ihrer Datei als Duplikate. Entweder weil es Duplikate "
3385
- "sind oder weil Ihre einzigartige ID nicht einzigartig für jeden Datensatz "
3386
- "ist. <br><br>Wenn Ihre Import Datei keine Duplikate hat und Sie alle "
3387
- "Datensätze %s importieren wollen, sollten Sie alles Löschen was gerade "
3388
- "importiert wurde und dann Ihre einzigartige ID ändern, so dass dieser "
3389
- "einzigartig für jeden Artikel ist."
3390
-
3391
- #: ../../views/admin/import/process.php:44
3392
- msgid "Delete & Edit"
3393
- msgstr "Löschen & Ändern"
3394
-
3395
- #: ../../views/admin/import/process.php:46
3396
- #, php-format
3397
- msgid ""
3398
- "WP All Import successfully imported your file <span>%s</span> into your "
3399
- "WordPress installation!"
3400
- msgstr ""
3401
- "WP All Import hat Ihre Datei <span>%s</span> erfolgreich in Ihre WordPress "
3402
- "Installation importiert!"
3403
-
3404
- #: ../../views/admin/import/process.php:48 ../../views/admin/import/process.php:50
3405
- #, php-format
3406
- msgid ""
3407
- "There were <span class=\"wpallimport-errors-count\">%s</span> errors and <span "
3408
- "class=\"wpallimport-warnings-count\">%s</span> warnings in this import. You "
3409
- "can see these in the import log."
3410
- msgstr ""
3411
- "Es gab <span class=\"wpallimport-errors-count\">%s</span> Fehler und <span "
3412
- "class=\"wpallimport-warnings-count\">%s</span> Warnungen in diesem Import. Sie "
3413
- "können diese im Import Log sehen."
3414
-
3415
- #: ../../views/admin/import/process.php:53
3416
- msgid "View Logs"
3417
- msgstr "Logs ansehen"
3418
-
3419
- #: ../../views/admin/import/process.php:89
3420
- msgid "Log"
3421
- msgstr "Log"
3422
-
3423
- #: ../../views/admin/import/tag.php:5
3424
- msgid "Elements"
3425
- msgstr "Elemente"
3426
-
3427
- #: ../../views/admin/import/tag.php:27
3428
- msgid "History file not found. Probably you are using wrong encoding."
3429
- msgstr "Chronik Datei nicht gefunden. Eventuell nutzen Sie eine andere Codierung."
3430
-
3431
- #: ../../views/admin/import/template.php:41
3432
- msgid "Title & Content"
3433
- msgstr "Titel & Inhalt"
3434
-
3435
- #: ../../views/admin/import/template.php:48
3436
- msgid "Drag & drop any element on the right to set the title."
3437
- msgstr "Drag & drop ein Element von der rechten Seite um den Titel zu setzen."
3438
-
3439
- #: ../../views/admin/import/template.php:67
3440
- msgid "WooCommerce Short Description"
3441
- msgstr "WooCommerce Kurzbeschreibung"
3442
-
3443
- #: ../../views/admin/import/template.php:71 ../..
3444
- #: /views/admin/import/template/_taxonomies_template.php:138
3445
- msgid "Preview"
3446
- msgstr "Vorschau"
3447
-
3448
- #: ../../views/admin/import/template.php:77
3449
- msgid "Advanced Options"
3450
- msgstr "Erweiterte Optionen"
3451
-
3452
- #: ../../views/admin/import/template.php:84
3453
- msgid "Keep line breaks from file"
3454
- msgstr "Behalte Zeilenumbruch der Datei"
3455
-
3456
- #: ../../views/admin/import/template.php:89
3457
- msgid "Decode HTML entities with <b>html_entity_decode</b>"
3458
- msgstr "Dekodiere HTML Entitäten mit <b>html_entity_decode</b>"
3459
-
3460
- #: ../../views/admin/import/template.php:182
3461
- msgid "Save settings as a template"
3462
- msgstr "Speichere Einstellungen als Vorlage"
3463
-
3464
- #: ../../views/admin/import/template.php:185
3465
- msgid "Template name..."
3466
- msgstr "Vorlagen Name..."
3467
-
3468
- #: ../../views/admin/import/template.php:190
3469
- msgid "Load Template..."
3470
- msgstr "Lade Vorlage..."
3471
-
3472
- #: ../../views/admin/import/template.php:210
3473
- msgid "Back to Step 2"
3474
- msgstr "Zurück zu Schritt 2"
3475
-
3476
- #: ../../views/admin/import/template.php:212 ../..
3477
- #: /views/admin/import/options/_buttons_template.php:21
3478
- msgid "Back to Manage Imports"
3479
- msgstr "Zurück zur Import Verwaltung"
3480
-
3481
- #: ../../views/admin/import/options/_buttons_template.php:2
3482
- msgid "To run the import, click Run Import on the Manage Imports page."
3483
- msgstr ""
3484
- "Um den Import zu starten, klicken Sie auf Starte Import auf der Imports "
3485
- "verwalten Seite."
3486
-
3487
- #: ../../views/admin/import/options/_buttons_template.php:11
3488
- msgid "Back to Step 3"
3489
- msgstr "Zurück zu Schritt 3"
3490
-
3491
- #: ../../views/admin/import/options/_buttons_template.php:15
3492
- msgid "Save Only"
3493
- msgstr "Nur Speichern"
3494
-
3495
- #: ../../views/admin/import/options/_buttons_template.php:18
3496
- msgid "Continue"
3497
- msgstr "Weiter"
3498
-
3499
- #: ../../views/admin/import/options/_buttons_template.php:22
3500
- msgid "Save Import Configuration"
3501
- msgstr "Speichere Import Einstellungen"
3502
-
3503
- #: ../../views/admin/import/options/_import_file.php:62
3504
- msgid "Import File"
3505
- msgstr "Importiere Datei"
3506
-
3507
- #: ../../views/admin/import/options/_import_file.php:71
3508
- msgid "Specify the location of the file to use for future runs of this import."
3509
- msgstr "Bestimmen Sie den Ort der Datei für zukünftige Läufe dieses Imports."
3510
-
3511
- #: ../../views/admin/import/options/_import_file.php:106
3512
- msgid "Upload"
3513
- msgstr "Hochladen"
3514
-
3515
- #: ../../views/admin/import/options/_reimport_options.php:2
3516
- msgid "When WP All Import finds new or changed data..."
3517
- msgstr "Wenn WP All Import neue oder geänderte Daten findet..."
3518
-
3519
- #: ../../views/admin/import/options/_reimport_options.php:9
3520
- msgid "Create new posts from records newly present in your file"
3521
- msgstr "Erstelle neue Posts von Datensätzen die neu sind in Ihrer Datei"
3522
-
3523
- #: ../../views/admin/import/options/_reimport_options.php:11
3524
- msgid ""
3525
- "New posts will only be created when ID column is present and value in ID "
3526
- "column is unique."
3527
- msgstr ""
3528
- "Neue Posts werden nur erstellt wenn die spalte ID vorhanden ist und der Wert "
3529
- "in der Spalte ID einzigartig ist."
3530
-
3531
- #: ../../views/admin/import/options/_reimport_options.php:18
3532
- msgid "Delete posts that are no longer present in your file"
3533
- msgstr "Lösche Posts die nicht länger vorhanden sind in der Datei"
3534
-
3535
- #: ../../views/admin/import/options/_reimport_options.php:27
3536
- msgid "Do not remove attachments"
3537
- msgstr "Anhänge nicht entfernen"
3538
-
3539
- #: ../../views/admin/import/options/_reimport_options.php:32
3540
- msgid "Do not remove images"
3541
- msgstr "Bilder nicht entfernen"
3542
-
3543
- #: ../../views/admin/import/options/_reimport_options.php:37
3544
- msgid "Instead of deletion, set Custom Field"
3545
- msgstr "Anstatt zu löschen, setze individuelles Feld"
3546
-
3547
- #: ../../views/admin/import/options/_reimport_options.php:40 ../..
3548
- #: /views/admin/import/options/_reimport_template.php:105 ../..
3549
- #: /views/admin/import/template/_custom_fields_template.php:39
3550
- msgid "Name"
3551
- msgstr "Name"
3552
-
3553
- #: ../../views/admin/import/options/_reimport_options.php:50
3554
- msgid "Instead of deletion, change post status to Draft"
3555
- msgstr "Anstatt zu löschen, ändere den Status des Posts auf Entwurf"
3556
-
3557
- #: ../../views/admin/import/options/_reimport_options.php:57
3558
- msgid "Update existing posts with changed data in your file"
3559
- msgstr "Aktualisiere existierende Posts mit geänderten Daten in Ihrer Datei"
3560
-
3561
- #: ../../views/admin/import/options/_reimport_options.php:63
3562
- msgid "Update all data"
3563
- msgstr "Aktualisiere alle Daten"
3564
-
3565
- #: ../../views/admin/import/options/_reimport_options.php:66
3566
- msgid "Choose which data to update"
3567
- msgstr "Wählen Sie welch Daten aktualisiert werden sollen"
3568
-
3569
- #: ../../views/admin/import/options/_reimport_options.php:71
3570
- msgid "Post status"
3571
- msgstr "Post Status"
3572
-
3573
- #: ../../views/admin/import/options/_reimport_options.php:72
3574
- msgid "Hint: uncheck this box to keep trashed posts in the trash."
3575
- msgstr ""
3576
- "Hinweis: Deaktivieren Sie dieses Kästchen, um Posts im Papierkorb im "
3577
- "Papierkorb zu lassen."
3578
-
3579
- #: ../../views/admin/import/options/_reimport_options.php:77 ../..
3580
- #: /views/admin/import/options/_reimport_template.php:98
3581
- msgid "Title"
3582
- msgstr "Titel"
3583
-
3584
- #: ../../views/admin/import/options/_reimport_options.php:82
3585
- msgid "Author"
3586
- msgstr "Autor "
3587
-
3588
- #: ../../views/admin/import/options/_reimport_options.php:87 ../..
3589
- #: /views/admin/import/template/_other_template.php:279
3590
- msgid "Slug"
3591
- msgstr "Slug"
3592
-
3593
- #: ../../views/admin/import/options/_reimport_options.php:92 ../..
3594
- #: /views/admin/import/options/_reimport_template.php:100
3595
- msgid "Content"
3596
- msgstr "Inhalt"
3597
-
3598
- #: ../../views/admin/import/options/_reimport_options.php:97
3599
- msgid "Excerpt/Short Description"
3600
- msgstr "Auszug / Kurzbeschreibung"
3601
-
3602
- #: ../../views/admin/import/options/_reimport_options.php:102
3603
- msgid "Dates"
3604
- msgstr "Datum"
3605
-
3606
- #: ../../views/admin/import/options/_reimport_options.php:107
3607
- msgid "Menu order"
3608
- msgstr "Menü Reihenfolge"
3609
-
3610
- #: ../../views/admin/import/options/_reimport_options.php:112
3611
- msgid "Parent post"
3612
- msgstr "Eltern post"
3613
-
3614
- #: ../../views/admin/import/options/_reimport_options.php:122
3615
- msgid "Attachments"
3616
- msgstr "Anhänge"
3617
-
3618
- #: ../../views/admin/import/options/_reimport_options.php:136
3619
- msgid ""
3620
- "This will keep the featured image if it exists, so you could modify the post "
3621
- "image manually, and then do a reimport, and it would not overwrite the "
3622
- "manually modified post image."
3623
- msgstr ""
3624
- "Dies wird die featured Bilder behalten wenn diese existieren, so können Sie "
3625
- "die Bilder der Posts manuell ändern und dann einen Reimport machen. Dies "
3626
- "wird die manuell geänderten Bilder nicht überschreiben."
3627
-
3628
- #: ../../views/admin/import/options/_reimport_options.php:140
3629
- msgid "Update all images"
3630
- msgstr "Aktualisiere alle Bilder "
3631
-
3632
- #: ../../views/admin/import/options/_reimport_options.php:146
3633
- msgid "Don't touch existing images, append new images"
3634
- msgstr "Fasse existierende Bilder nicht an, hänge neue Bilder an"
3635
-
3636
- #: ../../views/admin/import/options/_reimport_options.php:155 ../..
3637
- #: /views/admin/import/template/_custom_fields_template.php:5
3638
- msgid "Custom Fields"
3639
- msgstr "Individuelle Felder"
3640
-
3641
- #: ../../views/admin/import/options/_reimport_options.php:156
3642
- msgid ""
3643
- "If Keep Custom Fields box is checked, it will keep all Custom Fields, and "
3644
- "add any new Custom Fields specified in Custom Fields section, as long as "
3645
- "they do not overwrite existing fields. If 'Only keep this Custom Fields' is "
3646
- "specified, it will only keep the specified fields."
3647
- msgstr ""
3648
- "Wenn die Box: Behalte individuelle Felder markiert ist, wird es alle "
3649
- "individuellen Felder behalten und neue hinzufügen die im Abschnitt "
3650
- "individuelle Felder bestimmt wurden, solange sie bestehende Felder nicht "
3651
- "überschreiben. Wenn 'Nur dieses individuelle Feld behalten' markiert ist, "
3652
- "wird es nur die bestimmten Felder behalten."
3653
-
3654
- #: ../../views/admin/import/options/_reimport_options.php:160
3655
- msgid "Update all Custom Fields"
3656
- msgstr "Aktualisiere alle individuellen Felder"
3657
-
3658
- #: ../../views/admin/import/options/_reimport_options.php:164
3659
- msgid "Update only these Custom Fields, leave the rest alone"
3660
- msgstr "Aktualisiere nur diese individuellen Felder, lasse den Rest in Ruhe"
3661
-
3662
- #: ../../views/admin/import/options/_reimport_options.php:172
3663
- msgid "Leave these fields alone, update all other Custom Fields"
3664
- msgstr "Lasse den Rest in Ruhe, aktualisiere alle anderen individuellen Felder"
3665
-
3666
- #: ../../views/admin/import/options/_reimport_options.php:184
3667
- msgid "Taxonomies (incl. Categories and Tags)"
3668
- msgstr "Taxonomien ( incl. Kategorien und Tags)"
3669
-
3670
- #: ../../views/admin/import/options/_reimport_options.php:198
3671
- msgid "Leave these taxonomies alone, update all others"
3672
- msgstr "Lasse die Taxonomien in Ruhe, aktualisiere alle anderen"
3673
-
3674
- #: ../../views/admin/import/options/_reimport_options.php:206
3675
- msgid "Update only these taxonomies, leave the rest alone"
3676
- msgstr "Aktualisiere nur diese Taxonomien, lasse den Rest in Ruhe"
3677
-
3678
- #: ../../views/admin/import/options/_reimport_options.php:214
3679
- msgid "Remove existing taxonomies, add new taxonomies"
3680
- msgstr "Entferne bestehende Taxonomien, füge neue hinzu"
3681
-
3682
- #: ../../views/admin/import/options/_reimport_options.php:218
3683
- msgid "Only add new"
3684
- msgstr "Nur neue hinzufügen"
3685
-
3686
- #: ../../views/admin/import/options/_reimport_template.php:22
3687
- msgid "Choose how exported data will be re-imported."
3688
- msgstr "Wähle wie exportierte Daten erneut importiert werden."
3689
-
3690
- #: ../../views/admin/import/options/_reimport_template.php:28
3691
- #, php-format
3692
- msgid "WP All Import will create new %s for each unique record in your file."
3693
- msgstr ""
3694
- "WP All Import wird neue %s erstellen, für jeden einzigartigen Datensatz in "
3695
- "Ihrer Datei."
3696
-
3697
- #: ../../views/admin/import/options/_reimport_template.php:41
3698
- #, php-format
3699
- msgid ""
3700
- "WP All Import will associate records in your file with %s it has already "
3701
- "created from previous runs of this import based on the Unique Identifier."
3702
- msgstr ""
3703
- "WP All Import verknüpft die Datensätze in Ihrer Datei mit %s die es bereits "
3704
- "bei früheren Läufen erstellt hat, basierend auf der einzigartigen ID."
3705
-
3706
- #: ../../views/admin/import/options/_reimport_template.php:44
3707
- msgid "Unique Identifier"
3708
- msgstr "Einzigartige ID"
3709
-
3710
- #: ../../views/admin/import/options/_reimport_template.php:50 ../..
3711
- #: /views/admin/import/options/_reimport_template.php:61
3712
- msgid "Auto-detect"
3713
- msgstr "Automatische Erkennung"
3714
-
3715
- #: ../../views/admin/import/options/_reimport_template.php:53 ../..
3716
- #: /views/admin/manage/index.php:318
3717
- msgid "Edit"
3718
- msgstr "Ändern"
3719
-
3720
- #: ../../views/admin/import/options/_reimport_template.php:54
3721
- msgid "Warning: Are you sure you want to edit the Unique Identifier?"
3722
- msgstr "Warnung: Sind Sie sicher dass Sie die einzigartige ID ändern wollen?"
3723
-
3724
- #: ../../views/admin/import/options/_reimport_template.php:55
3725
- #, php-format
3726
- msgid ""
3727
- "It is recommended you delete all %s associated with this import before "
3728
- "editing the unique identifier."
3729
- msgstr ""
3730
- "Es wird empfohlen dass Sie alle %s löschen, die mit diesem Import "
3731
- "zusammenhängen. Bevor Sie die einzigartige ID Löschen."
3732
-
3733
- #: ../../views/admin/import/options/_reimport_template.php:56
3734
- #, php-format
3735
- msgid ""
3736
- "Editing the unique identifier will dissociate all existing %s linked to this "
3737
- "import. Future runs of the import will result in duplicates, as WP All "
3738
- "Import will no longer be able to update these %s."
3739
- msgstr ""
3740
- "Ändern der einzigartigen ID wird alle existierenden %s zu diesem Import "
3741
- "trennen. Zukünftige Läufe des Importes wird in Duplikaten enden, da es WP "
3742
- "All Import nicht möglich sein wird diese zu aktualisieren: %s."
3743
-
3744
- #: ../../views/admin/import/options/_reimport_template.php:57
3745
- msgid ""
3746
- "You really should just re-create your import, and pick the right unique "
3747
- "identifier to start with."
3748
- msgstr ""
3749
- "Sie sollten wirklich Ihren Import neu erstellen und die richtige "
3750
- "einzigartige ID wählen."
3751
-
3752
- #: ../../views/admin/import/options/_reimport_template.php:67
3753
- msgid ""
3754
- "Drag an element, or combo of elements, to the box above. The Unique "
3755
- "Identifier should be unique for each record in your file, and should stay "
3756
- "the same even if your file is updated. Things like product IDs, titles, and "
3757
- "SKUs are good Unique Identifiers because they probably won't change. Don't "
3758
- "use a description or price, since that might be changed."
3759
- msgstr ""
3760
- "Ziehen Sie ein Element, oder eine Kombination von Element in die Box oben. "
3761
- "Die einzigartige ID sollte einzigartig sein für jeden Datensatz in Ihrer "
3762
- "Datei und sollte sich nicht verändern, auch nicht wenn die Datei "
3763
- "aktualisiert wird. Dinge wie Produkt ID, Titel und SKU sind gute "
3764
- "einzigartige IDs, da diese sich gewöhnlich nicht ändern. Nutzen Sie keine "
3765
- "Beschreibung oder Preis, da sich diese häufig ändern."
3766
-
3767
- #: ../../views/admin/import/options/_reimport_template.php:68
3768
- #, php-format
3769
- msgid ""
3770
- "If you run this import again with an updated file, the Unique Identifier "
3771
- "allows WP All Import to correctly link the records in your updated file with "
3772
- "the %s it will create right now. If multiple records in this file have the "
3773
- "same Unique Identifier, only the first will be created. The others will be "
3774
- "detected as duplicates."
3775
- msgstr ""
3776
- "Wenn Sie diesen Import mit einer aktualisierten Datei erneut starten, "
3777
- "erlaubt die einzigartige ID dem Importer die Datensätze mit der "
3778
- "aktualisierten Datei %s zu verbinden. Wenn mehrere Datensätze in dieser "
3779
- "Datei die selbe einzigartige ID haben, wird nur der erste erstellt, die "
3780
- "anderen werden als Duplikate erkannt."
3781
-
3782
- #: ../../views/admin/import/options/_reimport_template.php:83
3783
- #, php-format
3784
- msgid "WP All Import will merge data into existing %s."
3785
- msgstr "WP All Import wird die Daten zusammenfügen mit den existierenden %s."
3786
-
3787
- #: ../../views/admin/import/options/_reimport_template.php:93
3788
- #, php-format
3789
- msgid "Records in your file will be matched with %ss on your site based on..."
3790
- msgstr ""
3791
- "Datensätze in Ihrer Datei werden angepasst mit %ss auf Ihrer Seite basierend "
3792
- "auf..."
3793
-
3794
- #: ../../views/admin/import/options/_reimport_template.php:103
3795
- msgid "Custom field"
3796
- msgstr "Individuelles Feld"
3797
-
3798
- #: ../../views/admin/import/options/_settings_template.php:4
3799
- msgid "Configure Advanced Settings"
3800
- msgstr "Bearbeite erweiterte Einstellungen"
3801
-
3802
- #: ../../views/admin/import/options/_settings_template.php:11
3803
- msgid "Import Speed Optimization"
3804
- msgstr "Importiere Geschwindigkeits Optimierung "
3805
-
3806
- #: ../../views/admin/import/options/_settings_template.php:15
3807
- msgid "High Speed Small File Processing"
3808
- msgstr "High-Speed Bearbeitung kleiner Dateien"
3809
-
3810
- #: ../../views/admin/import/options/_settings_template.php:15
3811
- msgid ""
3812
- "If the import takes longer than your server's timeout settings "
3813
- "(max_execution_time, mod_fcgid read data timeout, etc.) it will fail."
3814
- msgstr ""
3815
- "Wenn der Import länger dauert als Ihr Server timeout ist, "
3816
- "(max_execution_time, mod_fcgid read data timeout, etc.) wird er fehlschlagen."
3817
-
3818
- #: ../../views/admin/import/options/_settings_template.php:19
3819
- msgid "Iterative, Piece-by-Piece Processing"
3820
- msgstr "Wiederholende, Stück für Stück Bearbeitung"
3821
-
3822
- #: ../../views/admin/import/options/_settings_template.php:23
3823
- msgid "In each iteration, process"
3824
- msgstr "In jedem Durchlauf, bearbeiten"
3825
-
3826
- #: ../../views/admin/import/options/_settings_template.php:24
3827
- msgid ""
3828
- "WP All Import must be able to process this many records in less than your "
3829
- "server's timeout settings. If your import fails before completion, to "
3830
- "troubleshoot you should lower this number. If you are importing images, "
3831
- "especially high resolution images, high numbers here are probably a bad idea,"
3832
- " since downloading the images can take lots of time - for example, 20 posts "
3833
- "with 5 images each = 100 images. At 500Kb per image that's 50Mb that needs "
3834
- "to be downloaded. Can your server download that before timing out? If not, "
3835
- "the import will fail."
3836
- msgstr ""
3837
- "WP All Import muss ermöglicht werden die Datensätze verarbeiten zu können "
3838
- "innerhalb Ihres Server timeouts. Wenn Ihr Import fehlschlägt bevor er fertig "
3839
- "ist, sollten Sie diese Zahl verringern. Wenn Sie Bilder importieren, "
3840
- "speziell bei Hochauflösenden, ist eine hohe Anzahl eine schlechte Idee. Da "
3841
- "der Download viel Zeit in Anspruch nehmen kann - Beispielsweise 20 Posts mit "
3842
- "je 5 Bildern = 100 Bilder. Bei 500kb pro Bild sind das 50Mb die "
3843
- "heruntergeladen werden müssen. Kann Ihr Server das herunterladen vor dem "
3844
- "Timeout? Wenn nicht, wird der Import fehlschlagen."
3845
-
3846
- #: ../../views/admin/import/options/_settings_template.php:30
3847
- msgid ""
3848
- "This option will decrease the amount of slowdown experienced at the end of "
3849
- "large imports. The slowdown is partially caused by the need for WP All "
3850
- "Import to read deeper and deeper into the file on each successive iteration. "
3851
- "Splitting the file into pieces means that, for example, instead of having to "
3852
- "read 19000 records into a 20000 record file when importing the last 1000 "
3853
- "records, WP All Import will just split it into 20 chunks, and then read the "
3854
- "last chunk from the beginning."
3855
- msgstr ""
3856
- "Diese Option verringert die Anzahl der Verlangsamungen am Ende von großen "
3857
- "Importen. Die Verlangsamung wird teilweise dadurch ausgelöst, dass WP All "
3858
- "Import immer tiefer und tiefer in der Datei liest, sukzessiv mit jedem "
3859
- "Durchlauf. Eine Aufteilung der Datei bedeutet beispielsweise, dass anstatt "
3860
- "19'000 Datensätze in 20'000 Datensätzen zu lesen, wenn die letzten 1000 "
3861
- "Datensätze importiert werden, eine Aufteilung in 20 Datenblöcke erfolgt und "
3862
- "dann der letzte Datenblock von Beginn gelesen wird."
3863
-
3864
- #: ../../views/admin/import/options/_settings_template.php:37
3865
- msgid "Increase speed by disabling do_action calls in wp_insert_post during import."
3866
- msgstr ""
3867
- "Steigere die Geschwindigkeit durch Deaktivierung von do_action Aufrufen in "
3868
- "wp_insert_post während dem Import."
3869
-
3870
- #: ../../views/admin/import/options/_settings_template.php:38
3871
- msgid ""
3872
- "This option is for advanced users with knowledge of WordPress development. "
3873
- "Your theme or plugins may require these calls when posts are created. Next "
3874
- "action will be disabled: 'transition_post_status', 'save_post', "
3875
- "'pre_post_update', 'add_attachment', 'edit_attachment', 'edit_post', "
3876
- "'post_updated', 'wp_insert_post'. Verify your created posts work properly if "
3877
- "you check this box."
3878
- msgstr ""
3879
- "Diese Option ist für fortgeschrittene Benutzer mit Kenntnissen in der "
3880
- "WordPress Entwicklung. Ihr Theme oder Plugin könnte diese Aufrufe benötigen "
3881
- "wenn Posts erstellt werden. Die nächste Aktion wird deaktiviert: "
3882
- "'transition_post_status', 'save_post', 'pre_post_update', 'add_attachment', "
3883
- "'edit_attachment', 'edit_post', 'post_updated', 'wp_insert_post'. "
3884
- "Verifizieren Sie Ihre Posts und arbeiten Sie sauber wenn Sie dieses Häkchen "
3885
- "setzen."
3886
-
3887
- #: ../../views/admin/import/options/_settings_template.php:42
3888
- msgid "Post Type"
3889
- msgstr "Post Typ:"
3890
-
3891
- #: ../../views/admin/import/options/_settings_template.php:43
3892
- msgid ""
3893
- "Editing this will change the post type of the posts processed by this import."
3894
- " Re-run the import for the changes to take effect."
3895
- msgstr ""
3896
- "Die Bearbeitung wird den post typ von den Posts dieses Imports ändern. "
3897
- "Starten Sie den Import erneut um die Änderungen zu erwirken."
3898
-
3899
- #: ../../views/admin/import/options/_settings_template.php:89
3900
- msgid ""
3901
- "Editing this can break your entire import. You will have to re-create it "
3902
- "from scratch."
3903
- msgstr ""
3904
- "Diese Bearbeitung kann Ihren gesamten Import unterbrechen. Sie werden ihn "
3905
- "von Grund auf neu erstellen müssen."
3906
-
3907
- #: ../../views/admin/import/options/_settings_template.php:101
3908
- msgid "Other"
3909
- msgstr "Sonstige"
3910
-
3911
- #: ../../views/admin/import/options/_settings_template.php:105
3912
- msgid "Import only specified records"
3913
- msgstr "Nur angegebene Datensätze importieren"
3914
-
3915
- #: ../../views/admin/import/options/_settings_template.php:105
3916
- msgid ""
3917
- "Enter records or record ranges separated by commas, e.g. <b>1,5,7-10</b> "
3918
- "would import the first, the fifth, and the seventh to tenth."
3919
- msgstr ""
3920
- "Geben Sie Datensätze oder Datensatz Bereiche durch Kommas getrennt an, z.B. "
3921
- "<b>1,5,7-10</b> wäre der erste, der fünfte und der siebte bis zehnte Import."
3922
-
3923
- #: ../../views/admin/import/options/_settings_template.php:116
3924
- msgid "Delete source XML file after importing"
3925
- msgstr "XML-Quelldatei nach dem Importieren löschen"
3926
-
3927
- #: ../../views/admin/import/options/_settings_template.php:116
3928
- msgid ""
3929
- "This setting takes effect only when script has access rights to perform the "
3930
- "action, e.g. file is not deleted when pulled via HTTP or delete permission "
3931
- "is not granted to the user that script is executed under."
3932
- msgstr ""
3933
- "Diese Einstellung nimmt nur Einfluss, wenn das Skript Zugriffsrechte auf die "
3934
- "Aktion hat. Bsp: Die Datei ist nicht gelöscht, wenn es mittelt HTTP gezogen "
3935
- "wurde. Oder eine Erlaubnis zum Löschen liegt für das Skript, das der "
3936
- "Benutzer gestartet, hat nicht vor."
3937
-
3938
- #: ../../views/admin/import/options/_settings_template.php:123
3939
- msgid "Auto-Cloak Links"
3940
- msgstr "Automatische Linkmaskierung"
3941
-
3942
- #: ../../views/admin/import/options/_settings_template.php:123
3943
- #, php-format
3944
- msgid ""
3945
- "Automatically process all links present in body of created post or page with "
3946
- "<b>%s</b> plugin"
3947
- msgstr ""
3948
- "Bearbeite automatisch alle Links die im Body des erstellten Posts oder der "
3949
- "erstellten Seite sind mit <b>%s</b> Plug-In"
3950
-
3951
- #: ../../views/admin/import/options/_settings_template.php:128
3952
- msgid "Friendly Name"
3953
- msgstr "Benutzerfreundlicher Name"
3954
-
3955
- #: ../../views/admin/import/template/_custom_fields_template.php:15
3956
- #, php-format
3957
- msgid "Your website is using Custom Fields to store data for %s."
3958
- msgstr "Ihre Website benutzt individuelle Felder zur Datenspeicherung von %s."
3959
-
3960
- #: ../../views/admin/import/template/_custom_fields_template.php:16
3961
- msgid "See Detected Fields"
3962
- msgstr "Siehe erkannte Felder"
3963
-
3964
- #: ../../views/admin/import/template/_custom_fields_template.php:18
3965
- #, php-format
3966
- msgid "No Custom Fields are present in your database for %s."
3967
- msgstr "Keine selbst erstellten Felder in der Datenbank für %s"
3968
-
3969
- #: ../../views/admin/import/template/_custom_fields_template.php:19
3970
- #, php-format
3971
- msgid ""
3972
- "Manually create a %s, and fill out each field you want to import data to. WP "
3973
- "All Import will then display these fields as available for import below."
3974
- msgstr ""
3975
- "Erstellen Sie Manuell ein %s und füllen Sie jedes Feld aus das Sie "
3976
- "importieren wollen. WP All Import wird diese Felder als Verfügbar für den "
3977
- "Import anzeigen."
3978
-
3979
- #: ../../views/admin/import/template/_custom_fields_template.php:21 ../..
3980
- #: /views/admin/import/template/_custom_fields_template.php:29
3981
- msgid "Hide Notice"
3982
- msgstr "Hinweis ausblenden"
3983
-
3984
- #: ../../views/admin/import/template/_custom_fields_template.php:26
3985
- msgid "Clear All Fields"
3986
- msgstr "Alle Felder leeren"
3987
-
3988
- #: ../../views/admin/import/template/_custom_fields_template.php:28
3989
- #, php-format
3990
- msgid ""
3991
- "If not all fields were detected, manually create a %s, and fill out each "
3992
- "field you want to import data to. Then create a new import, and WP All "
3993
- "Import will display these fields as available for import below."
3994
- msgstr ""
3995
- "Wenn nicht alle Felder erkannt wurden, erstellen Sie manuell ein %s und "
3996
- "füllen Sie jedes Feld das Sie importieren wollen aus. Erstellen Sie dann "
3997
- "einen neuen Import und WP All Import wird diese Felder für den Import "
3998
- "anzeigen."
3999
-
4000
- #: ../../views/admin/import/template/_custom_fields_template.php:55 ../..
4001
- #: /views/admin/import/template/_custom_fields_template.php:264 ../..
4002
- #: /views/admin/import/template/_custom_fields_template.php:398
4003
- msgid "Click to specify"
4004
- msgstr "Hier klicken zum Bestimmen"
4005
-
4006
- #: ../../views/admin/import/template/_custom_fields_template.php:60 ../..
4007
- #: /views/admin/import/template/_custom_fields_template.php:269 ../..
4008
- #: /views/admin/import/template/_custom_fields_template.php:403
4009
- msgid "Serialized"
4010
- msgstr "Fortsetzung"
4011
-
4012
- #: ../../views/admin/import/template/_custom_fields_template.php:73 ../..
4013
- #: /views/admin/import/template/_custom_fields_template.php:282 ../..
4014
- #: /views/admin/import/template/_custom_fields_template.php:416
4015
- msgid "Key"
4016
- msgstr "Schlüssel"
4017
-
4018
- #: ../../views/admin/import/template/_custom_fields_template.php:144 ../..
4019
- #: /views/admin/import/template/_custom_fields_template.php:524 ../..
4020
- #: /views/admin/import/template/_custom_fields_template.php:524
4021
- msgid "Add Custom Field"
4022
- msgstr "Individuelles Feld hinzufügen"
4023
-
4024
- #: ../../views/admin/import/template/_custom_fields_template.php:150 ../..
4025
- #: /views/admin/import/template/_custom_fields_template.php:318 ../..
4026
- #: /views/admin/import/template/_custom_fields_template.php:452
4027
- msgid "Auto-Detect"
4028
- msgstr "Automatische Erkennung"
4029
-
4030
- #: ../../views/admin/import/template/_custom_fields_template.php:155 ../..
4031
- #: /views/admin/import/template/_custom_fields_template.php:323 ../..
4032
- #: /views/admin/import/template/_custom_fields_template.php:457 ../..
4033
- #: /views/admin/license/index.php:40
4034
- msgid "Save"
4035
- msgstr "Speichern"
4036
-
4037
- #: ../../views/admin/import/template/_featured_template.php:8
4038
- msgid "Show hints"
4039
- msgstr "Zeige Hinweise"
4040
-
4041
- #: ../../views/admin/import/template/_featured_template.php:19
4042
- msgid "Enter image URL one per line, or separate them with a "
4043
- msgstr "Geben Sie eine Bild URL pro Zeile ein, oder teilen Sie diese mit einem"
4044
-
4045
- #: ../../views/admin/import/template/_featured_template.php:29 ../..
4046
- #: /views/admin/import/template/_featured_template.php:39
4047
- msgid "Enter image filenames one per line, or separate them with a "
4048
- msgstr "Geben Sie einen Bildnamen pro Zeile ein, oder teilen Sie diese mit einem"
4049
-
4050
- #: ../../views/admin/import/template/_featured_template.php:49
4051
- msgid ""
4052
- "Search through the Media Library for existing images before importing new "
4053
- "images"
4054
- msgstr ""
4055
- "Durchsuche die Medien Bibliothek nach existierenden Bildern bevor neue "
4056
- "Bilder importiert werden."
4057
-
4058
- #: ../../views/admin/import/template/_featured_template.php:50
4059
- msgid ""
4060
- "If an image with the same file name is found in the Media Library then that "
4061
- "image will be attached to this record instead of importing a new image. "
4062
- "Disable this setting if your import has different images with the same file "
4063
- "name."
4064
- msgstr ""
4065
- "Wird ein Bild mit dem selben Dateinamen in der Medien Bibliothek gefunden, "
4066
- "dann wird dieses Bild an den Datensatz angehängt anstatt ein neues "
4067
- "importiert. Deaktivieren Sie diese Einstellung wenn Ihr Import mehrere "
4068
- "Bilder mit dem selben Dateinamen hat."
4069
-
4070
- #: ../../views/admin/import/template/_featured_template.php:62
4071
- msgid "Preview & Test"
4072
- msgstr "Vorschau & Test"
4073
-
4074
- #: ../../views/admin/import/template/_featured_template.php:67
4075
- msgid "Set the first image to the Featured Image (_thumbnail_id)"
4076
- msgstr "Setze das erste Bild als Featured Bild (_thumbnail_id)"
4077
-
4078
- #: ../../views/admin/import/template/_featured_template.php:72
4079
- msgid "If no images are downloaded successfully, create entry as Draft."
4080
- msgstr ""
4081
- "Wenn keine Bilder heruntergeladen werden können, erstelle den Eintrag als "
4082
- "Entwurf."
4083
-
4084
- #: ../../views/admin/import/template/_featured_template.php:83
4085
- msgid "SEO & Advanced Options"
4086
- msgstr "SEO & Erweiterte Optionen"
4087
-
4088
- #: ../../views/admin/import/template/_featured_template.php:91
4089
- msgid "Meta Data"
4090
- msgstr "Meta Daten"
4091
-
4092
- #: ../../views/admin/import/template/_featured_template.php:95
4093
- msgid "Set Title(s)"
4094
- msgstr "SEO Titel"
4095
-
4096
- #: ../../views/admin/import/template/_featured_template.php:97 ../..
4097
- #: /views/admin/import/template/_featured_template.php:108 ../..
4098
- #: /views/admin/import/template/_featured_template.php:119
4099
- msgid "Enter one per line, or separate them with a "
4100
- msgstr "Geben Sie eine pro Zeile ein, oder teilen Sie diese mit einem"
4101
-
4102
- #: ../../views/admin/import/template/_featured_template.php:99
4103
- msgid ""
4104
- "The first title will be linked to the first image, the second title will be "
4105
- "linked to the second image, ..."
4106
- msgstr ""
4107
- "Der erste Titel wird mit dem ersten Bild verlinkt, der zweite wird mit dem "
4108
- "zweiten Bild verlinkt, ..."
4109
-
4110
- #: ../../views/admin/import/template/_featured_template.php:106
4111
- msgid "Set Caption(s)"
4112
- msgstr "Setze Beschriftung"
4113
-
4114
- #: ../../views/admin/import/template/_featured_template.php:110
4115
- msgid ""
4116
- "The first caption will be linked to the first image, the second caption will "
4117
- "be linked to the second image, ..."
4118
- msgstr ""
4119
- "Die erste Beschriftung wird mit dem ersten Bild verlinkt, die zweite wird "
4120
- "mit dem zweiten Bild verlinkt, ..."
4121
-
4122
- #: ../../views/admin/import/template/_featured_template.php:117
4123
- msgid "Set Alt Text(s)"
4124
- msgstr "Setze alle Texte"
4125
-
4126
- #: ../../views/admin/import/template/_featured_template.php:121
4127
- msgid ""
4128
- "The first alt text will be linked to the first image, the second alt text "
4129
- "will be linked to the second image, ..."
4130
- msgstr ""
4131
- "Der erste Text wird mit dem ersten Bild verlinkt, der zweite wird mit dem "
4132
- "zweiten Bild verlinkt, ..."
4133
-
4134
- #: ../../views/admin/import/template/_featured_template.php:128
4135
- msgid "Set Description(s)"
4136
- msgstr "Setze Beschreibung(en)"
4137
-
4138
- #: ../../views/admin/import/template/_featured_template.php:139
4139
- msgid ""
4140
- "The first description will be linked to the first image, the second "
4141
- "description will be linked to the second image, ..."
4142
- msgstr ""
4143
- "Die erste Beschreibung wird mit dem ersten Bild verlinkt, die zweite wird "
4144
- "mit dem zweiten Bild verlinkt, ..."
4145
-
4146
- #: ../../views/admin/import/template/_featured_template.php:143 ../..
4147
- #: /views/admin/settings/index.php:79
4148
- msgid "Files"
4149
- msgstr "Dateien"
4150
-
4151
- #: ../../views/admin/import/template/_featured_template.php:149
4152
- msgid "Change image file names to"
4153
- msgstr "Ändere die Dateinamen der Bilder zu"
4154
-
4155
- #: ../../views/admin/import/template/_featured_template.php:152
4156
- msgid ""
4157
- "Multiple image will have numbers appended, i.e. image-name-1.jpg, image-name-"
4158
- "2.jpg "
4159
- msgstr ""
4160
- "Mehrfachen Bildern werden Zahlen angehängt, Bsp: Bild-name-1.jpg,Bild-name-2."
4161
- "jpg"
4162
-
4163
- #: ../../views/admin/import/template/_featured_template.php:158
4164
- msgid "Change image file extensions"
4165
- msgstr "Ändere Bild Dateierweiterung"
4166
-
4167
- #: ../../views/admin/import/template/_featured_template.php:176
4168
- msgid ""
4169
- "WP All Import will automatically ignore elements with blank image "
4170
- "URLs/filenames."
4171
- msgstr ""
4172
- "WP All Import wird automatisch die Elemente ignorieren die leere Bild URLs "
4173
- "oder Dateinamen haben."
4174
-
4175
- #: ../../views/admin/import/template/_featured_template.php:177
4176
- msgid ""
4177
- "WP All Import must download the images to your server. You can't have images "
4178
- "in a Gallery that are referenced by external URL. That's just how WordPress "
4179
- "works."
4180
- msgstr ""
4181
- "WP All Import muss die Bilder auf Ihren Server laden. Sie können keine "
4182
- "Bilder in Ihrer Galerie haben die einen Link auf eine externe URL haben. So "
4183
- "funktioniert WordPress."
4184
-
4185
- #: ../../views/admin/import/template/_featured_template.php:178
4186
- #, php-format
4187
- msgid ""
4188
- "Importing a variable number of images can be done using a <a href=\"%s\" "
4189
- "target=\"_blank\">FOREACH LOOP</a>"
4190
- msgstr ""
4191
- "Eine Variable Anzahl an Bildern zu importieren kann mittels <a href=\"%s\" "
4192
- "target=\"_blank\">Schleifendurchlauf</a> durchgeführt werden."
4193
-
4194
- #: ../../views/admin/import/template/_featured_template.php:179
4195
- #, php-format
4196
- msgid ""
4197
- "For more information check out our <a href=\"%s\" "
4198
- "target=\"_blank\">comprehensive documentation</a>"
4199
- msgstr ""
4200
- "Für mehr Informationen schauen Sie doch in unserer <a href=\"%s\" "
4201
- "target=\"_blank\">Umfassender Dokumentation</a>"
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 \"&lt;?php\" and \"?&gt;\""
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 "&laquo;"
614
+ msgstr "&laquo;"
615
+
616
+ #: controllers/admin/history.php:58 controllers/admin/manage.php:61
617
+ msgid "&raquo;"
618
+ msgstr "&raquo;"
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&#8211;%s of %s"
1865
+ msgstr "Zeige %s&#8211;%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;\">&lt;%s&gt;</span> records in your file"
2001
+ msgstr "WP All Import bearbeitet alle %s <span style=\"color:#46ba69; font-weight:bold;\">&lt;%s&gt;</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>&lt;<span class=\"root_element\">%s</span>&gt;</span> element will be imported into a <span>New %s</span>"
2177
+ msgstr "Jedes <span>&lt;<span class=\"root_element\">%s</span>&gt;</span> Element wird importiert in ein <span>neues %s</span>"
2178
+
2179
+ #: views/admin/import/element.php:119
2180
+ msgid "Data in <span>&lt;<span class=\"root_element\">%s</span>&gt;</span> elements will be imported to <span>%s</span>"
2181
+ msgstr "Daten in <span>&lt;<span class=\"root_element\">%s</span>&gt;</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 &lt;img&gt; tags. "
3059
+ msgstr "Hier sind die obigen URLs in &lt;img&gt; 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
- "Project-Id-Version: WP All Import\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-09-28 07:43-0600\n"
6
- "PO-Revision-Date: Mon Dec 21 2015 19:55:18 GMT+0200 (EET)\n"
7
- "Last-Translator: admin <makstsiplyskov@gmail.loc>\n"
8
- "Language-Team: \n"
9
- "Language: Spanish (Spain)\n"
10
- "Plural-Forms: nplurals=2; plural=n != 1\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Loco - https://localise.biz/\n"
16
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
17
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
18
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
19
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
20
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
21
- "X-Poedit-Basepath: .\n"
22
- "X-Poedit-SearchPath-0: .\n"
23
- "X-Loco-Target-Locale: es_ES"
24
-
25
- #. Name of the plugin
26
- msgid "WP All Import Pro"
27
- msgstr ""
28
-
29
- #. URI of the plugin
30
- msgid "http://www.wpallimport.com"
31
- msgstr ""
32
-
33
- #. Description of the plugin
34
- msgid ""
35
- "The most powerful solution for importing XML and CSV files to WordPress. "
36
- "Import to Posts, Pages, and Custom Post Types. Support for imports that run "
37
- "on a schedule, ability to update existing imports, and much more."
38
- msgstr ""
39
-
40
- #. Author of the plugin
41
- msgid "Soflyy"
42
- msgstr ""
43
-
44
- #: ../../actions/wp_ajax_delete_import.php:36 ../../controllers/admin/manage.php:
45
- #: 594
46
- msgid "All associated posts deleted."
47
- msgstr ""
48
-
49
- #: ../../actions/wp_ajax_delete_import.php:40 ../../controllers/admin/manage.php:
50
- #: 598
51
- msgid "Import and all associated posts deleted."
52
- msgstr ""
53
-
54
- #: ../../actions/wp_ajax_delete_import.php:44 ../../controllers/admin/manage.php:
55
- #: 579
56
- msgid "Nothing to delete."
57
- msgstr ""
58
-
59
- #: ../../actions/wp_ajax_delete_import.php:66
60
- #, php-format
61
- msgid "Import #%d - %d records deleted"
62
- msgstr ""
63
-
64
- #: ../../actions/wp_ajax_save_import_functions.php:43
65
- msgid "PHP code must be wrapped in \"&lt;?php\" and \"?&gt;\""
66
- msgstr ""
67
-
68
- #: ../../actions/wp_ajax_save_import_functions.php:52
69
- msgid "File has been successfully updated."
70
- msgstr ""
71
-
72
- #: ../../actions/wp_ajax_test_images.php:95
73
- #, php-format
74
- msgid "Image `%s` not found in media library."
75
- msgstr ""
76
-
77
- #: ../../actions/wp_ajax_test_images.php:102
78
- #, php-format
79
- msgid "%d image was successfully founded in media gallery"
80
- msgstr ""
81
-
82
- #: ../../actions/wp_ajax_test_images.php:106
83
- #, php-format
84
- msgid "%d images were successfully founded in media gallery"
85
- msgstr ""
86
-
87
- #: ../../actions/wp_ajax_upload_resource.php:116
88
- msgid "Please verify that the URL returns a valid import file."
89
- msgstr ""
90
-
91
- #: ../../actions/wp_loaded.php:253
92
- #, php-format
93
- msgid "Import #%s canceled"
94
- msgstr ""
95
-
96
- #: ../../classes/render.php:68 ../../classes/render.php:88 ../../classes/render.
97
- #: php:166 ../../classes/render.php:186 ../../views/admin/import/evaluate.php:5 ..
98
- #: /../views/admin/import/evaluate_variations.php:3
99
- msgid "element"
100
- msgid_plural "elements"
101
- msgstr[0] ""
102
- msgstr[1] ""
103
-
104
- #: ../../controllers/admin/history.php:139
105
- msgid "history"
106
- msgid_plural "histories"
107
- msgstr[0] ""
108
- msgstr[1] ""
109
-
110
- #: ../../controllers/admin/import.php:1829
111
- msgid "Post ID must be specified."
112
- msgstr ""
113
-
114
- #: ../../controllers/admin/manage.php:243
115
- msgid ""
116
- "The other two files in this zip are the export file containing all of your "
117
- "data and the import template for WP All Import. \n"
118
- "\n"
119
- "To import this data, create a new import with WP All Import and upload this "
120
- "zip file."
121
- msgstr ""
122
-
123
- #: ../../controllers/admin/manage.php:634 ../../views/admin/manage/bulk.php:10
124
- msgid "import"
125
- msgid_plural "imports"
126
- msgstr[0] ""
127
- msgstr[1] ""
128
-
129
- #: ../../controllers/admin/settings.php:127
130
- #, php-format
131
- msgid "%d template imported"
132
- msgid_plural "%d templates imported"
133
- msgstr[0] ""
134
- msgstr[1] ""
135
-
136
- #: ../../controllers/admin/settings.php:151
137
- #, php-format
138
- msgid "%d template deleted"
139
- msgid_plural "%d templates deleted"
140
- msgstr[0] ""
141
- msgstr[1] ""
142
-
143
- #: ../../controllers/admin/settings.php:652
144
- #, php-format
145
- msgid "This %s file has errors and is not valid."
146
- msgstr ""
147
-
148
- #: ../../helpers/wp_all_import_addon_notifications.php:124
149
- msgid "WP All Export"
150
- msgstr ""
151
-
152
- #: ../../helpers/wp_all_import_addon_notifications.php:125
153
- msgid "Export anything in WordPress to CSV, XML, or Excel."
154
- msgstr ""
155
-
156
- #: ../../helpers/wp_all_import_addon_notifications.php:128 ../..
157
- #: /views/admin/import/confirm.php:47 ../../views/admin/import/index.php:254 ../..
158
- #: /views/admin/import/index.php:271 ../../views/admin/import/process.php:69 ../..
159
- #: /views/admin/import/process.php:103 ../..
160
- #: /views/admin/import/options/_import_file.php:40 ../..
161
- #: /views/admin/import/options/_import_file.php:57
162
- msgid "Read More"
163
- msgstr ""
164
-
165
- #: ../../models/import/record.php:662
166
- msgid "Composing post IDs..."
167
- msgstr ""
168
-
169
- #: ../../models/import/record.php:1656
170
- #, php-format
171
- msgid "Preserve comment status of already existing article for `%s`"
172
- msgstr ""
173
-
174
- #: ../../models/import/record.php:1812
175
- #, php-format
176
- msgid "<b>SKIPPED</b>: By filter wp_all_import_is_post_to_create `%s`"
177
- msgstr ""
178
-
179
- #: ../../models/import/record.php:2280
180
- #, php-format
181
- msgid "- <b>WARNING</b>: Image %s not found in media gallery."
182
- msgstr ""
183
-
184
- #: ../../models/import/record.php:2284
185
- #, php-format
186
- msgid "- Using existing image `%s` for post `%s` ..."
187
- msgstr ""
188
-
189
- #: ../../models/import/record.php:2473
190
- #, php-format
191
- msgid "- Attachment has been successfully updated for image `%s`"
192
- msgstr ""
193
-
194
- #: ../../models/import/record.php:2537
195
- #, php-format
196
- msgid ""
197
- "Images import skipped for post `%s` according to 'pmxi_is_images_to_update' "
198
- "filter..."
199
- msgstr ""
200
-
201
- #: ../../models/import/record.php:2647
202
- #, php-format
203
- msgid ""
204
- "Attachments import skipped for post `%s` according to "
205
- "'pmxi_is_attachments_to_update' filter..."
206
- msgstr ""
207
-
208
- #: ../../models/import/record.php:3030
209
- #, php-format
210
- msgid "%d Posts deleted from database"
211
- msgstr ""
212
-
213
- #: ../../views/admin/import/confirm.php:43 ../../views/admin/import/index.php:260
214
- #: ../../views/admin/import/options/_import_file.php:46
215
- msgid "There's a problem with your import file"
216
- msgstr ""
217
-
218
- #: ../../views/admin/import/confirm.php:44
219
- msgid "It has changed and is not compatible with this import template."
220
- msgstr ""
221
-
222
- #: ../../views/admin/import/evaluate.php:3
223
- msgid "row"
224
- msgid_plural "rows"
225
- msgstr[0] ""
226
- msgstr[1] ""
227
-
228
- #: ../../views/admin/import/index.php:250 ../..
229
- #: /views/admin/import/options/_import_file.php:36
230
- msgid "File upload rejected by server"
231
- msgstr ""
232
-
233
- #: ../../views/admin/import/index.php:251 ../..
234
- #: /views/admin/import/options/_import_file.php:37
235
- msgid "Contact your host and have them check your server's error log."
236
- msgstr ""
237
-
238
- #: ../../views/admin/import/index.php:265 ../..
239
- #: /views/admin/import/options/_import_file.php:51
240
- #, php-format
241
- msgid "Please verify that the file you using is a valid %s file."
242
- msgstr ""
243
-
244
- #: ../../views/admin/import/preview_images.php:17
245
- msgid "Test Images"
246
- msgstr ""
247
-
248
- #: ../../views/admin/import/preview_images.php:24
249
- msgid "Click to test that your images are able to be accessed by WP All Import."
250
- msgstr ""
251
-
252
- #: ../../views/admin/import/preview_images.php:26
253
- msgid "Run Test"
254
- msgstr ""
255
-
256
- #: ../../views/admin/import/preview_images.php:92
257
- msgid "Searching images..."
258
- msgstr ""
259
-
260
- #: ../../views/admin/import/preview_images.php:96
261
- msgid "WP All Import will import images from the media library"
262
- msgstr ""
263
-
264
- #: ../../views/admin/import/preview_images.php:97
265
- msgid "Please ensure the images exists at media library"
266
- msgstr ""
267
-
268
- #: ../../views/admin/import/process.php:61
269
- msgid "Hide this notice."
270
- msgstr ""
271
-
272
- #: ../../views/admin/import/process.php:65
273
- msgid "Want to speed up your import?"
274
- msgstr ""
275
-
276
- #: ../../views/admin/import/process.php:66
277
- msgid "Check out our guide on increasing import speed."
278
- msgstr ""
279
-
280
- #: ../../views/admin/import/process.php:70
281
- msgid "opens in new tab"
282
- msgstr ""
283
-
284
- #: ../../views/admin/import/process.php:78 ../../views/admin/import/process.php:99
285
- msgid "Your server terminated the import process"
286
- msgstr ""
287
-
288
- #: ../../views/admin/import/process.php:79
289
- #, php-format
290
- msgid ""
291
- "<a href='%s' target='_blank'>Read more</a> about how to prevent this from "
292
- "happening again."
293
- msgstr ""
294
-
295
- #: ../../views/admin/import/process.php:83
296
- #, php-format
297
- msgid ""
298
- "with <span id='wpallimport-new-records-per-iteration'>%s</span> records per "
299
- "iteration"
300
- msgstr ""
301
-
302
- #: ../../views/admin/import/process.php:100
303
- msgid ""
304
- "Ask your host to check your server's error log. They will be able to "
305
- "determine why your server is terminating the import process."
306
- msgstr ""
307
-
308
- #: ../../views/admin/import/template.php:146 ../../views/admin/settings/index.php:
309
- #: 194
310
- msgid "Function Editor"
311
- msgstr ""
312
-
313
- #: ../../views/admin/import/template.php:156 ../../views/admin/settings/index.php:
314
- #: 202
315
- msgid "Save Functions"
316
- msgstr ""
317
-
318
- #: ../../views/admin/import/template.php:157 ../../views/admin/settings/index.php:
319
- #: 203
320
- #, php-format
321
- msgid "Add functions here for use during your import. You can access this file at %s"
322
- msgstr ""
323
-
324
- #: ../../views/admin/import/options/_reimport_options.php:4
325
- msgid "If this import is run again and WP All Import finds new or changed data..."
326
- msgstr ""
327
-
328
- #: ../../views/admin/import/options/_reimport_options.php:20
329
- msgid ""
330
- "Records removed from the import file can only be deleted when importing into "
331
- "New Items. This feature cannot be enabled when importing into Existing Items."
332
- msgstr ""
333
-
334
- #: ../../views/admin/import/options/_reimport_options.php:59
335
- msgid ""
336
- "These options will only be used if you run this import again later. All data "
337
- "is imported the first time you run an import."
338
- msgstr ""
339
-
340
- #: ../../views/admin/import/options/_reimport_options.php:117
341
- msgid "Comment status"
342
- msgstr ""
343
-
344
- #: ../../views/admin/import/options/_reimport_template.php:113
345
- msgid "Post ID"
346
- msgstr ""
347
-
348
- #: ../../views/admin/import/options/_settings_template.php:94
349
- msgid "Downloads"
350
- msgstr ""
351
-
352
- #: ../../views/admin/import/options/_settings_template.php:97
353
- msgid "Import Template"
354
- msgstr ""
355
-
356
- #: ../../views/admin/import/options/_settings_template.php:98
357
- msgid "Import Bundle"
358
- msgstr ""
359
-
360
- #: ../../views/admin/import/template/_featured_template.php:15
361
- msgid "Download images hosted elsewhere"
362
- msgstr ""
363
-
364
- #: ../../views/admin/import/template/_featured_template.php:25
365
- msgid "Use images currently in Media Library"
366
- msgstr ""
367
-
368
- #: ../../views/admin/import/template/_featured_template.php:36
369
- #, php-format
370
- msgid "Use images currently uploaded in %s"
371
- msgstr ""
372
-
373
- #: ../../views/admin/import/template/_featured_template.php:44
374
- msgid "Image Options"
375
- msgstr ""
376
-
377
- #: ../../views/admin/import/template/_featured_template.php:55
378
- msgid "Keep images currently in Media Library"
379
- msgstr ""
380
-
381
- #: ../../views/admin/import/template/_featured_template.php:56
382
- msgid ""
383
- "If disabled, images attached to imported posts will be deleted and then all "
384
- "images will be imported."
385
- msgstr ""
386
-
387
- #: ../../views/admin/import/template/_featured_template.php:132
388
- msgid "Separate them with a"
389
- msgstr ""
390
-
391
- #: ../../views/admin/import/template/_featured_template.php:137
392
- msgid "Enter them one per line"
393
- msgstr ""
394
-
395
- #: ../../views/admin/import/template/_featured_template.php:145
396
- msgid ""
397
- "These options only available if Download images hosted elsewhere is selected "
398
- "above."
399
- msgstr ""
400
-
401
- #: ../../views/admin/import/template/_other_template.php:274
402
- msgid "Dynamic Post Type"
403
- msgstr ""
404
-
405
- #: ../../views/admin/import/template/_other_template.php:284
406
- msgid ""
407
- "If records in this import have different post types specify the slug of the "
408
- "desired post type here.\n"
409
- msgstr ""
410
-
411
- #: ../../views/admin/import/template/_taxonomies_template.php:215
412
- msgid "Add Another Row"
413
- msgstr ""
414
-
415
- #: ../../views/admin/import/template/_taxonomies_template.php:296 ../..
416
- #: /views/admin/import/template/_taxonomies_template.php:296
417
- msgid "Add Another Rule"
418
- msgstr ""
419
-
420
- #: ../../views/admin/manage/bulk.php:1
421
- msgid "Bulk Delete Imports"
422
- msgstr ""
423
-
424
- #: ../../views/admin/manage/delete.php:8
425
- msgid "Delete import"
426
- msgstr ""
427
-
428
- #: ../../views/admin/manage/delete.php:13
429
- #, php-format
430
- msgid "Delete posts created by %s"
431
- msgstr ""
432
-
433
- #: ../../views/admin/manage/delete.php:46
434
- msgid "Are you sure you want to delete "
435
- msgstr ""
436
-
437
- #: ../../views/admin/manage/delete.php:46
438
- #, php-format
439
- msgid "the <strong>%s</strong> import"
440
- msgstr ""
441
-
442
- #: ../../wp-all-import-pro.php:20
443
- msgid ""
444
- "Please de-activate and remove the free version of WP All Import before "
445
- "activating the paid version."
446
- msgstr ""
447
- "Por favor, desactivar y quitar la versión gratis de WP All Import antes de "
448
- "activar la versión de pago."
449
-
450
- #: ../../wp-all-import-pro.php:335
451
- #, php-format
452
- msgid ""
453
- "To enable updates, please enter your license key on the <a "
454
- "href=\"%s\">Licenses</a> page. If you don't have a licence key, please see <a "
455
- "href=\"%s\">details & pricing</a>"
456
- msgstr ""
457
- "Para habilitar las actualizaciones, introduce tu clave de licencia en la "
458
- "página de <a href=\"%s\">licencias</a> . Si no tienes una clave de licencia, "
459
- "por favor consulte <a href=\"%s\">detalles y precios</a>"
460
-
461
- #: ../../wp-all-import-pro.php:825 ../../wp-all-import-pro.php:829
462
- #, php-format
463
- msgid "Uploads folder %s must be writable"
464
- msgstr "La carpeta de archivos %s debe tener permisos de escritura"
465
-
466
- #: ../../wp-all-import-pro.php:939
467
- #, php-format
468
- msgid "<b>%s Plugin</b>: Current sql user %s doesn't have ALTER privileges"
469
- msgstr "<b>%s Plugin</b>: Usuario sql actual %s no tiene privilegios ALTER."
470
-
471
- #: ../../actions/admin_menu.php:12
472
- msgid "New Import"
473
- msgstr "Nueva Importación"
474
-
475
- #: ../../actions/admin_menu.php:13 ../../views/admin/import/process.php:54 ../..
476
- #: /views/admin/manage/index.php:5
477
- msgid "Manage Imports"
478
- msgstr "Manejar Importaciones"
479
-
480
- #: ../../actions/admin_menu.php:14 ../../views/admin/settings/index.php:7
481
- msgid "Settings"
482
- msgstr "Configuración"
483
-
484
- #: ../../actions/admin_menu.php:16
485
- msgid "History"
486
- msgstr "Historial"
487
-
488
- #: ../../actions/admin_menu.php:22 ../../controllers/admin/license.php:18 ../..
489
- #: /controllers/admin/settings.php:50 ../../views/admin/import/confirm.php:11 ../.
490
- #: ./views/admin/import/element.php:8 ../../views/admin/import/index.php:43 ../..
491
- #: /views/admin/import/options.php:18 ../../views/admin/import/process.php:8 ../..
492
- #: /views/admin/import/template.php:9 ../../views/admin/manage/index.php:4 ../..
493
- #: /views/admin/settings/index.php:6
494
- msgid "WP All Import"
495
- msgstr "WP All Import"
496
-
497
- #: ../../actions/admin_menu.php:22
498
- msgid "All Import"
499
- msgstr "All Import"
500
-
501
- #: ../../actions/admin_notices.php:12
502
- #, php-format
503
- msgid ""
504
- "<b>%s Plugin</b>: Please update your WP All Import WooCommerce add-on to the "
505
- "latest version"
506
- msgstr ""
507
- "<b>%s Plugin</b>: Por favor actualice el add-on de Woocommerce para WP All "
508
- "Import a la última versión."
509
-
510
- #: ../../actions/admin_notices.php:39
511
- #, php-format
512
- msgid ""
513
- "<b>%s Plugin</b>: Please update your WP All Import ACF add-on to the latest "
514
- "version"
515
- msgstr ""
516
- "<b>%s Plugin</b>: Por favor actualice el ACF add-on para WP All Import a su "
517
- "última versión"
518
-
519
- #: ../../actions/admin_notices.php:56
520
- #, php-format
521
- msgid ""
522
- "<b>%s Plugin</b>: Please update your WP All Import Linkcloak add-on to the "
523
- "latest version"
524
- msgstr ""
525
- "<b>%s Plugin</b>: Por favor actualice el Linkcloak add-on para WP All Import "
526
- "a su última versión"
527
-
528
- #: ../../actions/admin_notices.php:73
529
- #, php-format
530
- msgid ""
531
- "<b>%s Plugin</b>: Please update your WP All Import User add-on to the latest "
532
- "version"
533
- msgstr ""
534
- "<b>%s Plugin</b>: Por favor actualice el User add-on para el WP All Import a "
535
- "su última versión"
536
-
537
- #: ../../actions/admin_notices.php:90
538
- #, php-format
539
- msgid ""
540
- "<b>%s Plugin</b>: The WPML Add-On Plugin is no longer compatible with this "
541
- "version of WP All Import - please contact support@wpallimport.com and we "
542
- "will supply the latest version of WP All Import that is compatible with the "
543
- "WPML Add-On."
544
- msgstr ""
545
- "<b>%s Plugin</b>: El WPML Add-On Plugin ya no es compatible con esta versión "
546
- "de WP All Import - por favor contáctenos a support@wpallimport.com y "
547
- "nosotros le proveeremos la ultima versión de WP All Import que es compatible "
548
- "con el WPML Add-On."
549
-
550
- #: ../../actions/admin_notices.php:119 ../../controllers/admin/import.php:1498 ..
551
- #: /../controllers/admin/import.php:1720 ../../controllers/admin/import.php:2223
552
- msgid "<strong>Warning:</strong> your title is blank."
553
- msgstr "<strong>Advertencia:</strong> su título está en blanco."
554
-
555
- #: ../../actions/admin_notices.php:122 ../../controllers/admin/import.php:1505 ..
556
- #: /../controllers/admin/import.php:1722 ../../controllers/admin/import.php:2225
557
- msgid "<strong>Warning:</strong> your content is blank."
558
- msgstr "<strong>Advertencia: </strong> su contenido esta en blanco."
559
-
560
- #: ../../actions/wp_ajax_auto_detect_cf.php:5 ../..
561
- #: /actions/wp_ajax_auto_detect_cf.php:9 ../../actions/wp_ajax_auto_detect_sf.php:
562
- #: 5 ../../actions/wp_ajax_auto_detect_sf.php:9 ../..
563
- #: /actions/wp_ajax_delete_import.php:5 ../../actions/wp_ajax_delete_import.php:9
564
- #: ../../actions/wp_ajax_dismiss_notifications.php:5 ../..
565
- #: /actions/wp_ajax_dismiss_notifications.php:9 ../..
566
- #: /actions/wp_ajax_import_failed.php:5 ../../actions/wp_ajax_import_failed.php:9
567
- #: ../../actions/wp_ajax_nested_merge.php:6 ../../actions/wp_ajax_nested_merge.
568
- #: php:10 ../../actions/wp_ajax_nested_xpath.php:6 ../..
569
- #: /actions/wp_ajax_nested_xpath.php:10 ../../actions/wp_ajax_parse_nested_file.
570
- #: php:10 ../../actions/wp_ajax_parse_nested_file.php:14 ../..
571
- #: /actions/wp_ajax_save_import_functions.php:6 ../..
572
- #: /actions/wp_ajax_save_import_functions.php:10 ../..
573
- #: /actions/wp_ajax_test_images.php:6 ../../actions/wp_ajax_test_images.php:10 ..
574
- #: /../actions/wp_ajax_unmerge_file.php:5 ../../actions/wp_ajax_unmerge_file.php:
575
- #: 9 ../../actions/wp_ajax_upload_resource.php:6 ../..
576
- #: /actions/wp_ajax_upload_resource.php:10 ../../controllers/admin/history.php:74
577
- #: ../../controllers/admin/import.php:563 ../../controllers/admin/import.php:868 .
578
- #: ./../controllers/admin/import.php:1006 ../../controllers/admin/import.php:1145
579
- #: ../../controllers/admin/import.php:1300 ../../controllers/admin/import.php:
580
- #: 2462 ../../controllers/admin/manage.php:126 ../../controllers/admin/manage.php:
581
- #: 169 ../../controllers/admin/manage.php:279 ../../controllers/admin/manage.php:
582
- #: 527 ../../controllers/admin/settings.php:420
583
- msgid "Security check"
584
- msgstr "Control de Seguridad"
585
-
586
- #: ../../actions/wp_ajax_auto_detect_cf.php:59
587
- #, php-format
588
- msgid "No Custom Fields are present in your database for %s"
589
- msgstr "No hay campos personalizados presentes en su base de dato para %s"
590
-
591
- #: ../../actions/wp_ajax_auto_detect_cf.php:62
592
- #, php-format
593
- msgid "%s field was automatically detected."
594
- msgstr "%s campo fue detectado automáticamente."
595
-
596
- #: ../../actions/wp_ajax_auto_detect_cf.php:64
597
- #, php-format
598
- msgid "%s fields were automatically detected."
599
- msgstr "%s campos fuer detectados automáticamente."
600
-
601
- #: ../../actions/wp_ajax_delete_import.php:32 ../../controllers/admin/manage.php:
602
- #: 590
603
- msgid "Import deleted"
604
- msgstr "Importación eliminada"
605
-
606
- #: ../../actions/wp_ajax_nested_xpath.php:51
607
- msgid "XPath is required"
608
- msgstr "XPath es requerido"
609
-
610
- #: ../../actions/wp_ajax_nested_xpath.php:65 ../..
611
- #: /actions/wp_ajax_parse_nested_file.php:159
612
- msgid "Elements found"
613
- msgstr "Elementos encontrados"
614
-
615
- #: ../../actions/wp_ajax_nested_xpath.php:65 ../..
616
- #: /actions/wp_ajax_parse_nested_file.php:159
617
- msgid "Elements not found"
618
- msgstr "Elementos no encontrados"
619
-
620
- #: ../../actions/wp_ajax_test_images.php:32
621
- #, php-format
622
- msgid "Uploads folder `%s` is not writable."
623
- msgstr "Carpeta de archivos`%s` no es modificable."
624
-
625
- #: ../../actions/wp_ajax_test_images.php:46
626
- #, php-format
627
- msgid "Use image name instead of URL `%s`."
628
- msgstr "Utilice imagen en vez de un URL `%s`."
629
-
630
- #: ../../actions/wp_ajax_test_images.php:53
631
- #, php-format
632
- msgid "File `%s` isn't readable"
633
- msgstr "Archivo `%s` no es legible"
634
-
635
- #: ../../actions/wp_ajax_test_images.php:57
636
- #, php-format
637
- msgid "File `%s` doesn't exist"
638
- msgstr "Archivo `%s` no existe"
639
-
640
- #: ../../actions/wp_ajax_test_images.php:63
641
- #, php-format
642
- msgid "%d image was successfully retrieved from `%s`"
643
- msgstr "%d Imagen fue recuperada con éxito desde `%s`"
644
-
645
- #: ../../actions/wp_ajax_test_images.php:67
646
- #, php-format
647
- msgid "%d images were successfully retrieved from `%s`"
648
- msgstr "%d imágenes fueron recuperadas con éxito desde `%s`"
649
-
650
- #: ../../actions/wp_ajax_test_images.php:120
651
- #, php-format
652
- msgid "URL `%s` is not valid."
653
- msgstr "URL `%s` no es válida."
654
-
655
- #: ../../actions/wp_ajax_test_images.php:132
656
- #, php-format
657
- msgid "File `%s` cannot be saved locally"
658
- msgstr "Archivo `%s` no se puede guardar localmente"
659
-
660
- #: ../../actions/wp_ajax_test_images.php:134
661
- #, php-format
662
- msgid "File `%s` is not a valid image."
663
- msgstr "Archivo `%s` no es una imagen válida."
664
-
665
- #: ../../actions/wp_ajax_test_images.php:145
666
- #, php-format
667
- msgid "%d image was successfully downloaded in %s seconds"
668
- msgstr "%d imagen fue descargada con éxito en %s segundos "
669
-
670
- #: ../../actions/wp_ajax_test_images.php:149
671
- #, php-format
672
- msgid "%d images were successfully downloaded in %s seconds"
673
- msgstr "%d imágenes fueron descargadas con éxito en %s segundos"
674
-
675
- #: ../../actions/wp_loaded.php:53
676
- #, php-format
677
- msgid "Other imports are currently in process [%s]."
678
- msgstr "Actualmente hay otras importaciones en proceso [%s]."
679
-
680
- #: ../../actions/wp_loaded.php:63
681
- #, php-format
682
- msgid "Scheduling update is not working with \"upload\" import type. Import #%s."
683
- msgstr ""
684
- "La programación de actualización no esta funcionando con \"subir\" el tipo de "
685
- "importación. Importación #%s."
686
-
687
- #: ../../actions/wp_loaded.php:76 ../../actions/wp_loaded.php:148
688
- #, php-format
689
- msgid "Import #%s is currently in manually process. Request skipped."
690
- msgstr "Importación #%s actualmente esta en proceso manual. Solicitud omitida."
691
-
692
- #: ../../actions/wp_loaded.php:99 ../../views/admin/history/index.php:170
693
- msgid "triggered by cron"
694
- msgstr "Activado por cron"
695
-
696
- #: ../../actions/wp_loaded.php:105
697
- #, php-format
698
- msgid "#%s Cron job triggered."
699
- msgstr "#%s Trabajo cron activado."
700
-
701
- #: ../../actions/wp_loaded.php:112
702
- #, php-format
703
- msgid "Import #%s currently in process. Request skipped."
704
- msgstr "Impotación #%s actualmente en proceso. Solicitud Omitida."
705
-
706
- #: ../../actions/wp_loaded.php:121
707
- #, php-format
708
- msgid "Import #%s already triggered. Request skipped."
709
- msgstr "Importación #%s actualmente activada. Solicitud omitida."
710
-
711
- #: ../../actions/wp_loaded.php:141
712
- #, php-format
713
- msgid "Import #%s is not triggered. Request skipped."
714
- msgstr "Importación #%s no se ha activado. Solicitud omitida."
715
-
716
- #: ../../actions/wp_loaded.php:177 ../../views/admin/history/index.php:167
717
- msgid "cron processing"
718
- msgstr "Procesamiento de cron"
719
-
720
- #: ../../actions/wp_loaded.php:208 ../../models/import/record.php:515
721
- #, php-format
722
- msgid "Import #%s complete"
723
- msgstr "Importación #%s completada"
724
-
725
- #: ../../actions/wp_loaded.php:217 ../../models/import/record.php:539
726
- #, php-format
727
- msgid "Records Processed %s. Records Count %s."
728
- msgstr "Registros Procesados %s. Conteo de Registros %s."
729
-
730
- #: ../../actions/wp_loaded.php:229
731
- #, php-format
732
- msgid "Import #%s already processing. Request skipped."
733
- msgstr "Importación #%s actualmente procesando. Solicitud omitida."
734
-
735
- #: ../../classes/api.php:113 ../../views/admin/import/template/_other_template.
736
- #: php:28 ../../views/admin/import/template/_other_template.php:77 ../..
737
- #: /views/admin/import/template/_other_template.php:100 ../..
738
- #: /views/admin/import/template/_other_template.php:167 ../..
739
- #: /views/admin/import/template/_other_template.php:197 ../..
740
- #: /views/admin/import/template/_other_template.php:225 ../..
741
- #: /views/admin/import/template/_other_template.php:251
742
- msgid "Set with XPath"
743
- msgstr "Definido con XPath"
744
-
745
- #: ../../classes/api.php:129 ../..
746
- #: /views/admin/import/template/_custom_fields_template.php:57 ../..
747
- #: /views/admin/import/template/_custom_fields_template.php:266 ../..
748
- #: /views/admin/import/template/_custom_fields_template.php:400
749
- msgid "Field Options..."
750
- msgstr "Opciones de Campo..."
751
-
752
- #: ../../classes/api.php:132 ../..
753
- #: /views/admin/import/template/_custom_fields_template.php:63 ../..
754
- #: /views/admin/import/template/_custom_fields_template.php:272 ../..
755
- #: /views/admin/import/template/_custom_fields_template.php:406
756
- msgid "Mapping"
757
- msgstr "Mapeo"
758
-
759
- #: ../../classes/api.php:141 ../..
760
- #: /views/admin/import/template/_custom_fields_template.php:170 ../..
761
- #: /views/admin/import/template/_custom_fields_template.php:338 ../..
762
- #: /views/admin/import/template/_custom_fields_template.php:472 ../..
763
- #: /views/admin/import/template/_taxonomies_template.php:233
764
- msgid "In Your File"
765
- msgstr "En Su Archivo"
766
-
767
- #: ../../classes/api.php:142 ../..
768
- #: /views/admin/import/template/_custom_fields_template.php:171 ../..
769
- #: /views/admin/import/template/_custom_fields_template.php:339 ../..
770
- #: /views/admin/import/template/_custom_fields_template.php:473 ../..
771
- #: /views/admin/import/template/_taxonomies_template.php:234
772
- msgid "Translated To"
773
- msgstr "Traducido al "
774
-
775
- #: ../../classes/api.php:221 ../../classes/api.php:221 ../..
776
- #: /views/admin/import/template/_custom_fields_template.php:144 ../..
777
- #: /views/admin/import/template/_custom_fields_template.php:233 ../..
778
- #: /views/admin/import/template/_custom_fields_template.php:233 ../..
779
- #: /views/admin/import/template/_custom_fields_template.php:312 ../..
780
- #: /views/admin/import/template/_custom_fields_template.php:312 ../..
781
- #: /views/admin/import/template/_custom_fields_template.php:368 ../..
782
- #: /views/admin/import/template/_custom_fields_template.php:368 ../..
783
- #: /views/admin/import/template/_custom_fields_template.php:446 ../..
784
- #: /views/admin/import/template/_custom_fields_template.php:446 ../..
785
- #: /views/admin/import/template/_custom_fields_template.php:502 ../..
786
- #: /views/admin/import/template/_custom_fields_template.php:502
787
- msgid "Add Another"
788
- msgstr "Agregar Otro"
789
-
790
- #: ../../classes/api.php:227 ../..
791
- #: /views/admin/import/template/_custom_fields_template.php:239 ../..
792
- #: /views/admin/import/template/_custom_fields_template.php:374 ../..
793
- #: /views/admin/import/template/_custom_fields_template.php:508
794
- msgid "Save Rules"
795
- msgstr "Guardar Reglas"
796
-
797
- #: ../../classes/api.php:258
798
- msgid "Download image hosted elsewhere"
799
- msgstr "Descargar imagen alojada en otro lugar"
800
-
801
- #: ../../classes/api.php:259 ../../classes/api.php:279 ../..
802
- #: /views/admin/import/template/_featured_template.php:16 ../..
803
- #: /views/admin/import/template/_featured_template.php:26
804
- msgid "http:// or https://"
805
- msgstr "http:// o https://"
806
-
807
- #: ../../classes/api.php:264
808
- #, php-format
809
- msgid "Use image(s) currently uploaded in %s"
810
- msgstr "Utilizar imagen(es) actualmente subidas en %s"
811
-
812
- #: ../../classes/api.php:278
813
- msgid "Download file hosted elsewhere"
814
- msgstr "Descarga archivo alojado en otros lugares"
815
-
816
- #: ../../classes/api.php:284
817
- #, php-format
818
- msgid "Use file(s) currently uploaded in %s"
819
- msgstr "Utilizar archivo(s) actualmente subidos en %s"
820
-
821
- #: ../../classes/api.php:397 ../../models/import/record.php:2302
822
- #, php-format
823
- msgid "- Searching for existing image `%s` in `%s` folder"
824
- msgstr "-Buscando imagen existente `%s` en `%s` carpeta"
825
-
826
- #: ../../classes/api.php:404 ../../classes/api.php:477 ../../models/import/record.
827
- #: php:2309 ../../models/import/record.php:2380 ../../models/import/record.php:2603
828
- #, php-format
829
- msgid "- <b>WARNING</b>: Can't detect attachment file type %s"
830
- msgstr "- <b>ADVERTENCIA</b>: No se puede detectar el tipo de archivo adjunto %s"
831
-
832
- #: ../../classes/api.php:410 ../../classes/api.php:482 ../../models/import/record.
833
- #: php:2315 ../../models/import/record.php:2386
834
- #, php-format
835
- msgid "- File `%s` has been successfully found"
836
- msgstr "-Archivo `%s` ha sido encontrado exitosamente"
837
-
838
- #: ../../classes/api.php:416 ../../classes/api.php:468 ../../models/import/record.
839
- #: php:2225 ../../models/import/record.php:2321 ../../models/import/record.php:2370
840
- #, php-format
841
- msgid ""
842
- "- <b>WARNING</b>: File %s is not a valid image and cannot be set as featured "
843
- "one"
844
- msgstr ""
845
- "- <b>ADERTENCIA</b>: Archivo %s no es una imagen válida y no puede ser "
846
- "puesta como descatada"
847
-
848
- #: ../../classes/api.php:419 ../../models/import/record.php:2326
849
- #, php-format
850
- msgid "- Image `%s` has been successfully found"
851
- msgstr "- Imagen `%s` ha sido encontrada con éxito"
852
-
853
- #: ../../classes/api.php:429 ../../models/import/record.php:2333
854
- #, php-format
855
- msgid "- Downloading image from `%s`"
856
- msgstr "- Descargando imagen desde `%s`"
857
-
858
- #: ../../classes/api.php:432
859
- #, php-format
860
- msgid "- Downloading file from `%s`"
861
- msgstr "- Descargando archivo desde `%s`"
862
-
863
- #: ../../classes/api.php:444 ../../classes/api.php:472 ../../models/import/record.
864
- #: php:2344 ../../models/import/record.php:2375
865
- #, php-format
866
- msgid "- Image `%s` has been successfully downloaded"
867
- msgstr "- Imagen `%s` ha sido descargada con éxito"
868
-
869
- #: ../../classes/api.php:450 ../../models/import/record.php:2350
870
- #, php-format
871
- msgid "- File `%s` has been successfully downloaded"
872
- msgstr "- Archivo `%s` ha sido descargado con éxito"
873
-
874
- #: ../../classes/api.php:462 ../../models/import/record.php:2363
875
- #, php-format
876
- msgid "- <b>WARNING</b>: File %s cannot be saved locally as %s"
877
- msgstr "- <b>ADVERTENCIA</b>: Archivo %s no puede ser guardado localmente como %s"
878
-
879
- #: ../../classes/api.php:496 ../../models/import/record.php:2405
880
- #, php-format
881
- msgid "- Creating an attachment for image `%s`"
882
- msgstr "- Creando un archivo adjunto para la imagen `%s`"
883
-
884
- #: ../../classes/api.php:499
885
- #, php-format
886
- msgid "- Creating an attachment for file `%s`"
887
- msgstr "- Creando un archivo adjunto para el archivo `%s`"
888
-
889
- #: ../../classes/api.php:518 ../../models/import/record.php:2427 ../..
890
- #: /models/import/record.php:2625
891
- msgid "- <b>WARNING</b>"
892
- msgstr "- <b>ADVERTENCIA</b>"
893
-
894
- #: ../../classes/api.php:522 ../../models/import/record.php:2477
895
- #, php-format
896
- msgid "- Attachment has been successfully created for image `%s`"
897
- msgstr "- Archivo adjunto ha sido creado con éxito para la imagen `%s`"
898
-
899
- #: ../../classes/render.php:68 ../../classes/render.php:88 ../../classes/render.
900
- #: php:166 ../../classes/render.php:186
901
- #, php-format
902
- msgid "<strong>%s</strong> %s more"
903
- msgstr "<strong>%s</strong> %s más"
904
-
905
- #: ../../classes/render.php:94 ../../classes/render.php:192
906
- msgid "more"
907
- msgstr "más"
908
-
909
- #: ../../classes/updater.php:240
910
- #, php-format
911
- msgid ""
912
- "There is a new version of %1$s available. <a target=\"_blank\" "
913
- "class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
914
- msgstr ""
915
- "Hay nueva versión de %1$s disponible. <a target=\"_blank\" class=\"thickbox\" "
916
- "href=\"%2$s\">Ver detalles de la versión %3$s </a>."
917
-
918
- #: ../../classes/updater.php:247
919
- #, php-format
920
- msgid ""
921
- "There is a new version of %1$s available. <a target=\"_blank\" "
922
- "class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a "
923
- "href=\"%4$s\">update now</a>."
924
- msgstr ""
925
- "Hay un nueva versión de %1$s disponible. <a target=\"_blank\" class=\"thickbox\" "
926
- "href=\"%2$s\">Ver detalles de la versión %3$s </a> or <a "
927
- "href=\"%4$s\">actualizar ahora</a>."
928
-
929
- #: ../../classes/updater.php:435
930
- msgid "You do not have permission to install plugin updates"
931
- msgstr "Usted no tiene permisos para instalar actualizaciones del plugin"
932
-
933
- #: ../../classes/updater.php:435
934
- msgid "Error"
935
- msgstr "Error"
936
-
937
- #: ../../classes/upload.php:46
938
- msgid ""
939
- "Please specify a file to import.<br/><br/>If you are uploading the file from "
940
- "your computer, please wait for it to finish uploading (progress bar at 100%),"
941
- " before trying to continue."
942
- msgstr ""
943
- "Por favor especifique un archivo a importar. <br/><br/>Si esta subiendo el "
944
- "archivo desde su computadora, por favor espera a que termine la carga (barra "
945
- "de progreso al 100%), antes de que intente continuar."
946
-
947
- #: ../../classes/upload.php:48
948
- msgid "Uploaded file is empty"
949
- msgstr "Archivo subido esta vacío"
950
-
951
- #: ../../classes/upload.php:50 ../../controllers/admin/settings.php:459
952
- msgid "Uploaded file must be XML, CSV, ZIP, GZIP, GZ, JSON, SQL, TXT, DAT or PSV"
953
- msgstr ""
954
- "El archivo cargado tiene que ser XML, CSV, ZIP, GZIP, GZ, JSON, SQL, TXT, "
955
- "DAT o PSV"
956
-
957
- #: ../../classes/upload.php:57 ../../classes/upload.php:114 ../../classes/upload.
958
- #: php:358 ../../classes/upload.php:399 ../../classes/upload.php:704 ../..
959
- #: /classes/upload.php:745
960
- msgid ""
961
- "WP All Import couldn't find a file to import inside your ZIP."
962
- "<br/><br/>Either the .ZIP file is broken, or doesn't contain a file with an "
963
- "extension of XML, CSV, PSV, DAT, or TXT. <br/>Please attempt to unzip your ."
964
- "ZIP file on your computer to ensure it is a valid .ZIP file which can "
965
- "actually be unzipped, and that it contains a file which WP All Import can "
966
- "import."
967
- msgstr ""
968
- "WP All Import no pudo encontrar un archivo para importar dentro del ZIP."
969
- "<br/><br/>Ya sea que el archivo .ZIP esta dañado, o no contiene un archivo "
970
- "con una extensión de XML, CSV, PSV, DAT, o TXT. <br/>Por favor intente "
971
- "descomprimir tu archivo .ZIP en su computadora para asegurarse que es un "
972
- "achivo .ZIP válido que puede ser descomprimido, y que contiene un archivo "
973
- "que el Importador WP puede utilizar."
974
-
975
- #: ../../classes/upload.php:94 ../../classes/upload.php:128 ../../classes/upload.
976
- #: php:185 ../../classes/upload.php:379 ../../classes/upload.php:691 ../..
977
- #: /classes/upload.php:725 ../../classes/upload.php:759 ../../classes/upload.php:
978
- #: 819 ../../classes/upload.php:846 ../../classes/upload.php:885 ../..
979
- #: /classes/upload.php:909 ../../classes/upload.php:933
980
- msgid "WP All Import can't access your WordPress uploads folder."
981
- msgstr "WP All Import no puede acceder a su carpeta de cargas de Wordpress."
982
-
983
- #: ../../classes/upload.php:151 ../../classes/upload.php:252 ../../classes/upload.
984
- #: php:436 ../../classes/upload.php:525 ../../classes/upload.php:627 ../..
985
- #: /classes/upload.php:783 ../../classes/upload.php:872
986
- msgid "Can not import this file. JSON to XML convertation failed."
987
- msgstr "No se puede importar este archivo .JSON a XML falló la conversión. "
988
-
989
- #: ../../classes/upload.php:327 ../../classes/upload.php:687
990
- msgid "Please specify a file to import."
991
- msgstr "Por favor especifique el archivo a importar."
992
-
993
- #: ../../classes/upload.php:329
994
- msgid ""
995
- "The URL to your file is not valid.<br/><br/>Please make sure the URL starts "
996
- "with http:// or https://. To import from https://, your server must have "
997
- "OpenSSL installed."
998
- msgstr ""
999
- "La URL para su archivo no es válida.<br/><br/>Por favor asegurese que el URL "
1000
- "inicie con http:// o https://. Para importar desde https://, tu servidor "
1001
- "debe tener OpenSSL instalado."
1002
-
1003
- #: ../../classes/upload.php:351
1004
- msgid "Failed upload ZIP archive"
1005
- msgstr "Falló la carga del archivo ZIP"
1006
-
1007
- #: ../../classes/upload.php:486 ../../classes/upload.php:590
1008
- msgid ""
1009
- "WP All Import was not able to download your file.<br/><br/>Please make sure "
1010
- "the URL to your file is valid.<br/>You can test this by pasting it into your "
1011
- "browser.<br/>Other reasons for this error can include some server setting on "
1012
- "your host restricting access to this particular URL or external URLs in "
1013
- "general, or some setting on the server hosting the file you are trying to "
1014
- "access preventing your server from accessing it."
1015
- msgstr ""
1016
- "WP All Import no fue capaz de descargar su archivo.<br/><br/>Asegúrese que "
1017
- "la URL para su archivo es válida.<br/>Puede probarlo copiando el URL en su "
1018
- "navegador.<br/>Otras razones para este error pueden incluir algunas "
1019
- "configuraciones de servidor que restringe acceso a este URL en particular o "
1020
- "URLS externos en general, o algunas configuraciones en el servidor que aloja "
1021
- "el archivo impiden que el servidor que desea acceder lo pueda ver."
1022
-
1023
- #: ../../controllers/admin/addons.php:21
1024
- msgid "WooCommerce Addon"
1025
- msgstr "Addon de WooCommerce"
1026
-
1027
- #: ../../controllers/admin/addons.php:22 ../../controllers/admin/addons.php:76
1028
- msgid "Import Products from any XML or CSV to WooCommerce"
1029
- msgstr "Importar Productos desde cualquier archivo XML o CSV a WooCommerce"
1030
-
1031
- #: ../../controllers/admin/addons.php:32
1032
- msgid "ACF Addon"
1033
- msgstr "Addon ACF"
1034
-
1035
- #: ../../controllers/admin/addons.php:33
1036
- msgid "Import to advanced custom fields"
1037
- msgstr "Importar a campos personalizados avanzados"
1038
-
1039
- #: ../../controllers/admin/addons.php:43
1040
- msgid "WPML Addon"
1041
- msgstr "Addon WPML"
1042
-
1043
- #: ../../controllers/admin/addons.php:44
1044
- msgid "Import to WPML"
1045
- msgstr "Importar a WPML"
1046
-
1047
- #: ../../controllers/admin/addons.php:54
1048
- msgid "User Addon"
1049
- msgstr "Addon Usuario"
1050
-
1051
- #: ../../controllers/admin/addons.php:55
1052
- msgid "Import Users"
1053
- msgstr "Importar Usuarios"
1054
-
1055
- #: ../../controllers/admin/addons.php:65
1056
- msgid "Link cloaking Addon"
1057
- msgstr "Addon de Link cloaking"
1058
-
1059
- #: ../../controllers/admin/addons.php:66
1060
- msgid "Affiliate link cloaking"
1061
- msgstr "Afilare link cloaking"
1062
-
1063
- #: ../../controllers/admin/addons.php:75
1064
- msgid "WooCommerce Addon - free edition"
1065
- msgstr "Add-on de Woocommerce - Edición gratis"
1066
-
1067
- #: ../../controllers/admin/addons.php:84
1068
- msgid "WooCommerce Tabs Addon"
1069
- msgstr "Add-on de Tabs de WooCommerce"
1070
-
1071
- #: ../../controllers/admin/addons.php:85
1072
- msgid "Import data to WooCommerce tabs"
1073
- msgstr "Importar información a las tabs de WooCommerce"
1074
-
1075
- #: ../../controllers/admin/history.php:31
1076
- msgid "Import is not specified."
1077
- msgstr "La importación no ha sido especificada."
1078
-
1079
- #: ../../controllers/admin/history.php:57 ../../controllers/admin/manage.php:60
1080
- msgid "&laquo;"
1081
- msgstr "&laquo;"
1082
-
1083
- #: ../../controllers/admin/history.php:58 ../../controllers/admin/manage.php:61
1084
- msgid "&raquo;"
1085
- msgstr "&raquo;"
1086
-
1087
- #: ../../controllers/admin/history.php:92
1088
- msgid "Log file does not exists."
1089
- msgstr "El archivo de registros no existe."
1090
-
1091
- #: ../../controllers/admin/history.php:112
1092
- msgid "History deleted"
1093
- msgstr "Historial eliminado"
1094
-
1095
- #: ../../controllers/admin/history.php:139 ../../controllers/admin/manage.php:634
1096
- #, php-format
1097
- msgid "%d %s deleted"
1098
- msgstr "%d %s eliminado"
1099
-
1100
- #: ../../controllers/admin/import.php:75
1101
- msgid ""
1102
- "WP All Import lost track of where you are.<br/><br/>Maybe you cleared your "
1103
- "cookies or maybe it is just a temporary issue on your or your web host's end."
1104
- "<br/>If you can't do an import without seeing this error, change your "
1105
- "session settings on the All Import -> Settings page."
1106
- msgstr ""
1107
- "WP All Import perdió la pista donde estabas.<br/><br/>Puede ser que has "
1108
- "eliminado los cookies o solamente es un error temporal en su alojador web."
1109
- "<br/>Si no puede realizar una importación sin ver este error, cambie la "
1110
- "configuración de sesión del Importador WP en ->página de configuración. "
1111
-
1112
- #: ../../controllers/admin/import.php:92 ../../controllers/admin/import.php:655
1113
- msgid ""
1114
- "There are no elements to import based on your XPath.<br/><br/>If you are in "
1115
- "Step 2, you probably specified filtering options that don’t match any "
1116
- "elements present in your file.<br/>If you are seeing this error elsewhere, "
1117
- "it means that while the XPath expression for your initial import matched "
1118
- "some elements in your file previously, there are now zero elements in the "
1119
- "file that match this expression.<br/>You can edit the XPath for your import "
1120
- "by going to the Manage Imports -> Import Settings page."
1121
- msgstr ""
1122
- "No hay elementos a importar basados en tu XPath.<br/><br/>Si te encuentras "
1123
- "en el Paso 2, probablemente has filtrado opciones que no coinciden con "
1124
- "varios elementos presentes en tu archivo.<br/>Si estas viendo este error en "
1125
- "algún otro lado, significa que mientras la expresión XPath de tu importación "
1126
- "inicial coincidía previamente con algunos de tus archivos, ahora no existen "
1127
- "elementos en el archivo que coincidan con esta expresión.<br/>Puedes editar "
1128
- "el XPath para tu importación por medio de la sección de Manejar "
1129
- "Importaciones -> en la pagina de Configuración de Importación."
1130
-
1131
- #: ../../controllers/admin/import.php:150
1132
- msgid "The import associated with this export has been deleted."
1133
- msgstr "La importación asociada con esta exportación ha sido elminada."
1134
-
1135
- #: ../../controllers/admin/import.php:150
1136
- msgid ""
1137
- "Please re-run your export by clicking Run Export on the All Export -> Manage "
1138
- "Exports page. Then try your import again."
1139
- msgstr ""
1140
- "Por favor reinicie su exportación dando click en Iniciar Exportación en "
1141
- "Todas las Exportaciones -> en la pagina de Manejar Exportaciones. Entonces "
1142
- "intente nuevamente su importación."
1143
-
1144
- #: ../../controllers/admin/import.php:155
1145
- msgid "This import has been deleted."
1146
- msgstr "Esta importación ha sido eliminada."
1147
-
1148
- #: ../../controllers/admin/import.php:167
1149
- msgid ""
1150
- "Required PHP components are missing.<br/><br/>WP All Import requires "
1151
- "DOMDocument, XMLReader, and XMLWriter PHP modules to be installed.<br/>These "
1152
- "are standard features of PHP, and are necessary for WP All Import to read "
1153
- "the files you are trying to import.<br/>Please contact your web hosting "
1154
- "provider and ask them to install and activate the DOMDocument, XMLReader, "
1155
- "and XMLWriter PHP modules."
1156
- msgstr ""
1157
- "Componentes PHP requeridos están faltantes.<br/><br>WP All Import requiere "
1158
- "de módulos PHP DOMDocument, XMLReader y XMLWriter para ser instalado."
1159
- "<br/>Estas son características estándar de PHP, son necesarias para que el "
1160
- "Importador WP lea estos archivos que estas intentando de importar.<br/>Por "
1161
- "favor contacte su proveedor de alojamiento web y consulteles que le instalen "
1162
- "y activen los módulos PHP de DOMDocument, XMLReader y XMLWriter."
1163
-
1164
- #: ../../controllers/admin/import.php:242
1165
- msgid "Select an item type to import the data"
1166
- msgstr "Seleccione un tipo de elemento para importar los datos"
1167
-
1168
- #: ../../controllers/admin/import.php:246
1169
- msgid "Previous import for update must be selected to proceed with a new one"
1170
- msgstr ""
1171
- "Importación previa para actualizar debe de ser seleccionada para proceder "
1172
- "con una nueva"
1173
-
1174
- #: ../../controllers/admin/import.php:289
1175
- msgid "File is no longer in the correct format"
1176
- msgstr "El archivo no se encuentra actualmente en el formato correcto"
1177
-
1178
- #: ../../controllers/admin/import.php:292 ../../controllers/admin/import.php:323
1179
- msgid ""
1180
- "Certain columns are required to be present in your file to enable it to be "
1181
- "re-imported with WP All Import. These columns are missing. Re-export your "
1182
- "file using WP All Export, and don't delete any of the columns when editing "
1183
- "it. Then, re-import will work correctly."
1184
- msgstr ""
1185
- "Ciertas columnas requieren de estar presentes en su archivo para habilitar "
1186
- "la re-importación con WP All Import. Estas columnas están faltantes. Re-"
1187
- "exporte su archivo utilizando WP All Export y no elimine ninguna de las "
1188
- "columnas mientras lo esta editando. Entonces el re-importe funcionara "
1189
- "correctamente."
1190
-
1191
- #: ../../controllers/admin/import.php:295
1192
- msgid ""
1193
- "The import template you are using requires User Import Add-On.<br/><a "
1194
- "href=\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress."
1195
- "org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" "
1196
- "target=\"_blank\">Purchase the User Import Add-On</a>"
1197
- msgstr ""
1198
- "La plantilla de importación que esta utilizando requiere el User Import Add-"
1199
- "On.<br/><a href=\"http://www.wpallimport.com/add-ons/user-import/?"
1200
- "utm_source=wordpress.org&utm_medium=wpai-import-"
1201
- "template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">Compre el "
1202
- "User Import Add-On</a>"
1203
-
1204
- #: ../../controllers/admin/import.php:358
1205
- msgid "Unable to download feed resource."
1206
- msgstr "No se pudo descargar el recurso de información."
1207
-
1208
- #: ../../controllers/admin/import.php:433 ../../controllers/admin/import.php:457 .
1209
- #: ./../controllers/admin/settings.php:644
1210
- msgid ""
1211
- "Please confirm you are importing a valid feed.<br/> Often, feed providers "
1212
- "distribute feeds with invalid data, improperly wrapped HTML, line breaks "
1213
- "where they should not be, faulty character encodings, syntax errors in the "
1214
- "XML, and other issues.<br/><br/>WP All Import has checks in place to "
1215
- "automatically fix some of the most common problems, but we can’t catch every "
1216
- "single one.<br/><br/>It is also possible that there is a bug in WP All "
1217
- "Import, and the problem is not with the feed.<br/><br/>If you need "
1218
- "assistance, please contact support – <a href=\"mailto:support@wpallimport."
1219
- "com\">support@wpallimport.com</a> – with your XML/CSV file. We will identify "
1220
- "the problem and release a bug fix if necessary."
1221
- msgstr ""
1222
- "Por favor confirmar si es está importando información válida.<br/> A menudo "
1223
- "los proveedores de información distribuye información con dato inválidos, "
1224
- "HTML indebidamente envuelto, saltos de línea donde no deben ir, "
1225
- "codificaciones de caracteres defectuosos, errores de sintaxis en el archivo "
1226
- "XML, y otros detalles.<br/><br/>WP All Import hace revisiones para reparar "
1227
- "los problemas mas comunes, pero no se puede encontrar cada uno de ellos."
1228
- "<br/><br/>También es posible que el Importador WP tenga algún bug, y el "
1229
- "problema no se encuentre en la información.<br/><br/>Si necesita asistencia, "
1230
- "por favor contacte a soporte – <a href=\"mailto:support@wpallimport."
1231
- "com\">support@wpallimport.com</a> – con su archivo XML/CSV . Nosotros vamos a "
1232
- "identificar el problema y sacar una reparación si es necesario."
1233
-
1234
- #: ../../controllers/admin/import.php:452
1235
- msgid ""
1236
- "WP All Import unable to detect file type.<br/><br/>WP All Import not able to "
1237
- "determine what type of file you are importing. Make sure your file extension "
1238
- "is correct for the file type you are importing.<br/> Please choose the "
1239
- "correct file type from the dropdown below, or try adding &type=xml or "
1240
- "&type=csv to the end of the URL, for example http://example.com/export-"
1241
- "products.php?&type=xml"
1242
- msgstr ""
1243
- "WP All Import no pudo detectar el tipo de archivo.<br/><br/>El Importador WP "
1244
- "no fue capaz de determinar que tipo de archivo está importando. Asegúrese "
1245
- "que la extensión de su archivo es correcta para el tipo de archivo que esta "
1246
- "intentando importar.<br/> Por favor escoja el tipo de archivo correcto desde "
1247
- "el menú desplegable de abajo, o intente agregando &type=XML o &type=csv al "
1248
- "final del URL, por ejemplo http://example.com/export-products.php?&type=xml"
1249
-
1250
- #: ../../controllers/admin/import.php:485
1251
- msgid "No elements selected"
1252
- msgstr "Ningún elemento seleccionado"
1253
-
1254
- #: ../../controllers/admin/import.php:490 ../../controllers/admin/import.php:716
1255
- msgid ""
1256
- "Your XPath is not valid.<br/><br/>Click \"get default XPath\" to get the "
1257
- "default XPath."
1258
- msgstr ""
1259
- "Su XPath es inválido.<br/><br/>Haga click en \"obtener el XPath por defecto\" "
1260
- "para obtener el XPath por defecto."
1261
-
1262
- #: ../../controllers/admin/import.php:494 ../../controllers/admin/import.php:722
1263
- msgid "XPath must match only elements"
1264
- msgstr "El XPath debe de coincidir solo elementos"
1265
-
1266
- #: ../../controllers/admin/import.php:524
1267
- msgid ""
1268
- "Warning: No matching elements found for XPath expression from the import "
1269
- "being updated. It probably means that new XML file has different format. "
1270
- "Though you can update XPath, procceed only if you sure about update "
1271
- "operation being valid."
1272
- msgstr ""
1273
- "Advertencia: No se encontraron elementos que coincidan para la expresión "
1274
- "XPath desde la importación que esta siendo actualizada. Esto probablemente "
1275
- "significa que el nuevo archivo XML tiene formato diferente. Sin embargo "
1276
- "puede actualizar el XPath, proceda solamente si está seguro que la operación "
1277
- "de actualización es válida."
1278
-
1279
- #: ../../controllers/admin/import.php:566 ../../controllers/admin/import.php:709
1280
- msgid ""
1281
- "Your XPath is empty.<br/><br/>Please enter an XPath expression, or click "
1282
- "\"get default XPath\" to get the default XPath."
1283
- msgstr ""
1284
- "Su XPath está vacío.<br/><br/>Por favor ingrese un expresión XPath, o de "
1285
- "click en \"obtener XPath por defecto\" para obtener el XPath por defecto."
1286
-
1287
- #: ../../controllers/admin/import.php:718
1288
- msgid "No matching variations found for XPath specified"
1289
- msgstr "No se encontraron variaciones que coincidan para el XPath especificado"
1290
-
1291
- #: ../../controllers/admin/import.php:959 ../../controllers/admin/import.php:975 .
1292
- #: ./../controllers/admin/import.php:1105
1293
- msgid ""
1294
- "WP All Import lost track of where you are.<br/><br/>Maybe you cleared your "
1295
- "cookies or maybe it is just a temporary issue on your web host's end.<br/>If "
1296
- "you can't do an import without seeing this error, change your session "
1297
- "settings on the All Import -> Settings page."
1298
- msgstr ""
1299
- "WP All Import perdió la pista donde estabas.<br/><br/>Puede ser que has "
1300
- "eliminado los cookies o solamente es un error temporal en su alojador web."
1301
- "<br/>Si no puede realizar una importación sin ver este error, cambie la "
1302
- "configuración de sesión del Importador WP en ->página de configuración. "
1303
-
1304
- #: ../../controllers/admin/import.php:961
1305
- msgid "<strong>Warning</strong>: your title is blank."
1306
- msgstr "<strong>Advertencia:</strong> su título está en blanco."
1307
-
1308
- #: ../../controllers/admin/import.php:966
1309
- msgid "<strong>Warning</strong>: resulting post title is empty"
1310
- msgstr "<strong>Advertencia</strong>: El titulo del post resultante esta vacío"
1311
-
1312
- #: ../../controllers/admin/import.php:971
1313
- #, php-format
1314
- msgid "Error parsing title: %s"
1315
- msgstr "Error analizando el título: %s"
1316
-
1317
- #: ../../controllers/admin/import.php:977
1318
- msgid "<strong>Warning</strong>: your content is blank."
1319
- msgstr "<strong>Advertencia:</strong> su contenido esta en blanco."
1320
-
1321
- #: ../../controllers/admin/import.php:982
1322
- msgid "<strong>Warning</strong>: resulting post content is empty"
1323
- msgstr "<strong>Advertencia</strong>: El titulo del post resultante esta vacío"
1324
-
1325
- #: ../../controllers/admin/import.php:987
1326
- #, php-format
1327
- msgid "Error parsing content: %s"
1328
- msgstr "Error analizando contenido: %s"
1329
-
1330
- #: ../../controllers/admin/import.php:1125 ../../controllers/admin/import.php:
1331
- #: 1280 ../../controllers/admin/import.php:1412
1332
- #, php-format
1333
- msgid "Error parsing: %s"
1334
- msgstr "Error analizando: %s"
1335
-
1336
- #: ../../controllers/admin/import.php:1236 ../../controllers/admin/import.php:1391
1337
- msgid "Error parsing: String could not be parsed as XML"
1338
- msgstr "Error analizando: La cadena no puede ser analizada como XML"
1339
-
1340
- #: ../../controllers/admin/import.php:1277 ../../controllers/admin/import.php:1409
1341
- msgid "There is no data to preview"
1342
- msgstr "No existen datos para mostrar previamente"
1343
-
1344
- #: ../../controllers/admin/import.php:1514 ../../views/admin/import/template.php:67
1345
- msgid "Excerpt"
1346
- msgstr "Extracto"
1347
-
1348
- #: ../../controllers/admin/import.php:1518 ../../controllers/admin/import.php:
1349
- #: 1522 ../../models/import/record.php:1186 ../../views/admin/import/template.php:
1350
- #: 112 ../../views/admin/import/options/_reimport_options.php:135
1351
- msgid "Images"
1352
- msgstr "Imagenes"
1353
-
1354
- #: ../../controllers/admin/import.php:1540
1355
- msgid "Both name and value must be set for all custom parameters"
1356
- msgstr ""
1357
- "Tanto el nombre y valor se deben establecer para todos los parámetros "
1358
- "personalizados"
1359
-
1360
- #: ../../controllers/admin/import.php:1543
1361
- msgid "Custom Field Name"
1362
- msgstr "Campo Personalizado de Nombre"
1363
-
1364
- #: ../../controllers/admin/import.php:1547
1365
- msgid "Custom Field Value"
1366
- msgstr "Campo Personalizado de Valor"
1367
-
1368
- #: ../../controllers/admin/import.php:1560
1369
- msgid "Both name and value must be set for all woocommerce attributes"
1370
- msgstr ""
1371
- "Tanto nombre y valor se deben establecer para todos los atributos de "
1372
- "woocommerce"
1373
-
1374
- #: ../../controllers/admin/import.php:1563
1375
- msgid "Attribute Field Name"
1376
- msgstr "Campo de Nombre de Atributo"
1377
-
1378
- #: ../../controllers/admin/import.php:1566
1379
- msgid "Attribute Field Value"
1380
- msgstr "Campo de Atributo de Valor"
1381
-
1382
- #: ../../controllers/admin/import.php:1577
1383
- msgid "Tags"
1384
- msgstr "Etiquetas"
1385
-
1386
- #: ../../controllers/admin/import.php:1580 ../../views/admin/history/index.php:33
1387
- msgid "Date"
1388
- msgstr "Fecha"
1389
-
1390
- #: ../../controllers/admin/import.php:1582 ../../controllers/admin/import.php:1583
1391
- msgid "Start Date"
1392
- msgstr "Fecha de Inicio"
1393
-
1394
- #: ../../controllers/admin/import.php:1617
1395
- msgid "Template updated"
1396
- msgstr "Plantilla Actualizada"
1397
-
1398
- #: ../../controllers/admin/import.php:1699
1399
- #, php-format
1400
- msgid "%s template is invalid: %s"
1401
- msgstr "%s plantilla es inválida: %s"
1402
-
1403
- #: ../../controllers/admin/import.php:1802
1404
- msgid ""
1405
- "Records to import must be specified or uncheck `Import only specified "
1406
- "records` option to process all records"
1407
- msgstr ""
1408
- "Los registros a importar deben de ser especificados o desmarcar la opción "
1409
- "`Importar registros específicos solamente` para proceder con todos los "
1410
- "registros"
1411
-
1412
- #: ../../controllers/admin/import.php:1807
1413
- msgid "Wrong format of `Import only specified records` value"
1414
- msgstr "Formato incorrecto de valor `Importar registros específicos solamente`"
1415
-
1416
- #: ../../controllers/admin/import.php:1810
1417
- msgid ""
1418
- "One of the numbers in `Import only specified records` value exceeds record "
1419
- "quantity in XML file"
1420
- msgstr ""
1421
- "Un de los números en el valor de `Importar registros específicos solamente` "
1422
- "excede la cantidad de registros en el archivo XML"
1423
-
1424
- #: ../../controllers/admin/import.php:1817
1425
- msgid ""
1426
- "Expression for `Post Unique Key` must be set, use the same expression as "
1427
- "specified for post title if you are not sure what to put there"
1428
- msgstr ""
1429
- "La expresión para `Publicar Clave Unica` debe de ser establecida, utilice la "
1430
- "misma expresión como se especifica el titulo de la publicación si no esta "
1431
- "seguro de que puede poner "
1432
-
1433
- #: ../../controllers/admin/import.php:1819
1434
- msgid "Post Unique Key"
1435
- msgstr "Publicar Clave Unica"
1436
-
1437
- #: ../../controllers/admin/import.php:1823
1438
- msgid "Custom field name must be specified."
1439
- msgstr "Campo de nombre personalizado debe ser especificado."
1440
-
1441
- #: ../../controllers/admin/import.php:1825
1442
- msgid "Custom field value must be specified."
1443
- msgstr "Campo de valor personalizado debe de ser especificado"
1444
-
1445
- #: ../../controllers/admin/import.php:1906
1446
- msgid "WP All Import doesn't support this import type."
1447
- msgstr "WP All Import no admite este tipo de importación. "
1448
-
1449
- #: ../../controllers/admin/import.php:1950
1450
- msgid ""
1451
- "<strong>Warning:</strong> this file does not have the same structure as the "
1452
- "last file associated with this import. WP All Import won't be able to import "
1453
- "this file with your current settings. Probably you'll need to adjust your "
1454
- "XPath in the \"Configure Advanced Settings\" box below, and reconfigure your "
1455
- "import by clicking \"Edit\" on the Manage Imports page."
1456
- msgstr ""
1457
- "<strong>ADVERTENCIA:</strong> este archivo no tiene la misma estructura que "
1458
- "el último archivo asociado a esta importación. WP All Import no podrá "
1459
- "importar este archivo con la configuración actual. Probablemente usted "
1460
- "necesitará ajustar su XPath en el cuadro \"Configurar avanzada de "
1461
- "configuración\" abajo y reconfigurar su importación haciendo clic en \"Editar\" "
1462
- "en la página administrar las importaciones."
1463
-
1464
- #: ../../controllers/admin/import.php:1995
1465
- msgid "Root element not found for uploaded feed."
1466
- msgstr "Elemento raíz no encontrado para cargar información."
1467
-
1468
- #: ../../controllers/admin/import.php:2047
1469
- msgid "Import updated"
1470
- msgstr "Importación actualizada"
1471
-
1472
- #: ../../controllers/admin/import.php:2047
1473
- msgid "Import created"
1474
- msgstr "Importación creada"
1475
-
1476
- #: ../../controllers/admin/import.php:2149
1477
- msgid "Configuration updated"
1478
- msgstr "Configuración actualizada"
1479
-
1480
- #: ../../controllers/admin/import.php:2321 ../../controllers/admin/import.php:
1481
- #: 2604 ../../controllers/admin/import.php:2732
1482
- #, php-format
1483
- msgid "%d %ss created %d updated %d deleted %d skipped"
1484
- msgstr "%d %ss creada %d actualizada %d eliminada %d omitida"
1485
-
1486
- #: ../../controllers/admin/import.php:2739
1487
- msgid "Canceled"
1488
- msgstr "Cancelada"
1489
-
1490
- #: ../../controllers/admin/import.php:2739
1491
- msgid "Complete"
1492
- msgstr "Completada"
1493
-
1494
- #: ../../controllers/admin/license.php:43
1495
- msgid "Licenses saved"
1496
- msgstr "Licencias guardadas"
1497
-
1498
- #: ../../controllers/admin/manage.php:298 ../../views/admin/manage/index.php:272
1499
- msgid "Import canceled"
1500
- msgstr "Importación cancelada"
1501
-
1502
- #: ../../controllers/admin/manage.php:363
1503
- msgid ""
1504
- "This import appears to be using FTP. Unfortunately WP All Import no longer "
1505
- "supports the FTP protocol. Please contact <a href=\"mailto:"
1506
- "support@wpallimport.com\">support@wpallimport.com</a> if you have any "
1507
- "questions."
1508
- msgstr ""
1509
- "Esta importación parece estar utilizando FTP. Desafortunadamente el WP All "
1510
- "Import no admite el protocolo FTP. Por favor contacte <a href=\"mailto:"
1511
- "support@wpallimport.com\">support@wpallimport.com</a> si usted tiene alguna "
1512
- "consulta."
1513
-
1514
- #: ../../controllers/admin/manage.php:459
1515
- msgid "No matching elements found for Root element and XPath expression specified"
1516
- msgstr ""
1517
- "No se encontraron elementos que coincidan para el elemento de raíz y la "
1518
- "expresión XPath especificada"
1519
-
1520
- #: ../../controllers/admin/manage.php:555
1521
- msgid "File does not exists."
1522
- msgstr "El archivo no existe."
1523
-
1524
- #: ../../controllers/admin/settings.php:60
1525
- msgid "History File Count must be a non-negative integer"
1526
- msgstr "El historial de conteo de archivos debe ser un entero no negativo"
1527
-
1528
- #: ../../controllers/admin/settings.php:63
1529
- msgid "History Age must be a non-negative integer"
1530
- msgstr "El historial de tiempo debe ser un entero no negativo"
1531
-
1532
- #: ../../controllers/admin/settings.php:83
1533
- msgid "Settings saved"
1534
- msgstr "Configuraciones guardadas"
1535
-
1536
- #: ../../controllers/admin/settings.php:114
1537
- msgid "Unknown File extension. Only txt files are permitted"
1538
- msgstr "Extensión de arhivo desconocida. Solo arhivos txt son permitidos"
1539
-
1540
- #: ../../controllers/admin/settings.php:129
1541
- msgid "Wrong imported data format"
1542
- msgstr "Formato de datos importados incorrecto"
1543
-
1544
- #: ../../controllers/admin/settings.php:131
1545
- msgid "File is empty or doesn't exests"
1546
- msgstr "El archivo esta vacío o no existe"
1547
-
1548
- #: ../../controllers/admin/settings.php:134
1549
- msgid "Undefined entry!"
1550
- msgstr "Entrada indefinida!"
1551
-
1552
- #: ../../controllers/admin/settings.php:136
1553
- msgid "Please select file."
1554
- msgstr "Por favor seleccione el archivo."
1555
-
1556
- #: ../../controllers/admin/settings.php:142
1557
- msgid "Templates must be selected"
1558
- msgstr "Plantillas debe de ser seleccionada"
1559
-
1560
- #: ../../controllers/admin/settings.php:279
1561
- msgid "Files not found"
1562
- msgstr "Archivos no encontrados"
1563
-
1564
- #: ../../controllers/admin/settings.php:287
1565
- msgid "Clean Up has been successfully completed."
1566
- msgstr "La limpieza ha sido completada satisfactoriamente."
1567
-
1568
- #: ../../controllers/admin/settings.php:438
1569
- msgid "Uploads folder is not writable."
1570
- msgstr "La carpeta de cargas no es modificable."
1571
-
1572
- #: ../../controllers/admin/settings.php:495
1573
- msgid "Failed to open temp directory."
1574
- msgstr "No se pudo abrir el directorio temporal."
1575
-
1576
- #: ../../controllers/admin/settings.php:520 ../../controllers/admin/settings.php:
1577
- #: 545
1578
- msgid "Failed to open input stream."
1579
- msgstr "No se pudo abrir el flujo de entrada"
1580
-
1581
- #: ../../controllers/admin/settings.php:527 ../../controllers/admin/settings.php:
1582
- #: 552
1583
- msgid "Failed to open output stream."
1584
- msgstr "No se pudo abrir el flujo de salida."
1585
-
1586
- #: ../../controllers/admin/settings.php:531
1587
- msgid "Failed to move uploaded file."
1588
- msgstr "No se pudo mover el archivo cargado."
1589
-
1590
- #: ../../helpers/import_custom_meta_box.php:25
1591
- msgid ""
1592
- "Custom fields can be used to add extra metadata to a post that you can <a "
1593
- "href=\"http://codex.wordpress.org/Using_Custom_Fields\" target=\"_blank\">use in "
1594
- "your theme</a>."
1595
- msgstr ""
1596
- "Campos personalizados pueden ser utilizados para agregar datos extras a una "
1597
- "entrada que puedes <a href=\"http://codex.wordpress.org/Using_Custom_Fields\" "
1598
- "target=\"_blank\">utilizar en tu tema</a>."
1599
-
1600
- #: ../../helpers/reverse_taxonomies_html.php:18 ../..
1601
- #: /views/admin/import/template/_taxonomies_template.php:41 ../..
1602
- #: /views/admin/import/template/_taxonomies_template.php:63 ../..
1603
- #: /views/admin/import/template/_taxonomies_template.php:97 ../..
1604
- #: /views/admin/import/template/_taxonomies_template.php:107 ../..
1605
- #: /views/admin/import/template/_taxonomies_template.php:116 ../..
1606
- #: /views/admin/import/template/_taxonomies_template.php:164 ../..
1607
- #: /views/admin/import/template/_taxonomies_template.php:182 ../..
1608
- #: /views/admin/import/template/_taxonomies_template.php:189 ../..
1609
- #: /views/admin/import/template/_taxonomies_template.php:201
1610
- msgid "Assign post to the taxonomy."
1611
- msgstr "Asignar un entrada a la taxonomía."
1612
-
1613
- #: ../../helpers/wp_all_import_addon_notifications.php:108
1614
- #, php-format
1615
- msgid ""
1616
- "Make imports easier with the <strong>Advanced Custom Fields Add-On</strong> "
1617
- "for WP All Import: <a href=\"%s\" target=\"_blank\">Read More</a>"
1618
- msgstr ""
1619
- "Realice importaciones mas sencillas con el <strong>Advanced Custom Fields "
1620
- "Add-On</strong> para WP All Import: <a href=\"%s\" target=\"_blank\">Read "
1621
- "More</a>"
1622
-
1623
- #: ../../helpers/wp_all_import_addon_notifications.php:141
1624
- #, php-format
1625
- msgid ""
1626
- "Make imports easier with the <strong>free %s Add-On</strong> for WP All "
1627
- "Import: <a href=\"%s\" target=\"_blank\">Get Add-On</a>"
1628
- msgstr ""
1629
- "Realice importaciones mas facilmente con el <strong>Add-On %s "
1630
- "gratuito</strong> para WP All Import: <a href=\"%s\" target=\"_blank\">Obtener "
1631
- "el Add-On</a>"
1632
-
1633
- #: ../../helpers/wp_all_import_is_json.php:12
1634
- msgid "Maximum stack depth exceeded"
1635
- msgstr "Superó el máximo de profundidad de pila"
1636
-
1637
- #: ../../helpers/wp_all_import_is_json.php:15
1638
- msgid "Underflow or the modes mismatch"
1639
- msgstr "Las funciones no coinciden"
1640
-
1641
- #: ../../helpers/wp_all_import_is_json.php:18
1642
- msgid "Unexpected control character found"
1643
- msgstr "Se encontró un carácter de control inesperado"
1644
-
1645
- #: ../../helpers/wp_all_import_is_json.php:21
1646
- msgid "Syntax error, malformed JSON"
1647
- msgstr "Error de sintaxis, JSON malformado"
1648
-
1649
- #: ../../helpers/wp_all_import_is_json.php:24
1650
- msgid "Malformed UTF-8 characters, possibly incorrectly encoded"
1651
- msgstr "Caracteres UTF-8 malformados, posiblemente codificado incorrectamente"
1652
-
1653
- #: ../../helpers/wp_all_import_is_json.php:27
1654
- msgid "Unknown json error"
1655
- msgstr "Error json desconocido"
1656
-
1657
- #: ../../helpers/wp_all_import_template_notifications.php:23
1658
- msgid ""
1659
- "The import template you are using requires the User Import Add-On. If you "
1660
- "continue without it your data may import incorrectly.<br/><br/><a href=\"http:"
1661
- "//www.wpallimport.com/add-ons/user-import/?utm_source=wordpress."
1662
- "org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" "
1663
- "target=\"_blank\">Purchase the User Import Add-On</a>."
1664
- msgstr ""
1665
- "La plantilla de importación que esta utilizando requiere el User Import Add-"
1666
- "On. Si continua sin el, su información puede importarse incorrectamente."
1667
- "<br/><br/><a href=\"http://www.wpallimport.com/add-ons/user-import/?"
1668
- "utm_source=wordpress.org&utm_medium=wpai-import-"
1669
- "template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">Comprar el "
1670
- "User Import Add-On</a>."
1671
-
1672
- #: ../../helpers/wp_all_import_template_notifications.php:27
1673
- msgid ""
1674
- "The import template you are using requires the WooCommerce Import Add-On. If "
1675
- "you continue without it your data may import incorrectly.<br/><br/><a "
1676
- "href=\"http://www.wpallimport.com/woocommerce-product-import/\" "
1677
- "target=\"_blank\">Purchase the WooCommerce Import Add-On</a>."
1678
- msgstr ""
1679
- "La plantilla de importación que esta utilizando requiere el WooCommerce "
1680
- "Import Add-On. Si continua sin el, su información puede importarse "
1681
- "incorrectamente.<br/><br/><a href=\"http://www.wpallimport.com/woocommerce-"
1682
- "product-import/\" target=\"_blank\">Comprar el WooCommerce Import Add-On</a>."
1683
-
1684
- #: ../../helpers/wp_all_import_template_notifications.php:32
1685
- msgid ""
1686
- "The import template you are using requires the Realia Add-On. If you "
1687
- "continue without it your data may import incorrectly.<br/><br/><a "
1688
- "href=\"https://wordpress.org/plugins/realia-xml-csv-property-listings-"
1689
- "import/\" target=\"_blank\">Download the Realia Add-On</a>."
1690
- msgstr ""
1691
- "La plantilla de importación que esta utilizando requiere el Realia Add-On. "
1692
- "Si continua sin el, su información puede importarse incorrectamente."
1693
- "<br/><br/><a href=\"https://wordpress.org/plugins/realia-xml-csv-property-"
1694
- "listings-import/\" target=\"_blank\">Descargar el Realia Add-On</a>."
1695
-
1696
- #: ../../helpers/wp_all_import_template_notifications.php:39
1697
- msgid ""
1698
- "The import template you are using requires the WP Residence Add-On. If you "
1699
- "continue without it your data may import incorrectly.<br/><br/><a "
1700
- "href=\"https://wordpress.org/plugins/wp-residence-add-on-for-wp-all-import/\" "
1701
- "target=\"_blank\">Download the WP Residence Add-On</a>."
1702
- msgstr ""
1703
- "La plantilla de importación que esta utilizando requiere el WP Residence Add-"
1704
- "On. Si continua sin el, su información puede importarse incorrectamente."
1705
- "<br/><br/><a href=\"https://wordpress.org/plugins/wp-residence-add-on-for-wp-"
1706
- "all-import/\" target=\"_blank\">Descargar el WP Residence Add-On</a>."
1707
-
1708
- #: ../../helpers/wp_all_import_template_notifications.php:46
1709
- msgid ""
1710
- "The import template you are using requires the RealHomes Add-On. If you "
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&#8211;%s of %s"
2561
- msgstr "Mostrando %s&#8211;%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;\">&lt;%s&gt;</span> records in your file"
2703
- msgstr ""
2704
- "WP All Import procesará todo %s<span style=\"color:#46ba69; font-weight:bold;"
2705
- "\">&lt;%s&gt;</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>&lt;<span class=\"root_element\">%s</span>&gt;</span> element will "
2940
- "be imported into a <span>New %s</span>"
2941
- msgstr ""
2942
- "Cada <span>&lt;<span class=\"root_element\">%s</span>&gt;</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>&lt;<span class=\"root_element\">%s</span>&gt;</span> elements "
2949
- "will be imported to <span>%s</span>"
2950
- msgstr ""
2951
- "Datos en <span>&lt;<span class=\"root_element\">%s</span>&gt;</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 &lt;img&gt; tags. "
3306
- msgstr "Aquí están las URLS, en &lt;img&gt; 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 \"&lt;?php\" and \"?&gt;\""
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 "&laquo;"
614
+ msgstr "&laquo;"
615
+
616
+ #: controllers/admin/history.php:58 controllers/admin/manage.php:61
617
+ msgid "&raquo;"
618
+ msgstr "&raquo;"
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\">%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>ACCION</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 "Actualizar estado de stock de entradas previamente importadas que ya no son actuales..."
1719
+
1720
+ #: models/import/record.php:3373
1721
+ msgid "Cleaning temporary data..."
1722
+ msgstr "Limpiando datos temporales..."
1723
+
1724
+ #: models/import/record.php:3389
1725
+ msgid "Deleting source XML file..."
1726
+ msgstr "Eliminando archivo fuente XML"
1727
+
1728
+ #: models/import/record.php:3393
1729
+ msgid "Deleting chunks files..."
1730
+ msgstr "Eliminando pedazos de archivos..."
1731
+
1732
+ #: models/import/record.php:3400 models/import/record.php:3409
1733
+ msgid "<b>WARNING</b>: Unable to remove %s"
1734
+ msgstr "<b>ADVERTENCIA</b>: No se puedo remover %s"
1735
+
1736
+ #: models/import/record.php:3421
1737
+ msgid "Removing previously imported posts which are no longer actual..."
1738
+ msgstr "Quitando entradas previamente importadas que ya no son actuales..."
1739
+
1740
+ #: models/import/record.php:3443
1741
+ msgid "<b>ACTION</b>: pmxi_delete_post"
1742
+ msgstr "<b>ACCION</b>: pmxi_delete_post"
1743
+
1744
+ #: models/import/record.php:3445
1745
+ msgid "Deleting posts from database"
1746
+ msgstr "Eliminando entradas de la base de datos"
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 "En vez de eliminar entradas con ID `%s`, establezca Campo Personalizado `%s` para el valor `%s`"
1759
+
1760
+ #: models/import/record.php:3482
1761
+ msgid "Instead of deletion, change post with ID `%s` status to Draft"
1762
+ msgstr "En vez de eliminar, cambie la entrada con ID `%s` a estado borrador"
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> No se pudo insertar el termino de la relación en la base de datos"
1771
+
1772
+ #: views/admin/addons/index.php:3
1773
+ msgid "WP All Import Add-ons"
1774
+ msgstr "Add-ons de WP All Import"
1775
+
1776
+ #: views/admin/addons/index.php:8
1777
+ msgid "Premium Add-ons"
1778
+ msgstr "Add-ons Premium"
1779
+
1780
+ #: views/admin/addons/index.php:20 views/admin/addons/index.php:61
1781
+ msgid "Installed"
1782
+ msgstr "Instalado"
1783
+
1784
+ #: views/admin/addons/index.php:22
1785
+ msgid "Free Version Installed"
1786
+ msgstr "Versión gratis instalada"
1787
+
1788
+ #: views/admin/addons/index.php:29 views/admin/addons/index.php:70
1789
+ msgid " required"
1790
+ msgstr " requerido"
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 "Descargado"
1796
+
1797
+ #: views/admin/addons/index.php:41
1798
+ msgid "Purchase & Install"
1799
+ msgstr "Comprar e instalar"
1800
+
1801
+ #: views/admin/addons/index.php:49
1802
+ msgid "Free Add-ons"
1803
+ msgstr "Add-ons Gratuitos"
1804
+
1805
+ #: views/admin/addons/index.php:63
1806
+ msgid "Paid Version Installed"
1807
+ msgstr "Versión pagada instalada"
1808
+
1809
+ #: views/admin/help/index.php:1
1810
+ msgid "WP All Import Help"
1811
+ msgstr "Ayuda para WP All Import"
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 - Importar Historial"
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 "Tiempo de Ejecución"
1825
+
1826
+ #: views/admin/history/index.php:35
1827
+ msgid "Type"
1828
+ msgstr "Tipo"
1829
+
1830
+ #: views/admin/history/index.php:36 views/admin/manage/index.php:30
1831
+ msgid "Summary"
1832
+ msgstr "Sumatoria"
1833
+
1834
+ #: views/admin/history/index.php:42
1835
+ msgid "Scheduling Status"
1836
+ msgstr "Estado de Planificación"
1837
+
1838
+ #: views/admin/history/index.php:42
1839
+ msgid "triggered"
1840
+ msgstr "desencadenada"
1841
+
1842
+ #: views/admin/history/index.php:42
1843
+ msgid "and processing"
1844
+ msgstr "y procesando"
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 "Acciones en masa"
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 "Eliminar"
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 "Aplicar"
1862
+
1863
+ #: views/admin/history/index.php:61 views/admin/manage/index.php:53
1864
+ msgid "Displaying %s&#8211;%s of %s"
1865
+ msgstr "Mostrando %s&#8211;%s de %s"
1866
+
1867
+ #: views/admin/history/index.php:108
1868
+ msgid "No previous history found."
1869
+ msgstr "No se encontró historial previo."
1870
+
1871
+ #: views/admin/history/index.php:161
1872
+ msgid "manual run"
1873
+ msgstr "ejecución manual"
1874
+
1875
+ #: views/admin/history/index.php:164
1876
+ msgid "continue run"
1877
+ msgstr "continuar ejecución"
1878
+
1879
+ #: views/admin/history/index.php:189
1880
+ msgid "Download Log"
1881
+ msgstr "Descargar bitácora"
1882
+
1883
+ #: views/admin/history/index.php:193
1884
+ msgid "Log Unavailable"
1885
+ msgstr "Bitácora no disponible"
1886
+
1887
+ #: views/admin/history/index.php:230 views/admin/manage/index.php:363
1888
+ msgid "Restore"
1889
+ msgstr "Recuperar"
1890
+
1891
+ #: views/admin/history/index.php:231 views/admin/manage/index.php:364
1892
+ msgid "Delete Permanently"
1893
+ msgstr "Borrar Permanentemente"
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 "Creado por"
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 "Importar 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 "Soporte"
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 "Documentación"
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 "Su archivo tiene todo listo!"
1942
+
1943
+ #: views/admin/import/confirm.php:74
1944
+ msgid "This import did not finish successfuly last time it was run."
1945
+ msgstr "La importación no termino correctamente la ultima vez que fue ejecutada."
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 "Revise las configuraciones de abajo, entonces haga click en el botón verde para ejecutar la importación."
1950
+
1951
+ #: views/admin/import/confirm.php:80
1952
+ msgid "You can attempt to continue