WooCommerce Germanized - Version 3.3.4

Version Description

  • Feature: WC 4.9 compatibility
  • Improvement: Use net prices for shipping costs and fees in case net option is enabled in Woo tax settings
  • Improvement: Simplified split tax calculation options to use a global option (additional costs) instead of single options
  • Improvement: Added notice before updating base version in case pro version is outdated
  • Improvement: Allow adding multiple vouchers to one cart (but do not allow mixing vouchers with discounts)
  • Improvement: Added new section (addresses) to Post & DHL
  • Improvement: Internetmarke error reporting in case no matching product was found
  • Improvement: Sync label dimensions with package (shipment) data if available
  • Improvement: Make sure DOI activation notice is only added once
  • Fix: Internetmarke Warenpost state formatting
  • Fix: Internetmarke product code existence check
  • Fix: Flexible Shipping compatibility
Download this release

Release Info

Developer vendidero
Plugin Icon 128x128 WooCommerce Germanized
Version 3.3.4
Comparing to
See all releases

Code changes from version 3.3.3 to 3.3.4

Files changed (86) hide show
  1. i18n/languages/woocommerce-germanized-de_DE.mo +0 -0
  2. i18n/languages/woocommerce-germanized-de_DE.po +553 -442
  3. i18n/languages/woocommerce-germanized-de_DE_formal.mo +0 -0
  4. i18n/languages/woocommerce-germanized-de_DE_formal.po +553 -442
  5. i18n/languages/woocommerce-germanized.pot +10201 -0
  6. includes/admin/class-wc-gzd-admin-notices.php +62 -1
  7. includes/admin/class-wc-gzd-admin-order.php +28 -17
  8. includes/admin/class-wc-gzd-admin.php +0 -3
  9. includes/admin/notes/class-wc-gzd-admin-note-shipping-excl-tax.php +51 -0
  10. includes/admin/settings/class-wc-gzd-settings-tab-taxes.php +9 -39
  11. includes/admin/views/html-notice-update-pro-incompatible.php +15 -0
  12. includes/admin/views/html-page-status-germanized.php +4 -4
  13. includes/class-wc-gzd-checkout.php +177 -65
  14. includes/class-wc-gzd-coupon-helper.php +61 -8
  15. includes/class-wc-gzd-customer-helper.php +5 -1
  16. includes/class-wc-gzd-install.php +7 -6
  17. includes/class-wc-gzd-payment-gateways.php +0 -7
  18. includes/class-wc-gzd-shipping-rate.php +5 -69
  19. includes/compatibility/class-wc-gzd-compatibility-flexible-checkout-fields.php +3 -3
  20. includes/compatibility/class-wc-gzd-compatibility-wpml-string-translation.php +5 -3
  21. includes/updates/woocommerce-gzd-update-3.3.4.php +23 -0
  22. includes/wc-gzd-core-functions.php +16 -0
  23. includes/wc-gzd-template-functions.php +4 -4
  24. includes/wc-gzd-template-hooks.php +3 -3
  25. packages/woocommerce-germanized-dhl/i18n/holidays.php +21 -21
  26. packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php +63 -58
  27. packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php +51 -3
  28. packages/woocommerce-germanized-dhl/src/Admin/Settings.php +68 -54
  29. packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php +1 -1
  30. packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php +30 -15
  31. packages/woocommerce-germanized-dhl/src/Automation.php +8 -1
  32. packages/woocommerce-germanized-dhl/src/DataStores/Label.php +3 -0
  33. packages/woocommerce-germanized-dhl/src/Label.php +35 -0
  34. packages/woocommerce-germanized-dhl/src/Order.php +0 -2
  35. packages/woocommerce-germanized-dhl/src/Package.php +1 -1
  36. packages/woocommerce-germanized-dhl/src/ParcelServices.php +4 -1
  37. packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php +1 -1
  38. packages/woocommerce-germanized-dhl/woocommerce-germanized-dhl.php +1 -1
  39. packages/woocommerce-germanized-shipments/assets/js/admin-shipping-provider-method.js +2 -0
  40. packages/woocommerce-germanized-shipments/assets/js/admin-shipping-provider-method.min.js +1 -1
  41. packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php +11 -0
  42. packages/woocommerce-germanized-shipments/src/Admin/Admin.php +9 -0
  43. packages/woocommerce-germanized-shipments/src/Package.php +1 -1
  44. packages/woocommerce-germanized-shipments/src/ReturnShipment.php +20 -0
  45. packages/woocommerce-germanized-shipments/src/Shipment.php +64 -3
  46. packages/woocommerce-germanized-shipments/src/SimpleShipment.php +12 -0
  47. packages/woocommerce-germanized-shipments/woocommerce-germanized-shipments.php +1 -1
  48. readme.txt +16 -2
  49. vendor/autoload.php +1 -1
  50. vendor/autoload_packages.php +3 -4
  51. vendor/automattic/jetpack-autoloader/src/AutoloadFileWriter.php +105 -0
  52. vendor/automattic/jetpack-autoloader/src/AutoloadGenerator.php +2 -54
  53. vendor/automattic/jetpack-autoloader/src/autoload.php +2 -3
  54. vendor/automattic/jetpack-autoloader/src/class-autoloader-handler.php +31 -138
  55. vendor/automattic/jetpack-autoloader/src/class-autoloader.php +151 -0
  56. vendor/automattic/jetpack-autoloader/src/class-container.php +141 -0
  57. vendor/automattic/jetpack-autoloader/src/class-hook-manager.php +68 -0
  58. vendor/automattic/jetpack-autoloader/src/class-latest-autoloader-guard.php +85 -0
  59. vendor/automattic/jetpack-autoloader/src/{class-manifest-handler.php → class-manifest-reader.php} +8 -16
  60. vendor/automattic/jetpack-autoloader/src/class-path-processor.php +182 -0
  61. vendor/automattic/jetpack-autoloader/src/class-plugin-locator.php +132 -0
  62. vendor/automattic/jetpack-autoloader/src/class-plugins-handler.php +109 -88
  63. vendor/automattic/jetpack-autoloader/src/class-version-selector.php +2 -2
  64. vendor/automattic/jetpack-autoloader/src/functions.php +0 -66
  65. vendor/composer/InstalledVersions.php +11 -11
  66. vendor/composer/autoload_classmap.php +289 -0
  67. vendor/composer/autoload_real.php +7 -7
  68. vendor/composer/autoload_static.php +293 -4
  69. vendor/composer/installed.json +25 -25
  70. vendor/composer/installed.php +11 -11
  71. vendor/composer/jetpack_autoload_classmap.php +1160 -4
  72. vendor/composer/jetpack_autoload_psr4.php +0 -49
  73. vendor/jetpack-autoloader/autoload_functions.php +0 -74
  74. vendor/jetpack-autoloader/class-autoloader-handler.php +32 -139
  75. vendor/jetpack-autoloader/class-autoloader-locator.php +1 -1
  76. vendor/jetpack-autoloader/class-autoloader.php +159 -0
  77. vendor/jetpack-autoloader/class-container.php +149 -0
  78. vendor/jetpack-autoloader/class-hook-manager.php +76 -0
  79. vendor/jetpack-autoloader/class-latest-autoloader-guard.php +93 -0
  80. vendor/jetpack-autoloader/{class-manifest-handler.php → class-manifest-reader.php} +9 -17
  81. vendor/jetpack-autoloader/class-path-processor.php +190 -0
  82. vendor/jetpack-autoloader/class-plugin-locator.php +140 -0
  83. vendor/jetpack-autoloader/class-plugins-handler.php +110 -89
  84. vendor/jetpack-autoloader/class-version-loader.php +1 -1
  85. vendor/jetpack-autoloader/class-version-selector.php +3 -3
  86. woocommerce-germanized.php +4 -41
i18n/languages/woocommerce-germanized-de_DE.mo CHANGED
Binary file
i18n/languages/woocommerce-germanized-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce Germanized\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-12-17 12:54+0100\n"
6
- "PO-Revision-Date: 2020-12-17 12:57+0100\n"
7
  "Last-Translator: holzhannes <holzhannes@posteo.de>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE\n"
@@ -46,7 +46,7 @@ msgid "Additional Services"
46
  msgstr "Zusätzliche Leistungen"
47
 
48
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:36
49
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:505
50
  #, php-format
51
  msgid ""
52
  "Sorry but none of your selected <a href=\"%s\">Deutsche Post Products</a> is "
@@ -87,7 +87,7 @@ msgstr "Zollabgabe"
87
 
88
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:65
89
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:141
90
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:974
91
  #: woocommerce-germanized-dhl/src/ParcelServices.php:29
92
  msgctxt "dhl"
93
  msgid "Preferred Day"
@@ -102,14 +102,14 @@ msgstr "Wunschzeit"
102
  # @ woocommerce-germanized
103
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:87
104
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:169
105
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:994
106
  #: woocommerce-germanized-dhl/src/ParcelServices.php:43
107
  msgctxt "dhl"
108
  msgid "Preferred Location"
109
  msgstr "Wunschort"
110
 
111
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:98
112
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1002
113
  #: woocommerce-germanized-dhl/src/ParcelServices.php:48
114
  msgctxt "dhl"
115
  msgid "Preferred Neighbor"
@@ -122,24 +122,24 @@ msgstr "Beilage-Retourenlabel erstellen"
122
 
123
  # @ woocommerce-germanized
124
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:121
125
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:761
126
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:830
127
  msgctxt "dhl"
128
  msgid "Name"
129
  msgstr "Name"
130
 
131
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:130
132
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:768
133
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:837
134
  msgctxt "dhl"
135
  msgid "Company"
136
  msgstr "Firma"
137
 
138
  # @ woocommerce-germanized
139
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:139
140
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:601
141
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:775
142
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:844
143
  msgctxt "dhl"
144
  msgid "Street"
145
  msgstr "Straße"
@@ -152,9 +152,9 @@ msgstr "Hausnummer"
152
 
153
  # @ woocommerce-germanized
154
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:159
155
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:602
156
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:796
157
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:865
158
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:27
159
  msgctxt "dhl"
160
  msgid "Postcode"
@@ -162,24 +162,24 @@ msgstr "Postleitzahl"
162
 
163
  # @ woocommerce-germanized
164
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:168
165
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:603
166
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:789
167
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:858
168
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:30
169
  msgctxt "dhl"
170
  msgid "City"
171
  msgstr "Stadt"
172
 
173
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:179
174
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:812
175
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:881
176
  msgctxt "dhl"
177
  msgid "Phone"
178
  msgstr "Telefon"
179
 
180
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:188
181
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:819
182
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:888
183
  msgctxt "dhl"
184
  msgid "Email"
185
  msgstr "E-Mail"
@@ -207,7 +207,7 @@ msgstr "Alterssichtprüfung"
207
 
208
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:228
209
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:331
210
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:534
211
  msgctxt "dhl"
212
  msgid "GoGreen"
213
  msgstr "GoGreen"
@@ -229,7 +229,7 @@ msgid "No neighbor"
229
  msgstr "Keine Nachbarschaftszustellung"
230
 
231
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:272
232
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:562
233
  msgctxt "dhl"
234
  msgid "Named person only"
235
  msgstr "Persönliche Übergabe"
@@ -256,7 +256,7 @@ msgid "Minimum age"
256
  msgstr "Mindestalter"
257
 
258
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:322
259
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:606
260
  msgctxt "dhl"
261
  msgid "Premium"
262
  msgstr "Premium"
@@ -267,13 +267,12 @@ msgctxt "dhl"
267
  msgid "Receiver"
268
  msgstr "Empfänger"
269
 
270
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:15
271
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1465
272
  msgctxt "dhl"
273
  msgid "DHL Labels"
274
  msgstr "DHL Labels"
275
 
276
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:18
277
  #, php-format
278
  msgctxt "dhl"
279
  msgid ""
@@ -284,12 +283,12 @@ msgstr ""
284
  "\">globalen Einstellungen</a>."
285
 
286
  # @ woocommerce-germanized
287
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:28
288
  msgctxt "dhl"
289
  msgid "DHL Label Services"
290
  msgstr "DHL Services"
291
 
292
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:31
293
  #, php-format
294
  msgctxt "dhl"
295
  msgid ""
@@ -300,14 +299,14 @@ msgstr ""
300
  "\">globalen Einstellungen</a>."
301
 
302
  # @ woocommerce-germanized
303
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:41
304
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:106
305
  msgctxt "dhl"
306
  msgid "Label Automation"
307
  msgstr "Label Automatisierung"
308
 
309
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:44
310
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:109
311
  #, php-format
312
  msgctxt "dhl"
313
  msgid ""
@@ -317,12 +316,12 @@ msgstr ""
317
  "Automatisierung-Einstellungen für Label anpassen. Änderungen überschreiben "
318
  "die <a href=\"%s\">globalen Einstellungen</a>."
319
 
320
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:53
321
  msgctxt "dhl"
322
  msgid "DHL Preferred Services"
323
  msgstr "DHL Wunschpaket-Services"
324
 
325
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:56
326
  #, php-format
327
  msgctxt "dhl"
328
  msgid ""
@@ -332,12 +331,12 @@ msgstr ""
332
  "Wunschpaket-Services anpassen. Änderungen überschreiben die <a href=\"%s"
333
  "\">globalen Einstellungen</a>."
334
 
335
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:66
336
  msgctxt "dhl"
337
  msgid "DHL Pickup"
338
  msgstr "DHL Standorte"
339
 
340
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:69
341
  #, php-format
342
  msgctxt "dhl"
343
  msgid ""
@@ -347,12 +346,12 @@ msgstr ""
347
  "überschreiben die <a href=\"%s\">globalen Einstellungen</a>."
348
 
349
  # @ woocommerce-germanized
350
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:81
351
  msgctxt "dhl"
352
  msgid "Deutsche Post Labels"
353
  msgstr "Deutsche Post Labels"
354
 
355
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:84
356
  #, php-format
357
  msgctxt "dhl"
358
  msgid ""
@@ -362,13 +361,13 @@ msgstr ""
362
  "Deutsche Post Label Einstellungen anpassen. Änderungen überschreiben die <a "
363
  "href=\"%s\">globalen Einstellungen</a>."
364
 
365
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:94
366
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1374
367
  msgctxt "dhl"
368
  msgid "Printing"
369
  msgstr "Druck"
370
 
371
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:97
372
  #, php-format
373
  msgctxt "dhl"
374
  msgid ""
@@ -447,7 +446,7 @@ msgstr "Retourensendung #{shipment_id} zur Bestellung #{order_id}"
447
  # @ woocommerce-germanized
448
  #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:376
449
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:188
450
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:496
451
  #: woocommerce-germanized-dhl/src/ParcelLocator.php:850
452
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:38
453
  msgctxt "dhl"
@@ -467,7 +466,7 @@ msgid "Receiver is missing or does not exist."
467
  msgstr "Empfänger fehlt oder existiert nicht."
468
 
469
  #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:481
470
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:566
471
  #, php-format
472
  msgctxt "dhl"
473
  msgid "Shipment order #%s does not exist"
@@ -478,51 +477,51 @@ msgctxt "dhl"
478
  msgid "The services chosen are not available for the current product."
479
  msgstr "Die ausgewählten Services sind für dieses Produkt nicht verfügbar."
480
 
481
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:532
482
  #, php-format
483
  msgctxt "dhl"
484
  msgid "Deutsche Post product is missing for %s."
485
  msgstr "Deutsche Post Produkt fehlt oder ist nicht verfügbar für %s."
486
 
487
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:608
488
  #, php-format
489
  msgctxt "dhl"
490
  msgid "%s of the return address is a mandatory field."
491
  msgstr "%s der Rücksendeadresse ist ein Pflichtfeld."
492
 
493
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:613
494
  msgctxt "dhl"
495
  msgid "Please either add a return company or name."
496
  msgstr ""
497
  "Bitte gib entweder einen Firmennamen oder Namen für die Rücksendeadresse an."
498
 
499
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:632
500
  msgctxt "dhl"
501
  msgid "Error while parsing preferred day."
502
  msgstr "Fehler beim Einlesen des Wunschtags."
503
 
504
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:643
505
  msgctxt "dhl"
506
  msgid "Error while parsing preferred time."
507
  msgstr "Fehler beim Einlesen der Wunschzeit."
508
 
509
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:668
510
  msgctxt "dhl"
511
  msgid "The visual min age check is invalid."
512
  msgstr "Das Alter der Alterssichtprüfung ist ungültig."
513
 
514
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:692
515
  msgctxt "dhl"
516
  msgid "The ident min age check is invalid."
517
  msgstr "Das Alter des Ident-Checks ist ungültig."
518
 
519
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:699
520
  msgctxt "dhl"
521
  msgid "There was an error parsing the date of birth for the identity check."
522
  msgstr ""
523
  "Beim Einlesen des Geburtsdatums für den Ident-Check trat ein Problem auf."
524
 
525
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:704
526
  msgctxt "dhl"
527
  msgid ""
528
  "Either a minimum age or a date of birth must be added to the ident check."
@@ -531,89 +530,89 @@ msgstr ""
531
  "hinzugefügt werden."
532
 
533
  # @ woocommerce-germanized
534
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:718
535
  #, php-format
536
  msgctxt "dhl"
537
  msgid "%s duties element does not exist."
538
  msgstr "%s Zollabgabe existiert nicht."
539
 
540
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1342
541
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1426
542
  msgctxt "dhl"
543
  msgid "Invalid shipment"
544
  msgstr "Ungültige Sendung"
545
 
546
  # @ woocommerce-germanized
547
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1346
548
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1430
549
  msgctxt "dhl"
550
  msgid "Order does not exist"
551
  msgstr "Bestellung existiert nicht"
552
 
553
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1378
554
  msgctxt "dhl"
555
  msgid "Error while creating the label instance"
556
  msgstr "Fehler beim Erstellen der Label-Instanz"
557
 
558
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1501
559
  msgctxt "dhl"
560
  msgid "Invalid label"
561
  msgstr "Ungültiges Label"
562
 
563
  # @ woocommerce-germanized
564
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1589
565
  msgctxt "dhl"
566
  msgid "DHL Retoure International A"
567
  msgstr "DHL Retoure International A"
568
 
569
  # @ woocommerce-germanized
570
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1590
571
  msgctxt "dhl"
572
  msgid "DHL Retoure International B"
573
  msgstr "DHL Retoure International B"
574
 
575
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1599
576
  msgctxt "dhl"
577
  msgid "DHL Retoure Online"
578
  msgstr "DHL Retoure Online"
579
 
580
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1616
581
  msgctxt "dhl"
582
  msgid "DHL Paket Connect"
583
  msgstr "DHL Paket Connect"
584
 
585
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1617
586
  msgctxt "dhl"
587
  msgid "DHL Europaket (B2B)"
588
  msgstr "DHL Europaket (B2B)"
589
 
590
  # @ woocommerce-germanized
591
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1618
592
  msgctxt "dhl"
593
  msgid "DHL Paket International"
594
  msgstr "DHL Paket International"
595
 
596
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1693
597
  msgctxt "dhl"
598
  msgid "DHL Paket"
599
  msgstr "DHL Paket"
600
 
601
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1694
602
  msgctxt "dhl"
603
  msgid "DHL Paket PRIO"
604
  msgstr "DHL Paket PRIO"
605
 
606
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1695
607
  msgctxt "dhl"
608
  msgid "DHL Paket Taggleich"
609
  msgstr "DHL Paket Taggleich"
610
 
611
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1696
612
  msgctxt "dhl"
613
  msgid "DHL Warenpost"
614
  msgstr "DHL Warenpost"
615
 
616
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1783
617
  msgctxt "dhl"
618
  msgid "Error while uploading label."
619
  msgstr "Fehler beim Hochladen des Labels."
@@ -717,7 +716,7 @@ msgstr ""
717
  "Ordner %s manuell und stelle sicher, dass der Ordner beschreibbar ist."
718
 
719
  #: woocommerce-germanized-dhl/src/Admin/Admin.php:271
720
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1464
721
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:39
722
  msgctxt "dhl"
723
  msgid "DHL"
@@ -788,7 +787,7 @@ msgstr ""
788
 
789
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:80
790
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:328
791
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:477
792
  msgctxt "dhl"
793
  msgid "Inlay Returns"
794
  msgstr "Beilageretouren"
@@ -803,8 +802,8 @@ msgstr ""
803
  "solltest du diese Funktion standardmäßig aktivieren."
804
 
805
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:94
806
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:723
807
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:953
808
  msgctxt "dhl"
809
  msgid "Retoure"
810
  msgstr "Retoure"
@@ -839,8 +838,8 @@ msgstr ""
839
 
840
  # @ woocommerce-germanized
841
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:122
842
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:747
843
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1391
844
  msgctxt "dhl"
845
  msgid "Automation"
846
  msgstr "Automatisierung"
@@ -866,7 +865,7 @@ msgstr ""
866
 
867
  # @ woocommerce-germanized
868
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:155
869
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:982
870
  msgctxt "dhl"
871
  msgid "Fee"
872
  msgstr "Gebühr"
@@ -899,7 +898,7 @@ msgstr ""
899
  "Folgenden konfiguriert) als Lieferadresse auswählen."
900
 
901
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:202
902
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1130
903
  msgctxt "dhl"
904
  msgid "Map"
905
  msgstr "Karte"
@@ -916,7 +915,7 @@ msgstr ""
916
  "Kartenansicht einen gültigen Google Maps API Schlüssel."
917
 
918
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:223
919
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1167
920
  msgctxt "dhl"
921
  msgid "Enable"
922
  msgstr "Aktivieren"
@@ -1072,7 +1071,7 @@ msgid "contract data"
1072
  msgstr "Vertragsdaten"
1073
 
1074
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:392
1075
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1222
1076
  msgctxt "dhl"
1077
  msgid "Domestic Default Service"
1078
  msgstr "Standard Service (national)"
@@ -1089,7 +1088,7 @@ msgstr ""
1089
  "nachträglich ändern)."
1090
 
1091
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:402
1092
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1242
1093
  msgctxt "dhl"
1094
  msgid "Int. Default Service"
1095
  msgstr "Standard Service (Int.)"
@@ -1138,13 +1137,13 @@ msgstr ""
1138
 
1139
  # @ woocommerce-germanized
1140
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:432
1141
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1200
1142
  msgctxt "dhl"
1143
  msgid "Default weight (kg)"
1144
  msgstr "Standardgewicht (kg)"
1145
 
1146
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:434
1147
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1202
1148
  msgctxt "dhl"
1149
  msgid ""
1150
  "Choose a default shipment weight to be used for labels if no weight has been "
@@ -1154,13 +1153,13 @@ msgstr ""
1154
  "die das Gewicht nicht automatisch bestimmt werden kann."
1155
 
1156
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:443
1157
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1211
1158
  msgctxt "dhl"
1159
  msgid "Minimum weight (kg)"
1160
  msgstr "Mindestgewicht (kg)"
1161
 
1162
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:445
1163
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1213
1164
  msgctxt "dhl"
1165
  msgid ""
1166
  "Choose a minimum weight to be used for labels e.g. to prevent low shipment "
@@ -1196,33 +1195,7 @@ msgstr ""
1196
  "deine Datenschutzerklärung und suche im Zweifel anwaltlichen Rat bevor du "
1197
  "diese Option aktivierst."
1198
 
1199
- # @ woocommerce-germanized
1200
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:464
1201
- msgctxt "dhl"
1202
- msgid "Street number"
1203
- msgstr "Hausnummer"
1204
-
1205
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:465
1206
- msgctxt "dhl"
1207
- msgid ""
1208
- "Force existence of a street number within the first address field during "
1209
- "checkout for EU countries."
1210
- msgstr ""
1211
- "Hausnummer im ersten Adressfeld verpflichtend abfragen, falls es sich um ein "
1212
- "EU-Land handelt."
1213
-
1214
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:466
1215
- msgctxt "dhl"
1216
- msgid ""
1217
- "Enabling this option will force a street number to be provided during "
1218
- "checkout within the first address field to prevent missing or wrong data "
1219
- "sets."
1220
- msgstr ""
1221
- "Die Aktivierung dieser Option sorgt dafür, dass die Hausnummer im ersten "
1222
- "Adressfeld in der Kasse abgefragt wird. Damit verhinderst du fehlende oder "
1223
- "falsche Datensätze."
1224
-
1225
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:478
1226
  msgctxt "dhl"
1227
  msgid ""
1228
  "Additionally create inlay return labels for shipments that support returns."
@@ -1230,70 +1203,70 @@ msgstr ""
1230
  "Erzeuge zusätzlich Beilage-Retourenlabels für Sendungen die Retouren "
1231
  "unterstützen."
1232
 
1233
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:497
1234
  msgctxt "dhl"
1235
  msgid "Enable delivery to Packstation."
1236
  msgstr "Aktiviere den Versand an Packstationen."
1237
 
1238
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:498
1239
  msgctxt "dhl"
1240
  msgid "Let customers choose a Packstation as delivery address."
1241
  msgstr "Kunden eine Packstation als Lieferadresse auswählen lassen."
1242
 
1243
  # @ woocommerce-germanized
1244
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:505
1245
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:50
1246
  msgctxt "dhl"
1247
  msgid "Postoffice"
1248
  msgstr "Postfiliale"
1249
 
1250
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:506
1251
  msgctxt "dhl"
1252
  msgid "Enable delivery to Post Offices."
1253
  msgstr "Aktiviere den Versand an Postfilialen."
1254
 
1255
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:507
1256
  msgctxt "dhl"
1257
  msgid "Let customers choose a Post Office as delivery address."
1258
  msgstr "Kunden eine Postfiliale als Lieferadresse auswählen lassen."
1259
 
1260
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:514
1261
  msgctxt "dhl"
1262
  msgid "Parcel Shop"
1263
  msgstr "Paketshop"
1264
 
1265
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:515
1266
  msgctxt "dhl"
1267
  msgid "Enable delivery to Parcel Shops."
1268
  msgstr "Lieferung an Paketshops aktivieren."
1269
 
1270
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:516
1271
  msgctxt "dhl"
1272
  msgid "Let customers choose a Parcel Shop as delivery address."
1273
  msgstr "Kunden einen Paketshop als Lieferadresse auswählen lassen."
1274
 
1275
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:535
1276
  msgctxt "dhl"
1277
  msgid "Enable the GoGreen Service by default."
1278
  msgstr "Buche den GoGreen Service hinzu."
1279
 
1280
  # @ woocommerce-germanized
1281
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:541
1282
  msgctxt "dhl"
1283
  msgid "Additional Insurance"
1284
  msgstr "Transportversicherung"
1285
 
1286
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:542
1287
  msgctxt "dhl"
1288
  msgid "Add an additional insurance to labels."
1289
  msgstr "Füge eine Transportversicherung zur Sendung hinzu."
1290
 
1291
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:548
1292
  msgctxt "dhl"
1293
  msgid "Retail Outlet Routing"
1294
  msgstr "Filialrouting"
1295
 
1296
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:549
1297
  msgctxt "dhl"
1298
  msgid ""
1299
  "Send undeliverable items to nearest retail outlet instead of immediate "
@@ -1302,57 +1275,57 @@ msgstr ""
1302
  "Sende unzustellbare Sendungen in die nächstgelegene Filiale zur Abholung "
1303
  "anstelle diese direkt zurückzusenden."
1304
 
1305
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:555
1306
  msgctxt "dhl"
1307
  msgid "No Neighbor"
1308
  msgstr "Keine Nachbarschaftszustellung"
1309
 
1310
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:556
1311
  msgctxt "dhl"
1312
  msgid "Do not deliver to neighbors."
1313
  msgstr "Schließe eine Ersatzzustellung beim Nachbarn aus."
1314
 
1315
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:563
1316
  msgctxt "dhl"
1317
  msgid "Do only delivery to named person."
1318
  msgstr ""
1319
  "Lasse Pakete nur an den Empfänger persönlich oder an eine bevollmächtigte "
1320
  "Person übergeben."
1321
 
1322
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:569
1323
  msgctxt "dhl"
1324
  msgid "Bulky Goods"
1325
  msgstr "Sperrgut"
1326
 
1327
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:570
1328
  msgctxt "dhl"
1329
  msgid "Deliver as bulky goods."
1330
  msgstr "Sende Pakete als Sperrgut."
1331
 
1332
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:576
1333
  msgctxt "dhl"
1334
  msgid "Minimum age (Visual check)"
1335
  msgstr "Mindestalter (Visuell)"
1336
 
1337
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:581
1338
  msgctxt "dhl"
1339
  msgid "Choose this option if you want to let DHL check your customer's age."
1340
  msgstr ""
1341
  "Wähle diese Option aus, wenn du das Alter durch DHL prüfen lassen möchtest."
1342
 
1343
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:584
1344
  msgctxt "dhl"
1345
  msgid "Sync (Visual Check)"
1346
  msgstr "Synchronisation (Visuell)"
1347
 
1348
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:585
1349
  msgctxt "dhl"
1350
  msgid "Visually verify age if shipment contains applicable items."
1351
  msgstr ""
1352
  "Aktiviere die Alterssichtprüfung, falls die Sendung zu prüfende Positionen "
1353
  "beinhaltet."
1354
 
1355
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:585
1356
  #, php-format
1357
  msgctxt "dhl"
1358
  msgid ""
@@ -1365,18 +1338,18 @@ msgstr ""
1365
  "Alterssichtprüfung automatisch aktiviert, falls eine Sendung zu prüfenden "
1366
  "Produkte beinhaltet."
1367
 
1368
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:585
1369
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:600
1370
  msgctxt "dhl"
1371
  msgid "age verification checkbox"
1372
  msgstr "Checkbox zur Altersprüfung"
1373
 
1374
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:591
1375
  msgctxt "dhl"
1376
  msgid "Minimum age (Ident check)"
1377
  msgstr "Mindestalter (Identität)"
1378
 
1379
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:596
1380
  msgctxt "dhl"
1381
  msgid ""
1382
  "Choose this option if you want to let DHL check your customer's identity and "
@@ -1386,19 +1359,19 @@ msgstr ""
1386
  "lassen möchtest."
1387
 
1388
  # @ woocommerce-germanized
1389
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:599
1390
  msgctxt "dhl"
1391
  msgid "Sync (Ident Check)"
1392
  msgstr "Synchronisation (Identität)"
1393
 
1394
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:600
1395
  msgctxt "dhl"
1396
  msgid "Verify identity and age if shipment contains applicable items."
1397
  msgstr ""
1398
  "Aktiviere die Identitätsprüfung, falls die Sendung zu prüfende Positionen "
1399
  "beinhaltet."
1400
 
1401
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:600
1402
  #, php-format
1403
  msgctxt "dhl"
1404
  msgid ""
@@ -1411,65 +1384,66 @@ msgstr ""
1411
  "Identitätsprüfung automatisch aktiviert, falls eine Sendung zu prüfenden "
1412
  "Produkte beinhaltet."
1413
 
1414
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:607
1415
  msgctxt "dhl"
1416
  msgid "Premium delivery for international shipments."
1417
  msgstr "Premium Lieferung für internationale Sendungen."
1418
 
1419
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:626
1420
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1264
 
1421
  msgctxt "dhl"
1422
  msgid "Labels"
1423
  msgstr "Labels"
1424
 
1425
  # @ woocommerce-germanized
1426
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:627
1427
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1265
1428
  msgctxt "dhl"
1429
  msgid "Automatically create labels for shipments."
1430
  msgstr "Automatisch Labels zu Sendungen erstellen."
1431
 
1432
  # @ woocommerce-germanized
1433
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:634
1434
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:661
1435
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1272
1436
  msgctxt "dhl"
1437
  msgid "Status"
1438
  msgstr "Status"
1439
 
1440
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:638
1441
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1276
1442
  msgctxt "dhl"
1443
  msgid "Choose a shipment status which should trigger generation of a label."
1444
  msgstr ""
1445
  "Wähle einen Sendungsstatus aus, der die Erzeugung eines Labels auslösen soll."
1446
 
1447
  # @ woocommerce-germanized
1448
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:645
1449
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1283
1450
  msgctxt "dhl"
1451
  msgid "Shipment Status"
1452
  msgstr "Sendungsstatus"
1453
 
1454
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:646
1455
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1284
1456
  msgctxt "dhl"
1457
  msgid "Mark shipment as shipped after label has been created successfully."
1458
  msgstr ""
1459
  "Sendung als versandt markieren, sobald ein Label erfolgreich erstellt wurde."
1460
 
1461
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:653
1462
  msgctxt "dhl"
1463
  msgid "Returns"
1464
  msgstr "Retouren"
1465
 
1466
  # @ woocommerce-germanized
1467
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:654
1468
  msgctxt "dhl"
1469
  msgid "Automatically create labels for returns."
1470
  msgstr "Automatisch Retourenlabels zu Retourensendungen erstellen."
1471
 
1472
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:665
1473
  msgctxt "dhl"
1474
  msgid ""
1475
  "Choose a shipment status which should trigger generation of a return label."
@@ -1477,7 +1451,59 @@ msgstr ""
1477
  "Wähle einen Sendungsstatus aus, der die Erzeugung eines Retourenlabels "
1478
  "auslösen soll."
1479
 
1480
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:713
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1481
  #, php-format
1482
  msgctxt "dhl"
1483
  msgid ""
@@ -1488,12 +1514,12 @@ msgstr ""
1488
  "können von abweichenden Einstellungen der %s überschrieben werden."
1489
 
1490
  # @ woocommerce-germanized
1491
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:713
1492
  msgctxt "dhl"
1493
  msgid "shipping method"
1494
  msgstr "Versandmethode"
1495
 
1496
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:723
1497
  #, php-format
1498
  msgctxt "dhl"
1499
  msgid ""
@@ -1504,18 +1530,18 @@ msgstr ""
1504
  "an. Stelle sicher, dass dein %s DHL Retoure Online enthält."
1505
 
1506
  # @ woocommerce-germanized
1507
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:723
1508
  msgctxt "dhl"
1509
  msgid "contract"
1510
  msgstr "Vertrag"
1511
 
1512
  # @ woocommerce-germanized
1513
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:735
1514
  msgctxt "dhl"
1515
  msgid "Default Services"
1516
  msgstr "Standard-Services"
1517
 
1518
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:735
1519
  #, php-format
1520
  msgctxt "dhl"
1521
  msgid ""
@@ -1525,12 +1551,12 @@ msgstr ""
1525
  "Passe hier an, welche der Services als Standard für deine Labels gebucht "
1526
  "werden sollen. Finde mehr über diese %s heraus."
1527
 
1528
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:735
1529
  msgctxt "dhl"
1530
  msgid "nationwide services"
1531
  msgstr "nationalen Services"
1532
 
1533
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:747
1534
  msgctxt "dhl"
1535
  msgid ""
1536
  "Choose whether and under which conditions labels for your shipments shall be "
@@ -1540,38 +1566,12 @@ msgstr ""
1540
  "erzeugt werden sollen."
1541
 
1542
  # @ woocommerce-germanized
1543
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:758
1544
- msgctxt "dhl"
1545
- msgid "Shipper Address"
1546
- msgstr "Absenderadresse"
1547
-
1548
- # @ woocommerce-germanized
1549
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:782
1550
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:851
1551
- msgctxt "dhl"
1552
- msgid "Street Number"
1553
- msgstr "Hausnummer"
1554
-
1555
- # @ woocommerce-germanized
1556
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:803
1557
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:872
1558
- msgctxt "dhl"
1559
- msgid "Country"
1560
- msgstr "Land"
1561
-
1562
- # @ woocommerce-germanized
1563
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:827
1564
- msgctxt "dhl"
1565
- msgid "Inlay Return Address"
1566
- msgstr "Beilageretouren Adresse"
1567
-
1568
- # @ woocommerce-germanized
1569
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:896
1570
  msgctxt "dhl"
1571
  msgid "Bank Account"
1572
  msgstr "Bankkonto"
1573
 
1574
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:896
1575
  msgctxt "dhl"
1576
  msgid "Enter your bank details needed for services that use COD."
1577
  msgstr ""
@@ -1579,36 +1579,36 @@ msgstr ""
1579
  "werden sollen."
1580
 
1581
  # @ woocommerce-germanized
1582
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:899
1583
  msgctxt "dhl"
1584
  msgid "Holder"
1585
  msgstr "Kontoinhaber"
1586
 
1587
  # @ woocommerce-germanized
1588
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:906
1589
  msgctxt "dhl"
1590
  msgid "Bank Name"
1591
  msgstr "Name der Bank"
1592
 
1593
  # @ woocommerce-germanized
1594
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:913
1595
  msgctxt "dhl"
1596
  msgid "IBAN"
1597
  msgstr "IBAN"
1598
 
1599
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:920
1600
  msgctxt "dhl"
1601
  msgid "BIC"
1602
  msgstr "BIC"
1603
 
1604
  # @ woocommerce-germanized
1605
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:927
1606
  msgctxt "dhl"
1607
  msgid "Payment Reference"
1608
  msgstr "Zahlungsreferenz"
1609
 
1610
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:931
1611
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:940
1612
  #, php-format
1613
  msgctxt "dhl"
1614
  msgid ""
@@ -1619,18 +1619,18 @@ msgstr ""
1619
  "%s. Der Text ist auf 35 Zeichen begrenzt."
1620
 
1621
  # @ woocommerce-germanized
1622
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:936
1623
  msgctxt "dhl"
1624
  msgid "Payment Reference 2"
1625
  msgstr "Zahlungsreferenz 2"
1626
 
1627
  # @ woocommerce-germanized
1628
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:954
1629
  msgctxt "dhl"
1630
  msgid "Enable creating labels for return shipments."
1631
  msgstr "Automatisch Retourenlabels zu Retourensendungen erstellen."
1632
 
1633
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:954
1634
  msgctxt "dhl"
1635
  msgid ""
1636
  "By enabling this option you might generate retoure labels for return "
@@ -1639,12 +1639,12 @@ msgstr ""
1639
  "Mit der Aktivierung dieser Option kannst du Retourenlabels zu "
1640
  "Retourensendungen erstellen und diese per E-Mail an den Kunden weiterleiten."
1641
 
1642
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:975
1643
  msgctxt "dhl"
1644
  msgid "Enable preferred day delivery."
1645
  msgstr "Aktiviere die Lieferung am Wunschtag."
1646
 
1647
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:975
1648
  msgctxt "dhl"
1649
  msgid ""
1650
  "Enabling this option will display options for the user to select their "
@@ -1653,7 +1653,7 @@ msgstr ""
1653
  "Diese Option aktiviert die Auswahl eines Wunschtags durch den Kunden in der "
1654
  "Kasse."
1655
 
1656
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:984
1657
  msgctxt "dhl"
1658
  msgid ""
1659
  "Insert gross value as surcharge for preferred day delivery. Insert 0 to "
@@ -1663,12 +1663,12 @@ msgstr ""
1663
  "Setze den Wert auf 0 um den Service kostenlos anzubieten."
1664
 
1665
  # @ woocommerce-germanized
1666
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:995
1667
  msgctxt "dhl"
1668
  msgid "Enable preferred location delivery."
1669
  msgstr "Lieferung an einen Wunschort aktivieren."
1670
 
1671
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:995
1672
  msgctxt "dhl"
1673
  msgid ""
1674
  "Enabling this option will display options for the user to select their "
@@ -1677,12 +1677,12 @@ msgstr ""
1677
  "Diese Option aktiviert die Auswahl eines Wunschorts durch den Kunden in der "
1678
  "Kasse ."
1679
 
1680
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1003
1681
  msgctxt "dhl"
1682
  msgid "Enable preferred neighbor delivery."
1683
  msgstr "Aktiviere die Lieferung an einen Wunschnachbarn."
1684
 
1685
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1003
1686
  msgctxt "dhl"
1687
  msgid ""
1688
  "Enabling this option will display options for the user to deliver to their "
@@ -1691,12 +1691,12 @@ msgstr ""
1691
  "Diese Option aktiviert die Auswahl eines Wunschnachbarn durch den Kunden in "
1692
  "der Kasse."
1693
 
1694
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1029
1695
  msgctxt "dhl"
1696
  msgid "Cut-off time"
1697
  msgstr "Cut-off-Zeit"
1698
 
1699
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1032
1700
  msgctxt "dhl"
1701
  msgid ""
1702
  "The cut-off time is the latest possible order time up to which the minimum "
@@ -1709,12 +1709,12 @@ msgstr ""
1709
  "Nach Überschreitung dieses Zeitpunktes, wird der früheste verfügbare "
1710
  "Wunschtag in der Kasse um einen Tag erhöht (Tag der Bestellung + 3 Werktage)."
1711
 
1712
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1038
1713
  msgctxt "dhl"
1714
  msgid "Preparation days"
1715
  msgstr "Bearbeitungstage"
1716
 
1717
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1041
1718
  msgctxt "dhl"
1719
  msgid ""
1720
  "If you need more time to prepare your shipments you might want to add a "
@@ -1725,71 +1725,71 @@ msgstr ""
1725
  "hier eine statische Anzahl an Tagen hinterlegen, die zum frühesten "
1726
  "auswählbaren Wunschtag hinzugefügt werden."
1727
 
1728
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1048
1729
  msgctxt "dhl"
1730
  msgid "Exclude days of transfer"
1731
  msgstr "Übergabetage ausschließen"
1732
 
1733
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1049
1734
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:31
1735
  msgctxt "dhl"
1736
  msgid "Monday"
1737
  msgstr "Montag"
1738
 
1739
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1050
1740
  msgctxt "dhl"
1741
  msgid "Exclude days from transferring shipments to DHL."
1742
  msgstr "Schließe bestimmte Wochentage für die Übergabe an DHL aus."
1743
 
1744
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1059
1745
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:32
1746
  msgctxt "dhl"
1747
  msgid "Tuesday"
1748
  msgstr "Dienstag"
1749
 
1750
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1068
1751
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:33
1752
  msgctxt "dhl"
1753
  msgid "Wednesday"
1754
  msgstr "Mittwoch"
1755
 
1756
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1077
1757
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:34
1758
  msgctxt "dhl"
1759
  msgid "Thursday"
1760
  msgstr "Donnerstag"
1761
 
1762
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1086
1763
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:35
1764
  msgctxt "dhl"
1765
  msgid "Friday"
1766
  msgstr "Freitag"
1767
 
1768
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1095
1769
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:36
1770
  msgctxt "dhl"
1771
  msgid "Saturday"
1772
  msgstr "Samstag"
1773
 
1774
  # @ woocommerce-germanized
1775
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1104
1776
  msgctxt "dhl"
1777
  msgid "Exclude gateways"
1778
  msgstr "Zahlungsarten ausschließen"
1779
 
1780
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1106
1781
  msgctxt "dhl"
1782
  msgid "Select payment gateways to be excluded from showing preferred services."
1783
  msgstr ""
1784
  "Wähle Zahlungsarten aus, für die die Wunschpaket-Services nicht zur "
1785
  "Verfügung stehen sollen."
1786
 
1787
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1131
1788
  msgctxt "dhl"
1789
  msgid "Let customers find a DHL location on a map."
1790
  msgstr "Lasse Kunden einen DHL Standort auf der Karte auswählen."
1791
 
1792
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1131
1793
  msgctxt "dhl"
1794
  msgid ""
1795
  "Enable this option to let your customers choose a pickup option from a map "
@@ -1800,12 +1800,12 @@ msgstr ""
1800
  "einer Karten in der Kasse zu ermöglichen. Wenn diese Option deaktiviert ist, "
1801
  "wird stattdessen auf die DHL Website verwiesen."
1802
 
1803
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1138
1804
  msgctxt "dhl"
1805
  msgid "Google Maps Key"
1806
  msgstr "Google Maps Schlüssel"
1807
 
1808
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1142
1809
  #, php-format
1810
  msgctxt "dhl"
1811
  msgid ""
@@ -1815,33 +1815,33 @@ msgstr ""
1815
  "Um eine Karte integrieren zu können, benötigst du einen gültigen API-"
1816
  "Schlüssel für Google Maps. Du kannst %s."
1817
 
1818
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1142
1819
  msgctxt "dhl"
1820
  msgid "retrieve a new one"
1821
  msgstr "hier einen neuen erstellen"
1822
 
1823
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1147
1824
  msgctxt "dhl"
1825
  msgid "Limit results"
1826
  msgstr "Suchergebnisse begrenzen"
1827
 
1828
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1151
1829
  msgctxt "dhl"
1830
  msgid "Limit the number of DHL locations shown on the map"
1831
  msgstr "Begrenzt die Anzahl der angezeigten DHL Standorte auf der Karte"
1832
 
1833
  # @ woocommerce-germanized
1834
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1168
1835
  msgctxt "dhl"
1836
  msgid "Enable Internetmarke integration."
1837
  msgstr "Internetmarke Integration aktivieren."
1838
 
1839
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1175
1840
  msgctxt "dhl"
1841
  msgid "Username"
1842
  msgstr "Benutzer"
1843
 
1844
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1177
1845
  #, php-format
1846
  msgctxt "dhl"
1847
  msgid ""
@@ -1852,12 +1852,12 @@ msgstr ""
1852
  "Bitte teste deine Zugangsdaten bevor du eine Verbindung aufbaust."
1853
 
1854
  # @ woocommerce-germanized
1855
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1184
1856
  msgctxt "dhl"
1857
  msgid "Password"
1858
  msgstr "Passwort"
1859
 
1860
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1226
1861
  msgctxt "dhl"
1862
  msgid ""
1863
  "Please select your default shipping service for domestic shipments that you "
@@ -1868,12 +1868,12 @@ msgstr ""
1868
  "deine Kunden anbietest."
1869
 
1870
  # @ woocommerce-germanized
1871
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1232
1872
  msgctxt "dhl"
1873
  msgid "EU Default Service"
1874
  msgstr "Standard Service (EU)"
1875
 
1876
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1236
1877
  msgctxt "dhl"
1878
  msgid ""
1879
  "Please select your default shipping service for EU shipments that you want "
@@ -1882,7 +1882,7 @@ msgstr ""
1882
  "Bitte wähle das Standard-Produkt für EU Sendungen aus, das du für deine "
1883
  "Kunden anbietest."
1884
 
1885
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1246
1886
  msgctxt "dhl"
1887
  msgid ""
1888
  "Please select your default shipping service for cross-border shipments that "
@@ -1892,12 +1892,12 @@ msgstr ""
1892
  "für deine Kunden anbietest."
1893
 
1894
  # @ woocommerce-germanized
1895
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1303
1896
  msgctxt "dhl"
1897
  msgid "Default Format"
1898
  msgstr "Standardformat"
1899
 
1900
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1306
1901
  #, php-format
1902
  msgctxt "dhl"
1903
  msgid ""
@@ -1909,34 +1909,34 @@ msgstr ""
1909
  "verwendet wird. Du kannst die Liste auch manuell <a href=\"%s"
1910
  "\">aktualisieren</a>, falls notwendig."
1911
 
1912
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1333
1913
  msgctxt "dhl"
1914
  msgid "Portokasse"
1915
  msgstr "Portokasse"
1916
 
1917
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1336
1918
  msgctxt "dhl"
1919
  msgid "Balance"
1920
  msgstr "Guthaben"
1921
 
1922
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1343
1923
  msgctxt "dhl"
1924
  msgid "Charge (€)"
1925
  msgstr "Aufladen (€)"
1926
 
1927
  # @ woocommerce-germanized
1928
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1353
1929
  msgctxt "dhl"
1930
  msgid "Products"
1931
  msgstr "Produkte"
1932
 
1933
  # @ woocommerce-germanized
1934
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1356
1935
  msgctxt "dhl"
1936
  msgid "Available Products"
1937
  msgstr "Verfügbare Produkte"
1938
 
1939
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1359
1940
  #, php-format
1941
  msgctxt "dhl"
1942
  msgid ""
@@ -1948,39 +1948,44 @@ msgstr ""
1948
  "sollen. Du kannst die Produktliste auch manuell <a href=\"%s"
1949
  "\">aktualisieren</a>, falls notwendig."
1950
 
1951
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1384
1952
  msgctxt "dhl"
1953
  msgid "API Error"
1954
  msgstr "API Fehler"
1955
 
1956
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1425
1957
  msgctxt "dhl"
1958
  msgid "Charge Portokasse"
1959
  msgstr "Portokasse aufladen"
1960
 
1961
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1426
1962
  #, php-format
1963
  msgctxt "dhl"
1964
  msgid "The minimum amount is %s"
1965
  msgstr "Der Minimalbetrag beträgt %s"
1966
 
1967
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1436
1968
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1438
1969
  msgctxt "dhl"
1970
  msgid "Not yet a customer?"
1971
  msgstr "Noch kein Kunde?"
1972
 
1973
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1466
1974
  msgctxt "dhl"
1975
  msgid "Internetmarke"
1976
  msgstr "Internetmarke"
1977
 
1978
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1467
 
 
 
 
 
1979
  msgctxt "dhl"
1980
  msgid "Preferred Services"
1981
  msgstr "Wunschpaket"
1982
 
1983
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1468
1984
  msgctxt "dhl"
1985
  msgid "Parcel Pickup"
1986
  msgstr "Standorte"
@@ -2276,7 +2281,7 @@ msgid "Could not create account number - no product number."
2276
  msgstr ""
2277
  "Die Abrechnungsnummer konnte nicht erzeugt werden. Die Teilnahmenummer fehlt."
2278
 
2279
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:648
2280
  #, php-format
2281
  msgctxt "dhl"
2282
  msgid "Only %s shipment items can be processed, your shipment has %s items."
@@ -2403,12 +2408,12 @@ msgctxt "dhl"
2403
  msgid "POST error or timeout occured. Please try again later."
2404
  msgstr "POST Fehler oder Zeitüberschreitung. Bitte später erneut versuchen."
2405
 
2406
- #: woocommerce-germanized-dhl/src/DataStores/Label.php:316
2407
  msgctxt "dhl"
2408
  msgid "Invalid label."
2409
  msgstr "Ungültiges Label."
2410
 
2411
- #: woocommerce-germanized-dhl/src/Order.php:299
2412
  #: woocommerce-germanized-dhl/src/SimpleLabel.php:157
2413
  #, php-format
2414
  msgctxt "dhl time-span"
@@ -2583,25 +2588,25 @@ msgctxt "dhl"
2583
  msgid "retry"
2584
  msgstr "Erneut versuchen"
2585
 
2586
- #: woocommerce-germanized-dhl/src/ParcelServices.php:135
2587
  msgctxt "dhl"
2588
  msgid "DHL Preferred Day"
2589
  msgstr "DHL Wunschtag"
2590
 
2591
- #: woocommerce-germanized-dhl/src/ParcelServices.php:278
2592
  msgctxt "dhl"
2593
  msgid "Sorry, but the preferred day you have chosen is no longer available."
2594
  msgstr ""
2595
  "Entschuldigung, der von dir ausgewählte Wunschtag steht leider nicht mehr "
2596
  "zur Verfügung."
2597
 
2598
- #: woocommerce-germanized-dhl/src/ParcelServices.php:301
2599
  msgctxt "dhl"
2600
  msgid "Please choose a preferred location."
2601
  msgstr "Bitte wähle einen Wunschort aus."
2602
 
2603
  # @ woocommerce-germanized
2604
- #: woocommerce-germanized-dhl/src/ParcelServices.php:313
2605
  msgctxt "dhl"
2606
  msgid "Please choose name and address of your preferred neighbor."
2607
  msgstr "Bitte wähle einen Namen und die Adresse deines Wunschnachbars."
@@ -2721,8 +2726,20 @@ msgstr ""
2721
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:42
2722
  #, php-format
2723
  msgctxt "dhl"
2724
- msgid "There is a surcharge of %s incl. VAT for this service.*"
2725
- msgstr "Für diesen Service fällt ein Aufpreis in Höhe von %s inkl. MwSt. an.*"
 
 
 
 
 
 
 
 
 
 
 
 
2726
 
2727
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:65
2728
  msgctxt "dhl"
@@ -2829,7 +2846,7 @@ msgstr "Verpackung"
2829
 
2830
  # @ woocommerce-germanized
2831
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:58
2832
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1027
2833
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:24
2834
  #: woocommerce-germanized-shipments/src/Admin/Table.php:688
2835
  msgctxt "shipments"
@@ -2961,7 +2978,7 @@ msgid "Delete"
2961
  msgstr "Löschen"
2962
 
2963
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-list.php:22
2964
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:76
2965
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:75
2966
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:509
2967
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:630
@@ -2993,7 +3010,7 @@ msgstr "%s #%s"
2993
 
2994
  # @ woocommerce-germanized
2995
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:19
2996
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:69
2997
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:439
2998
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:508
2999
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:596
@@ -3260,8 +3277,8 @@ msgid "Text to appear below the main email content."
3260
  msgstr "Text der unterhalb des Inhalts der E-Mail angezeigt werden soll."
3261
 
3262
  #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:356
3263
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:959
3264
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:989
3265
  #: woocommerce-germanized-shipments/templates/shipment/shipment-details-address.php:28
3266
  msgctxt "shipments"
3267
  msgid "N/A"
@@ -3322,139 +3339,139 @@ msgctxt "shipments"
3322
  msgid "Letter"
3323
  msgstr "Brief"
3324
 
3325
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:68
3326
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1025
3327
  msgctxt "shipments"
3328
  msgid "Shipment"
3329
  msgstr "Sendung"
3330
 
3331
  # @ woocommerce-germanized
3332
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:75
3333
  msgctxt "shipments"
3334
  msgid "Return"
3335
  msgstr "Retoure"
3336
 
3337
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:102
3338
  msgctxt "shipments"
3339
  msgid "Not shipped"
3340
  msgstr "Nicht versandt"
3341
 
3342
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:103
3343
  msgctxt "shipments"
3344
  msgid "Partially shipped"
3345
  msgstr "Teilweise versandt"
3346
 
3347
  # @ woocommerce-germanized
3348
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:104
3349
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:321
3350
  #: woocommerce-germanized-shipments/src/Admin/Table.php:854
3351
  msgctxt "shipments"
3352
  msgid "Shipped"
3353
  msgstr "Versandt"
3354
 
3355
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:121
3356
  msgctxt "shipments"
3357
  msgid "Open"
3358
  msgstr "Offen"
3359
 
3360
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:122
3361
  msgctxt "shipments"
3362
  msgid "Partially returned"
3363
  msgstr "Teilweise retourniert"
3364
 
3365
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:123
3366
  msgctxt "shipments"
3367
  msgid "Returned"
3368
  msgstr "Retourniert"
3369
 
3370
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:319
3371
  msgctxt "shipments"
3372
  msgid "Draft"
3373
  msgstr "Entwurf"
3374
 
3375
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:320
3376
  #: woocommerce-germanized-shipments/src/Admin/Table.php:846
3377
  msgctxt "shipments"
3378
  msgid "Processing"
3379
  msgstr "In Bearbeitung"
3380
 
3381
  # @ woocommerce-germanized
3382
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:322
3383
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:50
3384
  msgctxt "shipments"
3385
  msgid "Delivered"
3386
  msgstr "Geliefert"
3387
 
3388
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:323
3389
  msgctxt "shipments"
3390
  msgid "Requested"
3391
  msgstr "Beantragt"
3392
 
3393
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:372
3394
  #: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:81
3395
  #: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:135
3396
  msgctxt "shipments"
3397
  msgid "Invalid order."
3398
  msgstr "Ungültige Bestellung."
3399
 
3400
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:376
3401
  msgctxt "shipments"
3402
  msgid "This order is already fully returned."
3403
  msgstr "Diese Bestellung wurde bereits vollständig zurückgesendet."
3404
 
3405
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:387
3406
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:428
3407
  msgctxt "shipments"
3408
  msgid "Error while creating the shipment instance"
3409
  msgstr "Fehler beim Erstellen der Sendungsinstanz"
3410
 
3411
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:413
3412
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:417
3413
- #: woocommerce-germanized-shipments/src/ReturnShipment.php:420
3414
- #: woocommerce-germanized-shipments/src/ReturnShipment.php:479
3415
  #: woocommerce-germanized-shipments/src/SimpleShipment.php:118
3416
- #: woocommerce-germanized-shipments/src/SimpleShipment.php:214
3417
  msgctxt "shipments"
3418
  msgid "Invalid shipment order"
3419
  msgstr "Ungültige Bestellung zur Sendung"
3420
 
3421
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:447
3422
  msgctxt "shipments"
3423
  msgid "Invalid order item"
3424
  msgstr "Ungültige Bestellposition"
3425
 
3426
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:569
3427
  msgctxt "shipments"
3428
  msgid "Invalid shipment item"
3429
  msgstr "Ungültige Sendungsposition"
3430
 
3431
  # @ woocommerce-germanized
3432
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:642
3433
  msgctxt "shipments"
3434
  msgid "None"
3435
  msgstr "Keiner"
3436
 
3437
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:715
3438
  msgctxt "shipments"
3439
  msgid "Error while uploading file."
3440
  msgstr "Fehler beim Hochladen der Datei."
3441
 
3442
  # @ woocommerce-germanized
3443
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1026
3444
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:23
3445
  #: woocommerce-germanized-shipments/src/Admin/Table.php:687
3446
  msgctxt "shipments"
3447
  msgid "Date"
3448
  msgstr "Datum"
3449
 
3450
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1028
3451
  #: woocommerce-germanized-shipments/templates/shipment/shipment-details-tracking.php:23
3452
  msgctxt "shipments"
3453
  msgid "Tracking"
3454
  msgstr "Sendungsverfolgung"
3455
 
3456
  # @ woocommerce-germanized
3457
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1029
3458
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:98
3459
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:30
3460
  #: woocommerce-germanized-shipments/src/Admin/Table.php:694
@@ -3462,13 +3479,13 @@ msgctxt "shipments"
3462
  msgid "Actions"
3463
  msgstr "Aktionen"
3464
 
3465
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1265
3466
  msgctxt "shipments"
3467
  msgid "View"
3468
  msgstr "Anzeigen"
3469
 
3470
  # @ woocommerce-germanized
3471
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1272
3472
  #: woocommerce-germanized-shipments/src/Admin/Table.php:865
3473
  #: woocommerce-germanized-shipments/src/Ajax.php:337
3474
  msgctxt "shipments"
@@ -4698,7 +4715,7 @@ msgid "%1$s (%2$s, %3$s)"
4698
  msgstr "%1$s (%2$s, %3$s)"
4699
 
4700
  #: woocommerce-germanized-shipments/src/ReturnShipment.php:356
4701
- #: woocommerce-germanized-shipments/src/Shipment.php:882
4702
  #, php-format
4703
  msgctxt "full name"
4704
  msgid "%1$s %2$s"
@@ -5476,6 +5493,17 @@ msgstr ""
5476
  "Wähle Versandmethoden aus für die die Paketdienstleister Checkbox angezeigt "
5477
  "werden soll."
5478
 
 
 
 
 
 
 
 
 
 
 
 
5479
  #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-product-categories.php:58
5480
  #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-product-categories.php:79
5481
  #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:183
@@ -5507,7 +5535,7 @@ msgstr "Germanize"
5507
  #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:73
5508
  #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:153
5509
  #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:79
5510
- #: woocommerce-germanized/woocommerce-germanized.php:820
5511
  msgid "Settings"
5512
  msgstr "Einstellungen"
5513
 
@@ -6179,6 +6207,42 @@ msgstr "Jetzt Bewertung verfassen"
6179
  msgid "Found Bugs?"
6180
  msgstr "Bugs oder Wünsche melden"
6181
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6182
  #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-template-outdated.php:53
6183
  msgid "Your theme contains outdated Germanized template files"
6184
  msgstr "Dein Theme enthält veraltete Germanized Templates"
@@ -6300,12 +6364,6 @@ msgstr ""
6300
  msgid "Upgrade now"
6301
  msgstr "Jetzt upgraden"
6302
 
6303
- #: woocommerce-germanized/includes/admin/settings/abstract-wc-gzd-settings-tab.php:152
6304
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-dhl.php:35
6305
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:61
6306
- msgid "Learn more"
6307
- msgstr "Mehr erfahren"
6308
-
6309
  # @ woocommerce-germanized
6310
  # @ woocommerce
6311
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-pointers.php:78
@@ -6837,10 +6895,10 @@ msgstr ""
6837
  #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:144
6838
  #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:138
6839
  #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:145
6840
- #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:553
6841
- #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:566
6842
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:221
6843
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:229
6844
  msgid "Title"
6845
  msgstr "Anrede"
6846
 
@@ -7176,7 +7234,7 @@ msgstr "Jetzt hinzufügen"
7176
  # @ woocommerce-germanized
7177
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:209
7178
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:371
7179
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:161
7180
  msgid "Notice Text"
7181
  msgstr "Hinweistext"
7182
 
@@ -7631,6 +7689,7 @@ msgstr "Preisauszeichnung „%s“ anzeigen"
7631
 
7632
  # @ woocommerce-germanized
7633
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:311
 
7634
  msgid "Tax"
7635
  msgstr "Steuer"
7636
 
@@ -7928,8 +7987,8 @@ msgid "VAT"
7928
  msgstr "Umsatzsteuer"
7929
 
7930
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:31
7931
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:97
7932
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:120
7933
  msgid "Split-tax"
7934
  msgstr "Anteilige Steuerberechnung"
7935
 
@@ -7938,13 +7997,13 @@ msgid "Differential Taxation"
7938
  msgstr "Differenzbesteuerung"
7939
 
7940
  # @ woocommerce-germanized
7941
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:38
7942
  #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:101
7943
  msgid "Virtual VAT"
7944
  msgstr "USt. Änderung 2015"
7945
 
7946
  # @ woocommerce-germanized
7947
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:39
7948
  msgid ""
7949
  "Enable if you want to charge your customer's countries' VAT for virtual "
7950
  "products."
@@ -7952,7 +8011,7 @@ msgstr ""
7952
  "Für virtuelle Produkte den USt.-Satz des Dienstleistungsempfängers berechnen."
7953
 
7954
  # @ woocommerce-germanized
7955
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:39
7956
  #, php-format
7957
  msgid ""
7958
  "New EU VAT rule applies on 01.01.2015. Make sure that every digital or "
@@ -7975,15 +8034,15 @@ msgstr ""
7975
  "dazu findest du <a href=\"%s\" target=\"_blank\">hier</a>."
7976
 
7977
  # @ woocommerce-germanized
7978
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:51
7979
  msgid "Tax Rate"
7980
  msgstr "Steuersatz"
7981
 
7982
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:52
7983
  msgid "Hide specific tax rate within shop pages."
7984
  msgstr "Entferne die Anzeige des konkreten Steuersatzes im Shop."
7985
 
7986
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:56
7987
  msgid ""
7988
  "This option will make sure that within shop pages no specific tax rates are "
7989
  "shown. Instead only incl. tax or excl. tax notice is shown."
@@ -7992,12 +8051,12 @@ msgstr ""
7992
  "Steuersatz im MwSt.-Hinweis nicht auftaucht. Stattdessen steht dort inkl. "
7993
  "bzw. exkl. MwSt."
7994
 
7995
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:68
7996
  msgid "VAT ID"
7997
  msgstr "Umsatzsteuer-ID"
7998
 
7999
  # @ woocommerce-germanized
8000
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:71
8001
  #, php-format
8002
  msgid ""
8003
  "%sUpgrade to %spro%s%s to unlock this feature and enjoy premium support."
@@ -8006,87 +8065,73 @@ msgstr ""
8006
  "erhalte professionellen Support."
8007
 
8008
  # @ woocommerce-germanized
8009
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:87
8010
  #, php-format
8011
  msgid ""
8012
- "By choosing this option shipping cost taxation will be calculated based on "
8013
- "tax rates within cart. Imagine the following example. Further information "
8014
- "can be found <a href=\"%s\" target=\"_blank\">here</a>. %s"
 
8015
  msgstr ""
8016
- "Mit der Auswahl dieser Option werden die Steuern für Versandkosten basierend "
8017
- "auf den Anteilen der Steuersätze der Artikel im Warenkorb berechnet. Weitere "
8018
- "Informationen findest du <a href=\"%s\" target=\"_blank\">hier</a>. Falls du "
8019
- "vorher mit Nettobeträgen gearbeitet hast, ändere die Versandkosten bitte in "
8020
- "Bruttobeträge. Hier ein kleines Beispiel: %s"
8021
 
8022
  # @ woocommerce-germanized
8023
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
8024
- msgid "Shipping costs"
8025
- msgstr "Versandkosten"
8026
 
8027
- # @ woocommerce-germanized
8028
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:98
8029
- msgid "Enable split-tax calculation for shipping costs."
8030
- msgstr "Aktiviere die anteilige Besteuerung für Versandkosten."
8031
 
8032
- # @ woocommerce-germanized
8033
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:104
8034
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:127
8035
- msgid "Force"
8036
- msgstr "Erzwingen"
8037
 
8038
  # @ woocommerce-germanized
8039
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:105
8040
- msgid "Force split-tax calculation for shipping methods."
8041
- msgstr ""
8042
- "Erzwinge die anteilige Besteuerung der Versandkosten für jede Versandart."
8043
 
8044
- # @ woocommerce-germanized
8045
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:112
8046
- msgid ""
8047
- "This option will overwrite settings for each individual shipping method to "
8048
- "force tax calculation (instead of only calculating tax for those methods "
8049
- "which are taxeable)."
8050
- msgstr ""
8051
- "Diese Option überschreibt alle abweichenden Einstellungen verschiedener "
8052
- "Versandarten und erzwingt die Steuerberechnung."
8053
 
8054
- # @ woocommerce-germanized
8055
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:117
8056
- msgid "Fees"
8057
- msgstr "Gebühren"
8058
 
8059
- # @ woocommerce-germanized
8060
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:121
8061
- msgid "Enable split-tax calculation for fees."
8062
- msgstr "Aktiviere die anteilige Besteuerung für Gebühren."
8063
 
8064
  # @ woocommerce-germanized
8065
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:128
8066
- msgid "Force split-tax calculation for fees."
8067
- msgstr "Erzwinge die anteilige Besteuerung für Gebühren."
8068
 
8069
  # @ woocommerce-germanized
8070
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:135
8071
  msgid ""
8072
- "This option will overwrite settings for each individual fee to force tax "
8073
- "calculation (instead of only calculating tax for those fees which are "
8074
- "taxeable)."
8075
  msgstr ""
8076
- "Diese Option überschreibt die Einstellungen aller Gebühren und erzwingt die "
8077
- "Steuerberechnung."
8078
 
8079
  # @ woocommerce-germanized
8080
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:147
8081
  msgid "Taxation Notice"
8082
  msgstr "Steuerhinweis"
8083
 
8084
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:148
8085
  msgid "Enable differential taxation text notice beneath product price."
8086
  msgstr ""
8087
  "Aktiviere den Hinweis zur Differenzbesteuerung unterhalb des Produktpreises."
8088
 
8089
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:148
8090
  msgid ""
8091
  "If you have disabled this option, a normal VAT notice will be displayed, "
8092
  "which is sufficient as Trusted Shops states. To further inform your "
@@ -8096,17 +8141,17 @@ msgstr ""
8096
  "angezeigt. Der Standard-Hinweis ist laut Trusted Shops bereits ausreichend. "
8097
  "Du kannst diesen Hinweis nutzen um deine Kunden besser zu informieren."
8098
 
8099
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:154
8100
  msgid "Mixed carts"
8101
  msgstr "Gemischte Warenkörbe"
8102
 
8103
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:155
8104
  msgid ""
8105
  "Disallow buying normal and differential taxed products at the same time."
8106
  msgstr ""
8107
  "Verbiete gleichzeitig normale und differenzbesteuerte Produkte zu kaufen."
8108
 
8109
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:155
8110
  #, php-format
8111
  msgid ""
8112
  "Shipping costs for differential taxed products may not be taxed (compare %s) "
@@ -8120,11 +8165,11 @@ msgstr ""
8120
  "verhindert, dass Kunden normale und differenzbesteuerte Produkte "
8121
  "gleichzeitig kaufen."
8122
 
8123
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:155
8124
  msgid "HK Hamburg"
8125
  msgstr "HK Hamburg"
8126
 
8127
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:162
8128
  msgid ""
8129
  "This text will be shown as a further notice for the customer to inform him "
8130
  "about differential taxation."
@@ -8132,22 +8177,22 @@ msgstr ""
8132
  "Dieser Text dient zur weiterführenden Information deiner Kunden bzgl. der "
8133
  "Differenzbesteuerung."
8134
 
8135
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:167
8136
  msgid "incl. VAT (differential taxation according to §25a UStG.)"
8137
  msgstr "inkl. MwSt. (differenzbesteuert nach §25a UStG.)"
8138
 
8139
  # @ woocommerce-germanized
8140
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:171
8141
  msgid "Checkout & E-Mails"
8142
  msgstr "Kasse & E-Mails"
8143
 
8144
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:172
8145
  msgid "Enable differential taxation notice during checkout and in emails."
8146
  msgstr ""
8147
  "Aktiviere den Hinweis zur Differenzbesteuerung im Checkout und in E-Mails."
8148
 
8149
  # @ woocommerce-germanized
8150
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:217
8151
  msgid ""
8152
  "Sorry, but the new Virtual VAT rules cannot be applied to small business."
8153
  msgstr ""
@@ -8287,6 +8332,18 @@ msgstr ""
8287
  msgid "Hide"
8288
  msgstr "Ausblenden"
8289
 
 
 
 
 
 
 
 
 
 
 
 
 
8290
  # @ woocommerce-germanized
8291
  #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:12
8292
  msgid ""
@@ -8326,21 +8383,10 @@ msgstr "Datenbank Version"
8326
  msgid "Term doesn’t exist"
8327
  msgstr "Term existiert nicht"
8328
 
8329
- # @ woocommerce-germanized
8330
- #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:91
8331
- msgid "Shipping Taxes"
8332
- msgstr "Versandkostenbesteuerung"
8333
-
8334
- # @ woocommerce-germanized
8335
- #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:93
8336
- #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:98
8337
- msgid "Forced"
8338
- msgstr "Erzwungen"
8339
-
8340
  # @ woocommerce-germanized
8341
  #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:96
8342
- msgid "Fee Taxes"
8343
- msgstr "Gebührenbesteuerung"
8344
 
8345
  # @ woocommerce-germanized
8346
  #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:106
@@ -8876,7 +8922,7 @@ msgstr ""
8876
  "Vielen Dank. Wir haben deinen Widerruf erhalten. Du bekommst in Kürze eine E-"
8877
  "Mail mit deinen Daten als Bestätigung."
8878
 
8879
- #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:227
8880
  msgid ""
8881
  "Sorry, but differential taxed products cannot be purchased with normal "
8882
  "products at the same time."
@@ -8884,7 +8930,7 @@ msgstr ""
8884
  "Entschuldigung, differenzbesteuerte Produkte können nicht gemeinsam mit "
8885
  "normalen Produkten gekauft werden."
8886
 
8887
- #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:233
8888
  msgid ""
8889
  "Sorry, but normal products cannot be purchased together with differential "
8890
  "taxed products at the same time."
@@ -8893,23 +8939,40 @@ msgstr ""
8893
  "differenzbesteuerten Produkten gekauft werden."
8894
 
8895
  # @ woocommerce-germanized
8896
- #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:790
8897
  #: woocommerce-germanized/includes/class-wc-gzd-revocation.php:52
8898
  #: woocommerce-germanized/includes/wc-gzd-core-functions.php:604
8899
  msgid "Mr."
8900
  msgstr "Herr"
8901
 
8902
  # @ woocommerce-germanized
8903
- #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:791
8904
  msgctxt "customer-title-male-address"
8905
  msgid "Mr."
8906
  msgstr "Herrn"
8907
 
8908
- #: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:318
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8909
  msgid "Is voucher?"
8910
  msgstr "Wertgutschein?"
8911
 
8912
- #: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:319
8913
  #, php-format
8914
  msgid ""
8915
  "Whether or not this coupon is a voucher which has been sold to a customer "
@@ -8922,8 +8985,8 @@ msgstr ""
8922
  "\">hier</a>."
8923
 
8924
  #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:147
8925
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:208
8926
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:319
8927
  msgid ""
8928
  "Please activate your account through clicking on the activation link "
8929
  "received via email."
@@ -8937,17 +9000,17 @@ msgid "Did not receive the activation email? <a href=\"%s\">Try again</a>."
8937
  msgstr ""
8938
  "Keine Aktivierungs-E-Mail erhalten? <a href=\"%s\">Erneut zusenden</a>."
8939
 
8940
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:329
8941
  #, php-format
8942
  msgid "Continue without creating an account? <a href=\"%s\">Click here</a>"
8943
  msgstr "Weiter zur Kasse ohne Kundenkonto? <a href=\"%s\">Hier klicken</a>"
8944
 
8945
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:331
8946
  msgid "Please create an account or login before continuing to checkout"
8947
  msgstr ""
8948
  "Bitte erstelle ein Kundenkonto oder logge dich ein, bevor du zur Kasse gehst"
8949
 
8950
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:439
8951
  #, php-format
8952
  msgid ""
8953
  "Please activate your account through clicking on the activation link "
@@ -8956,7 +9019,7 @@ msgstr ""
8956
  "Bitte aktiviere dein Kundenkonto indem du auf den Link in der E-Mail "
8957
  "klickst. Keine E-Mail erhalten? <a href=\"%s\">Erneut zusenden</a>."
8958
 
8959
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:471
8960
  msgid ""
8961
  "This activation code has expired. We have sent you a new activation code via "
8962
  "e-mail."
@@ -8965,20 +9028,20 @@ msgstr ""
8965
  "Code per E-Mail geschickt."
8966
 
8967
  # @ woocommerce-germanized
8968
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:473
8969
  msgid "Sorry, but this activation code cannot be found."
8970
  msgstr "Sorry, dieser Aktivierungscode ist uns leider nicht bekannt."
8971
 
8972
  # @ woocommerce-germanized
8973
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:477
8974
  msgid "Thank you. You have successfully activated your account."
8975
  msgstr "Vielen Dank. Dein Benutzerkonto wurde erfolgreich aktiviert."
8976
 
8977
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:657
8978
  msgid "Expired activation key"
8979
  msgstr "Abgelaufener Aktivierungscode"
8980
 
8981
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:662
8982
  msgid "Invalid activation key"
8983
  msgstr "Aktivierungscode ungültig"
8984
 
@@ -9037,7 +9100,7 @@ msgid "Forward your Revocation online"
9037
  msgstr "Deinen Widerruf online erklären"
9038
 
9039
  # @ woocommerce-germanized
9040
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:166
9041
  #, php-format
9042
  msgid ""
9043
  "Please install <a href=\"%s\" target=\"_blank\">WooCommerce</a> before "
@@ -9046,85 +9109,85 @@ msgstr ""
9046
  "Bitte installiere <a href=\"%s\" target=\"_blank\">WooCommerce</a> bevor du "
9047
  "WooCommerce Germanized installierst. Vielen Dank!"
9048
 
9049
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:486
9050
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:500
9051
  msgid "Reduced rate"
9052
  msgstr "Ermäßigter Steuersatz"
9053
 
9054
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:542
9055
  #, php-format
9056
  msgctxt "vat-rate-import"
9057
  msgid "VAT %s"
9058
  msgstr "MwSt. %s"
9059
 
9060
  # @ woocommerce-germanized
9061
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:657
9062
  msgctxt "Page slug"
9063
  msgid "data-security"
9064
  msgstr "datenschutzerklaerung"
9065
 
9066
  # @ woocommerce-germanized
9067
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:658
9068
  msgctxt "Page title"
9069
  msgid "Data Security Statement"
9070
  msgstr "Datenschutzerklärung"
9071
 
9072
  # @ woocommerce-germanized
9073
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:662
9074
  msgctxt "Page slug"
9075
  msgid "imprint"
9076
  msgstr "impressum"
9077
 
9078
  # @ woocommerce-germanized
9079
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:663
9080
  msgctxt "Page title"
9081
  msgid "Imprint"
9082
  msgstr "Impressum"
9083
 
9084
  # @ woocommerce-germanized
9085
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:667
9086
  msgctxt "Page slug"
9087
  msgid "terms"
9088
  msgstr "agb"
9089
 
9090
  # @ woocommerce-germanized
9091
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:668
9092
  msgctxt "Page title"
9093
  msgid "Terms & Conditions"
9094
  msgstr "AGB"
9095
 
9096
  # @ woocommerce-germanized
9097
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:672
9098
  msgctxt "Page slug"
9099
  msgid "revocation"
9100
  msgstr "widerrufsbelehrung"
9101
 
9102
  # @ woocommerce-germanized
9103
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:673
9104
  msgctxt "Page title"
9105
  msgid "Power of Revocation"
9106
  msgstr "Widerrufsbelehrung"
9107
 
9108
  # @ woocommerce-germanized
9109
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:677
9110
  msgctxt "Page slug"
9111
  msgid "shipping-methods"
9112
  msgstr "versandarten"
9113
 
9114
  # @ woocommerce-germanized
9115
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:678
9116
  msgctxt "Page title"
9117
  msgid "Shipping Methods"
9118
  msgstr "Versandarten"
9119
 
9120
  # @ woocommerce-germanized
9121
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:682
9122
  msgctxt "Page slug"
9123
  msgid "payment-methods"
9124
  msgstr "bezahlmoeglichkeiten"
9125
 
9126
  # @ woocommerce-germanized
9127
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:683
9128
  msgctxt "Page title"
9129
  msgid "Payment Methods"
9130
  msgstr "Zahlungsarten"
@@ -9476,7 +9539,7 @@ msgstr ""
9476
  "kassiert - z.B. DHL (steuerfrei)."
9477
 
9478
  # @ woocommerce-germanized
9479
- #: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:304
9480
  msgid "Payment charge"
9481
  msgstr "Zahlungsgebühr"
9482
 
@@ -10947,7 +11010,7 @@ msgstr "Germanized benötigt mindestens PHP 5.6. Bitte %s deine PHP-Version."
10947
  msgid "upgrade"
10948
  msgstr "Upgrade"
10949
 
10950
- #: woocommerce-germanized/woocommerce-germanized.php:317
10951
  #, php-format
10952
  msgid ""
10953
  "This version of the Corona Helper Plugin includes a bug which could lead to "
@@ -10959,7 +11022,7 @@ msgstr ""
10959
  "Bitte <a href=\"%s\">deaktiviere</a> das Plugin und lerne in unserem <a href="
10960
  "\"%s\" target=\"_blank\">Blog-Post</a> wie du das Plugin austauschen kannst."
10961
 
10962
- #: woocommerce-germanized/woocommerce-germanized.php:1012
10963
  msgid "Pease wait while we are trying to redirect you to the payment provider."
10964
  msgstr "Einen Moment - wir versuchen dich zum Zahlungsanbieter weiterzuleiten."
10965
 
@@ -12195,6 +12258,57 @@ msgstr "vendidero"
12195
  msgid "https://vendidero.de"
12196
  msgstr "https://vendidero.de"
12197
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12198
  # @ woocommerce-germanized
12199
  #~ msgctxt "dhl"
12200
  #~ msgid "General"
@@ -12881,9 +12995,6 @@ msgstr "https://vendidero.de"
12881
  #~ msgid "Hide Delivery Time Notice"
12882
  #~ msgstr "Lieferzeiten ausblenden"
12883
 
12884
- #~ msgid "Prices"
12885
- #~ msgstr "Preise"
12886
-
12887
  # @ woocommerce-germanized
12888
  #~ msgid "Base Price Text"
12889
  #~ msgstr "Grundpreis Text"
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce Germanized\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-01-05 12:17+0100\n"
6
+ "PO-Revision-Date: 2021-01-05 12:30+0100\n"
7
  "Last-Translator: holzhannes <holzhannes@posteo.de>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE\n"
46
  msgstr "Zusätzliche Leistungen"
47
 
48
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:36
49
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:514
50
  #, php-format
51
  msgid ""
52
  "Sorry but none of your selected <a href=\"%s\">Deutsche Post Products</a> is "
87
 
88
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:65
89
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:141
90
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:985
91
  #: woocommerce-germanized-dhl/src/ParcelServices.php:29
92
  msgctxt "dhl"
93
  msgid "Preferred Day"
102
  # @ woocommerce-germanized
103
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:87
104
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:169
105
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1005
106
  #: woocommerce-germanized-dhl/src/ParcelServices.php:43
107
  msgctxt "dhl"
108
  msgid "Preferred Location"
109
  msgstr "Wunschort"
110
 
111
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:98
112
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1013
113
  #: woocommerce-germanized-dhl/src/ParcelServices.php:48
114
  msgctxt "dhl"
115
  msgid "Preferred Neighbor"
122
 
123
  # @ woocommerce-germanized
124
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:121
125
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:720
126
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:789
127
  msgctxt "dhl"
128
  msgid "Name"
129
  msgstr "Name"
130
 
131
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:130
132
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:727
133
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:796
134
  msgctxt "dhl"
135
  msgid "Company"
136
  msgstr "Firma"
137
 
138
  # @ woocommerce-germanized
139
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:139
140
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:610
141
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:734
142
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:803
143
  msgctxt "dhl"
144
  msgid "Street"
145
  msgstr "Straße"
152
 
153
  # @ woocommerce-germanized
154
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:159
155
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:611
156
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:755
157
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:824
158
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:27
159
  msgctxt "dhl"
160
  msgid "Postcode"
162
 
163
  # @ woocommerce-germanized
164
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:168
165
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:612
166
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:748
167
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:817
168
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:30
169
  msgctxt "dhl"
170
  msgid "City"
171
  msgstr "Stadt"
172
 
173
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:179
174
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:771
175
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:840
176
  msgctxt "dhl"
177
  msgid "Phone"
178
  msgstr "Telefon"
179
 
180
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:188
181
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:778
182
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:847
183
  msgctxt "dhl"
184
  msgid "Email"
185
  msgstr "E-Mail"
207
 
208
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:228
209
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:331
210
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:526
211
  msgctxt "dhl"
212
  msgid "GoGreen"
213
  msgstr "GoGreen"
229
  msgstr "Keine Nachbarschaftszustellung"
230
 
231
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:272
232
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:554
233
  msgctxt "dhl"
234
  msgid "Named person only"
235
  msgstr "Persönliche Übergabe"
256
  msgstr "Mindestalter"
257
 
258
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:322
259
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:598
260
  msgctxt "dhl"
261
  msgid "Premium"
262
  msgstr "Premium"
267
  msgid "Receiver"
268
  msgstr "Empfänger"
269
 
270
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:18
 
271
  msgctxt "dhl"
272
  msgid "DHL Labels"
273
  msgstr "DHL Labels"
274
 
275
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:21
276
  #, php-format
277
  msgctxt "dhl"
278
  msgid ""
283
  "\">globalen Einstellungen</a>."
284
 
285
  # @ woocommerce-germanized
286
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:31
287
  msgctxt "dhl"
288
  msgid "DHL Label Services"
289
  msgstr "DHL Services"
290
 
291
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:34
292
  #, php-format
293
  msgctxt "dhl"
294
  msgid ""
299
  "\">globalen Einstellungen</a>."
300
 
301
  # @ woocommerce-germanized
302
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:44
303
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:111
304
  msgctxt "dhl"
305
  msgid "Label Automation"
306
  msgstr "Label Automatisierung"
307
 
308
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:47
309
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:114
310
  #, php-format
311
  msgctxt "dhl"
312
  msgid ""
316
  "Automatisierung-Einstellungen für Label anpassen. Änderungen überschreiben "
317
  "die <a href=\"%s\">globalen Einstellungen</a>."
318
 
319
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:57
320
  msgctxt "dhl"
321
  msgid "DHL Preferred Services"
322
  msgstr "DHL Wunschpaket-Services"
323
 
324
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:60
325
  #, php-format
326
  msgctxt "dhl"
327
  msgid ""
331
  "Wunschpaket-Services anpassen. Änderungen überschreiben die <a href=\"%s"
332
  "\">globalen Einstellungen</a>."
333
 
334
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:70
335
  msgctxt "dhl"
336
  msgid "DHL Pickup"
337
  msgstr "DHL Standorte"
338
 
339
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:73
340
  #, php-format
341
  msgctxt "dhl"
342
  msgid ""
346
  "überschreiben die <a href=\"%s\">globalen Einstellungen</a>."
347
 
348
  # @ woocommerce-germanized
349
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:87
350
  msgctxt "dhl"
351
  msgid "Deutsche Post Labels"
352
  msgstr "Deutsche Post Labels"
353
 
354
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:90
355
  #, php-format
356
  msgctxt "dhl"
357
  msgid ""
361
  "Deutsche Post Label Einstellungen anpassen. Änderungen überschreiben die <a "
362
  "href=\"%s\">globalen Einstellungen</a>."
363
 
364
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:99
365
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1385
366
  msgctxt "dhl"
367
  msgid "Printing"
368
  msgstr "Druck"
369
 
370
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:102
371
  #, php-format
372
  msgctxt "dhl"
373
  msgid ""
446
  # @ woocommerce-germanized
447
  #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:376
448
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:188
449
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:488
450
  #: woocommerce-germanized-dhl/src/ParcelLocator.php:850
451
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:38
452
  msgctxt "dhl"
466
  msgstr "Empfänger fehlt oder existiert nicht."
467
 
468
  #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:481
469
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:575
470
  #, php-format
471
  msgctxt "dhl"
472
  msgid "Shipment order #%s does not exist"
477
  msgid "The services chosen are not available for the current product."
478
  msgstr "Die ausgewählten Services sind für dieses Produkt nicht verfügbar."
479
 
480
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:541
481
  #, php-format
482
  msgctxt "dhl"
483
  msgid "Deutsche Post product is missing for %s."
484
  msgstr "Deutsche Post Produkt fehlt oder ist nicht verfügbar für %s."
485
 
486
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:617
487
  #, php-format
488
  msgctxt "dhl"
489
  msgid "%s of the return address is a mandatory field."
490
  msgstr "%s der Rücksendeadresse ist ein Pflichtfeld."
491
 
492
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:622
493
  msgctxt "dhl"
494
  msgid "Please either add a return company or name."
495
  msgstr ""
496
  "Bitte gib entweder einen Firmennamen oder Namen für die Rücksendeadresse an."
497
 
498
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:641
499
  msgctxt "dhl"
500
  msgid "Error while parsing preferred day."
501
  msgstr "Fehler beim Einlesen des Wunschtags."
502
 
503
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:652
504
  msgctxt "dhl"
505
  msgid "Error while parsing preferred time."
506
  msgstr "Fehler beim Einlesen der Wunschzeit."
507
 
508
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:677
509
  msgctxt "dhl"
510
  msgid "The visual min age check is invalid."
511
  msgstr "Das Alter der Alterssichtprüfung ist ungültig."
512
 
513
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:701
514
  msgctxt "dhl"
515
  msgid "The ident min age check is invalid."
516
  msgstr "Das Alter des Ident-Checks ist ungültig."
517
 
518
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:708
519
  msgctxt "dhl"
520
  msgid "There was an error parsing the date of birth for the identity check."
521
  msgstr ""
522
  "Beim Einlesen des Geburtsdatums für den Ident-Check trat ein Problem auf."
523
 
524
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:713
525
  msgctxt "dhl"
526
  msgid ""
527
  "Either a minimum age or a date of birth must be added to the ident check."
530
  "hinzugefügt werden."
531
 
532
  # @ woocommerce-germanized
533
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:727
534
  #, php-format
535
  msgctxt "dhl"
536
  msgid "%s duties element does not exist."
537
  msgstr "%s Zollabgabe existiert nicht."
538
 
539
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1390
540
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1474
541
  msgctxt "dhl"
542
  msgid "Invalid shipment"
543
  msgstr "Ungültige Sendung"
544
 
545
  # @ woocommerce-germanized
546
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1394
547
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1478
548
  msgctxt "dhl"
549
  msgid "Order does not exist"
550
  msgstr "Bestellung existiert nicht"
551
 
552
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1426
553
  msgctxt "dhl"
554
  msgid "Error while creating the label instance"
555
  msgstr "Fehler beim Erstellen der Label-Instanz"
556
 
557
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1549
558
  msgctxt "dhl"
559
  msgid "Invalid label"
560
  msgstr "Ungültiges Label"
561
 
562
  # @ woocommerce-germanized
563
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1637
564
  msgctxt "dhl"
565
  msgid "DHL Retoure International A"
566
  msgstr "DHL Retoure International A"
567
 
568
  # @ woocommerce-germanized
569
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1638
570
  msgctxt "dhl"
571
  msgid "DHL Retoure International B"
572
  msgstr "DHL Retoure International B"
573
 
574
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1647
575
  msgctxt "dhl"
576
  msgid "DHL Retoure Online"
577
  msgstr "DHL Retoure Online"
578
 
579
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1664
580
  msgctxt "dhl"
581
  msgid "DHL Paket Connect"
582
  msgstr "DHL Paket Connect"
583
 
584
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1665
585
  msgctxt "dhl"
586
  msgid "DHL Europaket (B2B)"
587
  msgstr "DHL Europaket (B2B)"
588
 
589
  # @ woocommerce-germanized
590
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1666
591
  msgctxt "dhl"
592
  msgid "DHL Paket International"
593
  msgstr "DHL Paket International"
594
 
595
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1741
596
  msgctxt "dhl"
597
  msgid "DHL Paket"
598
  msgstr "DHL Paket"
599
 
600
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1742
601
  msgctxt "dhl"
602
  msgid "DHL Paket PRIO"
603
  msgstr "DHL Paket PRIO"
604
 
605
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1743
606
  msgctxt "dhl"
607
  msgid "DHL Paket Taggleich"
608
  msgstr "DHL Paket Taggleich"
609
 
610
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1744
611
  msgctxt "dhl"
612
  msgid "DHL Warenpost"
613
  msgstr "DHL Warenpost"
614
 
615
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1831
616
  msgctxt "dhl"
617
  msgid "Error while uploading label."
618
  msgstr "Fehler beim Hochladen des Labels."
716
  "Ordner %s manuell und stelle sicher, dass der Ordner beschreibbar ist."
717
 
718
  #: woocommerce-germanized-dhl/src/Admin/Admin.php:271
719
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1477
720
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:39
721
  msgctxt "dhl"
722
  msgid "DHL"
787
 
788
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:80
789
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:328
790
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:469
791
  msgctxt "dhl"
792
  msgid "Inlay Returns"
793
  msgstr "Beilageretouren"
802
  "solltest du diese Funktion standardmäßig aktivieren."
803
 
804
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:94
805
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:872
806
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:964
807
  msgctxt "dhl"
808
  msgid "Retoure"
809
  msgstr "Retoure"
838
 
839
  # @ woocommerce-germanized
840
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:122
841
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:896
842
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1402
843
  msgctxt "dhl"
844
  msgid "Automation"
845
  msgstr "Automatisierung"
865
 
866
  # @ woocommerce-germanized
867
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:155
868
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:993
869
  msgctxt "dhl"
870
  msgid "Fee"
871
  msgstr "Gebühr"
898
  "Folgenden konfiguriert) als Lieferadresse auswählen."
899
 
900
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:202
901
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1141
902
  msgctxt "dhl"
903
  msgid "Map"
904
  msgstr "Karte"
915
  "Kartenansicht einen gültigen Google Maps API Schlüssel."
916
 
917
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:223
918
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1178
919
  msgctxt "dhl"
920
  msgid "Enable"
921
  msgstr "Aktivieren"
1071
  msgstr "Vertragsdaten"
1072
 
1073
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:392
1074
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1233
1075
  msgctxt "dhl"
1076
  msgid "Domestic Default Service"
1077
  msgstr "Standard Service (national)"
1088
  "nachträglich ändern)."
1089
 
1090
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:402
1091
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1253
1092
  msgctxt "dhl"
1093
  msgid "Int. Default Service"
1094
  msgstr "Standard Service (Int.)"
1137
 
1138
  # @ woocommerce-germanized
1139
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:432
1140
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1211
1141
  msgctxt "dhl"
1142
  msgid "Default weight (kg)"
1143
  msgstr "Standardgewicht (kg)"
1144
 
1145
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:434
1146
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1213
1147
  msgctxt "dhl"
1148
  msgid ""
1149
  "Choose a default shipment weight to be used for labels if no weight has been "
1153
  "die das Gewicht nicht automatisch bestimmt werden kann."
1154
 
1155
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:443
1156
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1222
1157
  msgctxt "dhl"
1158
  msgid "Minimum weight (kg)"
1159
  msgstr "Mindestgewicht (kg)"
1160
 
1161
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:445
1162
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1224
1163
  msgctxt "dhl"
1164
  msgid ""
1165
  "Choose a minimum weight to be used for labels e.g. to prevent low shipment "
1195
  "deine Datenschutzerklärung und suche im Zweifel anwaltlichen Rat bevor du "
1196
  "diese Option aktivierst."
1197
 
1198
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:470
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1199
  msgctxt "dhl"
1200
  msgid ""
1201
  "Additionally create inlay return labels for shipments that support returns."
1203
  "Erzeuge zusätzlich Beilage-Retourenlabels für Sendungen die Retouren "
1204
  "unterstützen."
1205
 
1206
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:489
1207
  msgctxt "dhl"
1208
  msgid "Enable delivery to Packstation."
1209
  msgstr "Aktiviere den Versand an Packstationen."
1210
 
1211
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:490
1212
  msgctxt "dhl"
1213
  msgid "Let customers choose a Packstation as delivery address."
1214
  msgstr "Kunden eine Packstation als Lieferadresse auswählen lassen."
1215
 
1216
  # @ woocommerce-germanized
1217
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:497
1218
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:50
1219
  msgctxt "dhl"
1220
  msgid "Postoffice"
1221
  msgstr "Postfiliale"
1222
 
1223
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:498
1224
  msgctxt "dhl"
1225
  msgid "Enable delivery to Post Offices."
1226
  msgstr "Aktiviere den Versand an Postfilialen."
1227
 
1228
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:499
1229
  msgctxt "dhl"
1230
  msgid "Let customers choose a Post Office as delivery address."
1231
  msgstr "Kunden eine Postfiliale als Lieferadresse auswählen lassen."
1232
 
1233
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:506
1234
  msgctxt "dhl"
1235
  msgid "Parcel Shop"
1236
  msgstr "Paketshop"
1237
 
1238
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:507
1239
  msgctxt "dhl"
1240
  msgid "Enable delivery to Parcel Shops."
1241
  msgstr "Lieferung an Paketshops aktivieren."
1242
 
1243
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:508
1244
  msgctxt "dhl"
1245
  msgid "Let customers choose a Parcel Shop as delivery address."
1246
  msgstr "Kunden einen Paketshop als Lieferadresse auswählen lassen."
1247
 
1248
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:527
1249
  msgctxt "dhl"
1250
  msgid "Enable the GoGreen Service by default."
1251
  msgstr "Buche den GoGreen Service hinzu."
1252
 
1253
  # @ woocommerce-germanized
1254
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:533
1255
  msgctxt "dhl"
1256
  msgid "Additional Insurance"
1257
  msgstr "Transportversicherung"
1258
 
1259
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:534
1260
  msgctxt "dhl"
1261
  msgid "Add an additional insurance to labels."
1262
  msgstr "Füge eine Transportversicherung zur Sendung hinzu."
1263
 
1264
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:540
1265
  msgctxt "dhl"
1266
  msgid "Retail Outlet Routing"
1267
  msgstr "Filialrouting"
1268
 
1269
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:541
1270
  msgctxt "dhl"
1271
  msgid ""
1272
  "Send undeliverable items to nearest retail outlet instead of immediate "
1275
  "Sende unzustellbare Sendungen in die nächstgelegene Filiale zur Abholung "
1276
  "anstelle diese direkt zurückzusenden."
1277
 
1278
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:547
1279
  msgctxt "dhl"
1280
  msgid "No Neighbor"
1281
  msgstr "Keine Nachbarschaftszustellung"
1282
 
1283
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:548
1284
  msgctxt "dhl"
1285
  msgid "Do not deliver to neighbors."
1286
  msgstr "Schließe eine Ersatzzustellung beim Nachbarn aus."
1287
 
1288
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:555
1289
  msgctxt "dhl"
1290
  msgid "Do only delivery to named person."
1291
  msgstr ""
1292
  "Lasse Pakete nur an den Empfänger persönlich oder an eine bevollmächtigte "
1293
  "Person übergeben."
1294
 
1295
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:561
1296
  msgctxt "dhl"
1297
  msgid "Bulky Goods"
1298
  msgstr "Sperrgut"
1299
 
1300
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:562
1301
  msgctxt "dhl"
1302
  msgid "Deliver as bulky goods."
1303
  msgstr "Sende Pakete als Sperrgut."
1304
 
1305
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:568
1306
  msgctxt "dhl"
1307
  msgid "Minimum age (Visual check)"
1308
  msgstr "Mindestalter (Visuell)"
1309
 
1310
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:573
1311
  msgctxt "dhl"
1312
  msgid "Choose this option if you want to let DHL check your customer's age."
1313
  msgstr ""
1314
  "Wähle diese Option aus, wenn du das Alter durch DHL prüfen lassen möchtest."
1315
 
1316
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:576
1317
  msgctxt "dhl"
1318
  msgid "Sync (Visual Check)"
1319
  msgstr "Synchronisation (Visuell)"
1320
 
1321
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:577
1322
  msgctxt "dhl"
1323
  msgid "Visually verify age if shipment contains applicable items."
1324
  msgstr ""
1325
  "Aktiviere die Alterssichtprüfung, falls die Sendung zu prüfende Positionen "
1326
  "beinhaltet."
1327
 
1328
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:577
1329
  #, php-format
1330
  msgctxt "dhl"
1331
  msgid ""
1338
  "Alterssichtprüfung automatisch aktiviert, falls eine Sendung zu prüfenden "
1339
  "Produkte beinhaltet."
1340
 
1341
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:577
1342
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:592
1343
  msgctxt "dhl"
1344
  msgid "age verification checkbox"
1345
  msgstr "Checkbox zur Altersprüfung"
1346
 
1347
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:583
1348
  msgctxt "dhl"
1349
  msgid "Minimum age (Ident check)"
1350
  msgstr "Mindestalter (Identität)"
1351
 
1352
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:588
1353
  msgctxt "dhl"
1354
  msgid ""
1355
  "Choose this option if you want to let DHL check your customer's identity and "
1359
  "lassen möchtest."
1360
 
1361
  # @ woocommerce-germanized
1362
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:591
1363
  msgctxt "dhl"
1364
  msgid "Sync (Ident Check)"
1365
  msgstr "Synchronisation (Identität)"
1366
 
1367
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:592
1368
  msgctxt "dhl"
1369
  msgid "Verify identity and age if shipment contains applicable items."
1370
  msgstr ""
1371
  "Aktiviere die Identitätsprüfung, falls die Sendung zu prüfende Positionen "
1372
  "beinhaltet."
1373
 
1374
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:592
1375
  #, php-format
1376
  msgctxt "dhl"
1377
  msgid ""
1384
  "Identitätsprüfung automatisch aktiviert, falls eine Sendung zu prüfenden "
1385
  "Produkte beinhaltet."
1386
 
1387
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:599
1388
  msgctxt "dhl"
1389
  msgid "Premium delivery for international shipments."
1390
  msgstr "Premium Lieferung für internationale Sendungen."
1391
 
1392
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:618
1393
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1275
1394
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1478
1395
  msgctxt "dhl"
1396
  msgid "Labels"
1397
  msgstr "Labels"
1398
 
1399
  # @ woocommerce-germanized
1400
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:619
1401
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1276
1402
  msgctxt "dhl"
1403
  msgid "Automatically create labels for shipments."
1404
  msgstr "Automatisch Labels zu Sendungen erstellen."
1405
 
1406
  # @ woocommerce-germanized
1407
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:626
1408
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:653
1409
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1283
1410
  msgctxt "dhl"
1411
  msgid "Status"
1412
  msgstr "Status"
1413
 
1414
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:630
1415
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1287
1416
  msgctxt "dhl"
1417
  msgid "Choose a shipment status which should trigger generation of a label."
1418
  msgstr ""
1419
  "Wähle einen Sendungsstatus aus, der die Erzeugung eines Labels auslösen soll."
1420
 
1421
  # @ woocommerce-germanized
1422
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:637
1423
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1294
1424
  msgctxt "dhl"
1425
  msgid "Shipment Status"
1426
  msgstr "Sendungsstatus"
1427
 
1428
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:638
1429
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1295
1430
  msgctxt "dhl"
1431
  msgid "Mark shipment as shipped after label has been created successfully."
1432
  msgstr ""
1433
  "Sendung als versandt markieren, sobald ein Label erfolgreich erstellt wurde."
1434
 
1435
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:645
1436
  msgctxt "dhl"
1437
  msgid "Returns"
1438
  msgstr "Retouren"
1439
 
1440
  # @ woocommerce-germanized
1441
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:646
1442
  msgctxt "dhl"
1443
  msgid "Automatically create labels for returns."
1444
  msgstr "Automatisch Retourenlabels zu Retourensendungen erstellen."
1445
 
1446
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:657
1447
  msgctxt "dhl"
1448
  msgid ""
1449
  "Choose a shipment status which should trigger generation of a return label."
1451
  "Wähle einen Sendungsstatus aus, der die Erzeugung eines Retourenlabels "
1452
  "auslösen soll."
1453
 
1454
+ # @ woocommerce-germanized
1455
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:707
1456
+ msgctxt "dhl"
1457
+ msgid "Street number"
1458
+ msgstr "Hausnummer"
1459
+
1460
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:708
1461
+ msgctxt "dhl"
1462
+ msgid ""
1463
+ "Force existence of a street number within the first address field during "
1464
+ "checkout for EU countries."
1465
+ msgstr ""
1466
+ "Hausnummer im ersten Adressfeld verpflichtend abfragen, falls es sich um ein "
1467
+ "EU-Land handelt."
1468
+
1469
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:709
1470
+ msgctxt "dhl"
1471
+ msgid ""
1472
+ "Enabling this option will force a street number to be provided during "
1473
+ "checkout within the first address field to prevent missing or wrong data "
1474
+ "sets."
1475
+ msgstr ""
1476
+ "Die Aktivierung dieser Option sorgt dafür, dass die Hausnummer im ersten "
1477
+ "Adressfeld in der Kasse abgefragt wird. Damit verhinderst du fehlende oder "
1478
+ "falsche Datensätze."
1479
+
1480
+ # @ woocommerce-germanized
1481
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:717
1482
+ msgctxt "dhl"
1483
+ msgid "Shipper Address"
1484
+ msgstr "Absenderadresse"
1485
+
1486
+ # @ woocommerce-germanized
1487
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:741
1488
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:810
1489
+ msgctxt "dhl"
1490
+ msgid "Street Number"
1491
+ msgstr "Hausnummer"
1492
+
1493
+ # @ woocommerce-germanized
1494
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:762
1495
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:831
1496
+ msgctxt "dhl"
1497
+ msgid "Country"
1498
+ msgstr "Land"
1499
+
1500
+ # @ woocommerce-germanized
1501
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:786
1502
+ msgctxt "dhl"
1503
+ msgid "Inlay Return Address"
1504
+ msgstr "Beilageretouren Adresse"
1505
+
1506
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:862
1507
  #, php-format
1508
  msgctxt "dhl"
1509
  msgid ""
1514
  "können von abweichenden Einstellungen der %s überschrieben werden."
1515
 
1516
  # @ woocommerce-germanized
1517
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:862
1518
  msgctxt "dhl"
1519
  msgid "shipping method"
1520
  msgstr "Versandmethode"
1521
 
1522
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:872
1523
  #, php-format
1524
  msgctxt "dhl"
1525
  msgid ""
1530
  "an. Stelle sicher, dass dein %s DHL Retoure Online enthält."
1531
 
1532
  # @ woocommerce-germanized
1533
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:872
1534
  msgctxt "dhl"
1535
  msgid "contract"
1536
  msgstr "Vertrag"
1537
 
1538
  # @ woocommerce-germanized
1539
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:884
1540
  msgctxt "dhl"
1541
  msgid "Default Services"
1542
  msgstr "Standard-Services"
1543
 
1544
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:884
1545
  #, php-format
1546
  msgctxt "dhl"
1547
  msgid ""
1551
  "Passe hier an, welche der Services als Standard für deine Labels gebucht "
1552
  "werden sollen. Finde mehr über diese %s heraus."
1553
 
1554
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:884
1555
  msgctxt "dhl"
1556
  msgid "nationwide services"
1557
  msgstr "nationalen Services"
1558
 
1559
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:896
1560
  msgctxt "dhl"
1561
  msgid ""
1562
  "Choose whether and under which conditions labels for your shipments shall be "
1566
  "erzeugt werden sollen."
1567
 
1568
  # @ woocommerce-germanized
1569
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:907
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1570
  msgctxt "dhl"
1571
  msgid "Bank Account"
1572
  msgstr "Bankkonto"
1573
 
1574
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:907
1575
  msgctxt "dhl"
1576
  msgid "Enter your bank details needed for services that use COD."
1577
  msgstr ""
1579
  "werden sollen."
1580
 
1581
  # @ woocommerce-germanized
1582
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:910
1583
  msgctxt "dhl"
1584
  msgid "Holder"
1585
  msgstr "Kontoinhaber"
1586
 
1587
  # @ woocommerce-germanized
1588
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:917
1589
  msgctxt "dhl"
1590
  msgid "Bank Name"
1591
  msgstr "Name der Bank"
1592
 
1593
  # @ woocommerce-germanized
1594
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:924
1595
  msgctxt "dhl"
1596
  msgid "IBAN"
1597
  msgstr "IBAN"
1598
 
1599
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:931
1600
  msgctxt "dhl"
1601
  msgid "BIC"
1602
  msgstr "BIC"
1603
 
1604
  # @ woocommerce-germanized
1605
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:938
1606
  msgctxt "dhl"
1607
  msgid "Payment Reference"
1608
  msgstr "Zahlungsreferenz"
1609
 
1610
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:942
1611
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:951
1612
  #, php-format
1613
  msgctxt "dhl"
1614
  msgid ""
1619
  "%s. Der Text ist auf 35 Zeichen begrenzt."
1620
 
1621
  # @ woocommerce-germanized
1622
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:947
1623
  msgctxt "dhl"
1624
  msgid "Payment Reference 2"
1625
  msgstr "Zahlungsreferenz 2"
1626
 
1627
  # @ woocommerce-germanized
1628
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:965
1629
  msgctxt "dhl"
1630
  msgid "Enable creating labels for return shipments."
1631
  msgstr "Automatisch Retourenlabels zu Retourensendungen erstellen."
1632
 
1633
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:965
1634
  msgctxt "dhl"
1635
  msgid ""
1636
  "By enabling this option you might generate retoure labels for return "
1639
  "Mit der Aktivierung dieser Option kannst du Retourenlabels zu "
1640
  "Retourensendungen erstellen und diese per E-Mail an den Kunden weiterleiten."
1641
 
1642
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:986
1643
  msgctxt "dhl"
1644
  msgid "Enable preferred day delivery."
1645
  msgstr "Aktiviere die Lieferung am Wunschtag."
1646
 
1647
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:986
1648
  msgctxt "dhl"
1649
  msgid ""
1650
  "Enabling this option will display options for the user to select their "
1653
  "Diese Option aktiviert die Auswahl eines Wunschtags durch den Kunden in der "
1654
  "Kasse."
1655
 
1656
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:995
1657
  msgctxt "dhl"
1658
  msgid ""
1659
  "Insert gross value as surcharge for preferred day delivery. Insert 0 to "
1663
  "Setze den Wert auf 0 um den Service kostenlos anzubieten."
1664
 
1665
  # @ woocommerce-germanized
1666
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1006
1667
  msgctxt "dhl"
1668
  msgid "Enable preferred location delivery."
1669
  msgstr "Lieferung an einen Wunschort aktivieren."
1670
 
1671
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1006
1672
  msgctxt "dhl"
1673
  msgid ""
1674
  "Enabling this option will display options for the user to select their "
1677
  "Diese Option aktiviert die Auswahl eines Wunschorts durch den Kunden in der "
1678
  "Kasse ."
1679
 
1680
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1014
1681
  msgctxt "dhl"
1682
  msgid "Enable preferred neighbor delivery."
1683
  msgstr "Aktiviere die Lieferung an einen Wunschnachbarn."
1684
 
1685
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1014
1686
  msgctxt "dhl"
1687
  msgid ""
1688
  "Enabling this option will display options for the user to deliver to their "
1691
  "Diese Option aktiviert die Auswahl eines Wunschnachbarn durch den Kunden in "
1692
  "der Kasse."
1693
 
1694
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1040
1695
  msgctxt "dhl"
1696
  msgid "Cut-off time"
1697
  msgstr "Cut-off-Zeit"
1698
 
1699
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1043
1700
  msgctxt "dhl"
1701
  msgid ""
1702
  "The cut-off time is the latest possible order time up to which the minimum "
1709
  "Nach Überschreitung dieses Zeitpunktes, wird der früheste verfügbare "
1710
  "Wunschtag in der Kasse um einen Tag erhöht (Tag der Bestellung + 3 Werktage)."
1711
 
1712
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1049
1713
  msgctxt "dhl"
1714
  msgid "Preparation days"
1715
  msgstr "Bearbeitungstage"
1716
 
1717
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1052
1718
  msgctxt "dhl"
1719
  msgid ""
1720
  "If you need more time to prepare your shipments you might want to add a "
1725
  "hier eine statische Anzahl an Tagen hinterlegen, die zum frühesten "
1726
  "auswählbaren Wunschtag hinzugefügt werden."
1727
 
1728
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1059
1729
  msgctxt "dhl"
1730
  msgid "Exclude days of transfer"
1731
  msgstr "Übergabetage ausschließen"
1732
 
1733
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1060
1734
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:31
1735
  msgctxt "dhl"
1736
  msgid "Monday"
1737
  msgstr "Montag"
1738
 
1739
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1061
1740
  msgctxt "dhl"
1741
  msgid "Exclude days from transferring shipments to DHL."
1742
  msgstr "Schließe bestimmte Wochentage für die Übergabe an DHL aus."
1743
 
1744
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1070
1745
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:32
1746
  msgctxt "dhl"
1747
  msgid "Tuesday"
1748
  msgstr "Dienstag"
1749
 
1750
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1079
1751
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:33
1752
  msgctxt "dhl"
1753
  msgid "Wednesday"
1754
  msgstr "Mittwoch"
1755
 
1756
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1088
1757
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:34
1758
  msgctxt "dhl"
1759
  msgid "Thursday"
1760
  msgstr "Donnerstag"
1761
 
1762
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1097
1763
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:35
1764
  msgctxt "dhl"
1765
  msgid "Friday"
1766
  msgstr "Freitag"
1767
 
1768
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1106
1769
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:36
1770
  msgctxt "dhl"
1771
  msgid "Saturday"
1772
  msgstr "Samstag"
1773
 
1774
  # @ woocommerce-germanized
1775
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1115
1776
  msgctxt "dhl"
1777
  msgid "Exclude gateways"
1778
  msgstr "Zahlungsarten ausschließen"
1779
 
1780
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1117
1781
  msgctxt "dhl"
1782
  msgid "Select payment gateways to be excluded from showing preferred services."
1783
  msgstr ""
1784
  "Wähle Zahlungsarten aus, für die die Wunschpaket-Services nicht zur "
1785
  "Verfügung stehen sollen."
1786
 
1787
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1142
1788
  msgctxt "dhl"
1789
  msgid "Let customers find a DHL location on a map."
1790
  msgstr "Lasse Kunden einen DHL Standort auf der Karte auswählen."
1791
 
1792
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1142
1793
  msgctxt "dhl"
1794
  msgid ""
1795
  "Enable this option to let your customers choose a pickup option from a map "
1800
  "einer Karten in der Kasse zu ermöglichen. Wenn diese Option deaktiviert ist, "
1801
  "wird stattdessen auf die DHL Website verwiesen."
1802
 
1803
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1149
1804
  msgctxt "dhl"
1805
  msgid "Google Maps Key"
1806
  msgstr "Google Maps Schlüssel"
1807
 
1808
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1153
1809
  #, php-format
1810
  msgctxt "dhl"
1811
  msgid ""
1815
  "Um eine Karte integrieren zu können, benötigst du einen gültigen API-"
1816
  "Schlüssel für Google Maps. Du kannst %s."
1817
 
1818
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1153
1819
  msgctxt "dhl"
1820
  msgid "retrieve a new one"
1821
  msgstr "hier einen neuen erstellen"
1822
 
1823
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1158
1824
  msgctxt "dhl"
1825
  msgid "Limit results"
1826
  msgstr "Suchergebnisse begrenzen"
1827
 
1828
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1162
1829
  msgctxt "dhl"
1830
  msgid "Limit the number of DHL locations shown on the map"
1831
  msgstr "Begrenzt die Anzahl der angezeigten DHL Standorte auf der Karte"
1832
 
1833
  # @ woocommerce-germanized
1834
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1179
1835
  msgctxt "dhl"
1836
  msgid "Enable Internetmarke integration."
1837
  msgstr "Internetmarke Integration aktivieren."
1838
 
1839
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1186
1840
  msgctxt "dhl"
1841
  msgid "Username"
1842
  msgstr "Benutzer"
1843
 
1844
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1188
1845
  #, php-format
1846
  msgctxt "dhl"
1847
  msgid ""
1852
  "Bitte teste deine Zugangsdaten bevor du eine Verbindung aufbaust."
1853
 
1854
  # @ woocommerce-germanized
1855
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1195
1856
  msgctxt "dhl"
1857
  msgid "Password"
1858
  msgstr "Passwort"
1859
 
1860
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1237
1861
  msgctxt "dhl"
1862
  msgid ""
1863
  "Please select your default shipping service for domestic shipments that you "
1868
  "deine Kunden anbietest."
1869
 
1870
  # @ woocommerce-germanized
1871
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1243
1872
  msgctxt "dhl"
1873
  msgid "EU Default Service"
1874
  msgstr "Standard Service (EU)"
1875
 
1876
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1247
1877
  msgctxt "dhl"
1878
  msgid ""
1879
  "Please select your default shipping service for EU shipments that you want "
1882
  "Bitte wähle das Standard-Produkt für EU Sendungen aus, das du für deine "
1883
  "Kunden anbietest."
1884
 
1885
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1257
1886
  msgctxt "dhl"
1887
  msgid ""
1888
  "Please select your default shipping service for cross-border shipments that "
1892
  "für deine Kunden anbietest."
1893
 
1894
  # @ woocommerce-germanized
1895
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1314
1896
  msgctxt "dhl"
1897
  msgid "Default Format"
1898
  msgstr "Standardformat"
1899
 
1900
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1317
1901
  #, php-format
1902
  msgctxt "dhl"
1903
  msgid ""
1909
  "verwendet wird. Du kannst die Liste auch manuell <a href=\"%s"
1910
  "\">aktualisieren</a>, falls notwendig."
1911
 
1912
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1344
1913
  msgctxt "dhl"
1914
  msgid "Portokasse"
1915
  msgstr "Portokasse"
1916
 
1917
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1347
1918
  msgctxt "dhl"
1919
  msgid "Balance"
1920
  msgstr "Guthaben"
1921
 
1922
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1354
1923
  msgctxt "dhl"
1924
  msgid "Charge (€)"
1925
  msgstr "Aufladen (€)"
1926
 
1927
  # @ woocommerce-germanized
1928
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1364
1929
  msgctxt "dhl"
1930
  msgid "Products"
1931
  msgstr "Produkte"
1932
 
1933
  # @ woocommerce-germanized
1934
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1367
1935
  msgctxt "dhl"
1936
  msgid "Available Products"
1937
  msgstr "Verfügbare Produkte"
1938
 
1939
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1370
1940
  #, php-format
1941
  msgctxt "dhl"
1942
  msgid ""
1948
  "sollen. Du kannst die Produktliste auch manuell <a href=\"%s"
1949
  "\">aktualisieren</a>, falls notwendig."
1950
 
1951
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1395
1952
  msgctxt "dhl"
1953
  msgid "API Error"
1954
  msgstr "API Fehler"
1955
 
1956
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1436
1957
  msgctxt "dhl"
1958
  msgid "Charge Portokasse"
1959
  msgstr "Portokasse aufladen"
1960
 
1961
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1437
1962
  #, php-format
1963
  msgctxt "dhl"
1964
  msgid "The minimum amount is %s"
1965
  msgstr "Der Minimalbetrag beträgt %s"
1966
 
1967
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1447
1968
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1449
1969
  msgctxt "dhl"
1970
  msgid "Not yet a customer?"
1971
  msgstr "Noch kein Kunde?"
1972
 
1973
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1479
1974
  msgctxt "dhl"
1975
  msgid "Internetmarke"
1976
  msgstr "Internetmarke"
1977
 
1978
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1480
1979
+ msgctxt "dhl"
1980
+ msgid "Addresses"
1981
+ msgstr "Adressen"
1982
+
1983
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1481
1984
  msgctxt "dhl"
1985
  msgid "Preferred Services"
1986
  msgstr "Wunschpaket"
1987
 
1988
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1482
1989
  msgctxt "dhl"
1990
  msgid "Parcel Pickup"
1991
  msgstr "Standorte"
2281
  msgstr ""
2282
  "Die Abrechnungsnummer konnte nicht erzeugt werden. Die Teilnahmenummer fehlt."
2283
 
2284
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:651
2285
  #, php-format
2286
  msgctxt "dhl"
2287
  msgid "Only %s shipment items can be processed, your shipment has %s items."
2408
  msgid "POST error or timeout occured. Please try again later."
2409
  msgstr "POST Fehler oder Zeitüberschreitung. Bitte später erneut versuchen."
2410
 
2411
+ #: woocommerce-germanized-dhl/src/DataStores/Label.php:319
2412
  msgctxt "dhl"
2413
  msgid "Invalid label."
2414
  msgstr "Ungültiges Label."
2415
 
2416
+ #: woocommerce-germanized-dhl/src/Order.php:297
2417
  #: woocommerce-germanized-dhl/src/SimpleLabel.php:157
2418
  #, php-format
2419
  msgctxt "dhl time-span"
2588
  msgid "retry"
2589
  msgstr "Erneut versuchen"
2590
 
2591
+ #: woocommerce-germanized-dhl/src/ParcelServices.php:138
2592
  msgctxt "dhl"
2593
  msgid "DHL Preferred Day"
2594
  msgstr "DHL Wunschtag"
2595
 
2596
+ #: woocommerce-germanized-dhl/src/ParcelServices.php:281
2597
  msgctxt "dhl"
2598
  msgid "Sorry, but the preferred day you have chosen is no longer available."
2599
  msgstr ""
2600
  "Entschuldigung, der von dir ausgewählte Wunschtag steht leider nicht mehr "
2601
  "zur Verfügung."
2602
 
2603
+ #: woocommerce-germanized-dhl/src/ParcelServices.php:304
2604
  msgctxt "dhl"
2605
  msgid "Please choose a preferred location."
2606
  msgstr "Bitte wähle einen Wunschort aus."
2607
 
2608
  # @ woocommerce-germanized
2609
+ #: woocommerce-germanized-dhl/src/ParcelServices.php:316
2610
  msgctxt "dhl"
2611
  msgid "Please choose name and address of your preferred neighbor."
2612
  msgstr "Bitte wähle einen Namen und die Adresse deines Wunschnachbars."
2726
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:42
2727
  #, php-format
2728
  msgctxt "dhl"
2729
+ msgid "There is a surcharge of %1$s %2$s for this service.*"
2730
+ msgstr "Für diesen Service fällt ein Aufpreis in Höhe von %1$s %2$s. an.*"
2731
+
2732
+ # @ woocommerce-germanized
2733
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:42
2734
+ msgctxt "dhl"
2735
+ msgid "incl. VAT"
2736
+ msgstr "inkl. MwSt."
2737
+
2738
+ # @ woocommerce-germanized
2739
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:42
2740
+ msgctxt "dhl"
2741
+ msgid "excl. VAT"
2742
+ msgstr "zzgl. MwSt."
2743
 
2744
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:65
2745
  msgctxt "dhl"
2846
 
2847
  # @ woocommerce-germanized
2848
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:58
2849
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1038
2850
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:24
2851
  #: woocommerce-germanized-shipments/src/Admin/Table.php:688
2852
  msgctxt "shipments"
2978
  msgstr "Löschen"
2979
 
2980
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-list.php:22
2981
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:87
2982
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:75
2983
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:509
2984
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:630
3010
 
3011
  # @ woocommerce-germanized
3012
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:19
3013
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:80
3014
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:439
3015
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:508
3016
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:596
3277
  msgstr "Text der unterhalb des Inhalts der E-Mail angezeigt werden soll."
3278
 
3279
  #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:356
3280
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:970
3281
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1000
3282
  #: woocommerce-germanized-shipments/templates/shipment/shipment-details-address.php:28
3283
  msgctxt "shipments"
3284
  msgid "N/A"
3339
  msgid "Letter"
3340
  msgstr "Brief"
3341
 
3342
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:79
3343
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1036
3344
  msgctxt "shipments"
3345
  msgid "Shipment"
3346
  msgstr "Sendung"
3347
 
3348
  # @ woocommerce-germanized
3349
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:86
3350
  msgctxt "shipments"
3351
  msgid "Return"
3352
  msgstr "Retoure"
3353
 
3354
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:113
3355
  msgctxt "shipments"
3356
  msgid "Not shipped"
3357
  msgstr "Nicht versandt"
3358
 
3359
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:114
3360
  msgctxt "shipments"
3361
  msgid "Partially shipped"
3362
  msgstr "Teilweise versandt"
3363
 
3364
  # @ woocommerce-germanized
3365
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:115
3366
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:332
3367
  #: woocommerce-germanized-shipments/src/Admin/Table.php:854
3368
  msgctxt "shipments"
3369
  msgid "Shipped"
3370
  msgstr "Versandt"
3371
 
3372
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:132
3373
  msgctxt "shipments"
3374
  msgid "Open"
3375
  msgstr "Offen"
3376
 
3377
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:133
3378
  msgctxt "shipments"
3379
  msgid "Partially returned"
3380
  msgstr "Teilweise retourniert"
3381
 
3382
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:134
3383
  msgctxt "shipments"
3384
  msgid "Returned"
3385
  msgstr "Retourniert"
3386
 
3387
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:330
3388
  msgctxt "shipments"
3389
  msgid "Draft"
3390
  msgstr "Entwurf"
3391
 
3392
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:331
3393
  #: woocommerce-germanized-shipments/src/Admin/Table.php:846
3394
  msgctxt "shipments"
3395
  msgid "Processing"
3396
  msgstr "In Bearbeitung"
3397
 
3398
  # @ woocommerce-germanized
3399
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:333
3400
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:50
3401
  msgctxt "shipments"
3402
  msgid "Delivered"
3403
  msgstr "Geliefert"
3404
 
3405
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:334
3406
  msgctxt "shipments"
3407
  msgid "Requested"
3408
  msgstr "Beantragt"
3409
 
3410
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:383
3411
  #: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:81
3412
  #: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:135
3413
  msgctxt "shipments"
3414
  msgid "Invalid order."
3415
  msgstr "Ungültige Bestellung."
3416
 
3417
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:387
3418
  msgctxt "shipments"
3419
  msgid "This order is already fully returned."
3420
  msgstr "Diese Bestellung wurde bereits vollständig zurückgesendet."
3421
 
3422
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:398
3423
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:439
3424
  msgctxt "shipments"
3425
  msgid "Error while creating the shipment instance"
3426
  msgstr "Fehler beim Erstellen der Sendungsinstanz"
3427
 
3428
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:424
3429
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:428
3430
+ #: woocommerce-germanized-shipments/src/ReturnShipment.php:428
3431
+ #: woocommerce-germanized-shipments/src/ReturnShipment.php:499
3432
  #: woocommerce-germanized-shipments/src/SimpleShipment.php:118
3433
+ #: woocommerce-germanized-shipments/src/SimpleShipment.php:226
3434
  msgctxt "shipments"
3435
  msgid "Invalid shipment order"
3436
  msgstr "Ungültige Bestellung zur Sendung"
3437
 
3438
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:458
3439
  msgctxt "shipments"
3440
  msgid "Invalid order item"
3441
  msgstr "Ungültige Bestellposition"
3442
 
3443
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:580
3444
  msgctxt "shipments"
3445
  msgid "Invalid shipment item"
3446
  msgstr "Ungültige Sendungsposition"
3447
 
3448
  # @ woocommerce-germanized
3449
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:653
3450
  msgctxt "shipments"
3451
  msgid "None"
3452
  msgstr "Keiner"
3453
 
3454
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:726
3455
  msgctxt "shipments"
3456
  msgid "Error while uploading file."
3457
  msgstr "Fehler beim Hochladen der Datei."
3458
 
3459
  # @ woocommerce-germanized
3460
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1037
3461
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:23
3462
  #: woocommerce-germanized-shipments/src/Admin/Table.php:687
3463
  msgctxt "shipments"
3464
  msgid "Date"
3465
  msgstr "Datum"
3466
 
3467
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1039
3468
  #: woocommerce-germanized-shipments/templates/shipment/shipment-details-tracking.php:23
3469
  msgctxt "shipments"
3470
  msgid "Tracking"
3471
  msgstr "Sendungsverfolgung"
3472
 
3473
  # @ woocommerce-germanized
3474
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1040
3475
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:98
3476
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:30
3477
  #: woocommerce-germanized-shipments/src/Admin/Table.php:694
3479
  msgid "Actions"
3480
  msgstr "Aktionen"
3481
 
3482
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1276
3483
  msgctxt "shipments"
3484
  msgid "View"
3485
  msgstr "Anzeigen"
3486
 
3487
  # @ woocommerce-germanized
3488
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1283
3489
  #: woocommerce-germanized-shipments/src/Admin/Table.php:865
3490
  #: woocommerce-germanized-shipments/src/Ajax.php:337
3491
  msgctxt "shipments"
4715
  msgstr "%1$s (%2$s, %3$s)"
4716
 
4717
  #: woocommerce-germanized-shipments/src/ReturnShipment.php:356
4718
+ #: woocommerce-germanized-shipments/src/Shipment.php:912
4719
  #, php-format
4720
  msgctxt "full name"
4721
  msgid "%1$s %2$s"
5493
  "Wähle Versandmethoden aus für die die Paketdienstleister Checkbox angezeigt "
5494
  "werden soll."
5495
 
5496
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-notices.php:114
5497
+ #, php-format
5498
+ msgid ""
5499
+ "<strong>Be aware!</strong> This update is not compatible with your current "
5500
+ "Germanized Pro version. Please check for updates (%s) before updating "
5501
+ "Germanized to prevent compatibility issues."
5502
+ msgstr ""
5503
+ "<strong>Achtung!</strong> Dieses Update ist nicht kompatibel mit deiner "
5504
+ "aktuellen Germanized Pro Version. Bitte aktualisiere deine Pro-Version vorab "
5505
+ "(%s) um Kompatibilitätsprobleme zu verhindern."
5506
+
5507
  #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-product-categories.php:58
5508
  #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-product-categories.php:79
5509
  #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:183
5535
  #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:73
5536
  #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:153
5537
  #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:79
5538
+ #: woocommerce-germanized/woocommerce-germanized.php:783
5539
  msgid "Settings"
5540
  msgstr "Einstellungen"
5541
 
6207
  msgid "Found Bugs?"
6208
  msgstr "Bugs oder Wünsche melden"
6209
 
6210
+ # @ woocommerce-germanized
6211
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-shipping-excl-tax.php:29
6212
+ msgid "Shipping and fee taxes"
6213
+ msgstr "Besteuerung von Nebenkosten"
6214
+
6215
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-shipping-excl-tax.php:33
6216
+ msgid ""
6217
+ "Starting with the newest Germanized version your <strong>shipping costs and "
6218
+ "fees will no longer be treated including tax</strong>. This change in "
6219
+ "Germanized was necessary due to your prices being treated excluding taxes "
6220
+ "(see your WooCommerce tax settings). Due to the way WooCommerce calculates "
6221
+ "taxes for orders (based on prices excluding taxes) there is no consistent "
6222
+ "way to (re-)calculate shipping costs and/or fee taxes if they are treated "
6223
+ "including taxes. Please check your shipping costs and fees and edit costs "
6224
+ "accordingly."
6225
+ msgstr ""
6226
+ "Mit der neuesten Germanized Version werden <strong>Versandkosten und "
6227
+ "Gebühren nicht länger als brutto betrachtet</strong>. Diese Anpassung ist "
6228
+ "notwendig, da du in den WooCommerce MwSt.-Einstellungen die Netto-Option "
6229
+ "nutzt. Aufgrund der Steuerberechnung in WooCommerce (basierend auf "
6230
+ "Nettopreisen) gibt es keine konsistente Möglichkeit Steuern auf "
6231
+ "Versandkosten und Gebühren auf Basis von Bruttopreisen zu berechnen. Bitte "
6232
+ "prüfe deine Versandkosten und Gebühren und passe sie falls notwendig an."
6233
+
6234
+ # @ woocommerce-germanized
6235
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-shipping-excl-tax.php:40
6236
+ msgid "Manage shipping methods"
6237
+ msgstr "Versandmethoden verwalten"
6238
+
6239
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-shipping-excl-tax.php:45
6240
+ #: woocommerce-germanized/includes/admin/settings/abstract-wc-gzd-settings-tab.php:152
6241
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-dhl.php:35
6242
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:61
6243
+ msgid "Learn more"
6244
+ msgstr "Mehr erfahren"
6245
+
6246
  #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-template-outdated.php:53
6247
  msgid "Your theme contains outdated Germanized template files"
6248
  msgstr "Dein Theme enthält veraltete Germanized Templates"
6364
  msgid "Upgrade now"
6365
  msgstr "Jetzt upgraden"
6366
 
 
 
 
 
 
 
6367
  # @ woocommerce-germanized
6368
  # @ woocommerce
6369
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-pointers.php:78
6895
  #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:144
6896
  #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:138
6897
  #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:145
6898
+ #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:559
6899
+ #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:572
6900
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:225
6901
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:233
6902
  msgid "Title"
6903
  msgstr "Anrede"
6904
 
7234
  # @ woocommerce-germanized
7235
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:209
7236
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:371
7237
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:131
7238
  msgid "Notice Text"
7239
  msgstr "Hinweistext"
7240
 
7689
 
7690
  # @ woocommerce-germanized
7691
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:311
7692
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
7693
  msgid "Tax"
7694
  msgstr "Steuer"
7695
 
7987
  msgstr "Umsatzsteuer"
7988
 
7989
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:31
7990
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:101
7991
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:91
7992
  msgid "Split-tax"
7993
  msgstr "Anteilige Steuerberechnung"
7994
 
7997
  msgstr "Differenzbesteuerung"
7998
 
7999
  # @ woocommerce-germanized
8000
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:42
8001
  #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:101
8002
  msgid "Virtual VAT"
8003
  msgstr "USt. Änderung 2015"
8004
 
8005
  # @ woocommerce-germanized
8006
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:43
8007
  msgid ""
8008
  "Enable if you want to charge your customer's countries' VAT for virtual "
8009
  "products."
8011
  "Für virtuelle Produkte den USt.-Satz des Dienstleistungsempfängers berechnen."
8012
 
8013
  # @ woocommerce-germanized
8014
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:43
8015
  #, php-format
8016
  msgid ""
8017
  "New EU VAT rule applies on 01.01.2015. Make sure that every digital or "
8034
  "dazu findest du <a href=\"%s\" target=\"_blank\">hier</a>."
8035
 
8036
  # @ woocommerce-germanized
8037
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:55
8038
  msgid "Tax Rate"
8039
  msgstr "Steuersatz"
8040
 
8041
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:56
8042
  msgid "Hide specific tax rate within shop pages."
8043
  msgstr "Entferne die Anzeige des konkreten Steuersatzes im Shop."
8044
 
8045
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:60
8046
  msgid ""
8047
  "This option will make sure that within shop pages no specific tax rates are "
8048
  "shown. Instead only incl. tax or excl. tax notice is shown."
8051
  "Steuersatz im MwSt.-Hinweis nicht auftaucht. Stattdessen steht dort inkl. "
8052
  "bzw. exkl. MwSt."
8053
 
8054
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:72
8055
  msgid "VAT ID"
8056
  msgstr "Umsatzsteuer-ID"
8057
 
8058
  # @ woocommerce-germanized
8059
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:75
8060
  #, php-format
8061
  msgid ""
8062
  "%sUpgrade to %spro%s%s to unlock this feature and enjoy premium support."
8065
  "erhalte professionellen Support."
8066
 
8067
  # @ woocommerce-germanized
8068
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
8069
  #, php-format
8070
  msgid ""
8071
+ "By choosing this option shipping cost and fee taxes will be calculated based "
8072
+ "on the tax rates included within the cart. Imagine the following example. "
8073
+ "The tax share is calculated based on net prices. Further information can be "
8074
+ "found <a href=\"%s\" target=\"_blank\">here</a>. %s"
8075
  msgstr ""
8076
+ "Mit der Auswahl dieser Option werden die Steuern für Versandkosten und "
8077
+ "Gebühren basierend auf den Anteilen der Steuersätze der Artikel im Warenkorb "
8078
+ "berechnet. Weitere Informationen findest du <a href=\"%s\" target=\"_blank"
8079
+ "\">hier</a>. %s"
 
8080
 
8081
  # @ woocommerce-germanized
8082
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
8083
+ msgid "Product"
8084
+ msgstr "Produkt"
8085
 
8086
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
8087
+ msgid "Price"
8088
+ msgstr "Preis"
 
8089
 
8090
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
8091
+ msgid "Price (net)"
8092
+ msgstr "Preis (netto)"
 
 
8093
 
8094
  # @ woocommerce-germanized
8095
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
8096
+ msgid "Tax rate"
8097
+ msgstr "Steuersatz"
 
8098
 
8099
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
8100
+ msgid "Share"
8101
+ msgstr "Anteil"
 
 
 
 
 
 
8102
 
8103
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
8104
+ msgid "Book"
8105
+ msgstr "Buch"
 
8106
 
8107
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
8108
+ msgid "DVD"
8109
+ msgstr "DVD"
 
8110
 
8111
  # @ woocommerce-germanized
8112
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
8113
+ msgid "Shipping"
8114
+ msgstr "Versand"
8115
 
8116
  # @ woocommerce-germanized
8117
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:102
8118
  msgid ""
8119
+ "Enable split-tax calculation for additional costs (shipping costs and fees)."
 
 
8120
  msgstr ""
8121
+ "Aktiviere die anteilige Besteuerung für Nebenkosten (Versandkosten und "
8122
+ "Gebühren)."
8123
 
8124
  # @ woocommerce-germanized
8125
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:117
8126
  msgid "Taxation Notice"
8127
  msgstr "Steuerhinweis"
8128
 
8129
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:118
8130
  msgid "Enable differential taxation text notice beneath product price."
8131
  msgstr ""
8132
  "Aktiviere den Hinweis zur Differenzbesteuerung unterhalb des Produktpreises."
8133
 
8134
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:118
8135
  msgid ""
8136
  "If you have disabled this option, a normal VAT notice will be displayed, "
8137
  "which is sufficient as Trusted Shops states. To further inform your "
8141
  "angezeigt. Der Standard-Hinweis ist laut Trusted Shops bereits ausreichend. "
8142
  "Du kannst diesen Hinweis nutzen um deine Kunden besser zu informieren."
8143
 
8144
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:124
8145
  msgid "Mixed carts"
8146
  msgstr "Gemischte Warenkörbe"
8147
 
8148
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:125
8149
  msgid ""
8150
  "Disallow buying normal and differential taxed products at the same time."
8151
  msgstr ""
8152
  "Verbiete gleichzeitig normale und differenzbesteuerte Produkte zu kaufen."
8153
 
8154
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:125
8155
  #, php-format
8156
  msgid ""
8157
  "Shipping costs for differential taxed products may not be taxed (compare %s) "
8165
  "verhindert, dass Kunden normale und differenzbesteuerte Produkte "
8166
  "gleichzeitig kaufen."
8167
 
8168
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:125
8169
  msgid "HK Hamburg"
8170
  msgstr "HK Hamburg"
8171
 
8172
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:132
8173
  msgid ""
8174
  "This text will be shown as a further notice for the customer to inform him "
8175
  "about differential taxation."
8177
  "Dieser Text dient zur weiterführenden Information deiner Kunden bzgl. der "
8178
  "Differenzbesteuerung."
8179
 
8180
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:137
8181
  msgid "incl. VAT (differential taxation according to §25a UStG.)"
8182
  msgstr "inkl. MwSt. (differenzbesteuert nach §25a UStG.)"
8183
 
8184
  # @ woocommerce-germanized
8185
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:141
8186
  msgid "Checkout & E-Mails"
8187
  msgstr "Kasse & E-Mails"
8188
 
8189
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:142
8190
  msgid "Enable differential taxation notice during checkout and in emails."
8191
  msgstr ""
8192
  "Aktiviere den Hinweis zur Differenzbesteuerung im Checkout und in E-Mails."
8193
 
8194
  # @ woocommerce-germanized
8195
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:187
8196
  msgid ""
8197
  "Sorry, but the new Virtual VAT rules cannot be applied to small business."
8198
  msgstr ""
8332
  msgid "Hide"
8333
  msgstr "Ausblenden"
8334
 
8335
+ #: woocommerce-germanized/includes/admin/views/html-notice-update-pro-incompatible.php:15
8336
+ #, php-format
8337
+ msgid ""
8338
+ "<strong>Be aware!</strong> This update is not compatible with your current "
8339
+ "Germanized Pro version. Please <a href=\"%s\">check for updates</a> before "
8340
+ "updating Germanized to prevent <a href=\"%s\">compatibility issues</a>."
8341
+ msgstr ""
8342
+ "<strong>Achtung!</strong> Dieses Update ist nicht kompatibel mit deiner "
8343
+ "aktuellen Germanized Pro Version. Bitte <a href=\"%s\">aktualisiere</a> "
8344
+ "deine Pro-Version vorab um <a href=\"%s\">Kompatibilitätsprobleme</a> zu "
8345
+ "verhindern."
8346
+
8347
  # @ woocommerce-germanized
8348
  #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:12
8349
  msgid ""
8383
  msgid "Term doesn’t exist"
8384
  msgstr "Term existiert nicht"
8385
 
 
 
 
 
 
 
 
 
 
 
 
8386
  # @ woocommerce-germanized
8387
  #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:96
8388
+ msgid "Additional costs include taxes"
8389
+ msgstr "Nebenkosten beinhalten Steuern"
8390
 
8391
  # @ woocommerce-germanized
8392
  #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:106
8922
  "Vielen Dank. Wir haben deinen Widerruf erhalten. Du bekommst in Kürze eine E-"
8923
  "Mail mit deinen Daten als Bestätigung."
8924
 
8925
+ #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:233
8926
  msgid ""
8927
  "Sorry, but differential taxed products cannot be purchased with normal "
8928
  "products at the same time."
8930
  "Entschuldigung, differenzbesteuerte Produkte können nicht gemeinsam mit "
8931
  "normalen Produkten gekauft werden."
8932
 
8933
+ #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:239
8934
  msgid ""
8935
  "Sorry, but normal products cannot be purchased together with differential "
8936
  "taxed products at the same time."
8939
  "differenzbesteuerten Produkten gekauft werden."
8940
 
8941
  # @ woocommerce-germanized
8942
+ #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:892
8943
  #: woocommerce-germanized/includes/class-wc-gzd-revocation.php:52
8944
  #: woocommerce-germanized/includes/wc-gzd-core-functions.php:604
8945
  msgid "Mr."
8946
  msgstr "Herr"
8947
 
8948
  # @ woocommerce-germanized
8949
+ #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:893
8950
  msgctxt "customer-title-male-address"
8951
  msgid "Mr."
8952
  msgstr "Herrn"
8953
 
8954
+ #: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:72
8955
+ msgid ""
8956
+ "The cart contains one or more vouchers. Vouchers cannot be mixed with normal "
8957
+ "coupons."
8958
+ msgstr ""
8959
+ "Dein Warenkorb beinhaltet einen oder mehrere Wertgutscheine. Wertgutscheine "
8960
+ "können nicht mit normalen Gutscheinen gemischt werden."
8961
+
8962
+ #: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:74
8963
+ msgid ""
8964
+ "The cart contains one or more coupons. Vouchers cannot be mixed with normal "
8965
+ "coupons. Please remove the coupon before adding your voucher."
8966
+ msgstr ""
8967
+ "Dein Warenkorb beinhaltet einen oder mehrere Gutscheine. Wertgutscheine "
8968
+ "können nicht mit normalen Gutscheinen gemischt werden. Bitte lösche den "
8969
+ "Gutschein bevor du deinen Wertgutschein hinzufügst."
8970
+
8971
+ #: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:371
8972
  msgid "Is voucher?"
8973
  msgstr "Wertgutschein?"
8974
 
8975
+ #: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:372
8976
  #, php-format
8977
  msgid ""
8978
  "Whether or not this coupon is a voucher which has been sold to a customer "
8985
  "\">hier</a>."
8986
 
8987
  #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:147
8988
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:212
8989
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:323
8990
  msgid ""
8991
  "Please activate your account through clicking on the activation link "
8992
  "received via email."
9000
  msgstr ""
9001
  "Keine Aktivierungs-E-Mail erhalten? <a href=\"%s\">Erneut zusenden</a>."
9002
 
9003
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:333
9004
  #, php-format
9005
  msgid "Continue without creating an account? <a href=\"%s\">Click here</a>"
9006
  msgstr "Weiter zur Kasse ohne Kundenkonto? <a href=\"%s\">Hier klicken</a>"
9007
 
9008
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:335
9009
  msgid "Please create an account or login before continuing to checkout"
9010
  msgstr ""
9011
  "Bitte erstelle ein Kundenkonto oder logge dich ein, bevor du zur Kasse gehst"
9012
 
9013
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:443
9014
  #, php-format
9015
  msgid ""
9016
  "Please activate your account through clicking on the activation link "
9019
  "Bitte aktiviere dein Kundenkonto indem du auf den Link in der E-Mail "
9020
  "klickst. Keine E-Mail erhalten? <a href=\"%s\">Erneut zusenden</a>."
9021
 
9022
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:475
9023
  msgid ""
9024
  "This activation code has expired. We have sent you a new activation code via "
9025
  "e-mail."
9028
  "Code per E-Mail geschickt."
9029
 
9030
  # @ woocommerce-germanized
9031
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:477
9032
  msgid "Sorry, but this activation code cannot be found."
9033
  msgstr "Sorry, dieser Aktivierungscode ist uns leider nicht bekannt."
9034
 
9035
  # @ woocommerce-germanized
9036
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:481
9037
  msgid "Thank you. You have successfully activated your account."
9038
  msgstr "Vielen Dank. Dein Benutzerkonto wurde erfolgreich aktiviert."
9039
 
9040
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:661
9041
  msgid "Expired activation key"
9042
  msgstr "Abgelaufener Aktivierungscode"
9043
 
9044
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:666
9045
  msgid "Invalid activation key"
9046
  msgstr "Aktivierungscode ungültig"
9047
 
9100
  msgstr "Deinen Widerruf online erklären"
9101
 
9102
  # @ woocommerce-germanized
9103
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:167
9104
  #, php-format
9105
  msgid ""
9106
  "Please install <a href=\"%s\" target=\"_blank\">WooCommerce</a> before "
9109
  "Bitte installiere <a href=\"%s\" target=\"_blank\">WooCommerce</a> bevor du "
9110
  "WooCommerce Germanized installierst. Vielen Dank!"
9111
 
9112
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:487
9113
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:501
9114
  msgid "Reduced rate"
9115
  msgstr "Ermäßigter Steuersatz"
9116
 
9117
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:543
9118
  #, php-format
9119
  msgctxt "vat-rate-import"
9120
  msgid "VAT %s"
9121
  msgstr "MwSt. %s"
9122
 
9123
  # @ woocommerce-germanized
9124
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:658
9125
  msgctxt "Page slug"
9126
  msgid "data-security"
9127
  msgstr "datenschutzerklaerung"
9128
 
9129
  # @ woocommerce-germanized
9130
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:659
9131
  msgctxt "Page title"
9132
  msgid "Data Security Statement"
9133
  msgstr "Datenschutzerklärung"
9134
 
9135
  # @ woocommerce-germanized
9136
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:663
9137
  msgctxt "Page slug"
9138
  msgid "imprint"
9139
  msgstr "impressum"
9140
 
9141
  # @ woocommerce-germanized
9142
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:664
9143
  msgctxt "Page title"
9144
  msgid "Imprint"
9145
  msgstr "Impressum"
9146
 
9147
  # @ woocommerce-germanized
9148
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:668
9149
  msgctxt "Page slug"
9150
  msgid "terms"
9151
  msgstr "agb"
9152
 
9153
  # @ woocommerce-germanized
9154
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:669
9155
  msgctxt "Page title"
9156
  msgid "Terms & Conditions"
9157
  msgstr "AGB"
9158
 
9159
  # @ woocommerce-germanized
9160
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:673
9161
  msgctxt "Page slug"
9162
  msgid "revocation"
9163
  msgstr "widerrufsbelehrung"
9164
 
9165
  # @ woocommerce-germanized
9166
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:674
9167
  msgctxt "Page title"
9168
  msgid "Power of Revocation"
9169
  msgstr "Widerrufsbelehrung"
9170
 
9171
  # @ woocommerce-germanized
9172
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:678
9173
  msgctxt "Page slug"
9174
  msgid "shipping-methods"
9175
  msgstr "versandarten"
9176
 
9177
  # @ woocommerce-germanized
9178
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:679
9179
  msgctxt "Page title"
9180
  msgid "Shipping Methods"
9181
  msgstr "Versandarten"
9182
 
9183
  # @ woocommerce-germanized
9184
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:683
9185
  msgctxt "Page slug"
9186
  msgid "payment-methods"
9187
  msgstr "bezahlmoeglichkeiten"
9188
 
9189
  # @ woocommerce-germanized
9190
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:684
9191
  msgctxt "Page title"
9192
  msgid "Payment Methods"
9193
  msgstr "Zahlungsarten"
9539
  "kassiert - z.B. DHL (steuerfrei)."
9540
 
9541
  # @ woocommerce-germanized
9542
+ #: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:297
9543
  msgid "Payment charge"
9544
  msgstr "Zahlungsgebühr"
9545
 
11010
  msgid "upgrade"
11011
  msgstr "Upgrade"
11012
 
11013
+ #: woocommerce-germanized/woocommerce-germanized.php:314
11014
  #, php-format
11015
  msgid ""
11016
  "This version of the Corona Helper Plugin includes a bug which could lead to "
11022
  "Bitte <a href=\"%s\">deaktiviere</a> das Plugin und lerne in unserem <a href="
11023
  "\"%s\" target=\"_blank\">Blog-Post</a> wie du das Plugin austauschen kannst."
11024
 
11025
+ #: woocommerce-germanized/woocommerce-germanized.php:975
11026
  msgid "Pease wait while we are trying to redirect you to the payment provider."
11027
  msgstr "Einen Moment - wir versuchen dich zum Zahlungsanbieter weiterzuleiten."
11028
 
12258
  msgid "https://vendidero.de"
12259
  msgstr "https://vendidero.de"
12260
 
12261
+ # @ woocommerce-germanized
12262
+ #~ msgid "Shipping costs"
12263
+ #~ msgstr "Versandkosten"
12264
+
12265
+ # @ woocommerce-germanized
12266
+ #~ msgid "Force"
12267
+ #~ msgstr "Erzwingen"
12268
+
12269
+ # @ woocommerce-germanized
12270
+ #~ msgid "Force split-tax calculation for shipping methods."
12271
+ #~ msgstr ""
12272
+ #~ "Erzwinge die anteilige Besteuerung der Versandkosten für jede Versandart."
12273
+
12274
+ # @ woocommerce-germanized
12275
+ #~ msgid ""
12276
+ #~ "This option will overwrite settings for each individual shipping method "
12277
+ #~ "to force tax calculation (instead of only calculating tax for those "
12278
+ #~ "methods which are taxeable)."
12279
+ #~ msgstr ""
12280
+ #~ "Diese Option überschreibt alle abweichenden Einstellungen verschiedener "
12281
+ #~ "Versandarten und erzwingt die Steuerberechnung."
12282
+
12283
+ # @ woocommerce-germanized
12284
+ #~ msgid "Fees"
12285
+ #~ msgstr "Gebühren"
12286
+
12287
+ # @ woocommerce-germanized
12288
+ #~ msgid "Enable split-tax calculation for fees."
12289
+ #~ msgstr "Aktiviere die anteilige Besteuerung für Gebühren."
12290
+
12291
+ # @ woocommerce-germanized
12292
+ #~ msgid "Force split-tax calculation for fees."
12293
+ #~ msgstr "Erzwinge die anteilige Besteuerung für Gebühren."
12294
+
12295
+ # @ woocommerce-germanized
12296
+ #~ msgid ""
12297
+ #~ "This option will overwrite settings for each individual fee to force tax "
12298
+ #~ "calculation (instead of only calculating tax for those fees which are "
12299
+ #~ "taxeable)."
12300
+ #~ msgstr ""
12301
+ #~ "Diese Option überschreibt die Einstellungen aller Gebühren und erzwingt "
12302
+ #~ "die Steuerberechnung."
12303
+
12304
+ # @ woocommerce-germanized
12305
+ #~ msgid "Forced"
12306
+ #~ msgstr "Erzwungen"
12307
+
12308
+ # @ woocommerce-germanized
12309
+ #~ msgid "Fee Taxes"
12310
+ #~ msgstr "Gebührenbesteuerung"
12311
+
12312
  # @ woocommerce-germanized
12313
  #~ msgctxt "dhl"
12314
  #~ msgid "General"
12995
  #~ msgid "Hide Delivery Time Notice"
12996
  #~ msgstr "Lieferzeiten ausblenden"
12997
 
 
 
 
12998
  # @ woocommerce-germanized
12999
  #~ msgid "Base Price Text"
13000
  #~ msgstr "Grundpreis Text"
i18n/languages/woocommerce-germanized-de_DE_formal.mo CHANGED
Binary file
i18n/languages/woocommerce-germanized-de_DE_formal.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce Germanized\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-12-17 12:54+0100\n"
6
- "PO-Revision-Date: 2020-12-17 12:57+0100\n"
7
  "Last-Translator: holzhannes <holzhannes@posteo.de>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE@formal\n"
@@ -46,7 +46,7 @@ msgid "Additional Services"
46
  msgstr "Zusätzliche Leistungen"
47
 
48
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:36
49
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:505
50
  #, php-format
51
  msgid ""
52
  "Sorry but none of your selected <a href=\"%s\">Deutsche Post Products</a> is "
@@ -87,7 +87,7 @@ msgstr "Zollabgabe"
87
 
88
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:65
89
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:141
90
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:974
91
  #: woocommerce-germanized-dhl/src/ParcelServices.php:29
92
  msgctxt "dhl"
93
  msgid "Preferred Day"
@@ -102,14 +102,14 @@ msgstr "Wunschzeit"
102
  # @ woocommerce-germanized
103
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:87
104
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:169
105
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:994
106
  #: woocommerce-germanized-dhl/src/ParcelServices.php:43
107
  msgctxt "dhl"
108
  msgid "Preferred Location"
109
  msgstr "Wunschort"
110
 
111
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:98
112
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1002
113
  #: woocommerce-germanized-dhl/src/ParcelServices.php:48
114
  msgctxt "dhl"
115
  msgid "Preferred Neighbor"
@@ -122,24 +122,24 @@ msgstr "Beilage-Retourenlabel erstellen"
122
 
123
  # @ woocommerce-germanized
124
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:121
125
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:761
126
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:830
127
  msgctxt "dhl"
128
  msgid "Name"
129
  msgstr "Name"
130
 
131
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:130
132
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:768
133
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:837
134
  msgctxt "dhl"
135
  msgid "Company"
136
  msgstr "Firma"
137
 
138
  # @ woocommerce-germanized
139
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:139
140
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:601
141
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:775
142
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:844
143
  msgctxt "dhl"
144
  msgid "Street"
145
  msgstr "Straße"
@@ -152,9 +152,9 @@ msgstr "Hausnummer"
152
 
153
  # @ woocommerce-germanized
154
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:159
155
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:602
156
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:796
157
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:865
158
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:27
159
  msgctxt "dhl"
160
  msgid "Postcode"
@@ -162,24 +162,24 @@ msgstr "Postleitzahl"
162
 
163
  # @ woocommerce-germanized
164
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:168
165
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:603
166
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:789
167
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:858
168
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:30
169
  msgctxt "dhl"
170
  msgid "City"
171
  msgstr "Stadt"
172
 
173
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:179
174
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:812
175
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:881
176
  msgctxt "dhl"
177
  msgid "Phone"
178
  msgstr "Telefon"
179
 
180
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:188
181
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:819
182
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:888
183
  msgctxt "dhl"
184
  msgid "Email"
185
  msgstr "E-Mail"
@@ -207,7 +207,7 @@ msgstr "Alterssichtprüfung"
207
 
208
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:228
209
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:331
210
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:534
211
  msgctxt "dhl"
212
  msgid "GoGreen"
213
  msgstr "GoGreen"
@@ -229,7 +229,7 @@ msgid "No neighbor"
229
  msgstr "Keine Nachbarschaftszustellung"
230
 
231
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:272
232
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:562
233
  msgctxt "dhl"
234
  msgid "Named person only"
235
  msgstr "Persönliche Übergabe"
@@ -256,7 +256,7 @@ msgid "Minimum age"
256
  msgstr "Mindestalter"
257
 
258
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:322
259
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:606
260
  msgctxt "dhl"
261
  msgid "Premium"
262
  msgstr "Premium"
@@ -267,13 +267,12 @@ msgctxt "dhl"
267
  msgid "Receiver"
268
  msgstr "Empfänger"
269
 
270
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:15
271
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1465
272
  msgctxt "dhl"
273
  msgid "DHL Labels"
274
  msgstr "DHL Labels"
275
 
276
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:18
277
  #, php-format
278
  msgctxt "dhl"
279
  msgid ""
@@ -284,12 +283,12 @@ msgstr ""
284
  "\">globalen Einstellungen</a>."
285
 
286
  # @ woocommerce-germanized
287
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:28
288
  msgctxt "dhl"
289
  msgid "DHL Label Services"
290
  msgstr "DHL Services"
291
 
292
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:31
293
  #, php-format
294
  msgctxt "dhl"
295
  msgid ""
@@ -300,14 +299,14 @@ msgstr ""
300
  "\">globalen Einstellungen</a>."
301
 
302
  # @ woocommerce-germanized
303
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:41
304
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:106
305
  msgctxt "dhl"
306
  msgid "Label Automation"
307
  msgstr "Label Automatisierung"
308
 
309
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:44
310
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:109
311
  #, php-format
312
  msgctxt "dhl"
313
  msgid ""
@@ -317,12 +316,12 @@ msgstr ""
317
  "Automatisierung-Einstellungen für Label anpassen. Änderungen überschreiben "
318
  "die <a href=\"%s\">globalen Einstellungen</a>."
319
 
320
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:53
321
  msgctxt "dhl"
322
  msgid "DHL Preferred Services"
323
  msgstr "DHL Wunschpaket-Services"
324
 
325
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:56
326
  #, php-format
327
  msgctxt "dhl"
328
  msgid ""
@@ -332,12 +331,12 @@ msgstr ""
332
  "Wunschpaket-Services anpassen. Änderungen überschreiben die <a href=\"%s"
333
  "\">globalen Einstellungen</a>."
334
 
335
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:66
336
  msgctxt "dhl"
337
  msgid "DHL Pickup"
338
  msgstr "DHL Standorte"
339
 
340
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:69
341
  #, php-format
342
  msgctxt "dhl"
343
  msgid ""
@@ -347,12 +346,12 @@ msgstr ""
347
  "überschreiben die <a href=\"%s\">globalen Einstellungen</a>."
348
 
349
  # @ woocommerce-germanized
350
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:81
351
  msgctxt "dhl"
352
  msgid "Deutsche Post Labels"
353
  msgstr "Deutsche Post Labels"
354
 
355
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:84
356
  #, php-format
357
  msgctxt "dhl"
358
  msgid ""
@@ -362,13 +361,13 @@ msgstr ""
362
  "Deutsche Post Label Einstellungen anpassen. Änderungen überschreiben die <a "
363
  "href=\"%s\">globalen Einstellungen</a>."
364
 
365
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:94
366
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1374
367
  msgctxt "dhl"
368
  msgid "Printing"
369
  msgstr "Druck"
370
 
371
- #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:97
372
  #, php-format
373
  msgctxt "dhl"
374
  msgid ""
@@ -447,7 +446,7 @@ msgstr "Retourensendung #{shipment_id} zur Bestellung #{order_id}"
447
  # @ woocommerce-germanized
448
  #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:376
449
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:188
450
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:496
451
  #: woocommerce-germanized-dhl/src/ParcelLocator.php:850
452
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:38
453
  msgctxt "dhl"
@@ -467,7 +466,7 @@ msgid "Receiver is missing or does not exist."
467
  msgstr "Empfänger fehlt oder existiert nicht."
468
 
469
  #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:481
470
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:566
471
  #, php-format
472
  msgctxt "dhl"
473
  msgid "Shipment order #%s does not exist"
@@ -478,52 +477,52 @@ msgctxt "dhl"
478
  msgid "The services chosen are not available for the current product."
479
  msgstr "Die ausgewählten Services sind für dieses Produkt nicht verfügbar."
480
 
481
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:532
482
  #, php-format
483
  msgctxt "dhl"
484
  msgid "Deutsche Post product is missing for %s."
485
  msgstr "Deutsche Post Produkt fehlt oder ist nicht verfügbar für %s."
486
 
487
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:608
488
  #, php-format
489
  msgctxt "dhl"
490
  msgid "%s of the return address is a mandatory field."
491
  msgstr "%s der Rücksendeadresse ist ein Pflichtfeld."
492
 
493
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:613
494
  msgctxt "dhl"
495
  msgid "Please either add a return company or name."
496
  msgstr ""
497
  "Bitte geben Sie entweder einen Firmennamen oder Namen für die "
498
  "Rücksendeadresse an."
499
 
500
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:632
501
  msgctxt "dhl"
502
  msgid "Error while parsing preferred day."
503
  msgstr "Fehler beim Einlesen des Wunschtags."
504
 
505
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:643
506
  msgctxt "dhl"
507
  msgid "Error while parsing preferred time."
508
  msgstr "Fehler beim Einlesen der Wunschzeit."
509
 
510
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:668
511
  msgctxt "dhl"
512
  msgid "The visual min age check is invalid."
513
  msgstr "Das Alter der Alterssichtprüfung ist ungültig."
514
 
515
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:692
516
  msgctxt "dhl"
517
  msgid "The ident min age check is invalid."
518
  msgstr "Das Alter des Ident-Checks ist ungültig."
519
 
520
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:699
521
  msgctxt "dhl"
522
  msgid "There was an error parsing the date of birth for the identity check."
523
  msgstr ""
524
  "Beim Einlesen des Geburtsdatums für den Ident-Check trat ein Problem auf."
525
 
526
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:704
527
  msgctxt "dhl"
528
  msgid ""
529
  "Either a minimum age or a date of birth must be added to the ident check."
@@ -532,89 +531,89 @@ msgstr ""
532
  "hinzugefügt werden."
533
 
534
  # @ woocommerce-germanized
535
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:718
536
  #, php-format
537
  msgctxt "dhl"
538
  msgid "%s duties element does not exist."
539
  msgstr "%s Zollabgabe existiert nicht."
540
 
541
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1342
542
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1426
543
  msgctxt "dhl"
544
  msgid "Invalid shipment"
545
  msgstr "Ungültige Sendung"
546
 
547
  # @ woocommerce-germanized
548
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1346
549
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1430
550
  msgctxt "dhl"
551
  msgid "Order does not exist"
552
  msgstr "Bestellung existiert nicht"
553
 
554
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1378
555
  msgctxt "dhl"
556
  msgid "Error while creating the label instance"
557
  msgstr "Fehler beim Erstellen der Label-Instanz"
558
 
559
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1501
560
  msgctxt "dhl"
561
  msgid "Invalid label"
562
  msgstr "Ungültiges Label"
563
 
564
  # @ woocommerce-germanized
565
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1589
566
  msgctxt "dhl"
567
  msgid "DHL Retoure International A"
568
  msgstr "DHL Retoure International A"
569
 
570
  # @ woocommerce-germanized
571
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1590
572
  msgctxt "dhl"
573
  msgid "DHL Retoure International B"
574
  msgstr "DHL Retoure International B"
575
 
576
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1599
577
  msgctxt "dhl"
578
  msgid "DHL Retoure Online"
579
  msgstr "DHL Retoure Online"
580
 
581
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1616
582
  msgctxt "dhl"
583
  msgid "DHL Paket Connect"
584
  msgstr "DHL Paket Connect"
585
 
586
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1617
587
  msgctxt "dhl"
588
  msgid "DHL Europaket (B2B)"
589
  msgstr "DHL Europaket (B2B)"
590
 
591
  # @ woocommerce-germanized
592
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1618
593
  msgctxt "dhl"
594
  msgid "DHL Paket International"
595
  msgstr "DHL Paket International"
596
 
597
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1693
598
  msgctxt "dhl"
599
  msgid "DHL Paket"
600
  msgstr "DHL Paket"
601
 
602
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1694
603
  msgctxt "dhl"
604
  msgid "DHL Paket PRIO"
605
  msgstr "DHL Paket PRIO"
606
 
607
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1695
608
  msgctxt "dhl"
609
  msgid "DHL Paket Taggleich"
610
  msgstr "DHL Paket Taggleich"
611
 
612
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1696
613
  msgctxt "dhl"
614
  msgid "DHL Warenpost"
615
  msgstr "DHL Warenpost"
616
 
617
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1783
618
  msgctxt "dhl"
619
  msgid "Error while uploading label."
620
  msgstr "Fehler beim Hochladen des Labels."
@@ -718,7 +717,7 @@ msgstr ""
718
  "Ordner %s manuell und stellen Sie sicher, dass der Ordner beschreibbar ist."
719
 
720
  #: woocommerce-germanized-dhl/src/Admin/Admin.php:271
721
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1464
722
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:39
723
  msgctxt "dhl"
724
  msgid "DHL"
@@ -790,7 +789,7 @@ msgstr ""
790
 
791
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:80
792
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:328
793
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:477
794
  msgctxt "dhl"
795
  msgid "Inlay Returns"
796
  msgstr "Beilageretouren"
@@ -805,8 +804,8 @@ msgstr ""
805
  "sollten Sie diese Funktion standardmäßig aktivieren."
806
 
807
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:94
808
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:723
809
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:953
810
  msgctxt "dhl"
811
  msgid "Retoure"
812
  msgstr "Retoure"
@@ -841,8 +840,8 @@ msgstr ""
841
 
842
  # @ woocommerce-germanized
843
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:122
844
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:747
845
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1391
846
  msgctxt "dhl"
847
  msgid "Automation"
848
  msgstr "Automatisierung"
@@ -868,7 +867,7 @@ msgstr ""
868
 
869
  # @ woocommerce-germanized
870
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:155
871
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:982
872
  msgctxt "dhl"
873
  msgid "Fee"
874
  msgstr "Gebühr"
@@ -901,7 +900,7 @@ msgstr ""
901
  "im Folgenden konfiguriert) als Lieferadresse auswählen."
902
 
903
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:202
904
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1130
905
  msgctxt "dhl"
906
  msgid "Map"
907
  msgstr "Karte"
@@ -918,7 +917,7 @@ msgstr ""
918
  "Kartenansicht einen gültigen Google Maps API Schlüssel."
919
 
920
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:223
921
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1167
922
  msgctxt "dhl"
923
  msgid "Enable"
924
  msgstr "Aktivieren"
@@ -1074,7 +1073,7 @@ msgid "contract data"
1074
  msgstr "Vertragsdaten"
1075
 
1076
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:392
1077
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1222
1078
  msgctxt "dhl"
1079
  msgid "Domestic Default Service"
1080
  msgstr "Nationaler Standard Service"
@@ -1091,7 +1090,7 @@ msgstr ""
1091
  "nachträglich ändern)."
1092
 
1093
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:402
1094
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1242
1095
  msgctxt "dhl"
1096
  msgid "Int. Default Service"
1097
  msgstr "Internationaler Standard Service"
@@ -1140,13 +1139,13 @@ msgstr ""
1140
 
1141
  # @ woocommerce-germanized
1142
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:432
1143
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1200
1144
  msgctxt "dhl"
1145
  msgid "Default weight (kg)"
1146
  msgstr "Standardgewicht (kg)"
1147
 
1148
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:434
1149
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1202
1150
  msgctxt "dhl"
1151
  msgid ""
1152
  "Choose a default shipment weight to be used for labels if no weight has been "
@@ -1156,13 +1155,13 @@ msgstr ""
1156
  "für die das Gewicht nicht automatisch bestimmt werden kann."
1157
 
1158
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:443
1159
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1211
1160
  msgctxt "dhl"
1161
  msgid "Minimum weight (kg)"
1162
  msgstr "Mindestgewicht (kg)"
1163
 
1164
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:445
1165
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1213
1166
  msgctxt "dhl"
1167
  msgid ""
1168
  "Choose a minimum weight to be used for labels e.g. to prevent low shipment "
@@ -1198,33 +1197,7 @@ msgstr ""
1198
  "Sie Ihre Datenschutzerklärung und suchen Sie im Zweifel anwaltlichen Rat "
1199
  "bevor Sie diese Option aktivieren."
1200
 
1201
- # @ woocommerce-germanized
1202
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:464
1203
- msgctxt "dhl"
1204
- msgid "Street number"
1205
- msgstr "Hausnummer"
1206
-
1207
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:465
1208
- msgctxt "dhl"
1209
- msgid ""
1210
- "Force existence of a street number within the first address field during "
1211
- "checkout for EU countries."
1212
- msgstr ""
1213
- "Hausnummer im ersten Adressfeld verpflichtend abfragen, falls es sich um ein "
1214
- "EU-Land handelt."
1215
-
1216
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:466
1217
- msgctxt "dhl"
1218
- msgid ""
1219
- "Enabling this option will force a street number to be provided during "
1220
- "checkout within the first address field to prevent missing or wrong data "
1221
- "sets."
1222
- msgstr ""
1223
- "Die Aktivierung dieser Option sorgt dafür, dass die Hausnummer im ersten "
1224
- "Adressfeld in der Kasse abgefragt wird. Damit verhindern Sie fehlende oder "
1225
- "falsche Datensätze."
1226
-
1227
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:478
1228
  msgctxt "dhl"
1229
  msgid ""
1230
  "Additionally create inlay return labels for shipments that support returns."
@@ -1232,70 +1205,70 @@ msgstr ""
1232
  "Erzeuge zusätzlich Beilage-Retourenlabels für Sendungen die Retouren "
1233
  "unterstützen."
1234
 
1235
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:497
1236
  msgctxt "dhl"
1237
  msgid "Enable delivery to Packstation."
1238
  msgstr "Aktiviere den Versand an Packstationen."
1239
 
1240
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:498
1241
  msgctxt "dhl"
1242
  msgid "Let customers choose a Packstation as delivery address."
1243
  msgstr "Kunden eine Packstation als Lieferadresse auswählen lassen."
1244
 
1245
  # @ woocommerce-germanized
1246
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:505
1247
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:50
1248
  msgctxt "dhl"
1249
  msgid "Postoffice"
1250
  msgstr "Postfiliale"
1251
 
1252
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:506
1253
  msgctxt "dhl"
1254
  msgid "Enable delivery to Post Offices."
1255
  msgstr "Aktiviere den Versand an Postfilialen."
1256
 
1257
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:507
1258
  msgctxt "dhl"
1259
  msgid "Let customers choose a Post Office as delivery address."
1260
  msgstr "Kunden eine Postfiliale als Lieferadresse auswählen lassen."
1261
 
1262
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:514
1263
  msgctxt "dhl"
1264
  msgid "Parcel Shop"
1265
  msgstr "Paketshop"
1266
 
1267
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:515
1268
  msgctxt "dhl"
1269
  msgid "Enable delivery to Parcel Shops."
1270
  msgstr "Lieferung an Paketshops aktivieren."
1271
 
1272
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:516
1273
  msgctxt "dhl"
1274
  msgid "Let customers choose a Parcel Shop as delivery address."
1275
  msgstr "Kunden einen Paketshop als Lieferadresse auswählen lassen."
1276
 
1277
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:535
1278
  msgctxt "dhl"
1279
  msgid "Enable the GoGreen Service by default."
1280
  msgstr "Buche den GoGreen Service hinzu."
1281
 
1282
  # @ woocommerce-germanized
1283
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:541
1284
  msgctxt "dhl"
1285
  msgid "Additional Insurance"
1286
  msgstr "Transportversicherung"
1287
 
1288
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:542
1289
  msgctxt "dhl"
1290
  msgid "Add an additional insurance to labels."
1291
  msgstr "Füge eine Transportversicherung zur Sendung hinzu."
1292
 
1293
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:548
1294
  msgctxt "dhl"
1295
  msgid "Retail Outlet Routing"
1296
  msgstr "Filialrouting"
1297
 
1298
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:549
1299
  msgctxt "dhl"
1300
  msgid ""
1301
  "Send undeliverable items to nearest retail outlet instead of immediate "
@@ -1304,58 +1277,58 @@ msgstr ""
1304
  "Sende unzustellbare Sendungen in die nächstgelegene Filiale zur Abholung "
1305
  "anstelle diese direkt zurückzusenden."
1306
 
1307
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:555
1308
  msgctxt "dhl"
1309
  msgid "No Neighbor"
1310
  msgstr "Keine Nachbarschaftszustellung"
1311
 
1312
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:556
1313
  msgctxt "dhl"
1314
  msgid "Do not deliver to neighbors."
1315
  msgstr "Schließe eine Ersatzzustellung beim Nachbarn aus."
1316
 
1317
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:563
1318
  msgctxt "dhl"
1319
  msgid "Do only delivery to named person."
1320
  msgstr ""
1321
  "Lasse Pakete nur an den Empfänger persönlich oder an eine bevollmächtigte "
1322
  "Person übergeben."
1323
 
1324
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:569
1325
  msgctxt "dhl"
1326
  msgid "Bulky Goods"
1327
  msgstr "Sperrgut"
1328
 
1329
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:570
1330
  msgctxt "dhl"
1331
  msgid "Deliver as bulky goods."
1332
  msgstr "Sende Pakete als Sperrgut."
1333
 
1334
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:576
1335
  msgctxt "dhl"
1336
  msgid "Minimum age (Visual check)"
1337
  msgstr "Mindestalter (Visuell)"
1338
 
1339
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:581
1340
  msgctxt "dhl"
1341
  msgid "Choose this option if you want to let DHL check your customer's age."
1342
  msgstr ""
1343
  "Wählen Sie diese Option aus, wenn Sie das Alter durch DHL prüfen lassen "
1344
  "möchten."
1345
 
1346
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:584
1347
  msgctxt "dhl"
1348
  msgid "Sync (Visual Check)"
1349
  msgstr "Synchronisation (Visuell)"
1350
 
1351
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:585
1352
  msgctxt "dhl"
1353
  msgid "Visually verify age if shipment contains applicable items."
1354
  msgstr ""
1355
  "Aktiviere die Alterssichtprüfung, falls die Sendung zu prüfende Positionen "
1356
  "beinhaltet."
1357
 
1358
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:585
1359
  #, php-format
1360
  msgctxt "dhl"
1361
  msgid ""
@@ -1368,18 +1341,18 @@ msgstr ""
1368
  "Alterssichtprüfung automatisch aktiviert, falls eine Sendung zu prüfenden "
1369
  "Produkte beinhaltet."
1370
 
1371
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:585
1372
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:600
1373
  msgctxt "dhl"
1374
  msgid "age verification checkbox"
1375
  msgstr "Checkbox zur Altersprüfung"
1376
 
1377
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:591
1378
  msgctxt "dhl"
1379
  msgid "Minimum age (Ident check)"
1380
  msgstr "Mindestalter (Identität)"
1381
 
1382
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:596
1383
  msgctxt "dhl"
1384
  msgid ""
1385
  "Choose this option if you want to let DHL check your customer's identity and "
@@ -1389,19 +1362,19 @@ msgstr ""
1389
  "prüfen lassen möchten."
1390
 
1391
  # @ woocommerce-germanized
1392
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:599
1393
  msgctxt "dhl"
1394
  msgid "Sync (Ident Check)"
1395
  msgstr "Synchronisation (Identität)"
1396
 
1397
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:600
1398
  msgctxt "dhl"
1399
  msgid "Verify identity and age if shipment contains applicable items."
1400
  msgstr ""
1401
  "Aktiviere die Identitätsprüfung, falls die Sendung zu prüfende Positionen "
1402
  "beinhaltet."
1403
 
1404
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:600
1405
  #, php-format
1406
  msgctxt "dhl"
1407
  msgid ""
@@ -1414,34 +1387,35 @@ msgstr ""
1414
  "Identitätsprüfung automatisch aktiviert, falls eine Sendung zu prüfenden "
1415
  "Produkte beinhaltet."
1416
 
1417
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:607
1418
  msgctxt "dhl"
1419
  msgid "Premium delivery for international shipments."
1420
  msgstr "Premium Lieferung für internationale Sendungen."
1421
 
1422
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:626
1423
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1264
 
1424
  msgctxt "dhl"
1425
  msgid "Labels"
1426
  msgstr "Labels"
1427
 
1428
  # @ woocommerce-germanized
1429
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:627
1430
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1265
1431
  msgctxt "dhl"
1432
  msgid "Automatically create labels for shipments."
1433
  msgstr "Automatisch Labels zu Sendungen erstellen."
1434
 
1435
  # @ woocommerce-germanized
1436
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:634
1437
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:661
1438
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1272
1439
  msgctxt "dhl"
1440
  msgid "Status"
1441
  msgstr "Status"
1442
 
1443
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:638
1444
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1276
1445
  msgctxt "dhl"
1446
  msgid "Choose a shipment status which should trigger generation of a label."
1447
  msgstr ""
@@ -1449,31 +1423,31 @@ msgstr ""
1449
  "soll."
1450
 
1451
  # @ woocommerce-germanized
1452
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:645
1453
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1283
1454
  msgctxt "dhl"
1455
  msgid "Shipment Status"
1456
  msgstr "Sendungsstatus"
1457
 
1458
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:646
1459
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1284
1460
  msgctxt "dhl"
1461
  msgid "Mark shipment as shipped after label has been created successfully."
1462
  msgstr ""
1463
  "Sendung als versandt markieren, sobald ein Label erfolgreich erstellt wurde."
1464
 
1465
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:653
1466
  msgctxt "dhl"
1467
  msgid "Returns"
1468
  msgstr "Retouren"
1469
 
1470
  # @ woocommerce-germanized
1471
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:654
1472
  msgctxt "dhl"
1473
  msgid "Automatically create labels for returns."
1474
  msgstr "Automatisch Retourenlabels zu Retourensendungen erstellen."
1475
 
1476
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:665
1477
  msgctxt "dhl"
1478
  msgid ""
1479
  "Choose a shipment status which should trigger generation of a return label."
@@ -1481,7 +1455,59 @@ msgstr ""
1481
  "Wählen Sie einen Sendungsstatus aus, der die Erzeugung eines Retourenlabels "
1482
  "auslösen soll."
1483
 
1484
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:713
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1485
  #, php-format
1486
  msgctxt "dhl"
1487
  msgid ""
@@ -1493,12 +1519,12 @@ msgstr ""
1493
  "werden."
1494
 
1495
  # @ woocommerce-germanized
1496
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:713
1497
  msgctxt "dhl"
1498
  msgid "shipping method"
1499
  msgstr "Versandmethode"
1500
 
1501
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:723
1502
  #, php-format
1503
  msgctxt "dhl"
1504
  msgid ""
@@ -1509,18 +1535,18 @@ msgstr ""
1509
  "API an. Stellen Sie sicher, dass Ihr %s DHL Retoure Online enthält."
1510
 
1511
  # @ woocommerce-germanized
1512
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:723
1513
  msgctxt "dhl"
1514
  msgid "contract"
1515
  msgstr "Vertrag"
1516
 
1517
  # @ woocommerce-germanized
1518
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:735
1519
  msgctxt "dhl"
1520
  msgid "Default Services"
1521
  msgstr "Standard-Services"
1522
 
1523
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:735
1524
  #, php-format
1525
  msgctxt "dhl"
1526
  msgid ""
@@ -1530,12 +1556,12 @@ msgstr ""
1530
  "Passen Sie hier an, welche der Services als Standard für Ihre Labels gebucht "
1531
  "werden sollen. Finden Sie mehr über diese %s heraus."
1532
 
1533
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:735
1534
  msgctxt "dhl"
1535
  msgid "nationwide services"
1536
  msgstr "nationalen Services"
1537
 
1538
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:747
1539
  msgctxt "dhl"
1540
  msgid ""
1541
  "Choose whether and under which conditions labels for your shipments shall be "
@@ -1545,38 +1571,12 @@ msgstr ""
1545
  "automatisch erzeugt werden sollen."
1546
 
1547
  # @ woocommerce-germanized
1548
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:758
1549
- msgctxt "dhl"
1550
- msgid "Shipper Address"
1551
- msgstr "Absenderadresse"
1552
-
1553
- # @ woocommerce-germanized
1554
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:782
1555
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:851
1556
- msgctxt "dhl"
1557
- msgid "Street Number"
1558
- msgstr "Hausnummer"
1559
-
1560
- # @ woocommerce-germanized
1561
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:803
1562
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:872
1563
- msgctxt "dhl"
1564
- msgid "Country"
1565
- msgstr "Land"
1566
-
1567
- # @ woocommerce-germanized
1568
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:827
1569
- msgctxt "dhl"
1570
- msgid "Inlay Return Address"
1571
- msgstr "Beilageretouren Adresse"
1572
-
1573
- # @ woocommerce-germanized
1574
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:896
1575
  msgctxt "dhl"
1576
  msgid "Bank Account"
1577
  msgstr "Bankkonto"
1578
 
1579
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:896
1580
  msgctxt "dhl"
1581
  msgid "Enter your bank details needed for services that use COD."
1582
  msgstr ""
@@ -1584,36 +1584,36 @@ msgstr ""
1584
  "verwendet werden sollen."
1585
 
1586
  # @ woocommerce-germanized
1587
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:899
1588
  msgctxt "dhl"
1589
  msgid "Holder"
1590
  msgstr "Kontoinhaber"
1591
 
1592
  # @ woocommerce-germanized
1593
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:906
1594
  msgctxt "dhl"
1595
  msgid "Bank Name"
1596
  msgstr "Name der Bank"
1597
 
1598
  # @ woocommerce-germanized
1599
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:913
1600
  msgctxt "dhl"
1601
  msgid "IBAN"
1602
  msgstr "IBAN"
1603
 
1604
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:920
1605
  msgctxt "dhl"
1606
  msgid "BIC"
1607
  msgstr "BIC"
1608
 
1609
  # @ woocommerce-germanized
1610
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:927
1611
  msgctxt "dhl"
1612
  msgid "Payment Reference"
1613
  msgstr "Zahlungsreferenz"
1614
 
1615
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:931
1616
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:940
1617
  #, php-format
1618
  msgctxt "dhl"
1619
  msgid ""
@@ -1624,18 +1624,18 @@ msgstr ""
1624
  "hinzufügen: %s. Der Text ist auf 35 Zeichen begrenzt."
1625
 
1626
  # @ woocommerce-germanized
1627
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:936
1628
  msgctxt "dhl"
1629
  msgid "Payment Reference 2"
1630
  msgstr "Zahlungsreferenz 2"
1631
 
1632
  # @ woocommerce-germanized
1633
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:954
1634
  msgctxt "dhl"
1635
  msgid "Enable creating labels for return shipments."
1636
  msgstr "Automatisch Retourenlabels zu Retourensendungen erstellen."
1637
 
1638
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:954
1639
  msgctxt "dhl"
1640
  msgid ""
1641
  "By enabling this option you might generate retoure labels for return "
@@ -1644,12 +1644,12 @@ msgstr ""
1644
  "Mit der Aktivierung dieser Option können Sie Retourenlabels zu "
1645
  "Retourensendungen erstellen und diese per E-Mail an den Kunden weiterleiten."
1646
 
1647
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:975
1648
  msgctxt "dhl"
1649
  msgid "Enable preferred day delivery."
1650
  msgstr "Aktiviere die Lieferung am Wunschtag."
1651
 
1652
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:975
1653
  msgctxt "dhl"
1654
  msgid ""
1655
  "Enabling this option will display options for the user to select their "
@@ -1658,7 +1658,7 @@ msgstr ""
1658
  "Diese Option aktiviert die Auswahl eines Wunschtags durch den Kunden in der "
1659
  "Kasse."
1660
 
1661
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:984
1662
  msgctxt "dhl"
1663
  msgid ""
1664
  "Insert gross value as surcharge for preferred day delivery. Insert 0 to "
@@ -1668,12 +1668,12 @@ msgstr ""
1668
  "Setzen Sie den Wert auf 0 um den Service kostenlos anzubieten."
1669
 
1670
  # @ woocommerce-germanized
1671
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:995
1672
  msgctxt "dhl"
1673
  msgid "Enable preferred location delivery."
1674
  msgstr "Lieferung an einen Wunschort aktivieren."
1675
 
1676
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:995
1677
  msgctxt "dhl"
1678
  msgid ""
1679
  "Enabling this option will display options for the user to select their "
@@ -1682,12 +1682,12 @@ msgstr ""
1682
  "Diese Option aktiviert die Auswahl eines Wunschorts durch den Kunden in der "
1683
  "Kasse ."
1684
 
1685
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1003
1686
  msgctxt "dhl"
1687
  msgid "Enable preferred neighbor delivery."
1688
  msgstr "Aktiviere die Lieferung an einen Wunschnachbarn."
1689
 
1690
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1003
1691
  msgctxt "dhl"
1692
  msgid ""
1693
  "Enabling this option will display options for the user to deliver to their "
@@ -1696,12 +1696,12 @@ msgstr ""
1696
  "Diese Option aktiviert die Auswahl eines Wunschnachbarn durch den Kunden in "
1697
  "der Kasse."
1698
 
1699
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1029
1700
  msgctxt "dhl"
1701
  msgid "Cut-off time"
1702
  msgstr "Cut-off-Zeit"
1703
 
1704
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1032
1705
  msgctxt "dhl"
1706
  msgid ""
1707
  "The cut-off time is the latest possible order time up to which the minimum "
@@ -1714,12 +1714,12 @@ msgstr ""
1714
  "Nach Überschreitung dieses Zeitpunktes, wird der früheste verfügbare "
1715
  "Wunschtag in der Kasse um einen Tag erhöht (Tag der Bestellung + 3 Werktage)."
1716
 
1717
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1038
1718
  msgctxt "dhl"
1719
  msgid "Preparation days"
1720
  msgstr "Bearbeitungstage"
1721
 
1722
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1041
1723
  msgctxt "dhl"
1724
  msgid ""
1725
  "If you need more time to prepare your shipments you might want to add a "
@@ -1730,71 +1730,71 @@ msgstr ""
1730
  "hier eine statische Anzahl an Tagen hinterlegen, die zum frühesten "
1731
  "auswählbaren Wunschtag hinzugefügt werden."
1732
 
1733
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1048
1734
  msgctxt "dhl"
1735
  msgid "Exclude days of transfer"
1736
  msgstr "Übergabetage ausschließen"
1737
 
1738
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1049
1739
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:31
1740
  msgctxt "dhl"
1741
  msgid "Monday"
1742
  msgstr "Montag"
1743
 
1744
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1050
1745
  msgctxt "dhl"
1746
  msgid "Exclude days from transferring shipments to DHL."
1747
  msgstr "Schließen Sie bestimmte Wochentage für die Übergabe an DHL aus."
1748
 
1749
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1059
1750
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:32
1751
  msgctxt "dhl"
1752
  msgid "Tuesday"
1753
  msgstr "Dienstag"
1754
 
1755
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1068
1756
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:33
1757
  msgctxt "dhl"
1758
  msgid "Wednesday"
1759
  msgstr "Mittwoch"
1760
 
1761
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1077
1762
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:34
1763
  msgctxt "dhl"
1764
  msgid "Thursday"
1765
  msgstr "Donnerstag"
1766
 
1767
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1086
1768
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:35
1769
  msgctxt "dhl"
1770
  msgid "Friday"
1771
  msgstr "Freitag"
1772
 
1773
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1095
1774
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:36
1775
  msgctxt "dhl"
1776
  msgid "Saturday"
1777
  msgstr "Samstag"
1778
 
1779
  # @ woocommerce-germanized
1780
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1104
1781
  msgctxt "dhl"
1782
  msgid "Exclude gateways"
1783
  msgstr "Zahlungsarten ausschließen"
1784
 
1785
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1106
1786
  msgctxt "dhl"
1787
  msgid "Select payment gateways to be excluded from showing preferred services."
1788
  msgstr ""
1789
  "Wählen Sie Zahlungsarten aus, für die die Wunschpaket-Services nicht zur "
1790
  "Verfügung stehen sollen."
1791
 
1792
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1131
1793
  msgctxt "dhl"
1794
  msgid "Let customers find a DHL location on a map."
1795
  msgstr "Lasse Kunden einen DHL Standort auf der Karte auswählen."
1796
 
1797
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1131
1798
  msgctxt "dhl"
1799
  msgid ""
1800
  "Enable this option to let your customers choose a pickup option from a map "
@@ -1805,12 +1805,12 @@ msgstr ""
1805
  "anhand einer Karten in der Kasse zu ermöglichen. Wenn diese Option "
1806
  "deaktiviert ist, wird stattdessen auf die DHL Website verwiesen."
1807
 
1808
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1138
1809
  msgctxt "dhl"
1810
  msgid "Google Maps Key"
1811
  msgstr "Google Maps Schlüssel"
1812
 
1813
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1142
1814
  #, php-format
1815
  msgctxt "dhl"
1816
  msgid ""
@@ -1820,33 +1820,33 @@ msgstr ""
1820
  "Um eine Karte integrieren zu können, benötigen Siee du einen gültigen API-"
1821
  "Schlüssel für Google Maps. Sie können %s."
1822
 
1823
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1142
1824
  msgctxt "dhl"
1825
  msgid "retrieve a new one"
1826
  msgstr "hier einen neuen erstellen"
1827
 
1828
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1147
1829
  msgctxt "dhl"
1830
  msgid "Limit results"
1831
  msgstr "Suchergebnisse begrenzen"
1832
 
1833
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1151
1834
  msgctxt "dhl"
1835
  msgid "Limit the number of DHL locations shown on the map"
1836
  msgstr "Begrenzt die Anzahl der angezeigten DHL Standorte auf der Karte"
1837
 
1838
  # @ woocommerce-germanized
1839
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1168
1840
  msgctxt "dhl"
1841
  msgid "Enable Internetmarke integration."
1842
  msgstr "Internetmarke Integration aktivieren."
1843
 
1844
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1175
1845
  msgctxt "dhl"
1846
  msgid "Username"
1847
  msgstr "Benutzer"
1848
 
1849
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1177
1850
  #, php-format
1851
  msgctxt "dhl"
1852
  msgid ""
@@ -1857,12 +1857,12 @@ msgstr ""
1857
  "testen Sie Ihre Zugangsdaten bevor Sie eine Verbindung aufbauen."
1858
 
1859
  # @ woocommerce-germanized
1860
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1184
1861
  msgctxt "dhl"
1862
  msgid "Password"
1863
  msgstr "Passwort"
1864
 
1865
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1226
1866
  msgctxt "dhl"
1867
  msgid ""
1868
  "Please select your default shipping service for domestic shipments that you "
@@ -1873,12 +1873,12 @@ msgstr ""
1873
  "für Ihre Kunden anbieten."
1874
 
1875
  # @ woocommerce-germanized
1876
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1232
1877
  msgctxt "dhl"
1878
  msgid "EU Default Service"
1879
  msgstr "Standard Service (EU)"
1880
 
1881
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1236
1882
  msgctxt "dhl"
1883
  msgid ""
1884
  "Please select your default shipping service for EU shipments that you want "
@@ -1887,7 +1887,7 @@ msgstr ""
1887
  "Bitte wählen Sie das Standard-Produkt für EU Sendungen aus, das Sie für Ihre "
1888
  "Kunden anbieten."
1889
 
1890
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1246
1891
  msgctxt "dhl"
1892
  msgid ""
1893
  "Please select your default shipping service for cross-border shipments that "
@@ -1896,12 +1896,12 @@ msgstr ""
1896
  "Bitte wählen Sie das Standard-Produkt für internationale Sendungen aus, das "
1897
  "Sie für Ihre Kunden anbieten."
1898
 
1899
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1303
1900
  msgctxt "dhl"
1901
  msgid "Default Format"
1902
  msgstr "Standardformat"
1903
 
1904
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1306
1905
  #, php-format
1906
  msgctxt "dhl"
1907
  msgid ""
@@ -1913,34 +1913,34 @@ msgstr ""
1913
  "verwendet wird. Sie können die Liste auch manuell <a href=\"%s"
1914
  "\">aktualisieren</a>, falls notwendig."
1915
 
1916
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1333
1917
  msgctxt "dhl"
1918
  msgid "Portokasse"
1919
  msgstr "Portokasse"
1920
 
1921
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1336
1922
  msgctxt "dhl"
1923
  msgid "Balance"
1924
  msgstr "Guthaben"
1925
 
1926
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1343
1927
  msgctxt "dhl"
1928
  msgid "Charge (€)"
1929
  msgstr "Aufladen (€)"
1930
 
1931
  # @ woocommerce-germanized
1932
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1353
1933
  msgctxt "dhl"
1934
  msgid "Products"
1935
  msgstr "Produkte"
1936
 
1937
  # @ woocommerce-germanized
1938
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1356
1939
  msgctxt "dhl"
1940
  msgid "Available Products"
1941
  msgstr "Verfügbare Produkte"
1942
 
1943
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1359
1944
  #, php-format
1945
  msgctxt "dhl"
1946
  msgid ""
@@ -1952,39 +1952,44 @@ msgstr ""
1952
  "stehen sollen. Sie können die Produktliste auch manuell <a href=\"%s"
1953
  "\">aktualisieren</a>, falls notwendig."
1954
 
1955
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1384
1956
  msgctxt "dhl"
1957
  msgid "API Error"
1958
  msgstr "API Fehler"
1959
 
1960
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1425
1961
  msgctxt "dhl"
1962
  msgid "Charge Portokasse"
1963
  msgstr "Portokasse aufladen"
1964
 
1965
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1426
1966
  #, php-format
1967
  msgctxt "dhl"
1968
  msgid "The minimum amount is %s"
1969
  msgstr "Der Minimalbetrag beträgt %s"
1970
 
1971
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1436
1972
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1438
1973
  msgctxt "dhl"
1974
  msgid "Not yet a customer?"
1975
  msgstr "Noch kein Kunde?"
1976
 
1977
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1466
1978
  msgctxt "dhl"
1979
  msgid "Internetmarke"
1980
  msgstr "Internetmarke"
1981
 
1982
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1467
 
 
 
 
 
1983
  msgctxt "dhl"
1984
  msgid "Preferred Services"
1985
  msgstr "Wunschpaket"
1986
 
1987
- #: woocommerce-germanized-dhl/src/Admin/Settings.php:1468
1988
  msgctxt "dhl"
1989
  msgid "Parcel Pickup"
1990
  msgstr "Standorte"
@@ -2280,7 +2285,7 @@ msgid "Could not create account number - no product number."
2280
  msgstr ""
2281
  "Die Abrechnungsnummer konnte nicht erzeugt werden. Die Teilnahmenummer fehlt."
2282
 
2283
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:648
2284
  #, php-format
2285
  msgctxt "dhl"
2286
  msgid "Only %s shipment items can be processed, your shipment has %s items."
@@ -2407,12 +2412,12 @@ msgctxt "dhl"
2407
  msgid "POST error or timeout occured. Please try again later."
2408
  msgstr "POST Fehler oder Zeitüberschreitung. Bitte später erneut versuchen."
2409
 
2410
- #: woocommerce-germanized-dhl/src/DataStores/Label.php:316
2411
  msgctxt "dhl"
2412
  msgid "Invalid label."
2413
  msgstr "Ungültiges Label."
2414
 
2415
- #: woocommerce-germanized-dhl/src/Order.php:299
2416
  #: woocommerce-germanized-dhl/src/SimpleLabel.php:157
2417
  #, php-format
2418
  msgctxt "dhl time-span"
@@ -2588,25 +2593,25 @@ msgctxt "dhl"
2588
  msgid "retry"
2589
  msgstr "Erneut versuchen"
2590
 
2591
- #: woocommerce-germanized-dhl/src/ParcelServices.php:135
2592
  msgctxt "dhl"
2593
  msgid "DHL Preferred Day"
2594
  msgstr "DHL Wunschtag"
2595
 
2596
- #: woocommerce-germanized-dhl/src/ParcelServices.php:278
2597
  msgctxt "dhl"
2598
  msgid "Sorry, but the preferred day you have chosen is no longer available."
2599
  msgstr ""
2600
  "Entschuldigung, der von Ihnen ausgewählte Wunschtag steht leider nicht mehr "
2601
  "zur Verfügung."
2602
 
2603
- #: woocommerce-germanized-dhl/src/ParcelServices.php:301
2604
  msgctxt "dhl"
2605
  msgid "Please choose a preferred location."
2606
  msgstr "Bitte wählen Sie einen Wunschort aus."
2607
 
2608
  # @ woocommerce-germanized
2609
- #: woocommerce-germanized-dhl/src/ParcelServices.php:313
2610
  msgctxt "dhl"
2611
  msgid "Please choose name and address of your preferred neighbor."
2612
  msgstr "Bitte wählen Sie einen Namen und die Adresse Ihres Wunschnachbars."
@@ -2726,8 +2731,20 @@ msgstr ""
2726
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:42
2727
  #, php-format
2728
  msgctxt "dhl"
2729
- msgid "There is a surcharge of %s incl. VAT for this service.*"
2730
- msgstr "Für diesen Service fällt ein Aufpreis in Höhe von %s inkl. MwSt. an.*"
 
 
 
 
 
 
 
 
 
 
 
 
2731
 
2732
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:65
2733
  msgctxt "dhl"
@@ -2834,7 +2851,7 @@ msgstr "Verpackung"
2834
 
2835
  # @ woocommerce-germanized
2836
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:58
2837
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1027
2838
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:24
2839
  #: woocommerce-germanized-shipments/src/Admin/Table.php:688
2840
  msgctxt "shipments"
@@ -2966,7 +2983,7 @@ msgid "Delete"
2966
  msgstr "Löschen"
2967
 
2968
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-list.php:22
2969
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:76
2970
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:75
2971
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:509
2972
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:630
@@ -2998,7 +3015,7 @@ msgstr "%s #%s"
2998
 
2999
  # @ woocommerce-germanized
3000
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:19
3001
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:69
3002
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:439
3003
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:508
3004
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:596
@@ -3265,8 +3282,8 @@ msgid "Text to appear below the main email content."
3265
  msgstr "Text der unterhalb des Inhalts der E-Mail angezeigt werden soll."
3266
 
3267
  #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:356
3268
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:959
3269
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:989
3270
  #: woocommerce-germanized-shipments/templates/shipment/shipment-details-address.php:28
3271
  msgctxt "shipments"
3272
  msgid "N/A"
@@ -3328,138 +3345,138 @@ msgctxt "shipments"
3328
  msgid "Letter"
3329
  msgstr "Brief"
3330
 
3331
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:68
3332
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1025
3333
  msgctxt "shipments"
3334
  msgid "Shipment"
3335
  msgstr "Sendung"
3336
 
3337
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:75
3338
  msgctxt "shipments"
3339
  msgid "Return"
3340
  msgstr "Retoure"
3341
 
3342
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:102
3343
  msgctxt "shipments"
3344
  msgid "Not shipped"
3345
  msgstr "Nicht versandt"
3346
 
3347
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:103
3348
  msgctxt "shipments"
3349
  msgid "Partially shipped"
3350
  msgstr "Teilweise versandt"
3351
 
3352
  # @ woocommerce-germanized
3353
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:104
3354
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:321
3355
  #: woocommerce-germanized-shipments/src/Admin/Table.php:854
3356
  msgctxt "shipments"
3357
  msgid "Shipped"
3358
  msgstr "Versandt"
3359
 
3360
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:121
3361
  msgctxt "shipments"
3362
  msgid "Open"
3363
  msgstr "Offen"
3364
 
3365
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:122
3366
  msgctxt "shipments"
3367
  msgid "Partially returned"
3368
  msgstr "Teilweise retourniert"
3369
 
3370
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:123
3371
  msgctxt "shipments"
3372
  msgid "Returned"
3373
  msgstr "Retourniert"
3374
 
3375
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:319
3376
  msgctxt "shipments"
3377
  msgid "Draft"
3378
  msgstr "Entwurf"
3379
 
3380
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:320
3381
  #: woocommerce-germanized-shipments/src/Admin/Table.php:846
3382
  msgctxt "shipments"
3383
  msgid "Processing"
3384
  msgstr "In Bearbeitung"
3385
 
3386
  # @ woocommerce-germanized
3387
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:322
3388
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:50
3389
  msgctxt "shipments"
3390
  msgid "Delivered"
3391
  msgstr "Geliefert"
3392
 
3393
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:323
3394
  msgctxt "shipments"
3395
  msgid "Requested"
3396
  msgstr "Beantragt"
3397
 
3398
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:372
3399
  #: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:81
3400
  #: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:135
3401
  msgctxt "shipments"
3402
  msgid "Invalid order."
3403
  msgstr "Ungültige Bestellung."
3404
 
3405
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:376
3406
  msgctxt "shipments"
3407
  msgid "This order is already fully returned."
3408
  msgstr "Diese Bestellung wurde bereits vollständig zurückgesendet."
3409
 
3410
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:387
3411
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:428
3412
  msgctxt "shipments"
3413
  msgid "Error while creating the shipment instance"
3414
  msgstr "Fehler beim Erstellen der Sendungsinstanz"
3415
 
3416
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:413
3417
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:417
3418
- #: woocommerce-germanized-shipments/src/ReturnShipment.php:420
3419
- #: woocommerce-germanized-shipments/src/ReturnShipment.php:479
3420
  #: woocommerce-germanized-shipments/src/SimpleShipment.php:118
3421
- #: woocommerce-germanized-shipments/src/SimpleShipment.php:214
3422
  msgctxt "shipments"
3423
  msgid "Invalid shipment order"
3424
  msgstr "Ungültige Bestellung zur Sendung"
3425
 
3426
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:447
3427
  msgctxt "shipments"
3428
  msgid "Invalid order item"
3429
  msgstr "Ungültige Bestellposition"
3430
 
3431
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:569
3432
  msgctxt "shipments"
3433
  msgid "Invalid shipment item"
3434
  msgstr "Ungültige Sendungsposition"
3435
 
3436
  # @ woocommerce-germanized
3437
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:642
3438
  msgctxt "shipments"
3439
  msgid "None"
3440
  msgstr "Keiner"
3441
 
3442
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:715
3443
  msgctxt "shipments"
3444
  msgid "Error while uploading file."
3445
  msgstr "Fehler beim Hochladen der Datei."
3446
 
3447
  # @ woocommerce-germanized
3448
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1026
3449
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:23
3450
  #: woocommerce-germanized-shipments/src/Admin/Table.php:687
3451
  msgctxt "shipments"
3452
  msgid "Date"
3453
  msgstr "Datum"
3454
 
3455
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1028
3456
  #: woocommerce-germanized-shipments/templates/shipment/shipment-details-tracking.php:23
3457
  msgctxt "shipments"
3458
  msgid "Tracking"
3459
  msgstr "Sendungsverfolgung"
3460
 
3461
  # @ woocommerce-germanized
3462
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1029
3463
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:98
3464
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:30
3465
  #: woocommerce-germanized-shipments/src/Admin/Table.php:694
@@ -3467,13 +3484,13 @@ msgctxt "shipments"
3467
  msgid "Actions"
3468
  msgstr "Aktionen"
3469
 
3470
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1265
3471
  msgctxt "shipments"
3472
  msgid "View"
3473
  msgstr "Anzeigen"
3474
 
3475
  # @ woocommerce-germanized
3476
- #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1272
3477
  #: woocommerce-germanized-shipments/src/Admin/Table.php:865
3478
  #: woocommerce-germanized-shipments/src/Ajax.php:337
3479
  msgctxt "shipments"
@@ -4692,7 +4709,7 @@ msgid "%1$s (%2$s, %3$s)"
4692
  msgstr "%1$s (%2$s, %3$s)"
4693
 
4694
  #: woocommerce-germanized-shipments/src/ReturnShipment.php:356
4695
- #: woocommerce-germanized-shipments/src/Shipment.php:882
4696
  #, php-format
4697
  msgctxt "full name"
4698
  msgid "%1$s %2$s"
@@ -5468,6 +5485,17 @@ msgstr ""
5468
  "Wählen Sie Versandmethoden aus für die die Paketdienstleister Checkbox "
5469
  "angezeigt werden soll."
5470
 
 
 
 
 
 
 
 
 
 
 
 
5471
  #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-product-categories.php:58
5472
  #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-product-categories.php:79
5473
  #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:183
@@ -5499,7 +5527,7 @@ msgstr "Germanize"
5499
  #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:73
5500
  #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:153
5501
  #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:79
5502
- #: woocommerce-germanized/woocommerce-germanized.php:820
5503
  msgid "Settings"
5504
  msgstr "Einstellungen"
5505
 
@@ -6174,6 +6202,42 @@ msgstr "Jetzt Bewertung verfassen"
6174
  msgid "Found Bugs?"
6175
  msgstr "Bugs oder Wünsche melden"
6176
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6177
  #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-template-outdated.php:53
6178
  msgid "Your theme contains outdated Germanized template files"
6179
  msgstr "Ihr Theme enthält veraltete Germanized Templates"
@@ -6295,12 +6359,6 @@ msgstr ""
6295
  msgid "Upgrade now"
6296
  msgstr "Jetzt upgraden"
6297
 
6298
- #: woocommerce-germanized/includes/admin/settings/abstract-wc-gzd-settings-tab.php:152
6299
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-dhl.php:35
6300
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:61
6301
- msgid "Learn more"
6302
- msgstr "Mehr erfahren"
6303
-
6304
  # @ woocommerce-germanized
6305
  # @ woocommerce
6306
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-pointers.php:78
@@ -6832,10 +6890,10 @@ msgstr ""
6832
  #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:144
6833
  #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:138
6834
  #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:145
6835
- #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:553
6836
- #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:566
6837
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:221
6838
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:229
6839
  msgid "Title"
6840
  msgstr "Anrede"
6841
 
@@ -7172,7 +7230,7 @@ msgstr "Jetzt hinzufügen"
7172
  # @ woocommerce-germanized
7173
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:209
7174
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:371
7175
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:161
7176
  msgid "Notice Text"
7177
  msgstr "Hinweistext"
7178
 
@@ -7629,6 +7687,7 @@ msgstr "Preisauszeichnung „%s“ anzeigen"
7629
 
7630
  # @ woocommerce-germanized
7631
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:311
 
7632
  msgid "Tax"
7633
  msgstr "Steuer"
7634
 
@@ -7927,8 +7986,8 @@ msgid "VAT"
7927
  msgstr "Umsatzsteuer"
7928
 
7929
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:31
7930
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:97
7931
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:120
7932
  msgid "Split-tax"
7933
  msgstr "Anteilige Steuerberechnung"
7934
 
@@ -7937,13 +7996,13 @@ msgid "Differential Taxation"
7937
  msgstr "Differenzbesteuerung"
7938
 
7939
  # @ woocommerce-germanized
7940
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:38
7941
  #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:101
7942
  msgid "Virtual VAT"
7943
  msgstr "USt. Änderung 2015"
7944
 
7945
  # @ woocommerce-germanized
7946
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:39
7947
  msgid ""
7948
  "Enable if you want to charge your customer's countries' VAT for virtual "
7949
  "products."
@@ -7951,7 +8010,7 @@ msgstr ""
7951
  "Für virtuelle Produkte den USt.-Satz des Dienstleistungsempfängers berechnen."
7952
 
7953
  # @ woocommerce-germanized
7954
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:39
7955
  #, php-format
7956
  msgid ""
7957
  "New EU VAT rule applies on 01.01.2015. Make sure that every digital or "
@@ -7974,15 +8033,15 @@ msgstr ""
7974
  "dazu finden Sie <a href=\"%s\" target=\"_blank\">hier</a>."
7975
 
7976
  # @ woocommerce-germanized
7977
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:51
7978
  msgid "Tax Rate"
7979
  msgstr "Steuersatz"
7980
 
7981
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:52
7982
  msgid "Hide specific tax rate within shop pages."
7983
  msgstr "Entfernt die Anzeige des konkreten Steuersatzes für Produkte im Shop."
7984
 
7985
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:56
7986
  msgid ""
7987
  "This option will make sure that within shop pages no specific tax rates are "
7988
  "shown. Instead only incl. tax or excl. tax notice is shown."
@@ -7991,12 +8050,12 @@ msgstr ""
7991
  "Steuersatz im MwSt.-Hinweis nicht auftaucht. Stattdessen steht dort inkl. "
7992
  "bzw. exkl. MwSt."
7993
 
7994
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:68
7995
  msgid "VAT ID"
7996
  msgstr "Umsatzsteuer-ID"
7997
 
7998
  # @ woocommerce-germanized
7999
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:71
8000
  #, php-format
8001
  msgid ""
8002
  "%sUpgrade to %spro%s%s to unlock this feature and enjoy premium support."
@@ -8005,87 +8064,73 @@ msgstr ""
8005
  "erhalten Sie professionellen Support."
8006
 
8007
  # @ woocommerce-germanized
8008
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:87
8009
  #, php-format
8010
  msgid ""
8011
- "By choosing this option shipping cost taxation will be calculated based on "
8012
- "tax rates within cart. Imagine the following example. Further information "
8013
- "can be found <a href=\"%s\" target=\"_blank\">here</a>. %s"
 
8014
  msgstr ""
8015
- "Mit der Auswahl dieser Option werden die Steuern für Versandkosten basierend "
8016
- "auf den Anteilen der Steuersätze der Artikel im Warenkorb berechnet. Weitere "
8017
- "Informationen finden Sie <a href=\"%s\" target=\"_blank\">hier</a>. Falls "
8018
- "Sie vorher mit Nettobeträgen gearbeitet haben, ändern Sie die Versandkosten "
8019
- "bitte in Bruttobeträge. Hier ein kleines Beispiel: %s"
8020
 
8021
  # @ woocommerce-germanized
8022
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
8023
- msgid "Shipping costs"
8024
- msgstr "Versandkosten"
8025
 
8026
- # @ woocommerce-germanized
8027
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:98
8028
- msgid "Enable split-tax calculation for shipping costs."
8029
- msgstr "Aktiviere die anteilige Besteuerung für Versandkosten."
8030
 
8031
- # @ woocommerce-germanized
8032
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:104
8033
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:127
8034
- msgid "Force"
8035
- msgstr "Erzwingen"
8036
 
8037
  # @ woocommerce-germanized
8038
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:105
8039
- msgid "Force split-tax calculation for shipping methods."
8040
- msgstr ""
8041
- "Erzwinge die anteilige Besteuerung der Versandkosten für jede Versandart."
8042
 
8043
- # @ woocommerce-germanized
8044
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:112
8045
- msgid ""
8046
- "This option will overwrite settings for each individual shipping method to "
8047
- "force tax calculation (instead of only calculating tax for those methods "
8048
- "which are taxeable)."
8049
- msgstr ""
8050
- "Diese Option überschreibt alle abweichenden Einstellungen verschiedener "
8051
- "Versandarten und erzwingt die Steuerberechnung."
8052
 
8053
- # @ woocommerce-germanized
8054
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:117
8055
- msgid "Fees"
8056
- msgstr "Gebühren"
8057
 
8058
- # @ woocommerce-germanized
8059
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:121
8060
- msgid "Enable split-tax calculation for fees."
8061
- msgstr "Aktiviere die anteilige Besteuerung für Gebühren."
8062
 
8063
  # @ woocommerce-germanized
8064
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:128
8065
- msgid "Force split-tax calculation for fees."
8066
- msgstr "Erzwinge die anteilige Besteuerung für Gebühren."
8067
 
8068
  # @ woocommerce-germanized
8069
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:135
8070
  msgid ""
8071
- "This option will overwrite settings for each individual fee to force tax "
8072
- "calculation (instead of only calculating tax for those fees which are "
8073
- "taxeable)."
8074
  msgstr ""
8075
- "Diese Option überschreibt die Einstellungen aller Gebühren und erzwingt die "
8076
- "Steuerberechnung."
8077
 
8078
  # @ woocommerce-germanized
8079
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:147
8080
  msgid "Taxation Notice"
8081
  msgstr "Steuerhinweis"
8082
 
8083
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:148
8084
  msgid "Enable differential taxation text notice beneath product price."
8085
  msgstr ""
8086
  "Aktiviert den Hinweis zur Differenzbesteuerung unterhalb des Produktpreises."
8087
 
8088
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:148
8089
  msgid ""
8090
  "If you have disabled this option, a normal VAT notice will be displayed, "
8091
  "which is sufficient as Trusted Shops states. To further inform your "
@@ -8095,17 +8140,17 @@ msgstr ""
8095
  "angezeigt. Der Standard-Hinweis ist laut Trusted Shops bereits ausreichend. "
8096
  "Sie können diesen Hinweis nutzen um Ihre Kunden besser zu informieren."
8097
 
8098
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:154
8099
  msgid "Mixed carts"
8100
  msgstr "Gemischte Warenkörbe"
8101
 
8102
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:155
8103
  msgid ""
8104
  "Disallow buying normal and differential taxed products at the same time."
8105
  msgstr ""
8106
  "Verbiete gleichzeitig normale und differenzbesteuerte Produkte zu kaufen."
8107
 
8108
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:155
8109
  #, php-format
8110
  msgid ""
8111
  "Shipping costs for differential taxed products may not be taxed (compare %s) "
@@ -8119,11 +8164,11 @@ msgstr ""
8119
  "verhindert, dass Kunden normale und differenzbesteuerte Produkte "
8120
  "gleichzeitig kaufen."
8121
 
8122
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:155
8123
  msgid "HK Hamburg"
8124
  msgstr "HK Hamburg"
8125
 
8126
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:162
8127
  msgid ""
8128
  "This text will be shown as a further notice for the customer to inform him "
8129
  "about differential taxation."
@@ -8131,22 +8176,22 @@ msgstr ""
8131
  "Dieser Text dient zur weiterführenden Information ihrer Kunden bzgl. der "
8132
  "Differenzbesteuerung."
8133
 
8134
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:167
8135
  msgid "incl. VAT (differential taxation according to §25a UStG.)"
8136
  msgstr "inkl. MwSt. (differenzbesteuert nach §25a UStG.)"
8137
 
8138
  # @ woocommerce-germanized
8139
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:171
8140
  msgid "Checkout & E-Mails"
8141
  msgstr "Kasse & E-Mails"
8142
 
8143
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:172
8144
  msgid "Enable differential taxation notice during checkout and in emails."
8145
  msgstr ""
8146
  "Aktiviert den Hinweis zur Differenzbesteuerung im Checkout und in E-Mails."
8147
 
8148
  # @ woocommerce-germanized
8149
- #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:217
8150
  msgid ""
8151
  "Sorry, but the new Virtual VAT rules cannot be applied to small business."
8152
  msgstr ""
@@ -8286,6 +8331,18 @@ msgstr ""
8286
  msgid "Hide"
8287
  msgstr "Ausblenden"
8288
 
 
 
 
 
 
 
 
 
 
 
 
 
8289
  # @ woocommerce-germanized
8290
  #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:12
8291
  msgid ""
@@ -8325,21 +8382,10 @@ msgstr "Datenbank Version"
8325
  msgid "Term doesn’t exist"
8326
  msgstr "Term existiert nicht"
8327
 
8328
- # @ woocommerce-germanized
8329
- #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:91
8330
- msgid "Shipping Taxes"
8331
- msgstr "Versandkostenbesteuerung"
8332
-
8333
- # @ woocommerce-germanized
8334
- #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:93
8335
- #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:98
8336
- msgid "Forced"
8337
- msgstr "Erzwungen"
8338
-
8339
  # @ woocommerce-germanized
8340
  #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:96
8341
- msgid "Fee Taxes"
8342
- msgstr "Gebührenbesteuerung"
8343
 
8344
  # @ woocommerce-germanized
8345
  #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:106
@@ -8876,7 +8922,7 @@ msgstr ""
8876
  "Vielen Dank. Wir haben Ihren Widerruf erhalten. Sie bekommen in Kürze eine E-"
8877
  "Mail mit Ihren Daten als Bestätigung."
8878
 
8879
- #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:227
8880
  msgid ""
8881
  "Sorry, but differential taxed products cannot be purchased with normal "
8882
  "products at the same time."
@@ -8884,7 +8930,7 @@ msgstr ""
8884
  "Entschuldigung, differenzbesteuerte Produkte können nicht gemeinsam mit "
8885
  "normalen Produkten gekauft werden."
8886
 
8887
- #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:233
8888
  msgid ""
8889
  "Sorry, but normal products cannot be purchased together with differential "
8890
  "taxed products at the same time."
@@ -8893,23 +8939,40 @@ msgstr ""
8893
  "differenzbesteuerten Produkten gekauft werden."
8894
 
8895
  # @ woocommerce-germanized
8896
- #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:790
8897
  #: woocommerce-germanized/includes/class-wc-gzd-revocation.php:52
8898
  #: woocommerce-germanized/includes/wc-gzd-core-functions.php:604
8899
  msgid "Mr."
8900
  msgstr "Herr"
8901
 
8902
  # @ woocommerce-germanized
8903
- #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:791
8904
  msgctxt "customer-title-male-address"
8905
  msgid "Mr."
8906
  msgstr "Herrn"
8907
 
8908
- #: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:318
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8909
  msgid "Is voucher?"
8910
  msgstr "Wertgutschein?"
8911
 
8912
- #: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:319
8913
  #, php-format
8914
  msgid ""
8915
  "Whether or not this coupon is a voucher which has been sold to a customer "
@@ -8922,8 +8985,8 @@ msgstr ""
8922
  "\">hier</a>."
8923
 
8924
  #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:147
8925
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:208
8926
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:319
8927
  msgid ""
8928
  "Please activate your account through clicking on the activation link "
8929
  "received via email."
@@ -8938,18 +9001,18 @@ msgid "Did not receive the activation email? <a href=\"%s\">Try again</a>."
8938
  msgstr ""
8939
  "Keine Aktivierungs-E-Mail erhalten? <a href=\"%s\">Erneut zusenden</a>."
8940
 
8941
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:329
8942
  #, php-format
8943
  msgid "Continue without creating an account? <a href=\"%s\">Click here</a>"
8944
  msgstr "Weiter zur Kasse ohne Kundenkonto? <a href=\"%s\">Hier klicken</a>"
8945
 
8946
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:331
8947
  msgid "Please create an account or login before continuing to checkout"
8948
  msgstr ""
8949
  "Bitte erstellen Sie ein Kundenkonto oder loggen Sie sich ein, bevor Sie zur "
8950
  "Kasse gehen"
8951
 
8952
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:439
8953
  #, php-format
8954
  msgid ""
8955
  "Please activate your account through clicking on the activation link "
@@ -8958,7 +9021,7 @@ msgstr ""
8958
  "Bitte aktivieren Sie Ihr Kundenkonto indem Sie auf den Link in der E-Mail "
8959
  "klicken. Keine E-Mail erhalten? <a href=\"%s\">Erneut zusenden</a>."
8960
 
8961
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:471
8962
  msgid ""
8963
  "This activation code has expired. We have sent you a new activation code via "
8964
  "e-mail."
@@ -8967,20 +9030,20 @@ msgstr ""
8967
  "Code per E-Mail geschickt."
8968
 
8969
  # @ woocommerce-germanized
8970
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:473
8971
  msgid "Sorry, but this activation code cannot be found."
8972
  msgstr "Sorry, dieser Aktivierungscode ist uns leider nicht bekannt."
8973
 
8974
  # @ woocommerce-germanized
8975
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:477
8976
  msgid "Thank you. You have successfully activated your account."
8977
  msgstr "Vielen Dank. Ihr Benutzerkonto wurde erfolgreich aktiviert."
8978
 
8979
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:657
8980
  msgid "Expired activation key"
8981
  msgstr "Abgelaufener Aktivierungscode"
8982
 
8983
- #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:662
8984
  msgid "Invalid activation key"
8985
  msgstr "Aktivierungscode ungültig"
8986
 
@@ -9039,7 +9102,7 @@ msgid "Forward your Revocation online"
9039
  msgstr "Widerruf online erklären"
9040
 
9041
  # @ woocommerce-germanized
9042
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:166
9043
  #, php-format
9044
  msgid ""
9045
  "Please install <a href=\"%s\" target=\"_blank\">WooCommerce</a> before "
@@ -9048,85 +9111,85 @@ msgstr ""
9048
  "Bitte installieren Sie <a href=\"%s\" target=\"_blank\">WooCommerce</a> "
9049
  "bevor Sie WooCommerce Germanized installieren. Vielen Dank!"
9050
 
9051
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:486
9052
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:500
9053
  msgid "Reduced rate"
9054
  msgstr "Ermäßigter Steuersatz"
9055
 
9056
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:542
9057
  #, php-format
9058
  msgctxt "vat-rate-import"
9059
  msgid "VAT %s"
9060
  msgstr "MwSt. %s"
9061
 
9062
  # @ woocommerce-germanized
9063
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:657
9064
  msgctxt "Page slug"
9065
  msgid "data-security"
9066
  msgstr "datenschutzerklaerung"
9067
 
9068
  # @ woocommerce-germanized
9069
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:658
9070
  msgctxt "Page title"
9071
  msgid "Data Security Statement"
9072
  msgstr "Datenschutzerklärung"
9073
 
9074
  # @ woocommerce-germanized
9075
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:662
9076
  msgctxt "Page slug"
9077
  msgid "imprint"
9078
  msgstr "impressum"
9079
 
9080
  # @ woocommerce-germanized
9081
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:663
9082
  msgctxt "Page title"
9083
  msgid "Imprint"
9084
  msgstr "Impressum"
9085
 
9086
  # @ woocommerce-germanized
9087
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:667
9088
  msgctxt "Page slug"
9089
  msgid "terms"
9090
  msgstr "agb"
9091
 
9092
  # @ woocommerce-germanized
9093
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:668
9094
  msgctxt "Page title"
9095
  msgid "Terms & Conditions"
9096
  msgstr "AGB"
9097
 
9098
  # @ woocommerce-germanized
9099
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:672
9100
  msgctxt "Page slug"
9101
  msgid "revocation"
9102
  msgstr "widerrufsbelehrung"
9103
 
9104
  # @ woocommerce-germanized
9105
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:673
9106
  msgctxt "Page title"
9107
  msgid "Power of Revocation"
9108
  msgstr "Widerrufsbelehrung"
9109
 
9110
  # @ woocommerce-germanized
9111
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:677
9112
  msgctxt "Page slug"
9113
  msgid "shipping-methods"
9114
  msgstr "versandarten"
9115
 
9116
  # @ woocommerce-germanized
9117
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:678
9118
  msgctxt "Page title"
9119
  msgid "Shipping Methods"
9120
  msgstr "Versandarten"
9121
 
9122
  # @ woocommerce-germanized
9123
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:682
9124
  msgctxt "Page slug"
9125
  msgid "payment-methods"
9126
  msgstr "bezahlmoeglichkeiten"
9127
 
9128
  # @ woocommerce-germanized
9129
- #: woocommerce-germanized/includes/class-wc-gzd-install.php:683
9130
  msgctxt "Page title"
9131
  msgid "Payment Methods"
9132
  msgstr "Zahlungsarten"
@@ -9480,7 +9543,7 @@ msgstr ""
9480
  "kassiert - z.B. DHL (steuerfrei)."
9481
 
9482
  # @ woocommerce-germanized
9483
- #: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:304
9484
  msgid "Payment charge"
9485
  msgstr "Zahlungsgebühr"
9486
 
@@ -10955,7 +11018,7 @@ msgstr "Germanized benötigt mindestens PHP 5.6. Bitte %s Sie Ihre PHP-Version."
10955
  msgid "upgrade"
10956
  msgstr "aktualisieren"
10957
 
10958
- #: woocommerce-germanized/woocommerce-germanized.php:317
10959
  #, php-format
10960
  msgid ""
10961
  "This version of the Corona Helper Plugin includes a bug which could lead to "
@@ -10968,7 +11031,7 @@ msgstr ""
10968
  "unserem <a href=\"%s\" target=\"_blank\">Blog-Post</a> wie Sie das Plugin "
10969
  "austauschen können."
10970
 
10971
- #: woocommerce-germanized/woocommerce-germanized.php:1012
10972
  msgid "Pease wait while we are trying to redirect you to the payment provider."
10973
  msgstr "Einen Moment - wir versuchen Sie zum Zahlungsanbieter weiterzuleiten."
10974
 
@@ -12209,6 +12272,57 @@ msgstr "vendidero"
12209
  msgid "https://vendidero.de"
12210
  msgstr "https://vendidero.de"
12211
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12212
  # @ woocommerce-germanized
12213
  #~ msgctxt "dhl"
12214
  #~ msgid "General"
@@ -12700,9 +12814,6 @@ msgstr "https://vendidero.de"
12700
  #~ msgid "Hide Delivery Time Notice"
12701
  #~ msgstr "Lieferzeiten ausblenden"
12702
 
12703
- #~ msgid "Prices"
12704
- #~ msgstr "Preise"
12705
-
12706
  # @ woocommerce-germanized
12707
  #~ msgid "Base Price Text"
12708
  #~ msgstr "Grundpreis Text"
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce Germanized\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-01-05 12:26+0100\n"
6
+ "PO-Revision-Date: 2021-01-05 12:30+0100\n"
7
  "Last-Translator: holzhannes <holzhannes@posteo.de>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE@formal\n"
46
  msgstr "Zusätzliche Leistungen"
47
 
48
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:36
49
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:514
50
  #, php-format
51
  msgid ""
52
  "Sorry but none of your selected <a href=\"%s\">Deutsche Post Products</a> is "
87
 
88
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:65
89
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:141
90
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:985
91
  #: woocommerce-germanized-dhl/src/ParcelServices.php:29
92
  msgctxt "dhl"
93
  msgid "Preferred Day"
102
  # @ woocommerce-germanized
103
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:87
104
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:169
105
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1005
106
  #: woocommerce-germanized-dhl/src/ParcelServices.php:43
107
  msgctxt "dhl"
108
  msgid "Preferred Location"
109
  msgstr "Wunschort"
110
 
111
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:98
112
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1013
113
  #: woocommerce-germanized-dhl/src/ParcelServices.php:48
114
  msgctxt "dhl"
115
  msgid "Preferred Neighbor"
122
 
123
  # @ woocommerce-germanized
124
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:121
125
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:720
126
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:789
127
  msgctxt "dhl"
128
  msgid "Name"
129
  msgstr "Name"
130
 
131
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:130
132
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:727
133
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:796
134
  msgctxt "dhl"
135
  msgid "Company"
136
  msgstr "Firma"
137
 
138
  # @ woocommerce-germanized
139
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:139
140
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:610
141
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:734
142
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:803
143
  msgctxt "dhl"
144
  msgid "Street"
145
  msgstr "Straße"
152
 
153
  # @ woocommerce-germanized
154
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:159
155
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:611
156
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:755
157
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:824
158
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:27
159
  msgctxt "dhl"
160
  msgid "Postcode"
162
 
163
  # @ woocommerce-germanized
164
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:168
165
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:612
166
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:748
167
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:817
168
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:30
169
  msgctxt "dhl"
170
  msgid "City"
171
  msgstr "Stadt"
172
 
173
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:179
174
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:771
175
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:840
176
  msgctxt "dhl"
177
  msgid "Phone"
178
  msgstr "Telefon"
179
 
180
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:188
181
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:778
182
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:847
183
  msgctxt "dhl"
184
  msgid "Email"
185
  msgstr "E-Mail"
207
 
208
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:228
209
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:331
210
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:526
211
  msgctxt "dhl"
212
  msgid "GoGreen"
213
  msgstr "GoGreen"
229
  msgstr "Keine Nachbarschaftszustellung"
230
 
231
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:272
232
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:554
233
  msgctxt "dhl"
234
  msgid "Named person only"
235
  msgstr "Persönliche Übergabe"
256
  msgstr "Mindestalter"
257
 
258
  #: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:322
259
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:598
260
  msgctxt "dhl"
261
  msgid "Premium"
262
  msgstr "Premium"
267
  msgid "Receiver"
268
  msgstr "Empfänger"
269
 
270
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:18
 
271
  msgctxt "dhl"
272
  msgid "DHL Labels"
273
  msgstr "DHL Labels"
274
 
275
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:21
276
  #, php-format
277
  msgctxt "dhl"
278
  msgid ""
283
  "\">globalen Einstellungen</a>."
284
 
285
  # @ woocommerce-germanized
286
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:31
287
  msgctxt "dhl"
288
  msgid "DHL Label Services"
289
  msgstr "DHL Services"
290
 
291
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:34
292
  #, php-format
293
  msgctxt "dhl"
294
  msgid ""
299
  "\">globalen Einstellungen</a>."
300
 
301
  # @ woocommerce-germanized
302
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:44
303
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:111
304
  msgctxt "dhl"
305
  msgid "Label Automation"
306
  msgstr "Label Automatisierung"
307
 
308
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:47
309
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:114
310
  #, php-format
311
  msgctxt "dhl"
312
  msgid ""
316
  "Automatisierung-Einstellungen für Label anpassen. Änderungen überschreiben "
317
  "die <a href=\"%s\">globalen Einstellungen</a>."
318
 
319
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:57
320
  msgctxt "dhl"
321
  msgid "DHL Preferred Services"
322
  msgstr "DHL Wunschpaket-Services"
323
 
324
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:60
325
  #, php-format
326
  msgctxt "dhl"
327
  msgid ""
331
  "Wunschpaket-Services anpassen. Änderungen überschreiben die <a href=\"%s"
332
  "\">globalen Einstellungen</a>."
333
 
334
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:70
335
  msgctxt "dhl"
336
  msgid "DHL Pickup"
337
  msgstr "DHL Standorte"
338
 
339
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:73
340
  #, php-format
341
  msgctxt "dhl"
342
  msgid ""
346
  "überschreiben die <a href=\"%s\">globalen Einstellungen</a>."
347
 
348
  # @ woocommerce-germanized
349
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:87
350
  msgctxt "dhl"
351
  msgid "Deutsche Post Labels"
352
  msgstr "Deutsche Post Labels"
353
 
354
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:90
355
  #, php-format
356
  msgctxt "dhl"
357
  msgid ""
361
  "Deutsche Post Label Einstellungen anpassen. Änderungen überschreiben die <a "
362
  "href=\"%s\">globalen Einstellungen</a>."
363
 
364
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:99
365
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1385
366
  msgctxt "dhl"
367
  msgid "Printing"
368
  msgstr "Druck"
369
 
370
+ #: woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:102
371
  #, php-format
372
  msgctxt "dhl"
373
  msgid ""
446
  # @ woocommerce-germanized
447
  #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:376
448
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:188
449
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:488
450
  #: woocommerce-germanized-dhl/src/ParcelLocator.php:850
451
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:38
452
  msgctxt "dhl"
466
  msgstr "Empfänger fehlt oder existiert nicht."
467
 
468
  #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:481
469
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:575
470
  #, php-format
471
  msgctxt "dhl"
472
  msgid "Shipment order #%s does not exist"
477
  msgid "The services chosen are not available for the current product."
478
  msgstr "Die ausgewählten Services sind für dieses Produkt nicht verfügbar."
479
 
480
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:541
481
  #, php-format
482
  msgctxt "dhl"
483
  msgid "Deutsche Post product is missing for %s."
484
  msgstr "Deutsche Post Produkt fehlt oder ist nicht verfügbar für %s."
485
 
486
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:617
487
  #, php-format
488
  msgctxt "dhl"
489
  msgid "%s of the return address is a mandatory field."
490
  msgstr "%s der Rücksendeadresse ist ein Pflichtfeld."
491
 
492
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:622
493
  msgctxt "dhl"
494
  msgid "Please either add a return company or name."
495
  msgstr ""
496
  "Bitte geben Sie entweder einen Firmennamen oder Namen für die "
497
  "Rücksendeadresse an."
498
 
499
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:641
500
  msgctxt "dhl"
501
  msgid "Error while parsing preferred day."
502
  msgstr "Fehler beim Einlesen des Wunschtags."
503
 
504
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:652
505
  msgctxt "dhl"
506
  msgid "Error while parsing preferred time."
507
  msgstr "Fehler beim Einlesen der Wunschzeit."
508
 
509
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:677
510
  msgctxt "dhl"
511
  msgid "The visual min age check is invalid."
512
  msgstr "Das Alter der Alterssichtprüfung ist ungültig."
513
 
514
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:701
515
  msgctxt "dhl"
516
  msgid "The ident min age check is invalid."
517
  msgstr "Das Alter des Ident-Checks ist ungültig."
518
 
519
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:708
520
  msgctxt "dhl"
521
  msgid "There was an error parsing the date of birth for the identity check."
522
  msgstr ""
523
  "Beim Einlesen des Geburtsdatums für den Ident-Check trat ein Problem auf."
524
 
525
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:713
526
  msgctxt "dhl"
527
  msgid ""
528
  "Either a minimum age or a date of birth must be added to the ident check."
531
  "hinzugefügt werden."
532
 
533
  # @ woocommerce-germanized
534
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:727
535
  #, php-format
536
  msgctxt "dhl"
537
  msgid "%s duties element does not exist."
538
  msgstr "%s Zollabgabe existiert nicht."
539
 
540
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1390
541
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1474
542
  msgctxt "dhl"
543
  msgid "Invalid shipment"
544
  msgstr "Ungültige Sendung"
545
 
546
  # @ woocommerce-germanized
547
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1394
548
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1478
549
  msgctxt "dhl"
550
  msgid "Order does not exist"
551
  msgstr "Bestellung existiert nicht"
552
 
553
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1426
554
  msgctxt "dhl"
555
  msgid "Error while creating the label instance"
556
  msgstr "Fehler beim Erstellen der Label-Instanz"
557
 
558
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1549
559
  msgctxt "dhl"
560
  msgid "Invalid label"
561
  msgstr "Ungültiges Label"
562
 
563
  # @ woocommerce-germanized
564
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1637
565
  msgctxt "dhl"
566
  msgid "DHL Retoure International A"
567
  msgstr "DHL Retoure International A"
568
 
569
  # @ woocommerce-germanized
570
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1638
571
  msgctxt "dhl"
572
  msgid "DHL Retoure International B"
573
  msgstr "DHL Retoure International B"
574
 
575
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1647
576
  msgctxt "dhl"
577
  msgid "DHL Retoure Online"
578
  msgstr "DHL Retoure Online"
579
 
580
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1664
581
  msgctxt "dhl"
582
  msgid "DHL Paket Connect"
583
  msgstr "DHL Paket Connect"
584
 
585
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1665
586
  msgctxt "dhl"
587
  msgid "DHL Europaket (B2B)"
588
  msgstr "DHL Europaket (B2B)"
589
 
590
  # @ woocommerce-germanized
591
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1666
592
  msgctxt "dhl"
593
  msgid "DHL Paket International"
594
  msgstr "DHL Paket International"
595
 
596
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1741
597
  msgctxt "dhl"
598
  msgid "DHL Paket"
599
  msgstr "DHL Paket"
600
 
601
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1742
602
  msgctxt "dhl"
603
  msgid "DHL Paket PRIO"
604
  msgstr "DHL Paket PRIO"
605
 
606
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1743
607
  msgctxt "dhl"
608
  msgid "DHL Paket Taggleich"
609
  msgstr "DHL Paket Taggleich"
610
 
611
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1744
612
  msgctxt "dhl"
613
  msgid "DHL Warenpost"
614
  msgstr "DHL Warenpost"
615
 
616
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1831
617
  msgctxt "dhl"
618
  msgid "Error while uploading label."
619
  msgstr "Fehler beim Hochladen des Labels."
717
  "Ordner %s manuell und stellen Sie sicher, dass der Ordner beschreibbar ist."
718
 
719
  #: woocommerce-germanized-dhl/src/Admin/Admin.php:271
720
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1477
721
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:39
722
  msgctxt "dhl"
723
  msgid "DHL"
789
 
790
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:80
791
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:328
792
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:469
793
  msgctxt "dhl"
794
  msgid "Inlay Returns"
795
  msgstr "Beilageretouren"
804
  "sollten Sie diese Funktion standardmäßig aktivieren."
805
 
806
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:94
807
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:872
808
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:964
809
  msgctxt "dhl"
810
  msgid "Retoure"
811
  msgstr "Retoure"
840
 
841
  # @ woocommerce-germanized
842
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:122
843
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:896
844
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1402
845
  msgctxt "dhl"
846
  msgid "Automation"
847
  msgstr "Automatisierung"
867
 
868
  # @ woocommerce-germanized
869
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:155
870
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:993
871
  msgctxt "dhl"
872
  msgid "Fee"
873
  msgstr "Gebühr"
900
  "im Folgenden konfiguriert) als Lieferadresse auswählen."
901
 
902
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:202
903
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1141
904
  msgctxt "dhl"
905
  msgid "Map"
906
  msgstr "Karte"
917
  "Kartenansicht einen gültigen Google Maps API Schlüssel."
918
 
919
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:223
920
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1178
921
  msgctxt "dhl"
922
  msgid "Enable"
923
  msgstr "Aktivieren"
1073
  msgstr "Vertragsdaten"
1074
 
1075
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:392
1076
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1233
1077
  msgctxt "dhl"
1078
  msgid "Domestic Default Service"
1079
  msgstr "Nationaler Standard Service"
1090
  "nachträglich ändern)."
1091
 
1092
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:402
1093
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1253
1094
  msgctxt "dhl"
1095
  msgid "Int. Default Service"
1096
  msgstr "Internationaler Standard Service"
1139
 
1140
  # @ woocommerce-germanized
1141
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:432
1142
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1211
1143
  msgctxt "dhl"
1144
  msgid "Default weight (kg)"
1145
  msgstr "Standardgewicht (kg)"
1146
 
1147
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:434
1148
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1213
1149
  msgctxt "dhl"
1150
  msgid ""
1151
  "Choose a default shipment weight to be used for labels if no weight has been "
1155
  "für die das Gewicht nicht automatisch bestimmt werden kann."
1156
 
1157
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:443
1158
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1222
1159
  msgctxt "dhl"
1160
  msgid "Minimum weight (kg)"
1161
  msgstr "Mindestgewicht (kg)"
1162
 
1163
  #: woocommerce-germanized-dhl/src/Admin/Settings.php:445
1164
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1224
1165
  msgctxt "dhl"
1166
  msgid ""
1167
  "Choose a minimum weight to be used for labels e.g. to prevent low shipment "
1197
  "Sie Ihre Datenschutzerklärung und suchen Sie im Zweifel anwaltlichen Rat "
1198
  "bevor Sie diese Option aktivieren."
1199
 
1200
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:470
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1201
  msgctxt "dhl"
1202
  msgid ""
1203
  "Additionally create inlay return labels for shipments that support returns."
1205
  "Erzeuge zusätzlich Beilage-Retourenlabels für Sendungen die Retouren "
1206
  "unterstützen."
1207
 
1208
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:489
1209
  msgctxt "dhl"
1210
  msgid "Enable delivery to Packstation."
1211
  msgstr "Aktiviere den Versand an Packstationen."
1212
 
1213
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:490
1214
  msgctxt "dhl"
1215
  msgid "Let customers choose a Packstation as delivery address."
1216
  msgstr "Kunden eine Packstation als Lieferadresse auswählen lassen."
1217
 
1218
  # @ woocommerce-germanized
1219
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:497
1220
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:50
1221
  msgctxt "dhl"
1222
  msgid "Postoffice"
1223
  msgstr "Postfiliale"
1224
 
1225
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:498
1226
  msgctxt "dhl"
1227
  msgid "Enable delivery to Post Offices."
1228
  msgstr "Aktiviere den Versand an Postfilialen."
1229
 
1230
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:499
1231
  msgctxt "dhl"
1232
  msgid "Let customers choose a Post Office as delivery address."
1233
  msgstr "Kunden eine Postfiliale als Lieferadresse auswählen lassen."
1234
 
1235
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:506
1236
  msgctxt "dhl"
1237
  msgid "Parcel Shop"
1238
  msgstr "Paketshop"
1239
 
1240
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:507
1241
  msgctxt "dhl"
1242
  msgid "Enable delivery to Parcel Shops."
1243
  msgstr "Lieferung an Paketshops aktivieren."
1244
 
1245
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:508
1246
  msgctxt "dhl"
1247
  msgid "Let customers choose a Parcel Shop as delivery address."
1248
  msgstr "Kunden einen Paketshop als Lieferadresse auswählen lassen."
1249
 
1250
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:527
1251
  msgctxt "dhl"
1252
  msgid "Enable the GoGreen Service by default."
1253
  msgstr "Buche den GoGreen Service hinzu."
1254
 
1255
  # @ woocommerce-germanized
1256
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:533
1257
  msgctxt "dhl"
1258
  msgid "Additional Insurance"
1259
  msgstr "Transportversicherung"
1260
 
1261
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:534
1262
  msgctxt "dhl"
1263
  msgid "Add an additional insurance to labels."
1264
  msgstr "Füge eine Transportversicherung zur Sendung hinzu."
1265
 
1266
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:540
1267
  msgctxt "dhl"
1268
  msgid "Retail Outlet Routing"
1269
  msgstr "Filialrouting"
1270
 
1271
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:541
1272
  msgctxt "dhl"
1273
  msgid ""
1274
  "Send undeliverable items to nearest retail outlet instead of immediate "
1277
  "Sende unzustellbare Sendungen in die nächstgelegene Filiale zur Abholung "
1278
  "anstelle diese direkt zurückzusenden."
1279
 
1280
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:547
1281
  msgctxt "dhl"
1282
  msgid "No Neighbor"
1283
  msgstr "Keine Nachbarschaftszustellung"
1284
 
1285
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:548
1286
  msgctxt "dhl"
1287
  msgid "Do not deliver to neighbors."
1288
  msgstr "Schließe eine Ersatzzustellung beim Nachbarn aus."
1289
 
1290
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:555
1291
  msgctxt "dhl"
1292
  msgid "Do only delivery to named person."
1293
  msgstr ""
1294
  "Lasse Pakete nur an den Empfänger persönlich oder an eine bevollmächtigte "
1295
  "Person übergeben."
1296
 
1297
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:561
1298
  msgctxt "dhl"
1299
  msgid "Bulky Goods"
1300
  msgstr "Sperrgut"
1301
 
1302
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:562
1303
  msgctxt "dhl"
1304
  msgid "Deliver as bulky goods."
1305
  msgstr "Sende Pakete als Sperrgut."
1306
 
1307
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:568
1308
  msgctxt "dhl"
1309
  msgid "Minimum age (Visual check)"
1310
  msgstr "Mindestalter (Visuell)"
1311
 
1312
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:573
1313
  msgctxt "dhl"
1314
  msgid "Choose this option if you want to let DHL check your customer's age."
1315
  msgstr ""
1316
  "Wählen Sie diese Option aus, wenn Sie das Alter durch DHL prüfen lassen "
1317
  "möchten."
1318
 
1319
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:576
1320
  msgctxt "dhl"
1321
  msgid "Sync (Visual Check)"
1322
  msgstr "Synchronisation (Visuell)"
1323
 
1324
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:577
1325
  msgctxt "dhl"
1326
  msgid "Visually verify age if shipment contains applicable items."
1327
  msgstr ""
1328
  "Aktiviere die Alterssichtprüfung, falls die Sendung zu prüfende Positionen "
1329
  "beinhaltet."
1330
 
1331
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:577
1332
  #, php-format
1333
  msgctxt "dhl"
1334
  msgid ""
1341
  "Alterssichtprüfung automatisch aktiviert, falls eine Sendung zu prüfenden "
1342
  "Produkte beinhaltet."
1343
 
1344
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:577
1345
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:592
1346
  msgctxt "dhl"
1347
  msgid "age verification checkbox"
1348
  msgstr "Checkbox zur Altersprüfung"
1349
 
1350
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:583
1351
  msgctxt "dhl"
1352
  msgid "Minimum age (Ident check)"
1353
  msgstr "Mindestalter (Identität)"
1354
 
1355
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:588
1356
  msgctxt "dhl"
1357
  msgid ""
1358
  "Choose this option if you want to let DHL check your customer's identity and "
1362
  "prüfen lassen möchten."
1363
 
1364
  # @ woocommerce-germanized
1365
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:591
1366
  msgctxt "dhl"
1367
  msgid "Sync (Ident Check)"
1368
  msgstr "Synchronisation (Identität)"
1369
 
1370
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:592
1371
  msgctxt "dhl"
1372
  msgid "Verify identity and age if shipment contains applicable items."
1373
  msgstr ""
1374
  "Aktiviere die Identitätsprüfung, falls die Sendung zu prüfende Positionen "
1375
  "beinhaltet."
1376
 
1377
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:592
1378
  #, php-format
1379
  msgctxt "dhl"
1380
  msgid ""
1387
  "Identitätsprüfung automatisch aktiviert, falls eine Sendung zu prüfenden "
1388
  "Produkte beinhaltet."
1389
 
1390
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:599
1391
  msgctxt "dhl"
1392
  msgid "Premium delivery for international shipments."
1393
  msgstr "Premium Lieferung für internationale Sendungen."
1394
 
1395
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:618
1396
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1275
1397
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1478
1398
  msgctxt "dhl"
1399
  msgid "Labels"
1400
  msgstr "Labels"
1401
 
1402
  # @ woocommerce-germanized
1403
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:619
1404
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1276
1405
  msgctxt "dhl"
1406
  msgid "Automatically create labels for shipments."
1407
  msgstr "Automatisch Labels zu Sendungen erstellen."
1408
 
1409
  # @ woocommerce-germanized
1410
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:626
1411
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:653
1412
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1283
1413
  msgctxt "dhl"
1414
  msgid "Status"
1415
  msgstr "Status"
1416
 
1417
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:630
1418
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1287
1419
  msgctxt "dhl"
1420
  msgid "Choose a shipment status which should trigger generation of a label."
1421
  msgstr ""
1423
  "soll."
1424
 
1425
  # @ woocommerce-germanized
1426
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:637
1427
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1294
1428
  msgctxt "dhl"
1429
  msgid "Shipment Status"
1430
  msgstr "Sendungsstatus"
1431
 
1432
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:638
1433
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1295
1434
  msgctxt "dhl"
1435
  msgid "Mark shipment as shipped after label has been created successfully."
1436
  msgstr ""
1437
  "Sendung als versandt markieren, sobald ein Label erfolgreich erstellt wurde."
1438
 
1439
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:645
1440
  msgctxt "dhl"
1441
  msgid "Returns"
1442
  msgstr "Retouren"
1443
 
1444
  # @ woocommerce-germanized
1445
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:646
1446
  msgctxt "dhl"
1447
  msgid "Automatically create labels for returns."
1448
  msgstr "Automatisch Retourenlabels zu Retourensendungen erstellen."
1449
 
1450
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:657
1451
  msgctxt "dhl"
1452
  msgid ""
1453
  "Choose a shipment status which should trigger generation of a return label."
1455
  "Wählen Sie einen Sendungsstatus aus, der die Erzeugung eines Retourenlabels "
1456
  "auslösen soll."
1457
 
1458
+ # @ woocommerce-germanized
1459
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:707
1460
+ msgctxt "dhl"
1461
+ msgid "Street number"
1462
+ msgstr "Hausnummer"
1463
+
1464
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:708
1465
+ msgctxt "dhl"
1466
+ msgid ""
1467
+ "Force existence of a street number within the first address field during "
1468
+ "checkout for EU countries."
1469
+ msgstr ""
1470
+ "Hausnummer im ersten Adressfeld verpflichtend abfragen, falls es sich um ein "
1471
+ "EU-Land handelt."
1472
+
1473
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:709
1474
+ msgctxt "dhl"
1475
+ msgid ""
1476
+ "Enabling this option will force a street number to be provided during "
1477
+ "checkout within the first address field to prevent missing or wrong data "
1478
+ "sets."
1479
+ msgstr ""
1480
+ "Die Aktivierung dieser Option sorgt dafür, dass die Hausnummer im ersten "
1481
+ "Adressfeld in der Kasse abgefragt wird. Damit verhindern Sie fehlende oder "
1482
+ "falsche Datensätze."
1483
+
1484
+ # @ woocommerce-germanized
1485
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:717
1486
+ msgctxt "dhl"
1487
+ msgid "Shipper Address"
1488
+ msgstr "Absenderadresse"
1489
+
1490
+ # @ woocommerce-germanized
1491
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:741
1492
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:810
1493
+ msgctxt "dhl"
1494
+ msgid "Street Number"
1495
+ msgstr "Hausnummer"
1496
+
1497
+ # @ woocommerce-germanized
1498
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:762
1499
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:831
1500
+ msgctxt "dhl"
1501
+ msgid "Country"
1502
+ msgstr "Land"
1503
+
1504
+ # @ woocommerce-germanized
1505
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:786
1506
+ msgctxt "dhl"
1507
+ msgid "Inlay Return Address"
1508
+ msgstr "Beilageretouren Adresse"
1509
+
1510
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:862
1511
  #, php-format
1512
  msgctxt "dhl"
1513
  msgid ""
1519
  "werden."
1520
 
1521
  # @ woocommerce-germanized
1522
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:862
1523
  msgctxt "dhl"
1524
  msgid "shipping method"
1525
  msgstr "Versandmethode"
1526
 
1527
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:872
1528
  #, php-format
1529
  msgctxt "dhl"
1530
  msgid ""
1535
  "API an. Stellen Sie sicher, dass Ihr %s DHL Retoure Online enthält."
1536
 
1537
  # @ woocommerce-germanized
1538
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:872
1539
  msgctxt "dhl"
1540
  msgid "contract"
1541
  msgstr "Vertrag"
1542
 
1543
  # @ woocommerce-germanized
1544
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:884
1545
  msgctxt "dhl"
1546
  msgid "Default Services"
1547
  msgstr "Standard-Services"
1548
 
1549
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:884
1550
  #, php-format
1551
  msgctxt "dhl"
1552
  msgid ""
1556
  "Passen Sie hier an, welche der Services als Standard für Ihre Labels gebucht "
1557
  "werden sollen. Finden Sie mehr über diese %s heraus."
1558
 
1559
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:884
1560
  msgctxt "dhl"
1561
  msgid "nationwide services"
1562
  msgstr "nationalen Services"
1563
 
1564
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:896
1565
  msgctxt "dhl"
1566
  msgid ""
1567
  "Choose whether and under which conditions labels for your shipments shall be "
1571
  "automatisch erzeugt werden sollen."
1572
 
1573
  # @ woocommerce-germanized
1574
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:907
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1575
  msgctxt "dhl"
1576
  msgid "Bank Account"
1577
  msgstr "Bankkonto"
1578
 
1579
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:907
1580
  msgctxt "dhl"
1581
  msgid "Enter your bank details needed for services that use COD."
1582
  msgstr ""
1584
  "verwendet werden sollen."
1585
 
1586
  # @ woocommerce-germanized
1587
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:910
1588
  msgctxt "dhl"
1589
  msgid "Holder"
1590
  msgstr "Kontoinhaber"
1591
 
1592
  # @ woocommerce-germanized
1593
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:917
1594
  msgctxt "dhl"
1595
  msgid "Bank Name"
1596
  msgstr "Name der Bank"
1597
 
1598
  # @ woocommerce-germanized
1599
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:924
1600
  msgctxt "dhl"
1601
  msgid "IBAN"
1602
  msgstr "IBAN"
1603
 
1604
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:931
1605
  msgctxt "dhl"
1606
  msgid "BIC"
1607
  msgstr "BIC"
1608
 
1609
  # @ woocommerce-germanized
1610
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:938
1611
  msgctxt "dhl"
1612
  msgid "Payment Reference"
1613
  msgstr "Zahlungsreferenz"
1614
 
1615
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:942
1616
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:951
1617
  #, php-format
1618
  msgctxt "dhl"
1619
  msgid ""
1624
  "hinzufügen: %s. Der Text ist auf 35 Zeichen begrenzt."
1625
 
1626
  # @ woocommerce-germanized
1627
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:947
1628
  msgctxt "dhl"
1629
  msgid "Payment Reference 2"
1630
  msgstr "Zahlungsreferenz 2"
1631
 
1632
  # @ woocommerce-germanized
1633
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:965
1634
  msgctxt "dhl"
1635
  msgid "Enable creating labels for return shipments."
1636
  msgstr "Automatisch Retourenlabels zu Retourensendungen erstellen."
1637
 
1638
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:965
1639
  msgctxt "dhl"
1640
  msgid ""
1641
  "By enabling this option you might generate retoure labels for return "
1644
  "Mit der Aktivierung dieser Option können Sie Retourenlabels zu "
1645
  "Retourensendungen erstellen und diese per E-Mail an den Kunden weiterleiten."
1646
 
1647
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:986
1648
  msgctxt "dhl"
1649
  msgid "Enable preferred day delivery."
1650
  msgstr "Aktiviere die Lieferung am Wunschtag."
1651
 
1652
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:986
1653
  msgctxt "dhl"
1654
  msgid ""
1655
  "Enabling this option will display options for the user to select their "
1658
  "Diese Option aktiviert die Auswahl eines Wunschtags durch den Kunden in der "
1659
  "Kasse."
1660
 
1661
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:995
1662
  msgctxt "dhl"
1663
  msgid ""
1664
  "Insert gross value as surcharge for preferred day delivery. Insert 0 to "
1668
  "Setzen Sie den Wert auf 0 um den Service kostenlos anzubieten."
1669
 
1670
  # @ woocommerce-germanized
1671
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1006
1672
  msgctxt "dhl"
1673
  msgid "Enable preferred location delivery."
1674
  msgstr "Lieferung an einen Wunschort aktivieren."
1675
 
1676
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1006
1677
  msgctxt "dhl"
1678
  msgid ""
1679
  "Enabling this option will display options for the user to select their "
1682
  "Diese Option aktiviert die Auswahl eines Wunschorts durch den Kunden in der "
1683
  "Kasse ."
1684
 
1685
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1014
1686
  msgctxt "dhl"
1687
  msgid "Enable preferred neighbor delivery."
1688
  msgstr "Aktiviere die Lieferung an einen Wunschnachbarn."
1689
 
1690
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1014
1691
  msgctxt "dhl"
1692
  msgid ""
1693
  "Enabling this option will display options for the user to deliver to their "
1696
  "Diese Option aktiviert die Auswahl eines Wunschnachbarn durch den Kunden in "
1697
  "der Kasse."
1698
 
1699
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1040
1700
  msgctxt "dhl"
1701
  msgid "Cut-off time"
1702
  msgstr "Cut-off-Zeit"
1703
 
1704
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1043
1705
  msgctxt "dhl"
1706
  msgid ""
1707
  "The cut-off time is the latest possible order time up to which the minimum "
1714
  "Nach Überschreitung dieses Zeitpunktes, wird der früheste verfügbare "
1715
  "Wunschtag in der Kasse um einen Tag erhöht (Tag der Bestellung + 3 Werktage)."
1716
 
1717
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1049
1718
  msgctxt "dhl"
1719
  msgid "Preparation days"
1720
  msgstr "Bearbeitungstage"
1721
 
1722
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1052
1723
  msgctxt "dhl"
1724
  msgid ""
1725
  "If you need more time to prepare your shipments you might want to add a "
1730
  "hier eine statische Anzahl an Tagen hinterlegen, die zum frühesten "
1731
  "auswählbaren Wunschtag hinzugefügt werden."
1732
 
1733
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1059
1734
  msgctxt "dhl"
1735
  msgid "Exclude days of transfer"
1736
  msgstr "Übergabetage ausschließen"
1737
 
1738
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1060
1739
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:31
1740
  msgctxt "dhl"
1741
  msgid "Monday"
1742
  msgstr "Montag"
1743
 
1744
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1061
1745
  msgctxt "dhl"
1746
  msgid "Exclude days from transferring shipments to DHL."
1747
  msgstr "Schließen Sie bestimmte Wochentage für die Übergabe an DHL aus."
1748
 
1749
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1070
1750
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:32
1751
  msgctxt "dhl"
1752
  msgid "Tuesday"
1753
  msgstr "Dienstag"
1754
 
1755
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1079
1756
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:33
1757
  msgctxt "dhl"
1758
  msgid "Wednesday"
1759
  msgstr "Mittwoch"
1760
 
1761
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1088
1762
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:34
1763
  msgctxt "dhl"
1764
  msgid "Thursday"
1765
  msgstr "Donnerstag"
1766
 
1767
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1097
1768
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:35
1769
  msgctxt "dhl"
1770
  msgid "Friday"
1771
  msgstr "Freitag"
1772
 
1773
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1106
1774
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:36
1775
  msgctxt "dhl"
1776
  msgid "Saturday"
1777
  msgstr "Samstag"
1778
 
1779
  # @ woocommerce-germanized
1780
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1115
1781
  msgctxt "dhl"
1782
  msgid "Exclude gateways"
1783
  msgstr "Zahlungsarten ausschließen"
1784
 
1785
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1117
1786
  msgctxt "dhl"
1787
  msgid "Select payment gateways to be excluded from showing preferred services."
1788
  msgstr ""
1789
  "Wählen Sie Zahlungsarten aus, für die die Wunschpaket-Services nicht zur "
1790
  "Verfügung stehen sollen."
1791
 
1792
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1142
1793
  msgctxt "dhl"
1794
  msgid "Let customers find a DHL location on a map."
1795
  msgstr "Lasse Kunden einen DHL Standort auf der Karte auswählen."
1796
 
1797
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1142
1798
  msgctxt "dhl"
1799
  msgid ""
1800
  "Enable this option to let your customers choose a pickup option from a map "
1805
  "anhand einer Karten in der Kasse zu ermöglichen. Wenn diese Option "
1806
  "deaktiviert ist, wird stattdessen auf die DHL Website verwiesen."
1807
 
1808
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1149
1809
  msgctxt "dhl"
1810
  msgid "Google Maps Key"
1811
  msgstr "Google Maps Schlüssel"
1812
 
1813
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1153
1814
  #, php-format
1815
  msgctxt "dhl"
1816
  msgid ""
1820
  "Um eine Karte integrieren zu können, benötigen Siee du einen gültigen API-"
1821
  "Schlüssel für Google Maps. Sie können %s."
1822
 
1823
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1153
1824
  msgctxt "dhl"
1825
  msgid "retrieve a new one"
1826
  msgstr "hier einen neuen erstellen"
1827
 
1828
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1158
1829
  msgctxt "dhl"
1830
  msgid "Limit results"
1831
  msgstr "Suchergebnisse begrenzen"
1832
 
1833
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1162
1834
  msgctxt "dhl"
1835
  msgid "Limit the number of DHL locations shown on the map"
1836
  msgstr "Begrenzt die Anzahl der angezeigten DHL Standorte auf der Karte"
1837
 
1838
  # @ woocommerce-germanized
1839
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1179
1840
  msgctxt "dhl"
1841
  msgid "Enable Internetmarke integration."
1842
  msgstr "Internetmarke Integration aktivieren."
1843
 
1844
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1186
1845
  msgctxt "dhl"
1846
  msgid "Username"
1847
  msgstr "Benutzer"
1848
 
1849
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1188
1850
  #, php-format
1851
  msgctxt "dhl"
1852
  msgid ""
1857
  "testen Sie Ihre Zugangsdaten bevor Sie eine Verbindung aufbauen."
1858
 
1859
  # @ woocommerce-germanized
1860
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1195
1861
  msgctxt "dhl"
1862
  msgid "Password"
1863
  msgstr "Passwort"
1864
 
1865
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1237
1866
  msgctxt "dhl"
1867
  msgid ""
1868
  "Please select your default shipping service for domestic shipments that you "
1873
  "für Ihre Kunden anbieten."
1874
 
1875
  # @ woocommerce-germanized
1876
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1243
1877
  msgctxt "dhl"
1878
  msgid "EU Default Service"
1879
  msgstr "Standard Service (EU)"
1880
 
1881
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1247
1882
  msgctxt "dhl"
1883
  msgid ""
1884
  "Please select your default shipping service for EU shipments that you want "
1887
  "Bitte wählen Sie das Standard-Produkt für EU Sendungen aus, das Sie für Ihre "
1888
  "Kunden anbieten."
1889
 
1890
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1257
1891
  msgctxt "dhl"
1892
  msgid ""
1893
  "Please select your default shipping service for cross-border shipments that "
1896
  "Bitte wählen Sie das Standard-Produkt für internationale Sendungen aus, das "
1897
  "Sie für Ihre Kunden anbieten."
1898
 
1899
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1314
1900
  msgctxt "dhl"
1901
  msgid "Default Format"
1902
  msgstr "Standardformat"
1903
 
1904
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1317
1905
  #, php-format
1906
  msgctxt "dhl"
1907
  msgid ""
1913
  "verwendet wird. Sie können die Liste auch manuell <a href=\"%s"
1914
  "\">aktualisieren</a>, falls notwendig."
1915
 
1916
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1344
1917
  msgctxt "dhl"
1918
  msgid "Portokasse"
1919
  msgstr "Portokasse"
1920
 
1921
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1347
1922
  msgctxt "dhl"
1923
  msgid "Balance"
1924
  msgstr "Guthaben"
1925
 
1926
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1354
1927
  msgctxt "dhl"
1928
  msgid "Charge (€)"
1929
  msgstr "Aufladen (€)"
1930
 
1931
  # @ woocommerce-germanized
1932
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1364
1933
  msgctxt "dhl"
1934
  msgid "Products"
1935
  msgstr "Produkte"
1936
 
1937
  # @ woocommerce-germanized
1938
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1367
1939
  msgctxt "dhl"
1940
  msgid "Available Products"
1941
  msgstr "Verfügbare Produkte"
1942
 
1943
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1370
1944
  #, php-format
1945
  msgctxt "dhl"
1946
  msgid ""
1952
  "stehen sollen. Sie können die Produktliste auch manuell <a href=\"%s"
1953
  "\">aktualisieren</a>, falls notwendig."
1954
 
1955
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1395
1956
  msgctxt "dhl"
1957
  msgid "API Error"
1958
  msgstr "API Fehler"
1959
 
1960
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1436
1961
  msgctxt "dhl"
1962
  msgid "Charge Portokasse"
1963
  msgstr "Portokasse aufladen"
1964
 
1965
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1437
1966
  #, php-format
1967
  msgctxt "dhl"
1968
  msgid "The minimum amount is %s"
1969
  msgstr "Der Minimalbetrag beträgt %s"
1970
 
1971
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1447
1972
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1449
1973
  msgctxt "dhl"
1974
  msgid "Not yet a customer?"
1975
  msgstr "Noch kein Kunde?"
1976
 
1977
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1479
1978
  msgctxt "dhl"
1979
  msgid "Internetmarke"
1980
  msgstr "Internetmarke"
1981
 
1982
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1480
1983
+ msgctxt "dhl"
1984
+ msgid "Addresses"
1985
+ msgstr "Adressen"
1986
+
1987
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1481
1988
  msgctxt "dhl"
1989
  msgid "Preferred Services"
1990
  msgstr "Wunschpaket"
1991
 
1992
+ #: woocommerce-germanized-dhl/src/Admin/Settings.php:1482
1993
  msgctxt "dhl"
1994
  msgid "Parcel Pickup"
1995
  msgstr "Standorte"
2285
  msgstr ""
2286
  "Die Abrechnungsnummer konnte nicht erzeugt werden. Die Teilnahmenummer fehlt."
2287
 
2288
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:651
2289
  #, php-format
2290
  msgctxt "dhl"
2291
  msgid "Only %s shipment items can be processed, your shipment has %s items."
2412
  msgid "POST error or timeout occured. Please try again later."
2413
  msgstr "POST Fehler oder Zeitüberschreitung. Bitte später erneut versuchen."
2414
 
2415
+ #: woocommerce-germanized-dhl/src/DataStores/Label.php:319
2416
  msgctxt "dhl"
2417
  msgid "Invalid label."
2418
  msgstr "Ungültiges Label."
2419
 
2420
+ #: woocommerce-germanized-dhl/src/Order.php:297
2421
  #: woocommerce-germanized-dhl/src/SimpleLabel.php:157
2422
  #, php-format
2423
  msgctxt "dhl time-span"
2593
  msgid "retry"
2594
  msgstr "Erneut versuchen"
2595
 
2596
+ #: woocommerce-germanized-dhl/src/ParcelServices.php:138
2597
  msgctxt "dhl"
2598
  msgid "DHL Preferred Day"
2599
  msgstr "DHL Wunschtag"
2600
 
2601
+ #: woocommerce-germanized-dhl/src/ParcelServices.php:281
2602
  msgctxt "dhl"
2603
  msgid "Sorry, but the preferred day you have chosen is no longer available."
2604
  msgstr ""
2605
  "Entschuldigung, der von Ihnen ausgewählte Wunschtag steht leider nicht mehr "
2606
  "zur Verfügung."
2607
 
2608
+ #: woocommerce-germanized-dhl/src/ParcelServices.php:304
2609
  msgctxt "dhl"
2610
  msgid "Please choose a preferred location."
2611
  msgstr "Bitte wählen Sie einen Wunschort aus."
2612
 
2613
  # @ woocommerce-germanized
2614
+ #: woocommerce-germanized-dhl/src/ParcelServices.php:316
2615
  msgctxt "dhl"
2616
  msgid "Please choose name and address of your preferred neighbor."
2617
  msgstr "Bitte wählen Sie einen Namen und die Adresse Ihres Wunschnachbars."
2731
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:42
2732
  #, php-format
2733
  msgctxt "dhl"
2734
+ msgid "There is a surcharge of %1$s %2$s for this service.*"
2735
+ msgstr "Für diesen Service fällt ein Aufpreis in Höhe von %1$s %2$s. an.*"
2736
+
2737
+ # @ woocommerce-germanized
2738
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:42
2739
+ msgctxt "dhl"
2740
+ msgid "incl. VAT"
2741
+ msgstr "inkl. MwSt."
2742
+
2743
+ # @ woocommerce-germanized
2744
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:42
2745
+ msgctxt "dhl"
2746
+ msgid "excl. VAT"
2747
+ msgstr "zzgl. MwSt."
2748
 
2749
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:65
2750
  msgctxt "dhl"
2851
 
2852
  # @ woocommerce-germanized
2853
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:58
2854
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1038
2855
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:24
2856
  #: woocommerce-germanized-shipments/src/Admin/Table.php:688
2857
  msgctxt "shipments"
2983
  msgstr "Löschen"
2984
 
2985
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-list.php:22
2986
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:87
2987
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:75
2988
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:509
2989
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:630
3015
 
3016
  # @ woocommerce-germanized
3017
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:19
3018
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:80
3019
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:439
3020
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:508
3021
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:596
3282
  msgstr "Text der unterhalb des Inhalts der E-Mail angezeigt werden soll."
3283
 
3284
  #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:356
3285
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:970
3286
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1000
3287
  #: woocommerce-germanized-shipments/templates/shipment/shipment-details-address.php:28
3288
  msgctxt "shipments"
3289
  msgid "N/A"
3345
  msgid "Letter"
3346
  msgstr "Brief"
3347
 
3348
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:79
3349
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1036
3350
  msgctxt "shipments"
3351
  msgid "Shipment"
3352
  msgstr "Sendung"
3353
 
3354
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:86
3355
  msgctxt "shipments"
3356
  msgid "Return"
3357
  msgstr "Retoure"
3358
 
3359
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:113
3360
  msgctxt "shipments"
3361
  msgid "Not shipped"
3362
  msgstr "Nicht versandt"
3363
 
3364
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:114
3365
  msgctxt "shipments"
3366
  msgid "Partially shipped"
3367
  msgstr "Teilweise versandt"
3368
 
3369
  # @ woocommerce-germanized
3370
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:115
3371
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:332
3372
  #: woocommerce-germanized-shipments/src/Admin/Table.php:854
3373
  msgctxt "shipments"
3374
  msgid "Shipped"
3375
  msgstr "Versandt"
3376
 
3377
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:132
3378
  msgctxt "shipments"
3379
  msgid "Open"
3380
  msgstr "Offen"
3381
 
3382
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:133
3383
  msgctxt "shipments"
3384
  msgid "Partially returned"
3385
  msgstr "Teilweise retourniert"
3386
 
3387
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:134
3388
  msgctxt "shipments"
3389
  msgid "Returned"
3390
  msgstr "Retourniert"
3391
 
3392
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:330
3393
  msgctxt "shipments"
3394
  msgid "Draft"
3395
  msgstr "Entwurf"
3396
 
3397
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:331
3398
  #: woocommerce-germanized-shipments/src/Admin/Table.php:846
3399
  msgctxt "shipments"
3400
  msgid "Processing"
3401
  msgstr "In Bearbeitung"
3402
 
3403
  # @ woocommerce-germanized
3404
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:333
3405
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:50
3406
  msgctxt "shipments"
3407
  msgid "Delivered"
3408
  msgstr "Geliefert"
3409
 
3410
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:334
3411
  msgctxt "shipments"
3412
  msgid "Requested"
3413
  msgstr "Beantragt"
3414
 
3415
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:383
3416
  #: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:81
3417
  #: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:135
3418
  msgctxt "shipments"
3419
  msgid "Invalid order."
3420
  msgstr "Ungültige Bestellung."
3421
 
3422
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:387
3423
  msgctxt "shipments"
3424
  msgid "This order is already fully returned."
3425
  msgstr "Diese Bestellung wurde bereits vollständig zurückgesendet."
3426
 
3427
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:398
3428
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:439
3429
  msgctxt "shipments"
3430
  msgid "Error while creating the shipment instance"
3431
  msgstr "Fehler beim Erstellen der Sendungsinstanz"
3432
 
3433
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:424
3434
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:428
3435
+ #: woocommerce-germanized-shipments/src/ReturnShipment.php:428
3436
+ #: woocommerce-germanized-shipments/src/ReturnShipment.php:499
3437
  #: woocommerce-germanized-shipments/src/SimpleShipment.php:118
3438
+ #: woocommerce-germanized-shipments/src/SimpleShipment.php:226
3439
  msgctxt "shipments"
3440
  msgid "Invalid shipment order"
3441
  msgstr "Ungültige Bestellung zur Sendung"
3442
 
3443
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:458
3444
  msgctxt "shipments"
3445
  msgid "Invalid order item"
3446
  msgstr "Ungültige Bestellposition"
3447
 
3448
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:580
3449
  msgctxt "shipments"
3450
  msgid "Invalid shipment item"
3451
  msgstr "Ungültige Sendungsposition"
3452
 
3453
  # @ woocommerce-germanized
3454
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:653
3455
  msgctxt "shipments"
3456
  msgid "None"
3457
  msgstr "Keiner"
3458
 
3459
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:726
3460
  msgctxt "shipments"
3461
  msgid "Error while uploading file."
3462
  msgstr "Fehler beim Hochladen der Datei."
3463
 
3464
  # @ woocommerce-germanized
3465
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1037
3466
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:23
3467
  #: woocommerce-germanized-shipments/src/Admin/Table.php:687
3468
  msgctxt "shipments"
3469
  msgid "Date"
3470
  msgstr "Datum"
3471
 
3472
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1039
3473
  #: woocommerce-germanized-shipments/templates/shipment/shipment-details-tracking.php:23
3474
  msgctxt "shipments"
3475
  msgid "Tracking"
3476
  msgstr "Sendungsverfolgung"
3477
 
3478
  # @ woocommerce-germanized
3479
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1040
3480
  #: woocommerce-germanized-shipments/src/Admin/Admin.php:98
3481
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:30
3482
  #: woocommerce-germanized-shipments/src/Admin/Table.php:694
3484
  msgid "Actions"
3485
  msgstr "Aktionen"
3486
 
3487
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1276
3488
  msgctxt "shipments"
3489
  msgid "View"
3490
  msgstr "Anzeigen"
3491
 
3492
  # @ woocommerce-germanized
3493
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1283
3494
  #: woocommerce-germanized-shipments/src/Admin/Table.php:865
3495
  #: woocommerce-germanized-shipments/src/Ajax.php:337
3496
  msgctxt "shipments"
4709
  msgstr "%1$s (%2$s, %3$s)"
4710
 
4711
  #: woocommerce-germanized-shipments/src/ReturnShipment.php:356
4712
+ #: woocommerce-germanized-shipments/src/Shipment.php:912
4713
  #, php-format
4714
  msgctxt "full name"
4715
  msgid "%1$s %2$s"
5485
  "Wählen Sie Versandmethoden aus für die die Paketdienstleister Checkbox "
5486
  "angezeigt werden soll."
5487
 
5488
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-notices.php:114
5489
+ #, php-format
5490
+ msgid ""
5491
+ "<strong>Be aware!</strong> This update is not compatible with your current "
5492
+ "Germanized Pro version. Please check for updates (%s) before updating "
5493
+ "Germanized to prevent compatibility issues."
5494
+ msgstr ""
5495
+ "<strong>Achtung!</strong> Dieses Update ist nicht kompatibel mit Ihrer "
5496
+ "aktuellen Germanized Pro Version. Bitte aktualisieren Sie Ihre Pro-Version "
5497
+ "vorab (%s) um Kompatibilitätsprobleme zu verhindern."
5498
+
5499
  #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-product-categories.php:58
5500
  #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-product-categories.php:79
5501
  #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:183
5527
  #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:73
5528
  #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:153
5529
  #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:79
5530
+ #: woocommerce-germanized/woocommerce-germanized.php:783
5531
  msgid "Settings"
5532
  msgstr "Einstellungen"
5533
 
6202
  msgid "Found Bugs?"
6203
  msgstr "Bugs oder Wünsche melden"
6204
 
6205
+ # @ woocommerce-germanized
6206
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-shipping-excl-tax.php:29
6207
+ msgid "Shipping and fee taxes"
6208
+ msgstr "Besteuerung von Nebenkosten"
6209
+
6210
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-shipping-excl-tax.php:33
6211
+ msgid ""
6212
+ "Starting with the newest Germanized version your <strong>shipping costs and "
6213
+ "fees will no longer be treated including tax</strong>. This change in "
6214
+ "Germanized was necessary due to your prices being treated excluding taxes "
6215
+ "(see your WooCommerce tax settings). Due to the way WooCommerce calculates "
6216
+ "taxes for orders (based on prices excluding taxes) there is no consistent "
6217
+ "way to (re-)calculate shipping costs and/or fee taxes if they are treated "
6218
+ "including taxes. Please check your shipping costs and fees and edit costs "
6219
+ "accordingly."
6220
+ msgstr ""
6221
+ "Mit der neuesten Germanized Version werden <strong>Versandkosten und "
6222
+ "Gebühren nicht länger als brutto betrachtet</strong>. Diese Anpassung ist "
6223
+ "notwendig, da Sie in den WooCommerce MwSt.-Einstellungen die Netto-Option "
6224
+ "nutzen. Aufgrund der Steuerberechnung in WooCommerce (basierend auf "
6225
+ "Nettopreisen) gibt es keine konsistente Möglichkeit Steuern auf "
6226
+ "Versandkosten und Gebühren auf Basis von Bruttopreisen zu berechnen. Bitte "
6227
+ "prüfen Sie Ihre Versandkosten und Gebühren und passen sie falls notwendig an."
6228
+
6229
+ # @ woocommerce-germanized
6230
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-shipping-excl-tax.php:40
6231
+ msgid "Manage shipping methods"
6232
+ msgstr "Versandmethoden verwalten"
6233
+
6234
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-shipping-excl-tax.php:45
6235
+ #: woocommerce-germanized/includes/admin/settings/abstract-wc-gzd-settings-tab.php:152
6236
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-dhl.php:35
6237
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:61
6238
+ msgid "Learn more"
6239
+ msgstr "Mehr erfahren"
6240
+
6241
  #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-template-outdated.php:53
6242
  msgid "Your theme contains outdated Germanized template files"
6243
  msgstr "Ihr Theme enthält veraltete Germanized Templates"
6359
  msgid "Upgrade now"
6360
  msgstr "Jetzt upgraden"
6361
 
 
 
 
 
 
 
6362
  # @ woocommerce-germanized
6363
  # @ woocommerce
6364
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-pointers.php:78
6890
  #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:144
6891
  #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:138
6892
  #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:145
6893
+ #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:559
6894
+ #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:572
6895
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:225
6896
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:233
6897
  msgid "Title"
6898
  msgstr "Anrede"
6899
 
7230
  # @ woocommerce-germanized
7231
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:209
7232
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:371
7233
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:131
7234
  msgid "Notice Text"
7235
  msgstr "Hinweistext"
7236
 
7687
 
7688
  # @ woocommerce-germanized
7689
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:311
7690
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
7691
  msgid "Tax"
7692
  msgstr "Steuer"
7693
 
7986
  msgstr "Umsatzsteuer"
7987
 
7988
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:31
7989
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:101
7990
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:91
7991
  msgid "Split-tax"
7992
  msgstr "Anteilige Steuerberechnung"
7993
 
7996
  msgstr "Differenzbesteuerung"
7997
 
7998
  # @ woocommerce-germanized
7999
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:42
8000
  #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:101
8001
  msgid "Virtual VAT"
8002
  msgstr "USt. Änderung 2015"
8003
 
8004
  # @ woocommerce-germanized
8005
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:43
8006
  msgid ""
8007
  "Enable if you want to charge your customer's countries' VAT for virtual "
8008
  "products."
8010
  "Für virtuelle Produkte den USt.-Satz des Dienstleistungsempfängers berechnen."
8011
 
8012
  # @ woocommerce-germanized
8013
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:43
8014
  #, php-format
8015
  msgid ""
8016
  "New EU VAT rule applies on 01.01.2015. Make sure that every digital or "
8033
  "dazu finden Sie <a href=\"%s\" target=\"_blank\">hier</a>."
8034
 
8035
  # @ woocommerce-germanized
8036
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:55
8037
  msgid "Tax Rate"
8038
  msgstr "Steuersatz"
8039
 
8040
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:56
8041
  msgid "Hide specific tax rate within shop pages."
8042
  msgstr "Entfernt die Anzeige des konkreten Steuersatzes für Produkte im Shop."
8043
 
8044
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:60
8045
  msgid ""
8046
  "This option will make sure that within shop pages no specific tax rates are "
8047
  "shown. Instead only incl. tax or excl. tax notice is shown."
8050
  "Steuersatz im MwSt.-Hinweis nicht auftaucht. Stattdessen steht dort inkl. "
8051
  "bzw. exkl. MwSt."
8052
 
8053
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:72
8054
  msgid "VAT ID"
8055
  msgstr "Umsatzsteuer-ID"
8056
 
8057
  # @ woocommerce-germanized
8058
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:75
8059
  #, php-format
8060
  msgid ""
8061
  "%sUpgrade to %spro%s%s to unlock this feature and enjoy premium support."
8064
  "erhalten Sie professionellen Support."
8065
 
8066
  # @ woocommerce-germanized
8067
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
8068
  #, php-format
8069
  msgid ""
8070
+ "By choosing this option shipping cost and fee taxes will be calculated based "
8071
+ "on the tax rates included within the cart. Imagine the following example. "
8072
+ "The tax share is calculated based on net prices. Further information can be "
8073
+ "found <a href=\"%s\" target=\"_blank\">here</a>. %s"
8074
  msgstr ""
8075
+ "Mit der Auswahl dieser Option werden die Steuern für Versandkosten und "
8076
+ "Gebühren basierend auf den Anteilen der Steuersätze der Artikel im Warenkorb "
8077
+ "berechnet. Weitere Informationen finden Sie <a href=\"%s\" target=\"_blank"
8078
+ "\">hier</a>. %s"
 
8079
 
8080
  # @ woocommerce-germanized
8081
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
8082
+ msgid "Product"
8083
+ msgstr "Produkt"
8084
 
8085
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
8086
+ msgid "Price"
8087
+ msgstr "Preis"
 
8088
 
8089
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
8090
+ msgid "Price (net)"
8091
+ msgstr "Preis (netto)"
 
 
8092
 
8093
  # @ woocommerce-germanized
8094
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
8095
+ msgid "Tax rate"
8096
+ msgstr "Steuersatz"
 
8097
 
8098
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
8099
+ msgid "Share"
8100
+ msgstr "Anteil"
 
 
 
 
 
 
8101
 
8102
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
8103
+ msgid "Book"
8104
+ msgstr "Buch"
 
8105
 
8106
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
8107
+ msgid "DVD"
8108
+ msgstr "DVD"
 
8109
 
8110
  # @ woocommerce-germanized
8111
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
8112
+ msgid "Shipping"
8113
+ msgstr "Versand"
8114
 
8115
  # @ woocommerce-germanized
8116
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:102
8117
  msgid ""
8118
+ "Enable split-tax calculation for additional costs (shipping costs and fees)."
 
 
8119
  msgstr ""
8120
+ "Aktiviere die anteilige Besteuerung für Nebenkosten (Versandkosten und "
8121
+ "Gebühren)."
8122
 
8123
  # @ woocommerce-germanized
8124
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:117
8125
  msgid "Taxation Notice"
8126
  msgstr "Steuerhinweis"
8127
 
8128
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:118
8129
  msgid "Enable differential taxation text notice beneath product price."
8130
  msgstr ""
8131
  "Aktiviert den Hinweis zur Differenzbesteuerung unterhalb des Produktpreises."
8132
 
8133
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:118
8134
  msgid ""
8135
  "If you have disabled this option, a normal VAT notice will be displayed, "
8136
  "which is sufficient as Trusted Shops states. To further inform your "
8140
  "angezeigt. Der Standard-Hinweis ist laut Trusted Shops bereits ausreichend. "
8141
  "Sie können diesen Hinweis nutzen um Ihre Kunden besser zu informieren."
8142
 
8143
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:124
8144
  msgid "Mixed carts"
8145
  msgstr "Gemischte Warenkörbe"
8146
 
8147
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:125
8148
  msgid ""
8149
  "Disallow buying normal and differential taxed products at the same time."
8150
  msgstr ""
8151
  "Verbiete gleichzeitig normale und differenzbesteuerte Produkte zu kaufen."
8152
 
8153
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:125
8154
  #, php-format
8155
  msgid ""
8156
  "Shipping costs for differential taxed products may not be taxed (compare %s) "
8164
  "verhindert, dass Kunden normale und differenzbesteuerte Produkte "
8165
  "gleichzeitig kaufen."
8166
 
8167
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:125
8168
  msgid "HK Hamburg"
8169
  msgstr "HK Hamburg"
8170
 
8171
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:132
8172
  msgid ""
8173
  "This text will be shown as a further notice for the customer to inform him "
8174
  "about differential taxation."
8176
  "Dieser Text dient zur weiterführenden Information ihrer Kunden bzgl. der "
8177
  "Differenzbesteuerung."
8178
 
8179
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:137
8180
  msgid "incl. VAT (differential taxation according to §25a UStG.)"
8181
  msgstr "inkl. MwSt. (differenzbesteuert nach §25a UStG.)"
8182
 
8183
  # @ woocommerce-germanized
8184
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:141
8185
  msgid "Checkout & E-Mails"
8186
  msgstr "Kasse & E-Mails"
8187
 
8188
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:142
8189
  msgid "Enable differential taxation notice during checkout and in emails."
8190
  msgstr ""
8191
  "Aktiviert den Hinweis zur Differenzbesteuerung im Checkout und in E-Mails."
8192
 
8193
  # @ woocommerce-germanized
8194
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:187
8195
  msgid ""
8196
  "Sorry, but the new Virtual VAT rules cannot be applied to small business."
8197
  msgstr ""
8331
  msgid "Hide"
8332
  msgstr "Ausblenden"
8333
 
8334
+ #: woocommerce-germanized/includes/admin/views/html-notice-update-pro-incompatible.php:15
8335
+ #, php-format
8336
+ msgid ""
8337
+ "<strong>Be aware!</strong> This update is not compatible with your current "
8338
+ "Germanized Pro version. Please <a href=\"%s\">check for updates</a> before "
8339
+ "updating Germanized to prevent <a href=\"%s\">compatibility issues</a>."
8340
+ msgstr ""
8341
+ "<strong>Achtung!</strong> Dieses Update ist nicht kompatibel mit Ihrer "
8342
+ "aktuellen Germanized Pro Version. Bitte <a href=\"%s\">aktualisieren</a> Sie "
8343
+ "Ihre Pro-Version vorab um <a href=\"%s\">Kompatibilitätsprobleme</a> zu "
8344
+ "verhindern."
8345
+
8346
  # @ woocommerce-germanized
8347
  #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:12
8348
  msgid ""
8382
  msgid "Term doesn’t exist"
8383
  msgstr "Term existiert nicht"
8384
 
 
 
 
 
 
 
 
 
 
 
 
8385
  # @ woocommerce-germanized
8386
  #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:96
8387
+ msgid "Additional costs include taxes"
8388
+ msgstr "Nebenkosten beinhalten Steuern"
8389
 
8390
  # @ woocommerce-germanized
8391
  #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:106
8922
  "Vielen Dank. Wir haben Ihren Widerruf erhalten. Sie bekommen in Kürze eine E-"
8923
  "Mail mit Ihren Daten als Bestätigung."
8924
 
8925
+ #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:233
8926
  msgid ""
8927
  "Sorry, but differential taxed products cannot be purchased with normal "
8928
  "products at the same time."
8930
  "Entschuldigung, differenzbesteuerte Produkte können nicht gemeinsam mit "
8931
  "normalen Produkten gekauft werden."
8932
 
8933
+ #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:239
8934
  msgid ""
8935
  "Sorry, but normal products cannot be purchased together with differential "
8936
  "taxed products at the same time."
8939
  "differenzbesteuerten Produkten gekauft werden."
8940
 
8941
  # @ woocommerce-germanized
8942
+ #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:892
8943
  #: woocommerce-germanized/includes/class-wc-gzd-revocation.php:52
8944
  #: woocommerce-germanized/includes/wc-gzd-core-functions.php:604
8945
  msgid "Mr."
8946
  msgstr "Herr"
8947
 
8948
  # @ woocommerce-germanized
8949
+ #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:893
8950
  msgctxt "customer-title-male-address"
8951
  msgid "Mr."
8952
  msgstr "Herrn"
8953
 
8954
+ #: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:72
8955
+ msgid ""
8956
+ "The cart contains one or more vouchers. Vouchers cannot be mixed with normal "
8957
+ "coupons."
8958
+ msgstr ""
8959
+ "Ihr Warenkorb beinhaltet einen oder mehrere Wertgutscheine. Wertgutscheine "
8960
+ "können nicht mit normalen Gutscheinen gemischt werden."
8961
+
8962
+ #: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:74
8963
+ msgid ""
8964
+ "The cart contains one or more coupons. Vouchers cannot be mixed with normal "
8965
+ "coupons. Please remove the coupon before adding your voucher."
8966
+ msgstr ""
8967
+ "Ihr Warenkorb beinhaltet einen oder mehrere Gutscheine. Wertgutscheine "
8968
+ "können nicht mit normalen Gutscheinen gemischt werden. Bitte löschen Sie den "
8969
+ "Gutschein bevor Sie Ihren Wertgutschein hinzufügen."
8970
+
8971
+ #: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:371
8972
  msgid "Is voucher?"
8973
  msgstr "Wertgutschein?"
8974
 
8975
+ #: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:372
8976
  #, php-format
8977
  msgid ""
8978
  "Whether or not this coupon is a voucher which has been sold to a customer "
8985
  "\">hier</a>."
8986
 
8987
  #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:147
8988
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:212
8989
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:323
8990
  msgid ""
8991
  "Please activate your account through clicking on the activation link "
8992
  "received via email."
9001
  msgstr ""
9002
  "Keine Aktivierungs-E-Mail erhalten? <a href=\"%s\">Erneut zusenden</a>."
9003
 
9004
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:333
9005
  #, php-format
9006
  msgid "Continue without creating an account? <a href=\"%s\">Click here</a>"
9007
  msgstr "Weiter zur Kasse ohne Kundenkonto? <a href=\"%s\">Hier klicken</a>"
9008
 
9009
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:335
9010
  msgid "Please create an account or login before continuing to checkout"
9011
  msgstr ""
9012
  "Bitte erstellen Sie ein Kundenkonto oder loggen Sie sich ein, bevor Sie zur "
9013
  "Kasse gehen"
9014
 
9015
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:443
9016
  #, php-format
9017
  msgid ""
9018
  "Please activate your account through clicking on the activation link "
9021
  "Bitte aktivieren Sie Ihr Kundenkonto indem Sie auf den Link in der E-Mail "
9022
  "klicken. Keine E-Mail erhalten? <a href=\"%s\">Erneut zusenden</a>."
9023
 
9024
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:475
9025
  msgid ""
9026
  "This activation code has expired. We have sent you a new activation code via "
9027
  "e-mail."
9030
  "Code per E-Mail geschickt."
9031
 
9032
  # @ woocommerce-germanized
9033
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:477
9034
  msgid "Sorry, but this activation code cannot be found."
9035
  msgstr "Sorry, dieser Aktivierungscode ist uns leider nicht bekannt."
9036
 
9037
  # @ woocommerce-germanized
9038
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:481
9039
  msgid "Thank you. You have successfully activated your account."
9040
  msgstr "Vielen Dank. Ihr Benutzerkonto wurde erfolgreich aktiviert."
9041
 
9042
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:661
9043
  msgid "Expired activation key"
9044
  msgstr "Abgelaufener Aktivierungscode"
9045
 
9046
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:666
9047
  msgid "Invalid activation key"
9048
  msgstr "Aktivierungscode ungültig"
9049
 
9102
  msgstr "Widerruf online erklären"
9103
 
9104
  # @ woocommerce-germanized
9105
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:167
9106
  #, php-format
9107
  msgid ""
9108
  "Please install <a href=\"%s\" target=\"_blank\">WooCommerce</a> before "
9111
  "Bitte installieren Sie <a href=\"%s\" target=\"_blank\">WooCommerce</a> "
9112
  "bevor Sie WooCommerce Germanized installieren. Vielen Dank!"
9113
 
9114
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:487
9115
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:501
9116
  msgid "Reduced rate"
9117
  msgstr "Ermäßigter Steuersatz"
9118
 
9119
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:543
9120
  #, php-format
9121
  msgctxt "vat-rate-import"
9122
  msgid "VAT %s"
9123
  msgstr "MwSt. %s"
9124
 
9125
  # @ woocommerce-germanized
9126
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:658
9127
  msgctxt "Page slug"
9128
  msgid "data-security"
9129
  msgstr "datenschutzerklaerung"
9130
 
9131
  # @ woocommerce-germanized
9132
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:659
9133
  msgctxt "Page title"
9134
  msgid "Data Security Statement"
9135
  msgstr "Datenschutzerklärung"
9136
 
9137
  # @ woocommerce-germanized
9138
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:663
9139
  msgctxt "Page slug"
9140
  msgid "imprint"
9141
  msgstr "impressum"
9142
 
9143
  # @ woocommerce-germanized
9144
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:664
9145
  msgctxt "Page title"
9146
  msgid "Imprint"
9147
  msgstr "Impressum"
9148
 
9149
  # @ woocommerce-germanized
9150
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:668
9151
  msgctxt "Page slug"
9152
  msgid "terms"
9153
  msgstr "agb"
9154
 
9155
  # @ woocommerce-germanized
9156
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:669
9157
  msgctxt "Page title"
9158
  msgid "Terms & Conditions"
9159
  msgstr "AGB"
9160
 
9161
  # @ woocommerce-germanized
9162
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:673
9163
  msgctxt "Page slug"
9164
  msgid "revocation"
9165
  msgstr "widerrufsbelehrung"
9166
 
9167
  # @ woocommerce-germanized
9168
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:674
9169
  msgctxt "Page title"
9170
  msgid "Power of Revocation"
9171
  msgstr "Widerrufsbelehrung"
9172
 
9173
  # @ woocommerce-germanized
9174
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:678
9175
  msgctxt "Page slug"
9176
  msgid "shipping-methods"
9177
  msgstr "versandarten"
9178
 
9179
  # @ woocommerce-germanized
9180
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:679
9181
  msgctxt "Page title"
9182
  msgid "Shipping Methods"
9183
  msgstr "Versandarten"
9184
 
9185
  # @ woocommerce-germanized
9186
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:683
9187
  msgctxt "Page slug"
9188
  msgid "payment-methods"
9189
  msgstr "bezahlmoeglichkeiten"
9190
 
9191
  # @ woocommerce-germanized
9192
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:684
9193
  msgctxt "Page title"
9194
  msgid "Payment Methods"
9195
  msgstr "Zahlungsarten"
9543
  "kassiert - z.B. DHL (steuerfrei)."
9544
 
9545
  # @ woocommerce-germanized
9546
+ #: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:297
9547
  msgid "Payment charge"
9548
  msgstr "Zahlungsgebühr"
9549
 
11018
  msgid "upgrade"
11019
  msgstr "aktualisieren"
11020
 
11021
+ #: woocommerce-germanized/woocommerce-germanized.php:314
11022
  #, php-format
11023
  msgid ""
11024
  "This version of the Corona Helper Plugin includes a bug which could lead to "
11031
  "unserem <a href=\"%s\" target=\"_blank\">Blog-Post</a> wie Sie das Plugin "
11032
  "austauschen können."
11033
 
11034
+ #: woocommerce-germanized/woocommerce-germanized.php:975
11035
  msgid "Pease wait while we are trying to redirect you to the payment provider."
11036
  msgstr "Einen Moment - wir versuchen Sie zum Zahlungsanbieter weiterzuleiten."
11037
 
12272
  msgid "https://vendidero.de"
12273
  msgstr "https://vendidero.de"
12274
 
12275
+ # @ woocommerce-germanized
12276
+ #~ msgid "Shipping costs"
12277
+ #~ msgstr "Versandkosten"
12278
+
12279
+ # @ woocommerce-germanized
12280
+ #~ msgid "Force"
12281
+ #~ msgstr "Erzwingen"
12282
+
12283
+ # @ woocommerce-germanized
12284
+ #~ msgid "Force split-tax calculation for shipping methods."
12285
+ #~ msgstr ""
12286
+ #~ "Erzwinge die anteilige Besteuerung der Versandkosten für jede Versandart."
12287
+
12288
+ # @ woocommerce-germanized
12289
+ #~ msgid ""
12290
+ #~ "This option will overwrite settings for each individual shipping method "
12291
+ #~ "to force tax calculation (instead of only calculating tax for those "
12292
+ #~ "methods which are taxeable)."
12293
+ #~ msgstr ""
12294
+ #~ "Diese Option überschreibt alle abweichenden Einstellungen verschiedener "
12295
+ #~ "Versandarten und erzwingt die Steuerberechnung."
12296
+
12297
+ # @ woocommerce-germanized
12298
+ #~ msgid "Fees"
12299
+ #~ msgstr "Gebühren"
12300
+
12301
+ # @ woocommerce-germanized
12302
+ #~ msgid "Enable split-tax calculation for fees."
12303
+ #~ msgstr "Aktiviere die anteilige Besteuerung für Gebühren."
12304
+
12305
+ # @ woocommerce-germanized
12306
+ #~ msgid "Force split-tax calculation for fees."
12307
+ #~ msgstr "Erzwinge die anteilige Besteuerung für Gebühren."
12308
+
12309
+ # @ woocommerce-germanized
12310
+ #~ msgid ""
12311
+ #~ "This option will overwrite settings for each individual fee to force tax "
12312
+ #~ "calculation (instead of only calculating tax for those fees which are "
12313
+ #~ "taxeable)."
12314
+ #~ msgstr ""
12315
+ #~ "Diese Option überschreibt die Einstellungen aller Gebühren und erzwingt "
12316
+ #~ "die Steuerberechnung."
12317
+
12318
+ # @ woocommerce-germanized
12319
+ #~ msgid "Forced"
12320
+ #~ msgstr "Erzwungen"
12321
+
12322
+ # @ woocommerce-germanized
12323
+ #~ msgid "Fee Taxes"
12324
+ #~ msgstr "Gebührenbesteuerung"
12325
+
12326
  # @ woocommerce-germanized
12327
  #~ msgctxt "dhl"
12328
  #~ msgid "General"
12814
  #~ msgid "Hide Delivery Time Notice"
12815
  #~ msgstr "Lieferzeiten ausblenden"
12816
 
 
 
 
12817
  # @ woocommerce-germanized
12818
  #~ msgid "Base Price Text"
12819
  #~ msgstr "Grundpreis Text"
i18n/languages/woocommerce-germanized.pot ADDED
@@ -0,0 +1,10201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2021 vendidero
2
+ # This file is distributed under the same license as the Germanized for WooCommerce plugin.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Germanized for WooCommerce 3.3.4\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-germanized\n"
7
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
+ "Language-Team: LANGUAGE <LL@li.org>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-01-05T11:39:41+00:00\n"
13
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
+ "X-Generator: WP-CLI 2.5.0-alpha-33ed4cc\n"
15
+
16
+ #. Plugin Name of the plugin
17
+ msgid "Germanized Shipments for WooCommerce"
18
+ msgstr ""
19
+
20
+ #. Plugin URI of the plugin
21
+ msgid "https://github.com/vendidero/woocommerce-germanized-shipments"
22
+ msgstr ""
23
+
24
+ #. Description of the plugin
25
+ msgid "The Germanized Shipments integration, installed as a feature plugin for development and testing purposes."
26
+ msgstr ""
27
+
28
+ #. Author of the plugin
29
+ msgid "vendidero"
30
+ msgstr ""
31
+
32
+ #. Author URI of the plugin
33
+ msgid "https://vendidero.de"
34
+ msgstr ""
35
+
36
+ #: includes/admin/views/html-order-shipment-content.php:32
37
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:32
38
+ msgctxt "shipments"
39
+ msgid "Content (%s)"
40
+ msgstr ""
41
+
42
+ #: includes/admin/views/html-order-shipment-content.php:38
43
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:38
44
+ msgctxt "shipments"
45
+ msgid "Dimensions (%s)"
46
+ msgstr ""
47
+
48
+ #: includes/admin/views/html-order-shipment-content.php:38
49
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:38
50
+ msgctxt "shipments"
51
+ msgid "LxWxH in decimal form."
52
+ msgstr ""
53
+
54
+ #: includes/admin/views/html-order-shipment-content.php:50
55
+ #: src/Admin/Settings.php:424
56
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:50
57
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:424
58
+ msgctxt "shipments"
59
+ msgid "Packaging"
60
+ msgstr ""
61
+
62
+ #: includes/admin/views/html-order-shipment-content.php:58
63
+ #: includes/wc-gzd-shipment-functions.php:1027
64
+ #: src/Admin/ReturnTable.php:24
65
+ #: src/Admin/Table.php:688
66
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:58
67
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1027
68
+ #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:24
69
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:688
70
+ msgctxt "shipments"
71
+ msgid "Status"
72
+ msgstr ""
73
+
74
+ #: includes/admin/views/html-order-shipment-content.php:68
75
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:68
76
+ msgctxt "shipments"
77
+ msgid "Shipping method"
78
+ msgstr ""
79
+
80
+ #: includes/admin/views/html-order-shipment-content.php:78
81
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:78
82
+ msgctxt "shipments"
83
+ msgid "Shipping provider"
84
+ msgstr ""
85
+
86
+ #: includes/admin/views/html-order-shipment-content.php:89
87
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:89
88
+ msgctxt "shipments"
89
+ msgid "Tracking Number"
90
+ msgstr ""
91
+
92
+ #: includes/admin/views/html-order-shipment-content.php:155
93
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:155
94
+ msgctxt "shipments"
95
+ msgid "Add item"
96
+ msgstr ""
97
+
98
+ #: includes/admin/views/html-order-shipment-content.php:159
99
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:159
100
+ msgctxt "shipments"
101
+ msgid "Automatically adjust items and quantities based on order item data."
102
+ msgstr ""
103
+
104
+ #: includes/admin/views/html-order-shipment-content.php:159
105
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:159
106
+ msgctxt "shipments"
107
+ msgid "Sync items"
108
+ msgstr ""
109
+
110
+ #: includes/admin/views/html-order-shipment-content.php:179
111
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:179
112
+ msgctxt "shipments"
113
+ msgid "Add Item"
114
+ msgstr ""
115
+
116
+ #: includes/admin/views/html-order-shipment-content.php:189
117
+ #: includes/admin/views/html-order-shipments.php:45
118
+ #: src/Admin/Admin.php:88
119
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:189
120
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:45
121
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:88
122
+ msgctxt "shipments"
123
+ msgid "Item"
124
+ msgstr ""
125
+
126
+ #: includes/admin/views/html-order-shipment-content.php:190
127
+ #: includes/admin/views/html-order-shipments.php:46
128
+ #: src/Admin/Admin.php:93
129
+ #: templates/emails/email-shipment-details.php:55
130
+ #: templates/myaccount/add-return-shipment.php:37
131
+ #: templates/shipment/shipment-details.php:60
132
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:190
133
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:46
134
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:93
135
+ #: packages/woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:55
136
+ #: packages/woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:37
137
+ #: packages/woocommerce-germanized-shipments/templates/shipment/shipment-details.php:60
138
+ msgctxt "shipments"
139
+ msgid "Quantity"
140
+ msgstr ""
141
+
142
+ #: includes/admin/views/html-order-shipment-content.php:208
143
+ #: includes/admin/views/html-order-shipments.php:55
144
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:208
145
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:55
146
+ msgctxt "shipments"
147
+ msgid "Add"
148
+ msgstr ""
149
+
150
+ #: includes/admin/views/html-order-shipment-content.php:232
151
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:232
152
+ msgctxt "shipments"
153
+ msgid "Send return instructions to your customer via email including return label as attachment (if available)."
154
+ msgstr ""
155
+
156
+ #: includes/admin/views/html-order-shipment-content.php:232
157
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:232
158
+ msgctxt "shipments"
159
+ msgid "Resend notification"
160
+ msgstr ""
161
+
162
+ #: includes/admin/views/html-order-shipment-content.php:232
163
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:232
164
+ msgctxt "shipments"
165
+ msgid "Notify customer"
166
+ msgstr ""
167
+
168
+ #: includes/admin/views/html-order-shipment-content.php:234
169
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:234
170
+ msgctxt "shipments"
171
+ msgid "Confirm the return request to the customer. The customer receives an email notification possibly containing return instructions."
172
+ msgstr ""
173
+
174
+ #: includes/admin/views/html-order-shipment-content.php:234
175
+ #: src/Admin/ReturnTable.php:66
176
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:234
177
+ #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:66
178
+ msgctxt "shipments"
179
+ msgid "Confirm return request"
180
+ msgstr ""
181
+
182
+ #: includes/admin/views/html-order-shipment-content.php:238
183
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:238
184
+ msgctxt "shipments"
185
+ msgid "Delete %s"
186
+ msgstr ""
187
+
188
+ #: includes/admin/views/html-order-shipment-item-count.php:16
189
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-item-count.php:16
190
+ msgctxt "shipments"
191
+ msgid "%d of %d item"
192
+ msgid_plural "%d of %d items"
193
+ msgstr[0] ""
194
+ msgstr[1] ""
195
+
196
+ #: includes/admin/views/html-order-shipment-item.php:28
197
+ #: templates/shipment/add-return-shipment-item.php:59
198
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-item.php:28
199
+ #: packages/woocommerce-germanized-shipments/templates/shipment/add-return-shipment-item.php:59
200
+ msgctxt "shipments return reason"
201
+ msgid "None"
202
+ msgstr ""
203
+
204
+ #: includes/admin/views/html-order-shipment-item.php:41
205
+ #: includes/admin/views/html-settings-provider-list.php:26
206
+ #: includes/admin/views/label/html-shipment-label.php:35
207
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-item.php:41
208
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:26
209
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:35
210
+ msgctxt "shipments"
211
+ msgid "Delete"
212
+ msgstr ""
213
+
214
+ #: includes/admin/views/html-order-shipment-list.php:22
215
+ #: includes/wc-gzd-shipment-functions.php:76
216
+ #: src/Admin/Admin.php:75
217
+ #: src/Admin/Admin.php:509
218
+ #: src/Admin/Admin.php:630
219
+ #: src/Admin/Settings.php:80
220
+ #: src/Admin/Settings.php:177
221
+ #: templates/myaccount/order-shipments.php:36
222
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-list.php:22
223
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:76
224
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:75
225
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:509
226
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:630
227
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:80
228
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:177
229
+ #: packages/woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:36
230
+ msgctxt "shipments"
231
+ msgid "Returns"
232
+ msgstr ""
233
+
234
+ #: includes/admin/views/html-order-shipment-packaging-select.php:17
235
+ #: includes/wc-gzd-packaging-functions.php:52
236
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-packaging-select.php:17
237
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-packaging-functions.php:52
238
+ msgctxt "shipments-packaging"
239
+ msgid "None"
240
+ msgstr ""
241
+
242
+ #: includes/admin/views/html-order-shipment-packaging-select.php:27
243
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-packaging-select.php:27
244
+ msgctxt "shipments"
245
+ msgid "Does not fit"
246
+ msgstr ""
247
+
248
+ #: includes/admin/views/html-order-shipment.php:16
249
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment.php:16
250
+ msgctxt "shipment admin title"
251
+ msgid "%s #%s"
252
+ msgstr ""
253
+
254
+ #: includes/admin/views/html-order-shipments.php:19
255
+ #: includes/wc-gzd-shipment-functions.php:69
256
+ #: src/Admin/Admin.php:439
257
+ #: src/Admin/Admin.php:508
258
+ #: src/Admin/Admin.php:596
259
+ #: src/Admin/Admin.php:663
260
+ #: templates/myaccount/order-shipments.php:20
261
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:19
262
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:69
263
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:439
264
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:508
265
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:596
266
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:663
267
+ #: packages/woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:20
268
+ msgctxt "shipments"
269
+ msgid "Shipments"
270
+ msgstr ""
271
+
272
+ #: includes/admin/views/html-order-shipments.php:35
273
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:35
274
+ msgctxt "shipments"
275
+ msgid "Add Return"
276
+ msgstr ""
277
+
278
+ #: includes/admin/views/html-order-shipments.php:66
279
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:66
280
+ msgctxt "shipments"
281
+ msgid "Add shipment"
282
+ msgstr ""
283
+
284
+ #: includes/admin/views/html-order-shipments.php:70
285
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:70
286
+ msgctxt "shipments"
287
+ msgid "Add return"
288
+ msgstr ""
289
+
290
+ #: includes/admin/views/html-order-shipments.php:76
291
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:76
292
+ msgctxt "shipments"
293
+ msgid "Save"
294
+ msgstr ""
295
+
296
+ #: includes/admin/views/html-settings-provider-list.php:11
297
+ #: src/Admin/ReturnTable.php:22
298
+ #: src/Admin/Table.php:686
299
+ #: src/ShippingProvider.php:555
300
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:11
301
+ #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:22
302
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:686
303
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:555
304
+ msgctxt "shipments"
305
+ msgid "Title"
306
+ msgstr ""
307
+
308
+ #: includes/admin/views/html-settings-provider-list.php:12
309
+ #: src/Admin/Admin.php:316
310
+ #: src/ShippingProvider.php:564
311
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:12
312
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:316
313
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:564
314
+ msgctxt "shipments"
315
+ msgid "Description"
316
+ msgstr ""
317
+
318
+ #: includes/admin/views/html-settings-provider-list.php:13
319
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:13
320
+ msgctxt "shipments"
321
+ msgid "Activated"
322
+ msgstr ""
323
+
324
+ #: includes/admin/views/html-settings-provider-list.php:23
325
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:23
326
+ msgctxt "shipments"
327
+ msgid "Edit"
328
+ msgstr ""
329
+
330
+ #: includes/admin/views/html-settings-provider-list.php:35
331
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:35
332
+ msgctxt "shipments"
333
+ msgid "Yes"
334
+ msgstr ""
335
+
336
+ #: includes/admin/views/html-settings-provider-list.php:50
337
+ #: includes/admin/views/html-settings-provider-list.php:51
338
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:50
339
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:51
340
+ msgctxt "shipments"
341
+ msgid "Manage shipping provider"
342
+ msgstr ""
343
+
344
+ #: includes/admin/views/html-settings-provider-list.php:52
345
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shipments.php:69
346
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:52
347
+ msgctxt "shipments"
348
+ msgid "Manage"
349
+ msgstr ""
350
+
351
+ #: includes/admin/views/label/html-shipment-label-backbone.php:13
352
+ #: includes/admin/views/label/html-shipment-label.php:39
353
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label-backbone.php:13
354
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:39
355
+ msgctxt "shipments"
356
+ msgid "Create label"
357
+ msgstr ""
358
+
359
+ #: includes/admin/views/label/html-shipment-label-backbone.php:25
360
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label-backbone.php:25
361
+ msgctxt "shipments"
362
+ msgid "Create"
363
+ msgstr ""
364
+
365
+ #: includes/admin/views/label/html-shipment-label.php:15
366
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:15
367
+ msgctxt "shipments"
368
+ msgid "%s Label"
369
+ msgstr ""
370
+
371
+ #: includes/admin/views/label/html-shipment-label.php:21
372
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:21
373
+ msgctxt "shipments"
374
+ msgid "Download"
375
+ msgstr ""
376
+
377
+ #: includes/admin/views/label/html-shipment-label.php:39
378
+ #: src/Admin/Admin.php:722
379
+ #: packages/woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:39
380
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:722
381
+ msgctxt "shipments"
382
+ msgid "Create new label"
383
+ msgstr ""
384
+
385
+ #: includes/emails/class-wc-gzd-email-customer-guest-return-shipment-request.php:41
386
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-guest-return-shipment-request.php:41
387
+ msgctxt "shipments"
388
+ msgid "Order guest return request"
389
+ msgstr ""
390
+
391
+ #: includes/emails/class-wc-gzd-email-customer-guest-return-shipment-request.php:42
392
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-guest-return-shipment-request.php:42
393
+ msgctxt "shipments"
394
+ msgid "Order guest return request are sent to the customer after submitting a new return request as a guest."
395
+ msgstr ""
396
+
397
+ #: includes/emails/class-wc-gzd-email-customer-guest-return-shipment-request.php:66
398
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-guest-return-shipment-request.php:66
399
+ msgctxt "shipments"
400
+ msgid "Your return request to your order {order_number}"
401
+ msgstr ""
402
+
403
+ #: includes/emails/class-wc-gzd-email-customer-guest-return-shipment-request.php:76
404
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-guest-return-shipment-request.php:76
405
+ msgctxt "shipments"
406
+ msgid "Return request to your order: {order_number}"
407
+ msgstr ""
408
+
409
+ #: includes/emails/class-wc-gzd-email-customer-return-shipment-delivered.php:44
410
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment-delivered.php:44
411
+ msgctxt "shipments"
412
+ msgid "Order return delivered"
413
+ msgstr ""
414
+
415
+ #: includes/emails/class-wc-gzd-email-customer-return-shipment-delivered.php:45
416
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment-delivered.php:45
417
+ msgctxt "shipments"
418
+ msgid "Order return notifications are sent to the customer after a return shipment has been returned (delivered) successfully."
419
+ msgstr ""
420
+
421
+ #: includes/emails/class-wc-gzd-email-customer-return-shipment-delivered.php:75
422
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment-delivered.php:75
423
+ msgctxt "shipments"
424
+ msgid "Return to your order {order_number} has been received"
425
+ msgstr ""
426
+
427
+ #: includes/emails/class-wc-gzd-email-customer-return-shipment-delivered.php:85
428
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment-delivered.php:85
429
+ msgctxt "shipments"
430
+ msgid "Received return to your order: {order_number}"
431
+ msgstr ""
432
+
433
+ #: includes/emails/class-wc-gzd-email-customer-return-shipment.php:52
434
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment.php:52
435
+ msgctxt "shipments"
436
+ msgid "Order return"
437
+ msgstr ""
438
+
439
+ #: includes/emails/class-wc-gzd-email-customer-return-shipment.php:53
440
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment.php:53
441
+ msgctxt "shipments"
442
+ msgid "Order return notifications are sent to the customer after a return shipment was marked as processing."
443
+ msgstr ""
444
+
445
+ #: includes/emails/class-wc-gzd-email-customer-return-shipment.php:83
446
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment.php:83
447
+ msgctxt "shipments"
448
+ msgid "Return to your order {order_number}"
449
+ msgstr ""
450
+
451
+ #: includes/emails/class-wc-gzd-email-customer-return-shipment.php:93
452
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment.php:93
453
+ msgctxt "shipments"
454
+ msgid "Return to your order: {order_number}"
455
+ msgstr ""
456
+
457
+ #: includes/emails/class-wc-gzd-email-customer-shipment.php:51
458
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:51
459
+ msgctxt "shipments"
460
+ msgid "Order shipped"
461
+ msgstr ""
462
+
463
+ #: includes/emails/class-wc-gzd-email-customer-shipment.php:52
464
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:52
465
+ msgctxt "shipments"
466
+ msgid "Shipment notifications are sent to the customer when a shipment gets shipped."
467
+ msgstr ""
468
+
469
+ #: includes/emails/class-wc-gzd-email-customer-shipment.php:86
470
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:86
471
+ msgctxt "shipments"
472
+ msgid "Your {site_title} order #{order_number} has been partially shipped"
473
+ msgstr ""
474
+
475
+ #: includes/emails/class-wc-gzd-email-customer-shipment.php:88
476
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:88
477
+ msgctxt "shipments"
478
+ msgid "Your {site_title} order #{order_number} has been shipped"
479
+ msgstr ""
480
+
481
+ #: includes/emails/class-wc-gzd-email-customer-shipment.php:101
482
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:101
483
+ msgctxt "shipments"
484
+ msgid "Partial shipment to your order: {order_number}"
485
+ msgstr ""
486
+
487
+ #: includes/emails/class-wc-gzd-email-customer-shipment.php:103
488
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:103
489
+ msgctxt "shipments"
490
+ msgid "Shipment to your order: {order_number}"
491
+ msgstr ""
492
+
493
+ #. translators: %s: list of placeholders
494
+ #: includes/emails/class-wc-gzd-email-customer-shipment.php:307
495
+ #: includes/emails/class-wc-gzd-email-customer-shipment.php:321
496
+ #: includes/emails/class-wc-gzd-email-customer-shipment.php:330
497
+ #: includes/emails/class-wc-gzd-email-customer-shipment.php:339
498
+ #: includes/emails/class-wc-gzd-email-customer-shipment.php:348
499
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:307
500
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:321
501
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:330
502
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:339
503
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:348
504
+ msgctxt "shipments"
505
+ msgid "Available placeholders: %s"
506
+ msgstr ""
507
+
508
+ #: includes/emails/class-wc-gzd-email-customer-shipment.php:311
509
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:311
510
+ msgctxt "shipments"
511
+ msgid "Enable/Disable"
512
+ msgstr ""
513
+
514
+ #: includes/emails/class-wc-gzd-email-customer-shipment.php:313
515
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:313
516
+ msgctxt "shipments"
517
+ msgid "Enable this email notification"
518
+ msgstr ""
519
+
520
+ #: includes/emails/class-wc-gzd-email-customer-shipment.php:317
521
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:317
522
+ msgctxt "shipments"
523
+ msgid "Full shipment subject"
524
+ msgstr ""
525
+
526
+ #: includes/emails/class-wc-gzd-email-customer-shipment.php:326
527
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:326
528
+ msgctxt "shipments"
529
+ msgid "Partial shipment subject"
530
+ msgstr ""
531
+
532
+ #: includes/emails/class-wc-gzd-email-customer-shipment.php:335
533
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:335
534
+ msgctxt "shipments"
535
+ msgid "Full shipment email heading"
536
+ msgstr ""
537
+
538
+ #: includes/emails/class-wc-gzd-email-customer-shipment.php:344
539
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:344
540
+ msgctxt "shipments"
541
+ msgid "Partial shipment email heading"
542
+ msgstr ""
543
+
544
+ #: includes/emails/class-wc-gzd-email-customer-shipment.php:353
545
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:353
546
+ msgctxt "shipments"
547
+ msgid "Additional content"
548
+ msgstr ""
549
+
550
+ #: includes/emails/class-wc-gzd-email-customer-shipment.php:354
551
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:354
552
+ msgctxt "shipments"
553
+ msgid "Text to appear below the main email content."
554
+ msgstr ""
555
+
556
+ #: includes/emails/class-wc-gzd-email-customer-shipment.php:356
557
+ #: includes/wc-gzd-shipment-functions.php:959
558
+ #: includes/wc-gzd-shipment-functions.php:989
559
+ #: templates/shipment/shipment-details-address.php:28
560
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:356
561
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:959
562
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:989
563
+ #: packages/woocommerce-germanized-shipments/templates/shipment/shipment-details-address.php:28
564
+ msgctxt "shipments"
565
+ msgid "N/A"
566
+ msgstr ""
567
+
568
+ #: includes/emails/class-wc-gzd-email-customer-shipment.php:362
569
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:362
570
+ msgctxt "shipments"
571
+ msgid "Email type"
572
+ msgstr ""
573
+
574
+ #: includes/emails/class-wc-gzd-email-customer-shipment.php:364
575
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:364
576
+ msgctxt "shipments"
577
+ msgid "Choose which format of email to send."
578
+ msgstr ""
579
+
580
+ #: includes/emails/class-wc-gzd-email-new-return-shipment-request.php:42
581
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:42
582
+ msgctxt "shipments"
583
+ msgid "New order return request"
584
+ msgstr ""
585
+
586
+ #: includes/emails/class-wc-gzd-email-new-return-shipment-request.php:43
587
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:43
588
+ msgctxt "shipments"
589
+ msgid "New order return request emails are sent to chosen recipient(s) when a new return is requested."
590
+ msgstr ""
591
+
592
+ #: includes/emails/class-wc-gzd-email-new-return-shipment-request.php:73
593
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:73
594
+ msgctxt "shipments"
595
+ msgid "[{site_title}]: New return request to #{order_number}"
596
+ msgstr ""
597
+
598
+ #: includes/emails/class-wc-gzd-email-new-return-shipment-request.php:83
599
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:83
600
+ msgctxt "shipments"
601
+ msgid "New return request to: #{order_number}"
602
+ msgstr ""
603
+
604
+ #: includes/emails/class-wc-gzd-email-new-return-shipment-request.php:202
605
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:202
606
+ msgctxt "shipments"
607
+ msgid "Recipient(s)"
608
+ msgstr ""
609
+
610
+ #. translators: %s: WP admin email
611
+ #: includes/emails/class-wc-gzd-email-new-return-shipment-request.php:205
612
+ #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:205
613
+ msgctxt "shipments"
614
+ msgid "Enter recipients (comma separated) for this email. Defaults to %s."
615
+ msgstr ""
616
+
617
+ #: includes/wc-gzd-packaging-functions.php:24
618
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-packaging-functions.php:24
619
+ msgctxt "shipments"
620
+ msgid "Cardboard"
621
+ msgstr ""
622
+
623
+ #: includes/wc-gzd-packaging-functions.php:25
624
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-packaging-functions.php:25
625
+ msgctxt "shipments"
626
+ msgid "Letter"
627
+ msgstr ""
628
+
629
+ #: includes/wc-gzd-shipment-functions.php:68
630
+ #: includes/wc-gzd-shipment-functions.php:1025
631
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:68
632
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1025
633
+ msgctxt "shipments"
634
+ msgid "Shipment"
635
+ msgstr ""
636
+
637
+ #: includes/wc-gzd-shipment-functions.php:75
638
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:75
639
+ msgctxt "shipments"
640
+ msgid "Return"
641
+ msgstr ""
642
+
643
+ #: includes/wc-gzd-shipment-functions.php:102
644
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:102
645
+ msgctxt "shipments"
646
+ msgid "Not shipped"
647
+ msgstr ""
648
+
649
+ #: includes/wc-gzd-shipment-functions.php:103
650
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:103
651
+ msgctxt "shipments"
652
+ msgid "Partially shipped"
653
+ msgstr ""
654
+
655
+ #: includes/wc-gzd-shipment-functions.php:104
656
+ #: includes/wc-gzd-shipment-functions.php:321
657
+ #: src/Admin/Table.php:854
658
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:104
659
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:321
660
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:854
661
+ msgctxt "shipments"
662
+ msgid "Shipped"
663
+ msgstr ""
664
+
665
+ #: includes/wc-gzd-shipment-functions.php:121
666
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:121
667
+ msgctxt "shipments"
668
+ msgid "Open"
669
+ msgstr ""
670
+
671
+ #: includes/wc-gzd-shipment-functions.php:122
672
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:122
673
+ msgctxt "shipments"
674
+ msgid "Partially returned"
675
+ msgstr ""
676
+
677
+ #: includes/wc-gzd-shipment-functions.php:123
678
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:123
679
+ msgctxt "shipments"
680
+ msgid "Returned"
681
+ msgstr ""
682
+
683
+ #: includes/wc-gzd-shipment-functions.php:319
684
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:319
685
+ msgctxt "shipments"
686
+ msgid "Draft"
687
+ msgstr ""
688
+
689
+ #: includes/wc-gzd-shipment-functions.php:320
690
+ #: src/Admin/Table.php:846
691
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:320
692
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:846
693
+ msgctxt "shipments"
694
+ msgid "Processing"
695
+ msgstr ""
696
+
697
+ #: includes/wc-gzd-shipment-functions.php:322
698
+ #: src/Admin/ReturnTable.php:50
699
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:322
700
+ #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:50
701
+ msgctxt "shipments"
702
+ msgid "Delivered"
703
+ msgstr ""
704
+
705
+ #: includes/wc-gzd-shipment-functions.php:323
706
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:323
707
+ msgctxt "shipments"
708
+ msgid "Requested"
709
+ msgstr ""
710
+
711
+ #: includes/wc-gzd-shipment-functions.php:372
712
+ #: includes/wc-gzd-shipments-template-functions.php:81
713
+ #: includes/wc-gzd-shipments-template-functions.php:135
714
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:372
715
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:81
716
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:135
717
+ msgctxt "shipments"
718
+ msgid "Invalid order."
719
+ msgstr ""
720
+
721
+ #: includes/wc-gzd-shipment-functions.php:376
722
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:376
723
+ msgctxt "shipments"
724
+ msgid "This order is already fully returned."
725
+ msgstr ""
726
+
727
+ #: includes/wc-gzd-shipment-functions.php:387
728
+ #: includes/wc-gzd-shipment-functions.php:428
729
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:387
730
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:428
731
+ msgctxt "shipments"
732
+ msgid "Error while creating the shipment instance"
733
+ msgstr ""
734
+
735
+ #: includes/wc-gzd-shipment-functions.php:413
736
+ #: includes/wc-gzd-shipment-functions.php:417
737
+ #: src/ReturnShipment.php:420
738
+ #: src/ReturnShipment.php:479
739
+ #: src/SimpleShipment.php:118
740
+ #: src/SimpleShipment.php:214
741
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:413
742
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:417
743
+ #: packages/woocommerce-germanized-shipments/src/ReturnShipment.php:420
744
+ #: packages/woocommerce-germanized-shipments/src/ReturnShipment.php:479
745
+ #: packages/woocommerce-germanized-shipments/src/SimpleShipment.php:118
746
+ #: packages/woocommerce-germanized-shipments/src/SimpleShipment.php:214
747
+ msgctxt "shipments"
748
+ msgid "Invalid shipment order"
749
+ msgstr ""
750
+
751
+ #: includes/wc-gzd-shipment-functions.php:447
752
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:447
753
+ msgctxt "shipments"
754
+ msgid "Invalid order item"
755
+ msgstr ""
756
+
757
+ #: includes/wc-gzd-shipment-functions.php:569
758
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:569
759
+ msgctxt "shipments"
760
+ msgid "Invalid shipment item"
761
+ msgstr ""
762
+
763
+ #: includes/wc-gzd-shipment-functions.php:642
764
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:642
765
+ msgctxt "shipments"
766
+ msgid "None"
767
+ msgstr ""
768
+
769
+ #: includes/wc-gzd-shipment-functions.php:715
770
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:715
771
+ msgctxt "shipments"
772
+ msgid "Error while uploading file."
773
+ msgstr ""
774
+
775
+ #: includes/wc-gzd-shipment-functions.php:1026
776
+ #: src/Admin/ReturnTable.php:23
777
+ #: src/Admin/Table.php:687
778
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1026
779
+ #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:23
780
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:687
781
+ msgctxt "shipments"
782
+ msgid "Date"
783
+ msgstr ""
784
+
785
+ #: includes/wc-gzd-shipment-functions.php:1028
786
+ #: templates/shipment/shipment-details-tracking.php:23
787
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1028
788
+ #: packages/woocommerce-germanized-shipments/templates/shipment/shipment-details-tracking.php:23
789
+ msgctxt "shipments"
790
+ msgid "Tracking"
791
+ msgstr ""
792
+
793
+ #: includes/wc-gzd-shipment-functions.php:1029
794
+ #: src/Admin/Admin.php:98
795
+ #: src/Admin/ReturnTable.php:30
796
+ #: src/Admin/Table.php:694
797
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1029
798
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:98
799
+ #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:30
800
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:694
801
+ msgctxt "shipments"
802
+ msgid "Actions"
803
+ msgstr ""
804
+
805
+ #: includes/wc-gzd-shipment-functions.php:1265
806
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1265
807
+ msgctxt "shipments"
808
+ msgid "View"
809
+ msgstr ""
810
+
811
+ #: includes/wc-gzd-shipment-functions.php:1272
812
+ #: src/Admin/Table.php:865
813
+ #: src/Ajax.php:337
814
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1272
815
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:865
816
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:337
817
+ msgctxt "shipments"
818
+ msgid "Download label"
819
+ msgstr ""
820
+
821
+ #: includes/wc-gzd-shipments-template-functions.php:81
822
+ #: includes/wc-gzd-shipments-template-functions.php:115
823
+ #: includes/wc-gzd-shipments-template-functions.php:135
824
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:81
825
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:115
826
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:135
827
+ msgctxt "shipments"
828
+ msgid "My account"
829
+ msgstr ""
830
+
831
+ #: includes/wc-gzd-shipments-template-functions.php:115
832
+ #: src/DataStores/Shipment.php:354
833
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:115
834
+ #: packages/woocommerce-germanized-shipments/src/DataStores/Shipment.php:354
835
+ msgctxt "shipments"
836
+ msgid "Invalid shipment."
837
+ msgstr ""
838
+
839
+ #: includes/wc-gzd-shipments-template-functions.php:140
840
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:140
841
+ msgctxt "shipments"
842
+ msgid "Currently you cannot add new return requests to that order. If you have questions regarding the return of that order please contact us for further information."
843
+ msgstr ""
844
+
845
+ #: includes/wc-gzd-shipments-template-functions.php:140
846
+ #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:140
847
+ msgctxt "shipments"
848
+ msgid "View order"
849
+ msgstr ""
850
+
851
+ #: src/Admin/Admin.php:106
852
+ #: src/Admin/Admin.php:241
853
+ #: templates/myaccount/add-return-shipment.php:36
854
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:106
855
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:241
856
+ #: packages/woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:36
857
+ msgctxt "shipments"
858
+ msgid "Reason"
859
+ msgstr ""
860
+
861
+ #: src/Admin/Admin.php:233
862
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:233
863
+ msgctxt "shipments"
864
+ msgid "Return reasons"
865
+ msgstr ""
866
+
867
+ #: src/Admin/Admin.php:240
868
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:240
869
+ msgctxt "shipments"
870
+ msgid "Reason code"
871
+ msgstr ""
872
+
873
+ #: src/Admin/Admin.php:240
874
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:240
875
+ msgctxt "shipments"
876
+ msgid "The reason code is used to identify the reason."
877
+ msgstr ""
878
+
879
+ #: src/Admin/Admin.php:241
880
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:241
881
+ msgctxt "shipments"
882
+ msgid "Choose a reason text."
883
+ msgstr ""
884
+
885
+ #: src/Admin/Admin.php:260
886
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:260
887
+ msgctxt "shipments"
888
+ msgid "+ Add reason"
889
+ msgstr ""
890
+
891
+ #: src/Admin/Admin.php:260
892
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:260
893
+ msgctxt "shipments"
894
+ msgid "Remove selected reason(s)"
895
+ msgstr ""
896
+
897
+ #: src/Admin/Admin.php:293
898
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:293
899
+ msgctxt "shipments"
900
+ msgid "Available Packaging"
901
+ msgstr ""
902
+
903
+ #: src/Admin/Admin.php:316
904
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:316
905
+ msgctxt "shipments"
906
+ msgid "A description to help you identify the packaging."
907
+ msgstr ""
908
+
909
+ #: src/Admin/Admin.php:317
910
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:317
911
+ msgctxt "shipments"
912
+ msgid "Type"
913
+ msgstr ""
914
+
915
+ #: src/Admin/Admin.php:318
916
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:318
917
+ msgctxt "shipments"
918
+ msgid "Weight (%s)"
919
+ msgstr ""
920
+
921
+ #: src/Admin/Admin.php:318
922
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:318
923
+ msgctxt "shipments"
924
+ msgid "The weight of the packaging."
925
+ msgstr ""
926
+
927
+ #: src/Admin/Admin.php:319
928
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:319
929
+ msgctxt "shipments"
930
+ msgid "Dimensions (LxWxH, %s)"
931
+ msgstr ""
932
+
933
+ #: src/Admin/Admin.php:320
934
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:320
935
+ msgctxt "shipments"
936
+ msgid "Max weight (kg)"
937
+ msgstr ""
938
+
939
+ #: src/Admin/Admin.php:320
940
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:320
941
+ msgctxt "shipments"
942
+ msgid "The maximum weight this packaging can hold. Leave empty to not restrict maximum weight."
943
+ msgstr ""
944
+
945
+ #: src/Admin/Admin.php:345
946
+ #: src/Admin/Admin.php:386
947
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:345
948
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:386
949
+ msgctxt "shipments"
950
+ msgid "Length"
951
+ msgstr ""
952
+
953
+ #: src/Admin/Admin.php:346
954
+ #: src/Admin/Admin.php:387
955
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:346
956
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:387
957
+ msgctxt "shipments"
958
+ msgid "Width"
959
+ msgstr ""
960
+
961
+ #: src/Admin/Admin.php:347
962
+ #: src/Admin/Admin.php:388
963
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:347
964
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:388
965
+ msgctxt "shipments"
966
+ msgid "Height"
967
+ msgstr ""
968
+
969
+ #: src/Admin/Admin.php:360
970
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:360
971
+ msgctxt "shipments"
972
+ msgid "+ Add packaging"
973
+ msgstr ""
974
+
975
+ #: src/Admin/Admin.php:360
976
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:360
977
+ msgctxt "shipments"
978
+ msgid "Remove selected packaging"
979
+ msgstr ""
980
+
981
+ #: src/Admin/Admin.php:493
982
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:493
983
+ msgctxt "shipments"
984
+ msgid "Create shipments"
985
+ msgstr ""
986
+
987
+ #: src/Admin/Admin.php:608
988
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:608
989
+ msgctxt "shipments"
990
+ msgid "Search shipments"
991
+ msgstr ""
992
+
993
+ #: src/Admin/Admin.php:642
994
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:642
995
+ msgctxt "shipments"
996
+ msgid "Search returns"
997
+ msgstr ""
998
+
999
+ #: src/Admin/Admin.php:715
1000
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:715
1001
+ msgctxt "shipments"
1002
+ msgid "Do you really want to delete the shipment?"
1003
+ msgstr ""
1004
+
1005
+ #: src/Admin/Admin.php:721
1006
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:721
1007
+ msgctxt "shipments"
1008
+ msgid "Do you really want to delete the label?"
1009
+ msgstr ""
1010
+
1011
+ #: src/Admin/Admin.php:723
1012
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:723
1013
+ msgctxt "shipments"
1014
+ msgid "Please save the shipment before creating a new label"
1015
+ msgstr ""
1016
+
1017
+ #: src/Admin/Admin.php:773
1018
+ #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:773
1019
+ msgctxt "shipments"
1020
+ msgid "Do you really want to delete the shipping provider? Some of your existing shipments might be linked to that provider and might need adjustments."
1021
+ msgstr ""
1022
+
1023
+ #: src/Admin/BulkActionHandler.php:80
1024
+ #: packages/woocommerce-germanized-shipments/src/Admin/BulkActionHandler.php:80
1025
+ msgctxt "shipments"
1026
+ msgid "Successfully processed shipments."
1027
+ msgstr ""
1028
+
1029
+ #: src/Admin/BulkLabel.php:30
1030
+ #: packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php:30
1031
+ msgctxt "shipments"
1032
+ msgid "Generating labels..."
1033
+ msgstr ""
1034
+
1035
+ #: src/Admin/BulkLabel.php:83
1036
+ #: packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php:83
1037
+ msgctxt "shipments"
1038
+ msgid "Download labels"
1039
+ msgstr ""
1040
+
1041
+ #: src/Admin/BulkLabel.php:93
1042
+ #: packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php:93
1043
+ msgctxt "shipments"
1044
+ msgid "The chosen shipments were not suitable for automatic label creation. Please check the shipping provider option of the corresponding shipments."
1045
+ msgstr ""
1046
+
1047
+ #: src/Admin/BulkLabel.php:95
1048
+ #: packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php:95
1049
+ msgctxt "shipments"
1050
+ msgid "Successfully generated labels. %s"
1051
+ msgstr ""
1052
+
1053
+ #: src/Admin/BulkLabel.php:103
1054
+ #: packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php:103
1055
+ msgctxt "shipments"
1056
+ msgid "Labels partially generated. %s"
1057
+ msgstr ""
1058
+
1059
+ #: src/Admin/BulkLabel.php:143
1060
+ #: packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php:143
1061
+ msgctxt "shipments"
1062
+ msgid "Error while creating label for %s: %s"
1063
+ msgstr ""
1064
+
1065
+ #: src/Admin/BulkLabel.php:143
1066
+ #: packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php:143
1067
+ msgctxt "shipments"
1068
+ msgid "shipment #%d"
1069
+ msgstr ""
1070
+
1071
+ #: src/Admin/ReturnTable.php:25
1072
+ #: src/Admin/Table.php:689
1073
+ #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:25
1074
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:689
1075
+ msgctxt "shipments"
1076
+ msgid "Items"
1077
+ msgstr ""
1078
+
1079
+ #: src/Admin/ReturnTable.php:26
1080
+ #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:26
1081
+ msgctxt "shipments"
1082
+ msgid "Sender"
1083
+ msgstr ""
1084
+
1085
+ #: src/Admin/ReturnTable.php:27
1086
+ #: src/Admin/Table.php:691
1087
+ #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:27
1088
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:691
1089
+ msgctxt "shipments"
1090
+ msgid "Weight"
1091
+ msgstr ""
1092
+
1093
+ #: src/Admin/ReturnTable.php:28
1094
+ #: src/Admin/Table.php:692
1095
+ #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:28
1096
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:692
1097
+ msgctxt "shipments"
1098
+ msgid "Dimensions"
1099
+ msgstr ""
1100
+
1101
+ #: src/Admin/ReturnTable.php:29
1102
+ #: src/Admin/Table.php:693
1103
+ #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:29
1104
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:693
1105
+ msgctxt "shipments"
1106
+ msgid "Order"
1107
+ msgstr ""
1108
+
1109
+ #: src/Admin/ReturnTable.php:58
1110
+ #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:58
1111
+ msgctxt "shipments"
1112
+ msgid "Send notification to customer"
1113
+ msgstr ""
1114
+
1115
+ #: src/Admin/ReturnTable.php:79
1116
+ #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:79
1117
+ msgctxt "shipments"
1118
+ msgid "Confirm open return requests"
1119
+ msgstr ""
1120
+
1121
+ #: src/Admin/Settings.php:38
1122
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:38
1123
+ msgctxt "shipments"
1124
+ msgid "Manage shipments"
1125
+ msgstr ""
1126
+
1127
+ #: src/Admin/Settings.php:39
1128
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:39
1129
+ msgctxt "shipments"
1130
+ msgid "To view all your existing shipments in a list you might follow this link or click on the shipments link within the WooCommerce sub-menu."
1131
+ msgstr ""
1132
+
1133
+ #: src/Admin/Settings.php:52
1134
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:52
1135
+ msgctxt "shipments"
1136
+ msgid "E-Mail Notification"
1137
+ msgstr ""
1138
+
1139
+ #: src/Admin/Settings.php:53
1140
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:53
1141
+ msgctxt "shipments"
1142
+ msgid "By enabling this option customers receive an email notification as soon as a shipment is marked as shipped."
1143
+ msgstr ""
1144
+
1145
+ #: src/Admin/Settings.php:66
1146
+ #: src/Admin/Settings.php:122
1147
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:66
1148
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:122
1149
+ msgctxt "shipments"
1150
+ msgid "Automation"
1151
+ msgstr ""
1152
+
1153
+ #: src/Admin/Settings.php:67
1154
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:67
1155
+ msgctxt "shipments"
1156
+ msgid "Decide whether you want to automatically create shipments to orders reaching a specific status. You can always adjust your shipments by manually editing the shipment within the edit order screen."
1157
+ msgstr ""
1158
+
1159
+ #: src/Admin/Settings.php:81
1160
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:81
1161
+ msgctxt "shipments"
1162
+ msgid "Germanized can help you to minimize manual work while handling customer returns. Learn more about returns within our %s."
1163
+ msgstr ""
1164
+
1165
+ #: src/Admin/Settings.php:81
1166
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:81
1167
+ msgctxt "shipments"
1168
+ msgid "documentation"
1169
+ msgstr ""
1170
+
1171
+ #: src/Admin/Settings.php:103
1172
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:103
1173
+ msgctxt "shipments"
1174
+ msgid "Notify"
1175
+ msgstr ""
1176
+
1177
+ #: src/Admin/Settings.php:104
1178
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:104
1179
+ msgctxt "shipments"
1180
+ msgid "Notify customers about new shipments."
1181
+ msgstr ""
1182
+
1183
+ #: src/Admin/Settings.php:104
1184
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:104
1185
+ msgctxt "shipments"
1186
+ msgid "Notify customers by email as soon as a shipment is marked as shipped. %s the notification email."
1187
+ msgstr ""
1188
+
1189
+ #: src/Admin/Settings.php:104
1190
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:104
1191
+ msgctxt "shipments notification"
1192
+ msgid "Manage"
1193
+ msgstr ""
1194
+
1195
+ #: src/Admin/Settings.php:111
1196
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:111
1197
+ msgctxt "shipments"
1198
+ msgid "Default provider"
1199
+ msgstr ""
1200
+
1201
+ #: src/Admin/Settings.php:112
1202
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:112
1203
+ msgctxt "shipments"
1204
+ msgid "Select a default shipping provider which will be selected by default in case no provider could be determined automatically."
1205
+ msgstr ""
1206
+
1207
+ #: src/Admin/Settings.php:125
1208
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:125
1209
+ msgctxt "shipments"
1210
+ msgid "Enable"
1211
+ msgstr ""
1212
+
1213
+ #: src/Admin/Settings.php:126
1214
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:126
1215
+ msgctxt "shipments"
1216
+ msgid "Automatically create shipments for orders."
1217
+ msgstr ""
1218
+
1219
+ #: src/Admin/Settings.php:133
1220
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:133
1221
+ msgctxt "shipments"
1222
+ msgid "Order statuses"
1223
+ msgstr ""
1224
+
1225
+ #: src/Admin/Settings.php:134
1226
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:134
1227
+ msgctxt "shipments"
1228
+ msgid "Create shipments as soon as the order reaches one of the following status(es)."
1229
+ msgstr ""
1230
+
1231
+ #: src/Admin/Settings.php:142
1232
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:142
1233
+ msgctxt "shipments"
1234
+ msgid "On new order creation"
1235
+ msgstr ""
1236
+
1237
+ #: src/Admin/Settings.php:147
1238
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:147
1239
+ msgctxt "shipments"
1240
+ msgid "Default status"
1241
+ msgstr ""
1242
+
1243
+ #: src/Admin/Settings.php:148
1244
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:148
1245
+ msgctxt "shipments"
1246
+ msgid "Choose a default status for the automatically created shipment."
1247
+ msgstr ""
1248
+
1249
+ #: src/Admin/Settings.php:160
1250
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:160
1251
+ msgctxt "shipments"
1252
+ msgid "Update status"
1253
+ msgstr ""
1254
+
1255
+ #: src/Admin/Settings.php:161
1256
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:161
1257
+ msgctxt "shipments"
1258
+ msgid "Mark order as completed after order is fully shipped."
1259
+ msgstr ""
1260
+
1261
+ #: src/Admin/Settings.php:161
1262
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:161
1263
+ msgctxt "shipments"
1264
+ msgid "This option will automatically update the order status to completed as soon as all required shipments have been marked as shipped."
1265
+ msgstr ""
1266
+
1267
+ #: src/Admin/Settings.php:168
1268
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:168
1269
+ msgctxt "shipments"
1270
+ msgid "Mark as shipped"
1271
+ msgstr ""
1272
+
1273
+ #: src/Admin/Settings.php:169
1274
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:169
1275
+ msgctxt "shipments"
1276
+ msgid "Mark shipments as shipped after order completion."
1277
+ msgstr ""
1278
+
1279
+ #: src/Admin/Settings.php:169
1280
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:169
1281
+ msgctxt "shipments"
1282
+ msgid "This option will automatically update contained shipments to shipped (if possible, e.g. not yet delivered) as soon as the order was marked as completed."
1283
+ msgstr ""
1284
+
1285
+ #: src/Admin/Settings.php:177
1286
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:177
1287
+ msgctxt "shipments"
1288
+ msgid "Returns can be added manually by the shop manager or by the customer. Decide what suits you best by turning customer-added returns on or off in your %s."
1289
+ msgstr ""
1290
+
1291
+ #: src/Admin/Settings.php:177
1292
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:177
1293
+ msgctxt "shipments"
1294
+ msgid "shipping provider settings"
1295
+ msgstr ""
1296
+
1297
+ #: src/Admin/Settings.php:184
1298
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:184
1299
+ msgctxt "shipments"
1300
+ msgid "Days to return"
1301
+ msgstr ""
1302
+
1303
+ #: src/Admin/Settings.php:185
1304
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:185
1305
+ msgctxt "shipments"
1306
+ msgid "In case one of your %s supports returns added by customers you might want to limit the number of days a customer is allowed to add returns to an order. The days are counted starting with the date the order was shipped, completed or created (by checking for existance in this order)."
1307
+ msgstr ""
1308
+
1309
+ #: src/Admin/Settings.php:185
1310
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:185
1311
+ msgctxt "shipments"
1312
+ msgid "shipping providers"
1313
+ msgstr ""
1314
+
1315
+ #: src/Admin/Settings.php:194
1316
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:194
1317
+ msgctxt "shipments"
1318
+ msgid "Return Address"
1319
+ msgstr ""
1320
+
1321
+ #: src/Admin/Settings.php:197
1322
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:197
1323
+ msgctxt "shipments"
1324
+ msgid "First Name"
1325
+ msgstr ""
1326
+
1327
+ #: src/Admin/Settings.php:204
1328
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:204
1329
+ msgctxt "shipments"
1330
+ msgid "Last Name"
1331
+ msgstr ""
1332
+
1333
+ #: src/Admin/Settings.php:211
1334
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:211
1335
+ msgctxt "shipments"
1336
+ msgid "Company"
1337
+ msgstr ""
1338
+
1339
+ #: src/Admin/Settings.php:218
1340
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:218
1341
+ msgctxt "shipments"
1342
+ msgid "Address 1"
1343
+ msgstr ""
1344
+
1345
+ #: src/Admin/Settings.php:225
1346
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:225
1347
+ msgctxt "shipments"
1348
+ msgid "Address 2"
1349
+ msgstr ""
1350
+
1351
+ #: src/Admin/Settings.php:232
1352
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:232
1353
+ msgctxt "shipments"
1354
+ msgid "City"
1355
+ msgstr ""
1356
+
1357
+ #: src/Admin/Settings.php:239
1358
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:239
1359
+ msgctxt "shipments"
1360
+ msgid "Country / State"
1361
+ msgstr ""
1362
+
1363
+ #: src/Admin/Settings.php:247
1364
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:247
1365
+ msgctxt "shipments"
1366
+ msgid "Postcode"
1367
+ msgstr ""
1368
+
1369
+ #: src/Admin/Settings.php:255
1370
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:255
1371
+ msgctxt "shipments"
1372
+ msgid "Customer Account"
1373
+ msgstr ""
1374
+
1375
+ #: src/Admin/Settings.php:258
1376
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:258
1377
+ msgctxt "shipments"
1378
+ msgid "List"
1379
+ msgstr ""
1380
+
1381
+ #: src/Admin/Settings.php:259
1382
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:259
1383
+ msgctxt "shipments"
1384
+ msgid "List shipments on customer account order screen."
1385
+ msgstr ""
1386
+
1387
+ #: src/Admin/Settings.php:280
1388
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:280
1389
+ msgctxt "shipments"
1390
+ msgid "Default packaging"
1391
+ msgstr ""
1392
+
1393
+ #: src/Admin/Settings.php:281
1394
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:281
1395
+ msgctxt "shipments"
1396
+ msgid "Choose a packaging which serves as fallback or default in case no suitable packaging could be matched for a certain shipment."
1397
+ msgstr ""
1398
+
1399
+ #: src/Admin/Settings.php:379
1400
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:379
1401
+ msgctxt "shipments"
1402
+ msgid "New provider"
1403
+ msgstr ""
1404
+
1405
+ #: src/Admin/Settings.php:389
1406
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:389
1407
+ msgctxt "shipments"
1408
+ msgid "Additional settings"
1409
+ msgstr ""
1410
+
1411
+ #: src/Admin/Settings.php:415
1412
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:415
1413
+ msgctxt "shipments"
1414
+ msgid "Add provider"
1415
+ msgstr ""
1416
+
1417
+ #: src/Admin/Settings.php:423
1418
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:423
1419
+ msgctxt "shipments"
1420
+ msgid "General"
1421
+ msgstr ""
1422
+
1423
+ #: src/Admin/Settings.php:425
1424
+ #: src/ShippingProviderMethod.php:56
1425
+ #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:425
1426
+ #: packages/woocommerce-germanized-shipments/src/ShippingProviderMethod.php:56
1427
+ msgctxt "shipments"
1428
+ msgid "Shipping Provider"
1429
+ msgstr ""
1430
+
1431
+ #: src/Admin/Table.php:192
1432
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:192
1433
+ msgctxt "shipments"
1434
+ msgid "%d shipment deleted."
1435
+ msgid_plural "%d shipments deleted."
1436
+ msgstr[0] ""
1437
+ msgstr[1] ""
1438
+
1439
+ #: src/Admin/Table.php:202
1440
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:202
1441
+ msgctxt "shipments"
1442
+ msgid "%d shipment status changed."
1443
+ msgid_plural "%d shipment statuses changed."
1444
+ msgstr[0] ""
1445
+ msgstr[1] ""
1446
+
1447
+ #: src/Admin/Table.php:371
1448
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:371
1449
+ msgctxt "shipments"
1450
+ msgid "No shipments found"
1451
+ msgstr ""
1452
+
1453
+ #: src/Admin/Table.php:410
1454
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:410
1455
+ msgctxt "shipments"
1456
+ msgid "All <span class=\"count\">(%s)</span>"
1457
+ msgid_plural "All <span class=\"count\">(%s)</span>"
1458
+ msgstr[0] ""
1459
+ msgstr[1] ""
1460
+
1461
+ #: src/Admin/Table.php:526
1462
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:526
1463
+ msgctxt "shipments"
1464
+ msgid "Filter by date"
1465
+ msgstr ""
1466
+
1467
+ #: src/Admin/Table.php:528
1468
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:528
1469
+ msgctxt "shipments"
1470
+ msgid "All dates"
1471
+ msgstr ""
1472
+
1473
+ #. translators: 1: month name, 2: 4-digit year
1474
+ #: src/Admin/Table.php:543
1475
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:543
1476
+ msgid "%1$s %2$d"
1477
+ msgstr ""
1478
+
1479
+ #: src/Admin/Table.php:564
1480
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:564
1481
+ msgctxt "shipments"
1482
+ msgid "Processing bulk actions..."
1483
+ msgstr ""
1484
+
1485
+ #: src/Admin/Table.php:648
1486
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:648
1487
+ msgctxt "shipments"
1488
+ msgid "Filter"
1489
+ msgstr ""
1490
+
1491
+ #: src/Admin/Table.php:664
1492
+ #: src/Ajax.php:816
1493
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:664
1494
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:816
1495
+ msgctxt "shipments"
1496
+ msgid "Order #%s"
1497
+ msgstr ""
1498
+
1499
+ #: src/Admin/Table.php:669
1500
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:669
1501
+ msgctxt "shipments"
1502
+ msgid "Filter by order"
1503
+ msgstr ""
1504
+
1505
+ #: src/Admin/Table.php:690
1506
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:690
1507
+ msgctxt "shipments"
1508
+ msgid "Address"
1509
+ msgstr ""
1510
+
1511
+ #: src/Admin/Table.php:785
1512
+ #: templates/myaccount/shipments.php:68
1513
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:785
1514
+ #: packages/woocommerce-germanized-shipments/templates/myaccount/shipments.php:68
1515
+ msgctxt "shipment title"
1516
+ msgid "%s #%s"
1517
+ msgstr ""
1518
+
1519
+ #: src/Admin/Table.php:798
1520
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:798
1521
+ msgctxt "shipments"
1522
+ msgid "via %s"
1523
+ msgstr ""
1524
+
1525
+ #: src/Admin/Table.php:874
1526
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:874
1527
+ msgctxt "shipments"
1528
+ msgid "Generate label"
1529
+ msgstr ""
1530
+
1531
+ #: src/Admin/Table.php:924
1532
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:924
1533
+ msgctxt "shipments"
1534
+ msgid "Select %s"
1535
+ msgstr ""
1536
+
1537
+ #: src/Admin/Table.php:951
1538
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:951
1539
+ msgctxt "shipments"
1540
+ msgid "SKU:"
1541
+ msgstr ""
1542
+
1543
+ #. translators: %s: human-readable time difference
1544
+ #: src/Admin/Table.php:1045
1545
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:1045
1546
+ msgctxt "%s = human-readable time difference"
1547
+ msgid "%s ago"
1548
+ msgstr ""
1549
+
1550
+ #: src/Admin/Table.php:1057
1551
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:1057
1552
+ msgctxt "shipments"
1553
+ msgid "M j, Y"
1554
+ msgstr ""
1555
+
1556
+ #: src/Admin/Table.php:1114
1557
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:1114
1558
+ msgctxt "shipments"
1559
+ msgid "Delete Permanently"
1560
+ msgstr ""
1561
+
1562
+ #: src/Admin/Table.php:1117
1563
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:1117
1564
+ msgctxt "shipments"
1565
+ msgid "Change status to processing"
1566
+ msgstr ""
1567
+
1568
+ #: src/Admin/Table.php:1118
1569
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:1118
1570
+ msgctxt "shipments"
1571
+ msgid "Change status to shipped"
1572
+ msgstr ""
1573
+
1574
+ #: src/Admin/Table.php:1119
1575
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:1119
1576
+ msgctxt "shipments"
1577
+ msgid "Change status to delivered"
1578
+ msgstr ""
1579
+
1580
+ #: src/Admin/Table.php:1120
1581
+ #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:1120
1582
+ msgctxt "shipments"
1583
+ msgid "Generate and download labels"
1584
+ msgstr ""
1585
+
1586
+ #: src/Ajax.php:95
1587
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:95
1588
+ msgctxt "shipments"
1589
+ msgid "Notification successfully sent to customer."
1590
+ msgstr ""
1591
+
1592
+ #: src/Ajax.php:102
1593
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:102
1594
+ msgctxt "shipments"
1595
+ msgid "There was an error while sending the notification."
1596
+ msgstr ""
1597
+
1598
+ #: src/Ajax.php:142
1599
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:142
1600
+ msgctxt "shipments"
1601
+ msgid "Return request confirmed successfully."
1602
+ msgstr ""
1603
+
1604
+ #: src/Ajax.php:154
1605
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:154
1606
+ msgctxt "shipments"
1607
+ msgid "There was an error while confirming the request."
1608
+ msgstr ""
1609
+
1610
+ #: src/Ajax.php:174
1611
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:174
1612
+ msgctxt "shipments"
1613
+ msgid "There was an error creating the label."
1614
+ msgstr ""
1615
+
1616
+ #: src/Ajax.php:210
1617
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:210
1618
+ msgctxt "shipments"
1619
+ msgid "There was an error deleting the label."
1620
+ msgstr ""
1621
+
1622
+ #: src/Ajax.php:251
1623
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:251
1624
+ msgctxt "shipments"
1625
+ msgid "There was an error processing the label."
1626
+ msgstr ""
1627
+
1628
+ #: src/Ajax.php:349
1629
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:349
1630
+ msgctxt "shipments"
1631
+ msgid "There was an error while trying to save the shipping provider status."
1632
+ msgstr ""
1633
+
1634
+ #: src/Ajax.php:387
1635
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:387
1636
+ msgctxt "shipments"
1637
+ msgid "There was an error while trying to delete the shipping provider."
1638
+ msgstr ""
1639
+
1640
+ #: src/Ajax.php:420
1641
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:420
1642
+ msgctxt "shipments"
1643
+ msgid "There was an error while bulk processing shipments."
1644
+ msgstr ""
1645
+
1646
+ #: src/Ajax.php:532
1647
+ #: src/Ajax.php:633
1648
+ #: src/Ajax.php:690
1649
+ #: src/Ajax.php:727
1650
+ #: src/Ajax.php:854
1651
+ #: src/Ajax.php:915
1652
+ #: src/Ajax.php:982
1653
+ #: src/Ajax.php:1015
1654
+ #: src/Ajax.php:1064
1655
+ #: src/Ajax.php:1132
1656
+ #: src/Ajax.php:1173
1657
+ #: src/Ajax.php:1228
1658
+ #: src/Ajax.php:1272
1659
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:532
1660
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:633
1661
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:690
1662
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:727
1663
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:854
1664
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:915
1665
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:982
1666
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:1015
1667
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:1064
1668
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:1132
1669
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:1173
1670
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:1228
1671
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:1272
1672
+ msgctxt "shipments"
1673
+ msgid "There was an error processing the shipment"
1674
+ msgstr ""
1675
+
1676
+ #: src/Ajax.php:574
1677
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:574
1678
+ msgctxt "shipments"
1679
+ msgid "There was an error while adding the shipment"
1680
+ msgstr ""
1681
+
1682
+ #: src/Ajax.php:595
1683
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:595
1684
+ msgctxt "shipments"
1685
+ msgid "This order contains enough shipments already."
1686
+ msgstr ""
1687
+
1688
+ #: src/Ajax.php:652
1689
+ #: packages/woocommerce-germanized-shipments/src/Ajax.php:652
1690
+ msgctxt "shipments"
1691
+ msgid "This order contains enough returns already."
1692
+ msgstr ""
1693
+
1694
+ #: src/Api.php:104
1695
+ #: packages/woocommerce-germanized-shipments/src/Api.php:104
1696
+ msgctxt "shipments"
1697
+ msgid "List of shipments."
1698
+ msgstr ""
1699
+
1700
+ #: src/Api.php:112
1701
+ #: packages/woocommerce-germanized-shipments/src/Api.php:112
1702
+ msgctxt "shipments"
1703
+ msgid "Shipment ID."
1704
+ msgstr ""
1705
+
1706
+ #: src/Api.php:118
1707
+ #: packages/woocommerce-germanized-shipments/src/Api.php:118
1708
+ msgctxt "shipments"
1709
+ msgid "Shipment status."
1710
+ msgstr ""
1711
+
1712
+ #: src/Api.php:125
1713
+ #: packages/woocommerce-germanized-shipments/src/Api.php:125
1714
+ msgctxt "shipments"
1715
+ msgid "Shipment tracking id."
1716
+ msgstr ""
1717
+
1718
+ #: src/Api.php:131
1719
+ #: packages/woocommerce-germanized-shipments/src/Api.php:131
1720
+ msgctxt "shipments"
1721
+ msgid "Shipment tracking url."
1722
+ msgstr ""
1723
+
1724
+ #: src/Api.php:137
1725
+ #: packages/woocommerce-germanized-shipments/src/Api.php:137
1726
+ msgctxt "shipments"
1727
+ msgid "Shipment shipping provider."
1728
+ msgstr ""
1729
+
1730
+ #: src/Api.php:143
1731
+ #: packages/woocommerce-germanized-shipments/src/Api.php:143
1732
+ msgctxt "shipments"
1733
+ msgid "The date the shipment was created, in the site's timezone."
1734
+ msgstr ""
1735
+
1736
+ #: src/Api.php:149
1737
+ #: packages/woocommerce-germanized-shipments/src/Api.php:149
1738
+ msgctxt "shipments"
1739
+ msgid "The date the shipment was created, as GMT."
1740
+ msgstr ""
1741
+
1742
+ #: src/Api.php:155
1743
+ #: packages/woocommerce-germanized-shipments/src/Api.php:155
1744
+ msgctxt "shipments"
1745
+ msgid "The date the shipment was sent, in the site's timezone."
1746
+ msgstr ""
1747
+
1748
+ #: src/Api.php:161
1749
+ #: packages/woocommerce-germanized-shipments/src/Api.php:161
1750
+ msgctxt "shipments"
1751
+ msgid "The date the shipment was sent, as GMT."
1752
+ msgstr ""
1753
+
1754
+ #: src/Api.php:167
1755
+ #: packages/woocommerce-germanized-shipments/src/Api.php:167
1756
+ msgctxt "shipments"
1757
+ msgid "The estimated delivery date of the shipment, in the site's timezone."
1758
+ msgstr ""
1759
+
1760
+ #: src/Api.php:173
1761
+ #: packages/woocommerce-germanized-shipments/src/Api.php:173
1762
+ msgctxt "shipments"
1763
+ msgid "The estimated delivery date of the shipment, as GMT."
1764
+ msgstr ""
1765
+
1766
+ #. translators: %s: weight unit
1767
+ #: src/Api.php:180
1768
+ #: packages/woocommerce-germanized-shipments/src/Api.php:180
1769
+ msgctxt "shipments"
1770
+ msgid "Shipment weight (%s)."
1771
+ msgstr ""
1772
+
1773
+ #: src/Api.php:186
1774
+ #: packages/woocommerce-germanized-shipments/src/Api.php:186
1775
+ msgctxt "shipments"
1776
+ msgid "Shipment dimensions."
1777
+ msgstr ""
1778
+
1779
+ #. translators: %s: dimension unit
1780
+ #: src/Api.php:193
1781
+ #: packages/woocommerce-germanized-shipments/src/Api.php:193
1782
+ msgctxt "shipments"
1783
+ msgid "Shipment length (%s)."
1784
+ msgstr ""
1785
+
1786
+ #. translators: %s: dimension unit
1787
+ #: src/Api.php:200
1788
+ #: packages/woocommerce-germanized-shipments/src/Api.php:200
1789
+ msgctxt "shipments"
1790
+ msgid "Shipment width (%s)."
1791
+ msgstr ""
1792
+
1793
+ #. translators: %s: dimension unit
1794
+ #: src/Api.php:207
1795
+ #: packages/woocommerce-germanized-shipments/src/Api.php:207
1796
+ msgctxt "shipments"
1797
+ msgid "Shipment height (%s)."
1798
+ msgstr ""
1799
+
1800
+ #: src/Api.php:215
1801
+ #: packages/woocommerce-germanized-shipments/src/Api.php:215
1802
+ msgctxt "shipments"
1803
+ msgid "Shipping address."
1804
+ msgstr ""
1805
+
1806
+ #: src/Api.php:221
1807
+ #: packages/woocommerce-germanized-shipments/src/Api.php:221
1808
+ msgctxt "shipments"
1809
+ msgid "First name."
1810
+ msgstr ""
1811
+
1812
+ #: src/Api.php:227
1813
+ #: packages/woocommerce-germanized-shipments/src/Api.php:227
1814
+ msgctxt "shipments"
1815
+ msgid "Last name."
1816
+ msgstr ""
1817
+
1818
+ #: src/Api.php:233
1819
+ #: packages/woocommerce-germanized-shipments/src/Api.php:233
1820
+ msgctxt "shipments"
1821
+ msgid "Company name."
1822
+ msgstr ""
1823
+
1824
+ #: src/Api.php:239
1825
+ #: packages/woocommerce-germanized-shipments/src/Api.php:239
1826
+ msgctxt "shipments"
1827
+ msgid "Address line 1"
1828
+ msgstr ""
1829
+
1830
+ #: src/Api.php:245
1831
+ #: packages/woocommerce-germanized-shipments/src/Api.php:245
1832
+ msgctxt "shipments"
1833
+ msgid "Address line 2"
1834
+ msgstr ""
1835
+
1836
+ #: src/Api.php:251
1837
+ #: packages/woocommerce-germanized-shipments/src/Api.php:251
1838
+ msgctxt "shipments"
1839
+ msgid "City name."
1840
+ msgstr ""
1841
+
1842
+ #: src/Api.php:257
1843
+ #: packages/woocommerce-germanized-shipments/src/Api.php:257
1844
+ msgctxt "shipments"
1845
+ msgid "ISO code or name of the state, province or district."
1846
+ msgstr ""
1847
+
1848
+ #: src/Api.php:263
1849
+ #: packages/woocommerce-germanized-shipments/src/Api.php:263
1850
+ msgctxt "shipments"
1851
+ msgid "Postal code."
1852
+ msgstr ""
1853
+
1854
+ #: src/Api.php:269
1855
+ #: packages/woocommerce-germanized-shipments/src/Api.php:269
1856
+ msgctxt "shipments"
1857
+ msgid "Country code in ISO 3166-1 alpha-2 format."
1858
+ msgstr ""
1859
+
1860
+ #: src/Api.php:277
1861
+ #: packages/woocommerce-germanized-shipments/src/Api.php:277
1862
+ msgctxt "shipments"
1863
+ msgid "Shipment items."
1864
+ msgstr ""
1865
+
1866
+ #: src/Api.php:285
1867
+ #: packages/woocommerce-germanized-shipments/src/Api.php:285
1868
+ msgctxt "shipments"
1869
+ msgid "Item ID."
1870
+ msgstr ""
1871
+
1872
+ #: src/Api.php:291
1873
+ #: packages/woocommerce-germanized-shipments/src/Api.php:291
1874
+ msgctxt "shipments"
1875
+ msgid "Item name."
1876
+ msgstr ""
1877
+
1878
+ #: src/Api.php:297
1879
+ #: packages/woocommerce-germanized-shipments/src/Api.php:297
1880
+ msgctxt "shipments"
1881
+ msgid "Order Item ID."
1882
+ msgstr ""
1883
+
1884
+ #: src/Api.php:303
1885
+ #: packages/woocommerce-germanized-shipments/src/Api.php:303
1886
+ msgctxt "shipments"
1887
+ msgid "Product ID."
1888
+ msgstr ""
1889
+
1890
+ #: src/Api.php:309
1891
+ #: packages/woocommerce-germanized-shipments/src/Api.php:309
1892
+ msgctxt "shipments"
1893
+ msgid "Quantity."
1894
+ msgstr ""
1895
+
1896
+ #: src/Automation.php:127
1897
+ #: packages/woocommerce-germanized-shipments/src/Automation.php:127
1898
+ msgctxt "shipments"
1899
+ msgid "Order is fully shipped."
1900
+ msgstr ""
1901
+
1902
+ #: src/DataStores/Packaging.php:236
1903
+ #: packages/woocommerce-germanized-shipments/src/DataStores/Packaging.php:236
1904
+ msgctxt "shipments"
1905
+ msgid "Invalid packaging."
1906
+ msgstr ""
1907
+
1908
+ #: src/DataStores/ShipmentItem.php:197
1909
+ #: packages/woocommerce-germanized-shipments/src/DataStores/ShipmentItem.php:197
1910
+ msgctxt "shipments"
1911
+ msgid "Invalid shipment item."
1912
+ msgstr ""
1913
+
1914
+ #: src/DataStores/ShippingProvider.php:256
1915
+ #: packages/woocommerce-germanized-shipments/src/DataStores/ShippingProvider.php:256
1916
+ msgctxt "shipments"
1917
+ msgid "Invalid shipping provider."
1918
+ msgstr ""
1919
+
1920
+ #: src/FormHandler.php:35
1921
+ #: packages/woocommerce-germanized-shipments/src/FormHandler.php:35
1922
+ msgctxt "shipments"
1923
+ msgid "Your return request was submitted successfully. We will now review your request and get in contact with you as soon as possible."
1924
+ msgstr ""
1925
+
1926
+ #: src/FormHandler.php:37
1927
+ #: packages/woocommerce-germanized-shipments/src/FormHandler.php:37
1928
+ msgctxt "shipments"
1929
+ msgid "Your return request was submitted successfully. You'll receive an email with further instructions in a few minutes."
1930
+ msgstr ""
1931
+
1932
+ #: src/FormHandler.php:103
1933
+ #: src/FormHandler.php:107
1934
+ #: packages/woocommerce-germanized-shipments/src/FormHandler.php:103
1935
+ #: packages/woocommerce-germanized-shipments/src/FormHandler.php:107
1936
+ msgctxt "shipments"
1937
+ msgid "Error:"
1938
+ msgstr ""
1939
+
1940
+ #: src/FormHandler.php:103
1941
+ #: packages/woocommerce-germanized-shipments/src/FormHandler.php:103
1942
+ msgctxt "shipments"
1943
+ msgid "We were not able to find a matching order."
1944
+ msgstr ""
1945
+
1946
+ #: src/FormHandler.php:107
1947
+ #: packages/woocommerce-germanized-shipments/src/FormHandler.php:107
1948
+ msgctxt "shipments"
1949
+ msgid "This order is currently not eligible for returns. Please contact us for further details."
1950
+ msgstr ""
1951
+
1952
+ #: src/FormHandler.php:116
1953
+ #: packages/woocommerce-germanized-shipments/src/FormHandler.php:116
1954
+ msgctxt "shipments"
1955
+ msgid "Thank you. You'll receive an email containing a link to create a new return to your order."
1956
+ msgstr ""
1957
+
1958
+ #: src/FormHandler.php:172
1959
+ #: packages/woocommerce-germanized-shipments/src/FormHandler.php:172
1960
+ msgctxt "shipments"
1961
+ msgid "You are not allowed to add returns to that order."
1962
+ msgstr ""
1963
+
1964
+ #: src/FormHandler.php:177
1965
+ #: packages/woocommerce-germanized-shipments/src/FormHandler.php:177
1966
+ msgctxt "shipments"
1967
+ msgid "Sorry, but this order does not support returns any longer."
1968
+ msgstr ""
1969
+
1970
+ #: src/FormHandler.php:182
1971
+ #: src/FormHandler.php:218
1972
+ #: packages/woocommerce-germanized-shipments/src/FormHandler.php:182
1973
+ #: packages/woocommerce-germanized-shipments/src/FormHandler.php:218
1974
+ msgctxt "shipments"
1975
+ msgid "Please choose one or more items from the list."
1976
+ msgstr ""
1977
+
1978
+ #: src/FormHandler.php:198
1979
+ #: packages/woocommerce-germanized-shipments/src/FormHandler.php:198
1980
+ msgctxt "shipments"
1981
+ msgid "The return reason you have chosen does not exist."
1982
+ msgstr ""
1983
+
1984
+ #: src/FormHandler.php:201
1985
+ #: packages/woocommerce-germanized-shipments/src/FormHandler.php:201
1986
+ msgctxt "shipments"
1987
+ msgid "Please choose a return reason from the list."
1988
+ msgstr ""
1989
+
1990
+ #: src/FormHandler.php:206
1991
+ #: packages/woocommerce-germanized-shipments/src/FormHandler.php:206
1992
+ msgctxt "shipments"
1993
+ msgid "Please check your item quantities. Quantities must not exceed maximum quantities."
1994
+ msgstr ""
1995
+
1996
+ #: src/FormHandler.php:253
1997
+ #: packages/woocommerce-germanized-shipments/src/FormHandler.php:253
1998
+ msgctxt "shipments"
1999
+ msgid "There was an error while creating the return. Please contact us for further information."
2000
+ msgstr ""
2001
+
2002
+ #: src/Install.php:31
2003
+ #: packages/woocommerce-germanized-shipments/src/Install.php:31
2004
+ msgctxt "shipments"
2005
+ msgid "Wrong product or size ordered"
2006
+ msgstr ""
2007
+
2008
+ #: src/Install.php:36
2009
+ #: packages/woocommerce-germanized-shipments/src/Install.php:36
2010
+ msgctxt "shipments"
2011
+ msgid "Product no longer needed"
2012
+ msgstr ""
2013
+
2014
+ #: src/Install.php:41
2015
+ #: packages/woocommerce-germanized-shipments/src/Install.php:41
2016
+ msgctxt "shipments"
2017
+ msgid "Don't like the look"
2018
+ msgstr ""
2019
+
2020
+ #: src/Install.php:60
2021
+ #: packages/woocommerce-germanized-shipments/src/Install.php:60
2022
+ msgctxt "shipments"
2023
+ msgid "Cardboard S"
2024
+ msgstr ""
2025
+
2026
+ #: src/Install.php:69
2027
+ #: packages/woocommerce-germanized-shipments/src/Install.php:69
2028
+ msgctxt "shipments"
2029
+ msgid "Cardboard M"
2030
+ msgstr ""
2031
+
2032
+ #: src/Install.php:78
2033
+ #: packages/woocommerce-germanized-shipments/src/Install.php:78
2034
+ msgctxt "shipments"
2035
+ msgid "Cardboard L"
2036
+ msgstr ""
2037
+
2038
+ #: src/Install.php:87
2039
+ #: packages/woocommerce-germanized-shipments/src/Install.php:87
2040
+ msgctxt "shipments"
2041
+ msgid "Letter C5/6"
2042
+ msgstr ""
2043
+
2044
+ #: src/Install.php:96
2045
+ #: packages/woocommerce-germanized-shipments/src/Install.php:96
2046
+ msgctxt "shipments"
2047
+ msgid "Letter C4"
2048
+ msgstr ""
2049
+
2050
+ #: src/Package.php:97
2051
+ #: packages/woocommerce-germanized-shipments/src/Package.php:97
2052
+ msgctxt "shipments"
2053
+ msgid "Sorry, this order is invalid and cannot be returned."
2054
+ msgstr ""
2055
+
2056
+ #: src/Packaging.php:266
2057
+ #: packages/woocommerce-germanized-shipments/src/Packaging.php:266
2058
+ msgctxt "shipments-packaging-title"
2059
+ msgid "%1$s (%2$s, %3$s)"
2060
+ msgstr ""
2061
+
2062
+ #: src/ReturnShipment.php:356
2063
+ #: src/Shipment.php:882
2064
+ #: packages/woocommerce-germanized-shipments/src/ReturnShipment.php:356
2065
+ #: packages/woocommerce-germanized-shipments/src/Shipment.php:882
2066
+ msgctxt "full name"
2067
+ msgid "%1$s %2$s"
2068
+ msgstr ""
2069
+
2070
+ #: src/ShippingProvider.php:270
2071
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:270
2072
+ msgctxt "shipments"
2073
+ msgid "Your shipment is being processed by {shipping_provider}. If you want to track the shipment, please use the following tracking number: {tracking_id}. Depending on the chosen shipping method it is possible that the tracking data does not reflect the current status when receiving this email."
2074
+ msgstr ""
2075
+
2076
+ #: src/ShippingProvider.php:543
2077
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:543
2078
+ msgctxt "shipments"
2079
+ msgid "%s supports many more options. Explore %s."
2080
+ msgstr ""
2081
+
2082
+ #: src/ShippingProvider.php:543
2083
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:543
2084
+ msgctxt "shipments"
2085
+ msgid "%s specific settings"
2086
+ msgstr ""
2087
+
2088
+ #: src/ShippingProvider.php:556
2089
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:556
2090
+ msgctxt "shipments"
2091
+ msgid "Choose a title for the shipping provider."
2092
+ msgstr ""
2093
+
2094
+ #: src/ShippingProvider.php:565
2095
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:565
2096
+ msgctxt "shipments"
2097
+ msgid "Choose a description for the shipping provider."
2098
+ msgstr ""
2099
+
2100
+ #: src/ShippingProvider.php:579
2101
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:579
2102
+ msgctxt "shipments"
2103
+ msgid "Tracking URL"
2104
+ msgstr ""
2105
+
2106
+ #: src/ShippingProvider.php:580
2107
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:580
2108
+ msgctxt "shipments"
2109
+ msgid "Adjust the placeholder used to construct the tracking URL for this shipping provider. You may use on of the following placeholders to insert the tracking id or other dynamic data: %s"
2110
+ msgstr ""
2111
+
2112
+ #: src/ShippingProvider.php:590
2113
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:590
2114
+ msgctxt "shipments"
2115
+ msgid "Tracking description"
2116
+ msgstr ""
2117
+
2118
+ #: src/ShippingProvider.php:591
2119
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:591
2120
+ msgctxt "shipments"
2121
+ msgid "Adjust the placeholder used to construct the tracking description for this shipping provider (e.g. used within notification emails). You may use on of the following placeholders to insert the tracking id or other dynamic data: %s"
2122
+ msgstr ""
2123
+
2124
+ #: src/ShippingProvider.php:604
2125
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:604
2126
+ msgctxt "shipments"
2127
+ msgid "Customer returns"
2128
+ msgstr ""
2129
+
2130
+ #: src/ShippingProvider.php:605
2131
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:605
2132
+ msgctxt "shipments"
2133
+ msgid "Allow customers to submit return requests to shipments."
2134
+ msgstr ""
2135
+
2136
+ #: src/ShippingProvider.php:605
2137
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:605
2138
+ msgctxt "shipments"
2139
+ msgid "This option will allow your customers to submit return requests to orders. Return requests will be visible within your %s. To learn more about return requests by customers and/or guests, please check the %s."
2140
+ msgstr ""
2141
+
2142
+ #: src/ShippingProvider.php:605
2143
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:605
2144
+ msgctxt "shipments"
2145
+ msgid "Return Dashboard"
2146
+ msgstr ""
2147
+
2148
+ #: src/ShippingProvider.php:605
2149
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:605
2150
+ msgctxt "shipments"
2151
+ msgid "docs"
2152
+ msgstr ""
2153
+
2154
+ #: src/ShippingProvider.php:614
2155
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:614
2156
+ msgctxt "shipments"
2157
+ msgid "Guest returns"
2158
+ msgstr ""
2159
+
2160
+ #: src/ShippingProvider.php:615
2161
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:615
2162
+ msgctxt "shipments"
2163
+ msgid "Allow guests to submit return requests to shipments."
2164
+ msgstr ""
2165
+
2166
+ #: src/ShippingProvider.php:615
2167
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:615
2168
+ msgctxt "shipments"
2169
+ msgid "Guests will need to provide their email address and the order id to receive a one-time link to submit a return request. The placeholder %s might be used to place the request form on your site."
2170
+ msgstr ""
2171
+
2172
+ #: src/ShippingProvider.php:626
2173
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:626
2174
+ msgctxt "shipments"
2175
+ msgid "Manual confirmation"
2176
+ msgstr ""
2177
+
2178
+ #: src/ShippingProvider.php:627
2179
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:627
2180
+ msgctxt "shipments"
2181
+ msgid "Return requests need manual confirmation."
2182
+ msgstr ""
2183
+
2184
+ #: src/ShippingProvider.php:627
2185
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:627
2186
+ msgctxt "shipments"
2187
+ msgid "By default return request need manual confirmation e.g. a shop manager needs to review return requests which by default are added with the status \"requested\" after a customer submitted a return request. If you choose to disable this option, customer return requests will be added as \"processing\" and an email confirmation including instructions will be sent immediately to the customer."
2188
+ msgstr ""
2189
+
2190
+ #: src/ShippingProvider.php:639
2191
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:639
2192
+ msgctxt "shipments"
2193
+ msgid "Return instructions"
2194
+ msgstr ""
2195
+
2196
+ #: src/ShippingProvider.php:640
2197
+ #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:640
2198
+ msgctxt "shipments"
2199
+ msgid "Provide your customer with instructions on how to return the shipment after a return request has been confirmed e.g. explain how to prepare the return for shipment. In case a label cannot be generated automatically, make sure to provide your customer with information on how to obain a return label."
2200
+ msgstr ""
2201
+
2202
+ #: src/ShippingProviderMethod.php:50
2203
+ #: packages/woocommerce-germanized-shipments/src/ShippingProviderMethod.php:50
2204
+ msgctxt "shipments"
2205
+ msgid "Shipping Provider Settings"
2206
+ msgstr ""
2207
+
2208
+ #: src/ShippingProviderMethod.php:53
2209
+ #: packages/woocommerce-germanized-shipments/src/ShippingProviderMethod.php:53
2210
+ msgctxt "shipments"
2211
+ msgid "Adjust shipping provider settings used for managing shipments."
2212
+ msgstr ""
2213
+
2214
+ #: src/ShippingProviderMethod.php:68
2215
+ #: packages/woocommerce-germanized-shipments/src/ShippingProviderMethod.php:68
2216
+ msgctxt "shipments"
2217
+ msgid "Choose a shipping provider which will be selected by default for an eligible shipment."
2218
+ msgstr ""
2219
+
2220
+ #: src/WPMLHelper.php:73
2221
+ #: packages/woocommerce-germanized-shipments/src/WPMLHelper.php:73
2222
+ msgctxt "shipments"
2223
+ msgid "%s tracking description"
2224
+ msgstr ""
2225
+
2226
+ #: src/WPMLHelper.php:74
2227
+ #: packages/woocommerce-germanized-shipments/src/WPMLHelper.php:74
2228
+ msgctxt "shipments"
2229
+ msgid "%s tracking URL"
2230
+ msgstr ""
2231
+
2232
+ #: src/WPMLHelper.php:75
2233
+ #: packages/woocommerce-germanized-shipments/src/WPMLHelper.php:75
2234
+ msgctxt "shipments"
2235
+ msgid "%s return instructions"
2236
+ msgstr ""
2237
+
2238
+ #. translators: %s: Customer billing full name
2239
+ #: templates/emails/admin-new-return-shipment-request.php:30
2240
+ #: templates/emails/plain/admin-new-return-shipment-request.php:24
2241
+ #: packages/woocommerce-germanized-shipments/templates/emails/admin-new-return-shipment-request.php:30
2242
+ #: packages/woocommerce-germanized-shipments/templates/emails/plain/admin-new-return-shipment-request.php:24
2243
+ msgctxt "shipments"
2244
+ msgid "You’ve received the following return request from %s:"
2245
+ msgstr ""
2246
+
2247
+ #. translators: %s: Customer first name
2248
+ #: templates/emails/customer-guest-return-shipment-request.php:27
2249
+ #: templates/emails/customer-return-shipment-delivered.php:27
2250
+ #: templates/emails/customer-return-shipment.php:27
2251
+ #: templates/emails/customer-shipment.php:27
2252
+ #: templates/emails/plain/customer-guest-return-shipment-request.php:24
2253
+ #: templates/emails/plain/customer-return-shipment-delivered.php:24
2254
+ #: templates/emails/plain/customer-return-shipment.php:24
2255
+ #: templates/emails/plain/customer-shipment.php:24
2256
+ #: packages/woocommerce-germanized-shipments/templates/emails/customer-guest-return-shipment-request.php:27
2257
+ #: packages/woocommerce-germanized-shipments/templates/emails/customer-return-shipment-delivered.php:27
2258
+ #: packages/woocommerce-germanized-shipments/templates/emails/customer-return-shipment.php:27
2259
+ #: packages/woocommerce-germanized-shipments/templates/emails/customer-shipment.php:27
2260
+ #: packages/woocommerce-germanized-shipments/templates/emails/plain/customer-guest-return-shipment-request.php:24
2261
+ #: packages/woocommerce-germanized-shipments/templates/emails/plain/customer-return-shipment-delivered.php:24
2262
+ #: packages/woocommerce-germanized-shipments/templates/emails/plain/customer-return-shipment.php:24
2263
+ #: packages/woocommerce-germanized-shipments/templates/emails/plain/customer-shipment.php:24
2264
+ msgid "Hi %s,"
2265
+ msgstr ""
2266
+
2267
+ #: templates/emails/customer-guest-return-shipment-request.php:30
2268
+ #: templates/emails/plain/customer-guest-return-shipment-request.php:26
2269
+ #: packages/woocommerce-germanized-shipments/templates/emails/customer-guest-return-shipment-request.php:30
2270
+ #: packages/woocommerce-germanized-shipments/templates/emails/plain/customer-guest-return-shipment-request.php:26
2271
+ msgctxt "shipments"
2272
+ msgid "You've requested a return to your order %s. Please follow the link to add your return request."
2273
+ msgstr ""
2274
+
2275
+ #: templates/emails/customer-guest-return-shipment-request.php:34
2276
+ #: templates/myaccount/order-shipments.php:30
2277
+ #: packages/woocommerce-germanized-shipments/templates/emails/customer-guest-return-shipment-request.php:34
2278
+ #: packages/woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:30
2279
+ msgctxt "shipments"
2280
+ msgid "Add return request"
2281
+ msgstr ""
2282
+
2283
+ #: templates/emails/customer-guest-return-shipment-request.php:37
2284
+ #: packages/woocommerce-germanized-shipments/templates/emails/customer-guest-return-shipment-request.php:37
2285
+ msgctxt "shipments"
2286
+ msgid "If you cannot follow the link above please copy this url and paste it to your browser bar: %s"
2287
+ msgstr ""
2288
+
2289
+ #: templates/emails/customer-return-shipment-delivered.php:30
2290
+ #: templates/emails/plain/customer-return-shipment-delivered.php:26
2291
+ #: packages/woocommerce-germanized-shipments/templates/emails/customer-return-shipment-delivered.php:30
2292
+ #: packages/woocommerce-germanized-shipments/templates/emails/plain/customer-return-shipment-delivered.php:26
2293
+ msgctxt "shipments"
2294
+ msgid "Thank you! Your return has been received successfully. There are more details below for your reference:"
2295
+ msgstr ""
2296
+
2297
+ #: templates/emails/customer-return-shipment.php:32
2298
+ #: templates/emails/plain/customer-return-shipment.php:28
2299
+ #: packages/woocommerce-germanized-shipments/templates/emails/customer-return-shipment.php:32
2300
+ #: packages/woocommerce-germanized-shipments/templates/emails/plain/customer-return-shipment.php:28
2301
+ msgctxt "shipments"
2302
+ msgid "Your return request has been accepted. Please follow the instructions beneath to return your shipment."
2303
+ msgstr ""
2304
+
2305
+ #: templates/emails/customer-return-shipment.php:34
2306
+ #: templates/emails/plain/customer-return-shipment.php:30
2307
+ #: packages/woocommerce-germanized-shipments/templates/emails/customer-return-shipment.php:34
2308
+ #: packages/woocommerce-germanized-shipments/templates/emails/plain/customer-return-shipment.php:30
2309
+ msgctxt "shipments"
2310
+ msgid "A new return has been added to your order. Please follow the instructions beneath to return your shipment."
2311
+ msgstr ""
2312
+
2313
+ #. translators: %s: Site title
2314
+ #: templates/emails/customer-shipment.php:33
2315
+ #: templates/emails/plain/customer-shipment.php:28
2316
+ #: packages/woocommerce-germanized-shipments/templates/emails/customer-shipment.php:33
2317
+ #: packages/woocommerce-germanized-shipments/templates/emails/plain/customer-shipment.php:28
2318
+ msgctxt "shipments"
2319
+ msgid "Your order on %s has been partially shipped. Find details below for your reference:"
2320
+ msgstr ""
2321
+
2322
+ #. translators: %s: Site title
2323
+ #: templates/emails/customer-shipment.php:36
2324
+ #: templates/emails/plain/customer-shipment.php:31
2325
+ #: packages/woocommerce-germanized-shipments/templates/emails/customer-shipment.php:36
2326
+ #: packages/woocommerce-germanized-shipments/templates/emails/plain/customer-shipment.php:31
2327
+ msgctxt "shipments"
2328
+ msgid "Your order on %s has been shipped. Find details below for your reference:"
2329
+ msgstr ""
2330
+
2331
+ #: templates/emails/email-shipment-address.php:27
2332
+ #: templates/emails/plain/email-shipment-address.php:19
2333
+ #: packages/woocommerce-germanized-shipments/templates/emails/email-shipment-address.php:27
2334
+ #: packages/woocommerce-germanized-shipments/templates/emails/plain/email-shipment-address.php:19
2335
+ msgctxt "shipments"
2336
+ msgid "Shipment goes to:"
2337
+ msgstr ""
2338
+
2339
+ #. translators: %s: Order ID.
2340
+ #. translators: %1$s: Order ID. %2$s: Order date
2341
+ #: templates/emails/email-shipment-details.php:46
2342
+ #: templates/emails/plain/email-shipment-details.php:23
2343
+ #: packages/woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:46
2344
+ #: packages/woocommerce-germanized-shipments/templates/emails/plain/email-shipment-details.php:23
2345
+ msgctxt "shipments"
2346
+ msgid "Details to your %s"
2347
+ msgstr ""
2348
+
2349
+ #. translators: %s: Order ID.
2350
+ #. translators: %1$s: Order ID. %2$s: Order date
2351
+ #: templates/emails/email-shipment-details.php:46
2352
+ #: templates/emails/plain/email-shipment-details.php:23
2353
+ #: packages/woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:46
2354
+ #: packages/woocommerce-germanized-shipments/templates/emails/plain/email-shipment-details.php:23
2355
+ msgctxt "shipments"
2356
+ msgid "[%s #%s]"
2357
+ msgstr ""
2358
+
2359
+ #: templates/emails/email-shipment-details.php:54
2360
+ #: templates/myaccount/add-return-shipment.php:35
2361
+ #: templates/shipment/shipment-details.php:59
2362
+ #: packages/woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:54
2363
+ #: packages/woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:35
2364
+ #: packages/woocommerce-germanized-shipments/templates/shipment/shipment-details.php:59
2365
+ msgctxt "shipments"
2366
+ msgid "Product"
2367
+ msgstr ""
2368
+
2369
+ #: templates/emails/email-shipment-tracking.php:27
2370
+ #: packages/woocommerce-germanized-shipments/templates/emails/email-shipment-tracking.php:27
2371
+ msgctxt "shipments"
2372
+ msgid "Tracking:"
2373
+ msgstr ""
2374
+
2375
+ #: templates/emails/email-shipment-tracking.php:30
2376
+ #: templates/emails/plain/email-shipment-tracking.php:24
2377
+ #: packages/woocommerce-germanized-shipments/templates/emails/email-shipment-tracking.php:30
2378
+ #: packages/woocommerce-germanized-shipments/templates/emails/plain/email-shipment-tracking.php:24
2379
+ msgctxt "shipments"
2380
+ msgid "Estimated date:"
2381
+ msgstr ""
2382
+
2383
+ #: templates/emails/email-shipment-tracking.php:34
2384
+ #: templates/emails/plain/email-shipment-tracking.php:28
2385
+ #: templates/shipment/shipment-details-tracking.php:26
2386
+ #: packages/woocommerce-germanized-shipments/templates/emails/email-shipment-tracking.php:34
2387
+ #: packages/woocommerce-germanized-shipments/templates/emails/plain/email-shipment-tracking.php:28
2388
+ #: packages/woocommerce-germanized-shipments/templates/shipment/shipment-details-tracking.php:26
2389
+ msgctxt "shipments"
2390
+ msgid "Track your shipment"
2391
+ msgstr ""
2392
+
2393
+ #. translators: %s: Shipment link.
2394
+ #: templates/emails/plain/email-shipment-details.php:39
2395
+ #: packages/woocommerce-germanized-shipments/templates/emails/plain/email-shipment-details.php:39
2396
+ msgctxt "shipments"
2397
+ msgid "View shipment: %s"
2398
+ msgstr ""
2399
+
2400
+ #: templates/emails/plain/email-shipment-tracking.php:21
2401
+ #: packages/woocommerce-germanized-shipments/templates/emails/plain/email-shipment-tracking.php:21
2402
+ msgctxt "shipments"
2403
+ msgid "Delivery:"
2404
+ msgstr ""
2405
+
2406
+ #: templates/global/form-return-request.php:29
2407
+ #: packages/woocommerce-germanized-shipments/templates/global/form-return-request.php:29
2408
+ msgctxt "shipments"
2409
+ msgid "Order email"
2410
+ msgstr ""
2411
+
2412
+ #: templates/global/form-return-request.php:34
2413
+ #: packages/woocommerce-germanized-shipments/templates/global/form-return-request.php:34
2414
+ msgctxt "shipments"
2415
+ msgid "Order id"
2416
+ msgstr ""
2417
+
2418
+ #: templates/global/form-return-request.php:44
2419
+ #: packages/woocommerce-germanized-shipments/templates/global/form-return-request.php:44
2420
+ msgctxt "shipments"
2421
+ msgid "Submit"
2422
+ msgstr ""
2423
+
2424
+ #: templates/myaccount/add-return-shipment.php:18
2425
+ #: packages/woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:18
2426
+ msgctxt "shipments"
2427
+ msgid "New return request"
2428
+ msgstr ""
2429
+
2430
+ #: templates/myaccount/add-return-shipment.php:20
2431
+ #: packages/woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:20
2432
+ msgctxt "shipments"
2433
+ msgid "Please select one or more items to return."
2434
+ msgstr ""
2435
+
2436
+ #: templates/myaccount/add-return-shipment.php:23
2437
+ #: packages/woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:23
2438
+ msgctxt "shipments"
2439
+ msgid "After submitting your return request we will review it and notify you via email about the next steps."
2440
+ msgstr ""
2441
+
2442
+ #: templates/myaccount/add-return-shipment.php:25
2443
+ #: packages/woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:25
2444
+ msgctxt "shipments"
2445
+ msgid "After submitting your return request you'll receive an email with further information to the return process."
2446
+ msgstr ""
2447
+
2448
+ #: templates/myaccount/add-return-shipment.php:81
2449
+ #: packages/woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:81
2450
+ msgctxt "shipments"
2451
+ msgid "Send request"
2452
+ msgstr ""
2453
+
2454
+ #: templates/myaccount/order-shipments.php:32
2455
+ #: packages/woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:32
2456
+ msgctxt "shipments"
2457
+ msgid "Adding return requests to this order is no longer available. You may contact us for further information."
2458
+ msgstr ""
2459
+
2460
+ #: templates/myaccount/shipments.php:79
2461
+ #: packages/woocommerce-germanized-shipments/templates/myaccount/shipments.php:79
2462
+ msgctxt "shipments"
2463
+ msgid "track now"
2464
+ msgstr ""
2465
+
2466
+ #. translators: 1: order number 2: order date 3: order status
2467
+ #: templates/myaccount/view-shipment.php:24
2468
+ #: packages/woocommerce-germanized-shipments/templates/myaccount/view-shipment.php:24
2469
+ msgctxt "shipments"
2470
+ msgid "Shipment #%1$s was created on %2$s and is currently %3$s."
2471
+ msgstr ""
2472
+
2473
+ #: templates/shipment/add-return-shipment-item.php:61
2474
+ #: packages/woocommerce-germanized-shipments/templates/shipment/add-return-shipment-item.php:61
2475
+ msgctxt "shipments return reason"
2476
+ msgid "Please choose"
2477
+ msgstr ""
2478
+
2479
+ #: templates/shipment/shipment-details-address.php:25
2480
+ #: packages/woocommerce-germanized-shipments/templates/shipment/shipment-details-address.php:25
2481
+ msgctxt "shipments"
2482
+ msgid "Shipment receiver"
2483
+ msgstr ""
2484
+
2485
+ #: templates/shipment/shipment-details.php:53
2486
+ #: packages/woocommerce-germanized-shipments/templates/shipment/shipment-details.php:53
2487
+ msgctxt "shipments"
2488
+ msgid "Shipment details"
2489
+ msgstr ""
2490
+
2491
+ #. translators: 1: composer command. 2: plugin directory
2492
+ #: woocommerce-germanized-shipments.php:40
2493
+ #: woocommerce-germanized-shipments.php:58
2494
+ #: packages/woocommerce-germanized-shipments/woocommerce-germanized-shipments.php:40
2495
+ #: packages/woocommerce-germanized-shipments/woocommerce-germanized-shipments.php:58
2496
+ msgctxt "shipments"
2497
+ msgid "Your installation of the Germanized Shipments feature plugin is incomplete. Please run %1$s within the %2$s directory."
2498
+ msgstr ""
2499
+
2500
+ #. Plugin Name of the plugin
2501
+ msgid "Germanized DHL for WooCommerce"
2502
+ msgstr ""
2503
+
2504
+ #. Plugin URI of the plugin
2505
+ msgid "https://github.com/vendidero/woocommerce-germanized-dhl"
2506
+ msgstr ""
2507
+
2508
+ #. Description of the plugin
2509
+ msgid "The Germanized DHL integration, installed as a feature plugin for development and testing purposes."
2510
+ msgstr ""
2511
+
2512
+ #: includes/admin/views/html-deutsche-post-additional-services.php:14
2513
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-deutsche-post-additional-services.php:14
2514
+ msgctxt "dhl"
2515
+ msgid "Additional Services"
2516
+ msgstr ""
2517
+
2518
+ #: includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:36
2519
+ #: includes/wc-gzd-dhl-core-functions.php:505
2520
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:36
2521
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:505
2522
+ msgid "Sorry but none of your selected <a href=\"%s\">Deutsche Post Products</a> is available for this shipment. Please verify your shipment data (e.g. weight) and try again."
2523
+ msgstr ""
2524
+
2525
+ #: includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:43
2526
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:43
2527
+ msgctxt "dhl"
2528
+ msgid "Product"
2529
+ msgstr ""
2530
+
2531
+ #: includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:59
2532
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:59
2533
+ msgctxt "dhl"
2534
+ msgid "Page Format"
2535
+ msgstr ""
2536
+
2537
+ #: includes/admin/views/html-shipment-label-backbone-form.php:18
2538
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:18
2539
+ msgctxt "dhl"
2540
+ msgid "DHL Product"
2541
+ msgstr ""
2542
+
2543
+ #: includes/admin/views/html-shipment-label-backbone-form.php:28
2544
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:28
2545
+ msgctxt "dhl"
2546
+ msgid "COD Amount"
2547
+ msgstr ""
2548
+
2549
+ #: includes/admin/views/html-shipment-label-backbone-form.php:40
2550
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:40
2551
+ msgctxt "dhl"
2552
+ msgid "Duties"
2553
+ msgstr ""
2554
+
2555
+ #: includes/admin/views/html-shipment-label-backbone-form.php:65
2556
+ #: src/Admin/Settings.php:141
2557
+ #: src/Admin/Settings.php:974
2558
+ #: src/ParcelServices.php:29
2559
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:65
2560
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:141
2561
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:974
2562
+ #: packages/woocommerce-germanized-dhl/src/ParcelServices.php:29
2563
+ msgctxt "dhl"
2564
+ msgid "Preferred Day"
2565
+ msgstr ""
2566
+
2567
+ #: includes/admin/views/html-shipment-label-backbone-form.php:75
2568
+ #: src/ParcelServices.php:36
2569
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:75
2570
+ #: packages/woocommerce-germanized-dhl/src/ParcelServices.php:36
2571
+ msgctxt "dhl"
2572
+ msgid "Preferred Time"
2573
+ msgstr ""
2574
+
2575
+ #: includes/admin/views/html-shipment-label-backbone-form.php:87
2576
+ #: src/Admin/Settings.php:169
2577
+ #: src/Admin/Settings.php:994
2578
+ #: src/ParcelServices.php:43
2579
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:87
2580
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:169
2581
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:994
2582
+ #: packages/woocommerce-germanized-dhl/src/ParcelServices.php:43
2583
+ msgctxt "dhl"
2584
+ msgid "Preferred Location"
2585
+ msgstr ""
2586
+
2587
+ #: includes/admin/views/html-shipment-label-backbone-form.php:98
2588
+ #: src/Admin/Settings.php:1002
2589
+ #: src/ParcelServices.php:48
2590
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:98
2591
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1002
2592
+ #: packages/woocommerce-germanized-dhl/src/ParcelServices.php:48
2593
+ msgctxt "dhl"
2594
+ msgid "Preferred Neighbor"
2595
+ msgstr ""
2596
+
2597
+ #: includes/admin/views/html-shipment-label-backbone-form.php:108
2598
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:108
2599
+ msgctxt "dhl"
2600
+ msgid "Create inlay return label"
2601
+ msgstr ""
2602
+
2603
+ #: includes/admin/views/html-shipment-label-backbone-form.php:121
2604
+ #: src/Admin/Settings.php:761
2605
+ #: src/Admin/Settings.php:830
2606
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:121
2607
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:761
2608
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:830
2609
+ msgctxt "dhl"
2610
+ msgid "Name"
2611
+ msgstr ""
2612
+
2613
+ #: includes/admin/views/html-shipment-label-backbone-form.php:130
2614
+ #: src/Admin/Settings.php:768
2615
+ #: src/Admin/Settings.php:837
2616
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:130
2617
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:768
2618
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:837
2619
+ msgctxt "dhl"
2620
+ msgid "Company"
2621
+ msgstr ""
2622
+
2623
+ #: includes/admin/views/html-shipment-label-backbone-form.php:139
2624
+ #: includes/wc-gzd-dhl-core-functions.php:601
2625
+ #: src/Admin/Settings.php:775
2626
+ #: src/Admin/Settings.php:844
2627
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:139
2628
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:601
2629
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:775
2630
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:844
2631
+ msgctxt "dhl"
2632
+ msgid "Street"
2633
+ msgstr ""
2634
+
2635
+ #: includes/admin/views/html-shipment-label-backbone-form.php:148
2636
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:148
2637
+ msgctxt "dhl"
2638
+ msgid "Street No"
2639
+ msgstr ""
2640
+
2641
+ #: includes/admin/views/html-shipment-label-backbone-form.php:159
2642
+ #: includes/wc-gzd-dhl-core-functions.php:602
2643
+ #: src/Admin/Settings.php:796
2644
+ #: src/Admin/Settings.php:865
2645
+ #: templates/checkout/dhl/parcel-finder.php:27
2646
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:159
2647
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:602
2648
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:796
2649
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:865
2650
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:27
2651
+ msgctxt "dhl"
2652
+ msgid "Postcode"
2653
+ msgstr ""
2654
+
2655
+ #: includes/admin/views/html-shipment-label-backbone-form.php:168
2656
+ #: includes/wc-gzd-dhl-core-functions.php:603
2657
+ #: src/Admin/Settings.php:789
2658
+ #: src/Admin/Settings.php:858
2659
+ #: templates/checkout/dhl/parcel-finder.php:30
2660
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:168
2661
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:603
2662
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:789
2663
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:858
2664
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:30
2665
+ msgctxt "dhl"
2666
+ msgid "City"
2667
+ msgstr ""
2668
+
2669
+ #: includes/admin/views/html-shipment-label-backbone-form.php:179
2670
+ #: src/Admin/Settings.php:812
2671
+ #: src/Admin/Settings.php:881
2672
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:179
2673
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:812
2674
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:881
2675
+ msgctxt "dhl"
2676
+ msgid "Phone"
2677
+ msgstr ""
2678
+
2679
+ #: includes/admin/views/html-shipment-label-backbone-form.php:188
2680
+ #: src/Admin/Settings.php:819
2681
+ #: src/Admin/Settings.php:888
2682
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:188
2683
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:819
2684
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:888
2685
+ msgctxt "dhl"
2686
+ msgid "Email"
2687
+ msgstr ""
2688
+
2689
+ #: includes/admin/views/html-shipment-label-backbone-form.php:199
2690
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:199
2691
+ msgctxt "dhl"
2692
+ msgid "Valid address only"
2693
+ msgstr ""
2694
+
2695
+ #: includes/admin/views/html-shipment-label-backbone-form.php:208
2696
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:208
2697
+ msgctxt "dhl"
2698
+ msgid "More services"
2699
+ msgstr ""
2700
+
2701
+ #: includes/admin/views/html-shipment-label-backbone-form.php:211
2702
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:211
2703
+ msgctxt "dhl"
2704
+ msgid "Fewer services"
2705
+ msgstr ""
2706
+
2707
+ #: includes/admin/views/html-shipment-label-backbone-form.php:219
2708
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:219
2709
+ msgctxt "dhl"
2710
+ msgid "Age check"
2711
+ msgstr ""
2712
+
2713
+ #: includes/admin/views/html-shipment-label-backbone-form.php:228
2714
+ #: includes/admin/views/html-shipment-label-backbone-form.php:331
2715
+ #: src/Admin/Settings.php:534
2716
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:228
2717
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:331
2718
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:534
2719
+ msgctxt "dhl"
2720
+ msgid "GoGreen"
2721
+ msgstr ""
2722
+
2723
+ #: includes/admin/views/html-shipment-label-backbone-form.php:237
2724
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:237
2725
+ msgctxt "dhl"
2726
+ msgid "Additional insurance"
2727
+ msgstr ""
2728
+
2729
+ #: includes/admin/views/html-shipment-label-backbone-form.php:248
2730
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:248
2731
+ msgctxt "dhl"
2732
+ msgid "Retail outlet routing"
2733
+ msgstr ""
2734
+
2735
+ #: includes/admin/views/html-shipment-label-backbone-form.php:261
2736
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:261
2737
+ msgctxt "dhl"
2738
+ msgid "No neighbor"
2739
+ msgstr ""
2740
+
2741
+ #: includes/admin/views/html-shipment-label-backbone-form.php:272
2742
+ #: src/Admin/Settings.php:562
2743
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:272
2744
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:562
2745
+ msgctxt "dhl"
2746
+ msgid "Named person only"
2747
+ msgstr ""
2748
+
2749
+ #: includes/admin/views/html-shipment-label-backbone-form.php:281
2750
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:281
2751
+ msgctxt "dhl"
2752
+ msgid "Bulky goods"
2753
+ msgstr ""
2754
+
2755
+ #: includes/admin/views/html-shipment-label-backbone-form.php:290
2756
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:290
2757
+ msgctxt "dhl"
2758
+ msgid "Identity check"
2759
+ msgstr ""
2760
+
2761
+ #: includes/admin/views/html-shipment-label-backbone-form.php:301
2762
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:301
2763
+ msgctxt "dhl"
2764
+ msgid "Date of Birth"
2765
+ msgstr ""
2766
+
2767
+ #: includes/admin/views/html-shipment-label-backbone-form.php:311
2768
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:311
2769
+ msgctxt "dhl"
2770
+ msgid "Minimum age"
2771
+ msgstr ""
2772
+
2773
+ #: includes/admin/views/html-shipment-label-backbone-form.php:322
2774
+ #: src/Admin/Settings.php:606
2775
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:322
2776
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:606
2777
+ msgctxt "dhl"
2778
+ msgid "Premium"
2779
+ msgstr ""
2780
+
2781
+ #: includes/admin/views/html-shipment-return-label-backbone-form.php:18
2782
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-return-label-backbone-form.php:18
2783
+ msgctxt "dhl"
2784
+ msgid "Receiver"
2785
+ msgstr ""
2786
+
2787
+ #: includes/admin/views/settings-shipping-method.php:15
2788
+ #: src/Admin/Settings.php:1465
2789
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:15
2790
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1465
2791
+ msgctxt "dhl"
2792
+ msgid "DHL Labels"
2793
+ msgstr ""
2794
+
2795
+ #: includes/admin/views/settings-shipping-method.php:18
2796
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:18
2797
+ msgctxt "dhl"
2798
+ msgid "Adjust DHL label settings. Changes override <a href=\"%s\">global settings</a>."
2799
+ msgstr ""
2800
+
2801
+ #: includes/admin/views/settings-shipping-method.php:28
2802
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:28
2803
+ msgctxt "dhl"
2804
+ msgid "DHL Label Services"
2805
+ msgstr ""
2806
+
2807
+ #: includes/admin/views/settings-shipping-method.php:31
2808
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:31
2809
+ msgctxt "dhl"
2810
+ msgid "Adjust default DHL label service settings. Changes override <a href=\"%s\">global settings</a>."
2811
+ msgstr ""
2812
+
2813
+ #: includes/admin/views/settings-shipping-method.php:41
2814
+ #: includes/admin/views/settings-shipping-method.php:106
2815
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:41
2816
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:106
2817
+ msgctxt "dhl"
2818
+ msgid "Label Automation"
2819
+ msgstr ""
2820
+
2821
+ #: includes/admin/views/settings-shipping-method.php:44
2822
+ #: includes/admin/views/settings-shipping-method.php:109
2823
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:44
2824
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:109
2825
+ msgctxt "dhl"
2826
+ msgid "Adjust label automation settings. Changes override <a href=\"%s\">global settings</a>."
2827
+ msgstr ""
2828
+
2829
+ #: includes/admin/views/settings-shipping-method.php:53
2830
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:53
2831
+ msgctxt "dhl"
2832
+ msgid "DHL Preferred Services"
2833
+ msgstr ""
2834
+
2835
+ #: includes/admin/views/settings-shipping-method.php:56
2836
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:56
2837
+ msgctxt "dhl"
2838
+ msgid "Adjust preferred service settings. Changes override <a href=\"%s\">global settings</a>."
2839
+ msgstr ""
2840
+
2841
+ #: includes/admin/views/settings-shipping-method.php:66
2842
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:66
2843
+ msgctxt "dhl"
2844
+ msgid "DHL Pickup"
2845
+ msgstr ""
2846
+
2847
+ #: includes/admin/views/settings-shipping-method.php:69
2848
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:69
2849
+ msgctxt "dhl"
2850
+ msgid "Adjust pickup settings. Changes override <a href=\"%s\">global settings</a>."
2851
+ msgstr ""
2852
+
2853
+ #: includes/admin/views/settings-shipping-method.php:81
2854
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:81
2855
+ msgctxt "dhl"
2856
+ msgid "Deutsche Post Labels"
2857
+ msgstr ""
2858
+
2859
+ #: includes/admin/views/settings-shipping-method.php:84
2860
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:84
2861
+ msgctxt "dhl"
2862
+ msgid "Adjust Deutsche Post label settings. Changes override <a href=\"%s\">global settings</a>."
2863
+ msgstr ""
2864
+
2865
+ #: includes/admin/views/settings-shipping-method.php:94
2866
+ #: src/Admin/Settings.php:1374
2867
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:94
2868
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1374
2869
+ msgctxt "dhl"
2870
+ msgid "Printing"
2871
+ msgstr ""
2872
+
2873
+ #: includes/admin/views/settings-shipping-method.php:97
2874
+ #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:97
2875
+ msgctxt "dhl"
2876
+ msgid "Adjust label printing settings. Changes override <a href=\"%s\">global settings</a>."
2877
+ msgstr ""
2878
+
2879
+ #: includes/wc-gzd-dhl-core-functions.php:171
2880
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:171
2881
+ msgctxt "dhl time context"
2882
+ msgid "None"
2883
+ msgstr ""
2884
+
2885
+ #: includes/wc-gzd-dhl-core-functions.php:181
2886
+ #: src/Api/Paket.php:280
2887
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:181
2888
+ #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:280
2889
+ msgctxt "dhl day context"
2890
+ msgid "None"
2891
+ msgstr ""
2892
+
2893
+ #: includes/wc-gzd-dhl-core-functions.php:206
2894
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:206
2895
+ msgctxt "dhl"
2896
+ msgid "Delivery Duty Unpaid"
2897
+ msgstr ""
2898
+
2899
+ #: includes/wc-gzd-dhl-core-functions.php:207
2900
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:207
2901
+ msgctxt "dhl"
2902
+ msgid "Delivery Duty Paid"
2903
+ msgstr ""
2904
+
2905
+ #: includes/wc-gzd-dhl-core-functions.php:208
2906
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:208
2907
+ msgctxt "dhl"
2908
+ msgid "Delivery Duty Paid (excl. VAT )"
2909
+ msgstr ""
2910
+
2911
+ #: includes/wc-gzd-dhl-core-functions.php:209
2912
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:209
2913
+ msgctxt "dhl"
2914
+ msgid "Delivery Duty Paid (excl. Duties, taxes and VAT)"
2915
+ msgstr ""
2916
+
2917
+ #: includes/wc-gzd-dhl-core-functions.php:237
2918
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:237
2919
+ msgctxt "age context"
2920
+ msgid "None"
2921
+ msgstr ""
2922
+
2923
+ #: includes/wc-gzd-dhl-core-functions.php:238
2924
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:238
2925
+ msgctxt "dhl"
2926
+ msgid "Minimum age of 16"
2927
+ msgstr ""
2928
+
2929
+ #: includes/wc-gzd-dhl-core-functions.php:239
2930
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:239
2931
+ msgctxt "dhl"
2932
+ msgid "Minimum age of 18"
2933
+ msgstr ""
2934
+
2935
+ #: includes/wc-gzd-dhl-core-functions.php:264
2936
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:264
2937
+ msgctxt "dhl"
2938
+ msgid "Shipment #{shipment_id} to order {order_id}"
2939
+ msgstr ""
2940
+
2941
+ #: includes/wc-gzd-dhl-core-functions.php:280
2942
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:280
2943
+ msgctxt "dhl"
2944
+ msgid "Return #{shipment_id} to order {order_id}"
2945
+ msgstr ""
2946
+
2947
+ #: includes/wc-gzd-dhl-core-functions.php:296
2948
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:296
2949
+ msgctxt "dhl"
2950
+ msgid "Return shipment #{shipment_id} to order #{order_id}"
2951
+ msgstr ""
2952
+
2953
+ #: includes/wc-gzd-dhl-core-functions.php:376
2954
+ #: src/Admin/Settings.php:188
2955
+ #: src/Admin/Settings.php:496
2956
+ #: src/ParcelLocator.php:850
2957
+ #: templates/checkout/dhl/parcel-finder.php:38
2958
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:376
2959
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:188
2960
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:496
2961
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:850
2962
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:38
2963
+ msgctxt "dhl"
2964
+ msgid "Packstation"
2965
+ msgstr ""
2966
+
2967
+ #: includes/wc-gzd-dhl-core-functions.php:377
2968
+ #: includes/wc-gzd-dhl-core-functions.php:378
2969
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:377
2970
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:378
2971
+ msgctxt "dhl"
2972
+ msgid "Postfiliale"
2973
+ msgstr ""
2974
+
2975
+ #: includes/wc-gzd-dhl-core-functions.php:462
2976
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:462
2977
+ msgctxt "dhl"
2978
+ msgid "Receiver is missing or does not exist."
2979
+ msgstr ""
2980
+
2981
+ #: includes/wc-gzd-dhl-core-functions.php:481
2982
+ #: includes/wc-gzd-dhl-core-functions.php:566
2983
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:481
2984
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:566
2985
+ msgctxt "dhl"
2986
+ msgid "Shipment order #%s does not exist"
2987
+ msgstr ""
2988
+
2989
+ #: includes/wc-gzd-dhl-core-functions.php:492
2990
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:492
2991
+ msgctxt "dhl"
2992
+ msgid "The services chosen are not available for the current product."
2993
+ msgstr ""
2994
+
2995
+ #: includes/wc-gzd-dhl-core-functions.php:532
2996
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:532
2997
+ msgctxt "dhl"
2998
+ msgid "Deutsche Post product is missing for %s."
2999
+ msgstr ""
3000
+
3001
+ #: includes/wc-gzd-dhl-core-functions.php:608
3002
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:608
3003
+ msgctxt "dhl"
3004
+ msgid "%s of the return address is a mandatory field."
3005
+ msgstr ""
3006
+
3007
+ #: includes/wc-gzd-dhl-core-functions.php:613
3008
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:613
3009
+ msgctxt "dhl"
3010
+ msgid "Please either add a return company or name."
3011
+ msgstr ""
3012
+
3013
+ #: includes/wc-gzd-dhl-core-functions.php:632
3014
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:632
3015
+ msgctxt "dhl"
3016
+ msgid "Error while parsing preferred day."
3017
+ msgstr ""
3018
+
3019
+ #: includes/wc-gzd-dhl-core-functions.php:643
3020
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:643
3021
+ msgctxt "dhl"
3022
+ msgid "Error while parsing preferred time."
3023
+ msgstr ""
3024
+
3025
+ #: includes/wc-gzd-dhl-core-functions.php:668
3026
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:668
3027
+ msgctxt "dhl"
3028
+ msgid "The visual min age check is invalid."
3029
+ msgstr ""
3030
+
3031
+ #: includes/wc-gzd-dhl-core-functions.php:692
3032
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:692
3033
+ msgctxt "dhl"
3034
+ msgid "The ident min age check is invalid."
3035
+ msgstr ""
3036
+
3037
+ #: includes/wc-gzd-dhl-core-functions.php:699
3038
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:699
3039
+ msgctxt "dhl"
3040
+ msgid "There was an error parsing the date of birth for the identity check."
3041
+ msgstr ""
3042
+
3043
+ #: includes/wc-gzd-dhl-core-functions.php:704
3044
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:704
3045
+ msgctxt "dhl"
3046
+ msgid "Either a minimum age or a date of birth must be added to the ident check."
3047
+ msgstr ""
3048
+
3049
+ #: includes/wc-gzd-dhl-core-functions.php:718
3050
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:718
3051
+ msgctxt "dhl"
3052
+ msgid "%s duties element does not exist."
3053
+ msgstr ""
3054
+
3055
+ #: includes/wc-gzd-dhl-core-functions.php:1342
3056
+ #: includes/wc-gzd-dhl-core-functions.php:1426
3057
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1342
3058
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1426
3059
+ msgctxt "dhl"
3060
+ msgid "Invalid shipment"
3061
+ msgstr ""
3062
+
3063
+ #: includes/wc-gzd-dhl-core-functions.php:1346
3064
+ #: includes/wc-gzd-dhl-core-functions.php:1430
3065
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1346
3066
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1430
3067
+ msgctxt "dhl"
3068
+ msgid "Order does not exist"
3069
+ msgstr ""
3070
+
3071
+ #: includes/wc-gzd-dhl-core-functions.php:1378
3072
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1378
3073
+ msgctxt "dhl"
3074
+ msgid "Error while creating the label instance"
3075
+ msgstr ""
3076
+
3077
+ #: includes/wc-gzd-dhl-core-functions.php:1501
3078
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1501
3079
+ msgctxt "dhl"
3080
+ msgid "Invalid label"
3081
+ msgstr ""
3082
+
3083
+ #: includes/wc-gzd-dhl-core-functions.php:1589
3084
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1589
3085
+ msgctxt "dhl"
3086
+ msgid "DHL Retoure International A"
3087
+ msgstr ""
3088
+
3089
+ #: includes/wc-gzd-dhl-core-functions.php:1590
3090
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1590
3091
+ msgctxt "dhl"
3092
+ msgid "DHL Retoure International B"
3093
+ msgstr ""
3094
+
3095
+ #: includes/wc-gzd-dhl-core-functions.php:1599
3096
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1599
3097
+ msgctxt "dhl"
3098
+ msgid "DHL Retoure Online"
3099
+ msgstr ""
3100
+
3101
+ #: includes/wc-gzd-dhl-core-functions.php:1616
3102
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1616
3103
+ msgctxt "dhl"
3104
+ msgid "DHL Paket Connect"
3105
+ msgstr ""
3106
+
3107
+ #: includes/wc-gzd-dhl-core-functions.php:1617
3108
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1617
3109
+ msgctxt "dhl"
3110
+ msgid "DHL Europaket (B2B)"
3111
+ msgstr ""
3112
+
3113
+ #: includes/wc-gzd-dhl-core-functions.php:1618
3114
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1618
3115
+ msgctxt "dhl"
3116
+ msgid "DHL Paket International"
3117
+ msgstr ""
3118
+
3119
+ #: includes/wc-gzd-dhl-core-functions.php:1693
3120
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1693
3121
+ msgctxt "dhl"
3122
+ msgid "DHL Paket"
3123
+ msgstr ""
3124
+
3125
+ #: includes/wc-gzd-dhl-core-functions.php:1694
3126
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1694
3127
+ msgctxt "dhl"
3128
+ msgid "DHL Paket PRIO"
3129
+ msgstr ""
3130
+
3131
+ #: includes/wc-gzd-dhl-core-functions.php:1695
3132
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1695
3133
+ msgctxt "dhl"
3134
+ msgid "DHL Paket Taggleich"
3135
+ msgstr ""
3136
+
3137
+ #: includes/wc-gzd-dhl-core-functions.php:1696
3138
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1696
3139
+ msgctxt "dhl"
3140
+ msgid "DHL Warenpost"
3141
+ msgstr ""
3142
+
3143
+ #: includes/wc-gzd-dhl-core-functions.php:1783
3144
+ #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1783
3145
+ msgctxt "dhl"
3146
+ msgid "Error while uploading label."
3147
+ msgstr ""
3148
+
3149
+ #: src/Admin/Admin.php:59
3150
+ #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:59
3151
+ msgctxt "dhl"
3152
+ msgid "Refreshed data successfully."
3153
+ msgstr ""
3154
+
3155
+ #: src/Admin/Admin.php:59
3156
+ #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:59
3157
+ msgctxt "dhl"
3158
+ msgid "Error while refreshing data. Please make sure that the Internetmarke API URL can be <a href=\"%s\">accessed</a>."
3159
+ msgstr ""
3160
+
3161
+ #: src/Admin/Admin.php:176
3162
+ #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:176
3163
+ msgctxt "dhl"
3164
+ msgid "Receiver Ids"
3165
+ msgstr ""
3166
+
3167
+ #: src/Admin/Admin.php:183
3168
+ #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:183
3169
+ msgctxt "dhl"
3170
+ msgid "Receiver Id"
3171
+ msgstr ""
3172
+
3173
+ #: src/Admin/Admin.php:183
3174
+ #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:183
3175
+ msgctxt "dhl"
3176
+ msgid "Find your Receiver Ids within your DHL contract data."
3177
+ msgstr ""
3178
+
3179
+ #: src/Admin/Admin.php:184
3180
+ #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:184
3181
+ msgctxt "dhl"
3182
+ msgid "Country Code"
3183
+ msgstr ""
3184
+
3185
+ #: src/Admin/Admin.php:184
3186
+ #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:184
3187
+ msgctxt "dhl"
3188
+ msgid "Leave empty to use the Receiver Id as fallback."
3189
+ msgstr ""
3190
+
3191
+ #: src/Admin/Admin.php:204
3192
+ #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:204
3193
+ msgctxt "dhl"
3194
+ msgid "+ Add receiver"
3195
+ msgstr ""
3196
+
3197
+ #: src/Admin/Admin.php:204
3198
+ #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:204
3199
+ msgctxt "dhl"
3200
+ msgid "Remove selected receiver(s)"
3201
+ msgstr ""
3202
+
3203
+ #: src/Admin/Admin.php:240
3204
+ #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:240
3205
+ msgctxt "dhl"
3206
+ msgid "Select a country"
3207
+ msgstr ""
3208
+
3209
+ #: src/Admin/Admin.php:242
3210
+ #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:242
3211
+ msgctxt "dhl"
3212
+ msgid "HS-Code (DHL)"
3213
+ msgstr ""
3214
+
3215
+ #: src/Admin/Admin.php:242
3216
+ #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:242
3217
+ msgctxt "dhl"
3218
+ msgid "The HS Code is a number assigned to every possible commodity that can be imported or exported from any country."
3219
+ msgstr ""
3220
+
3221
+ #: src/Admin/Admin.php:243
3222
+ #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:243
3223
+ msgctxt "dhl"
3224
+ msgid "Country of manufacture (DHL)"
3225
+ msgstr ""
3226
+
3227
+ #: src/Admin/Admin.php:243
3228
+ #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:243
3229
+ msgctxt "dhl"
3230
+ msgid "The country of manufacture is needed for customs of international shipping."
3231
+ msgstr ""
3232
+
3233
+ #: src/Admin/Admin.php:264
3234
+ #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:264
3235
+ msgctxt "dhl"
3236
+ msgid "DHL label upload directory missing. Please manually create the folder %s and make sure that it is writeable."
3237
+ msgstr ""
3238
+
3239
+ #: src/Admin/Admin.php:271
3240
+ #: src/Admin/Settings.php:1464
3241
+ #: src/ShippingProvider/DHL.php:39
3242
+ #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:271
3243
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1464
3244
+ #: packages/woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:39
3245
+ msgctxt "dhl"
3246
+ msgid "DHL"
3247
+ msgstr ""
3248
+
3249
+ #: src/Admin/Admin.php:286
3250
+ #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:286
3251
+ msgctxt "dhl"
3252
+ msgid "DHL Label"
3253
+ msgstr ""
3254
+
3255
+ #: src/Admin/Admin.php:298
3256
+ #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:298
3257
+ msgctxt "dhl"
3258
+ msgid "This label has been generated by the DHL for WooCommerce Plugin and is shown for legacy purposes."
3259
+ msgstr ""
3260
+
3261
+ #: src/Admin/Admin.php:299
3262
+ #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:299
3263
+ msgctxt "dhl"
3264
+ msgid "Download label"
3265
+ msgstr ""
3266
+
3267
+ #: src/Admin/Settings.php:33
3268
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:33
3269
+ msgctxt "dhl"
3270
+ msgid "Enable DHL"
3271
+ msgstr ""
3272
+
3273
+ #: src/Admin/Settings.php:34
3274
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:34
3275
+ msgctxt "dhl"
3276
+ msgid "If you want to ship your shipments via DHL and create labels to your shipments please enable the DHL integration."
3277
+ msgstr ""
3278
+
3279
+ #: src/Admin/Settings.php:47
3280
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:47
3281
+ msgctxt "dhl"
3282
+ msgid "Customer Number"
3283
+ msgstr ""
3284
+
3285
+ #: src/Admin/Settings.php:48
3286
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:48
3287
+ msgctxt "dhl"
3288
+ msgid "Insert your DHL business customer number (EKP) here. If you are not yet a business customer you might want to create a new account first."
3289
+ msgstr ""
3290
+
3291
+ #: src/Admin/Settings.php:61
3292
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:61
3293
+ msgctxt "dhl"
3294
+ msgid "API Access"
3295
+ msgstr ""
3296
+
3297
+ #: src/Admin/Settings.php:62
3298
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:62
3299
+ msgctxt "dhl"
3300
+ msgid "To create labels and embed DHL services, our software needs access to the API. You will need to fill out the username and password fields accordingly."
3301
+ msgstr ""
3302
+
3303
+ #: src/Admin/Settings.php:80
3304
+ #: src/Admin/Settings.php:328
3305
+ #: src/Admin/Settings.php:477
3306
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:80
3307
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:328
3308
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:477
3309
+ msgctxt "dhl"
3310
+ msgid "Inlay Returns"
3311
+ msgstr ""
3312
+
3313
+ #: src/Admin/Settings.php:81
3314
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:81
3315
+ msgctxt "dhl"
3316
+ msgid "If you want to provide your customers with inlay return labels for your shipments you might enable this feature by default here."
3317
+ msgstr ""
3318
+
3319
+ #: src/Admin/Settings.php:94
3320
+ #: src/Admin/Settings.php:723
3321
+ #: src/Admin/Settings.php:953
3322
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:94
3323
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:723
3324
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:953
3325
+ msgctxt "dhl"
3326
+ msgid "Retoure"
3327
+ msgstr ""
3328
+
3329
+ #: src/Admin/Settings.php:95
3330
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:95
3331
+ msgctxt "dhl"
3332
+ msgid "If you want to create DHL labels to returns you should activate this feature. Make sure that you have DHL Online Retoure activated in your contract."
3333
+ msgstr ""
3334
+
3335
+ #: src/Admin/Settings.php:108
3336
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:108
3337
+ msgctxt "dhl"
3338
+ msgid "Age verification"
3339
+ msgstr ""
3340
+
3341
+ #: src/Admin/Settings.php:109
3342
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:109
3343
+ msgctxt "dhl"
3344
+ msgid "Use this feature to sync the Germanized age verification checkbox with the DHL visual minimum age verification service. As soon as applicable products are contained within the shipment, the service will be booked by default."
3345
+ msgstr ""
3346
+
3347
+ #: src/Admin/Settings.php:122
3348
+ #: src/Admin/Settings.php:747
3349
+ #: src/Admin/Settings.php:1391
3350
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:122
3351
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:747
3352
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1391
3353
+ msgctxt "dhl"
3354
+ msgid "Automation"
3355
+ msgstr ""
3356
+
3357
+ #: src/Admin/Settings.php:123
3358
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:123
3359
+ msgctxt "dhl"
3360
+ msgid "You might want to save some time and let Germanized generate labels automatically as soon as a shipment switches to a certain status."
3361
+ msgstr ""
3362
+
3363
+ #: src/Admin/Settings.php:142
3364
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:142
3365
+ msgctxt "dhl"
3366
+ msgid "Let your customers choose a preferred day (if the service is available at the customer's location) of delivery within your checkout."
3367
+ msgstr ""
3368
+
3369
+ #: src/Admin/Settings.php:155
3370
+ #: src/Admin/Settings.php:982
3371
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:155
3372
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:982
3373
+ msgctxt "dhl"
3374
+ msgid "Fee"
3375
+ msgstr ""
3376
+
3377
+ #: src/Admin/Settings.php:156
3378
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:156
3379
+ msgctxt "dhl"
3380
+ msgid "Optionally charge your customers an additional fee for preferred services like preferred day."
3381
+ msgstr ""
3382
+
3383
+ #: src/Admin/Settings.php:170
3384
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:170
3385
+ msgctxt "dhl"
3386
+ msgid "Allow your customers to send their parcels to a preferred location e.g. a neighbor. This service is free of charge for DHL shipments."
3387
+ msgstr ""
3388
+
3389
+ #: src/Admin/Settings.php:189
3390
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:189
3391
+ msgctxt "dhl"
3392
+ msgid "Allow your customers to choose packstation (and/or other DHL location types as configured below) as shipping address."
3393
+ msgstr ""
3394
+
3395
+ #: src/Admin/Settings.php:202
3396
+ #: src/Admin/Settings.php:1130
3397
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:202
3398
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1130
3399
+ msgctxt "dhl"
3400
+ msgid "Map"
3401
+ msgstr ""
3402
+
3403
+ #: src/Admin/Settings.php:203
3404
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:203
3405
+ msgctxt "dhl"
3406
+ msgid "This option adds a map overlay view to let your customers choose a DHL location from a map nearby. You'll need a valid Google Maps API key to enable the map view."
3407
+ msgstr ""
3408
+
3409
+ #: src/Admin/Settings.php:223
3410
+ #: src/Admin/Settings.php:1167
3411
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:223
3412
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1167
3413
+ msgctxt "dhl"
3414
+ msgid "Enable"
3415
+ msgstr ""
3416
+
3417
+ #: src/Admin/Settings.php:224
3418
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:224
3419
+ msgctxt "dhl"
3420
+ msgid "Enable DHL integration."
3421
+ msgstr ""
3422
+
3423
+ #: src/Admin/Settings.php:231
3424
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:231
3425
+ msgctxt "dhl"
3426
+ msgid "Customer Number (EKP)"
3427
+ msgstr ""
3428
+
3429
+ #: src/Admin/Settings.php:233
3430
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:233
3431
+ msgctxt "dhl"
3432
+ msgid "Your 10 digits DHL customer number, also called \"EKP\". Find your %s in the DHL business portal."
3433
+ msgstr ""
3434
+
3435
+ #: src/Admin/Settings.php:233
3436
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:233
3437
+ msgctxt "dhl"
3438
+ msgid "customer number"
3439
+ msgstr ""
3440
+
3441
+ #: src/Admin/Settings.php:242
3442
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:242
3443
+ msgctxt "dhl"
3444
+ msgid "API"
3445
+ msgstr ""
3446
+
3447
+ #: src/Admin/Settings.php:245
3448
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:245
3449
+ msgctxt "dhl"
3450
+ msgid "Enable Sandbox"
3451
+ msgstr ""
3452
+
3453
+ #: src/Admin/Settings.php:246
3454
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:246
3455
+ msgctxt "dhl"
3456
+ msgid "Activate Sandbox mode for testing purposes."
3457
+ msgstr ""
3458
+
3459
+ #: src/Admin/Settings.php:253
3460
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:253
3461
+ msgctxt "dhl"
3462
+ msgid "Live Username"
3463
+ msgstr ""
3464
+
3465
+ #: src/Admin/Settings.php:255
3466
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:255
3467
+ msgctxt "dhl"
3468
+ msgid "Your username for the DHL business customer portal. Please note the lower case and test your access data in advance %s."
3469
+ msgstr ""
3470
+
3471
+ #: src/Admin/Settings.php:255
3472
+ #: src/Admin/Settings.php:264
3473
+ #: src/Admin/Settings.php:273
3474
+ #: src/Admin/Settings.php:282
3475
+ #: src/Admin/Settings.php:299
3476
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:255
3477
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:264
3478
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:273
3479
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:282
3480
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:299
3481
+ msgctxt "dhl"
3482
+ msgid "here"
3483
+ msgstr ""
3484
+
3485
+ #: src/Admin/Settings.php:262
3486
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:262
3487
+ msgctxt "dhl"
3488
+ msgid "Live Password"
3489
+ msgstr ""
3490
+
3491
+ #: src/Admin/Settings.php:264
3492
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:264
3493
+ msgctxt "dhl"
3494
+ msgid "Your password for the DHL business customer portal. Please note the new assignment of the password to 3 (Standard User) or 12 (System User) months and test your access data in advance %s."
3495
+ msgstr ""
3496
+
3497
+ #: src/Admin/Settings.php:271
3498
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:271
3499
+ msgctxt "dhl"
3500
+ msgid "Sandbox Username"
3501
+ msgstr ""
3502
+
3503
+ #: src/Admin/Settings.php:273
3504
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:273
3505
+ msgctxt "dhl"
3506
+ msgid "Your username for the DHL developer portal. Please note the lower case and test your access data in advance %s."
3507
+ msgstr ""
3508
+
3509
+ #: src/Admin/Settings.php:280
3510
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:280
3511
+ msgctxt "dhl"
3512
+ msgid "Sandbox Password"
3513
+ msgstr ""
3514
+
3515
+ #: src/Admin/Settings.php:282
3516
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:282
3517
+ msgctxt "dhl"
3518
+ msgid "Your password for the DHL developer portal. Please test your access data in advance %s."
3519
+ msgstr ""
3520
+
3521
+ #: src/Admin/Settings.php:295
3522
+ #: src/Admin/Settings.php:338
3523
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:295
3524
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:338
3525
+ msgctxt "dhl"
3526
+ msgid "Products and Participation Numbers"
3527
+ msgstr ""
3528
+
3529
+ #: src/Admin/Settings.php:299
3530
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:299
3531
+ msgctxt "dhl"
3532
+ msgid "Please enter your participation number to the corresponding product. You can add other participation numbers later %s."
3533
+ msgstr ""
3534
+
3535
+ #: src/Admin/Settings.php:338
3536
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:338
3537
+ msgctxt "dhl"
3538
+ msgid "For each DHL product that you would like to use, please enter your participation number here. The participation number consists of the last two characters of the respective accounting number, which you will find in your %s (e.g.: 01)."
3539
+ msgstr ""
3540
+
3541
+ #: src/Admin/Settings.php:338
3542
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:338
3543
+ msgctxt "dhl"
3544
+ msgid "contract data"
3545
+ msgstr ""
3546
+
3547
+ #: src/Admin/Settings.php:392
3548
+ #: src/Admin/Settings.php:1222
3549
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:392
3550
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1222
3551
+ msgctxt "dhl"
3552
+ msgid "Domestic Default Service"
3553
+ msgstr ""
3554
+
3555
+ #: src/Admin/Settings.php:396
3556
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:396
3557
+ msgctxt "dhl"
3558
+ msgid "Please select your default DHL shipping service for domestic shipments that you want to offer to your customers (you can always change this within each individual shipment afterwards)."
3559
+ msgstr ""
3560
+
3561
+ #: src/Admin/Settings.php:402
3562
+ #: src/Admin/Settings.php:1242
3563
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:402
3564
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1242
3565
+ msgctxt "dhl"
3566
+ msgid "Int. Default Service"
3567
+ msgstr ""
3568
+
3569
+ #: src/Admin/Settings.php:406
3570
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:406
3571
+ msgctxt "dhl"
3572
+ msgid "Please select your default DHL shipping service for cross-border shipments that you want to offer to your customers (you can always change this within each individual shipment afterwards)."
3573
+ msgstr ""
3574
+
3575
+ #: src/Admin/Settings.php:412
3576
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:412
3577
+ msgctxt "dhl"
3578
+ msgid "Default Duty"
3579
+ msgstr ""
3580
+
3581
+ #: src/Admin/Settings.php:416
3582
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:416
3583
+ msgctxt "dhl"
3584
+ msgid "Please select a default duty type."
3585
+ msgstr ""
3586
+
3587
+ #: src/Admin/Settings.php:423
3588
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:423
3589
+ msgctxt "dhl"
3590
+ msgid "Codeable"
3591
+ msgstr ""
3592
+
3593
+ #: src/Admin/Settings.php:424
3594
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:424
3595
+ msgctxt "dhl"
3596
+ msgid "Generate label only if address can be automatically retrieved DHL."
3597
+ msgstr ""
3598
+
3599
+ #: src/Admin/Settings.php:428
3600
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:428
3601
+ msgctxt "dhl"
3602
+ msgid "Choose this option if you want to make sure that by default labels are only generated for codeable addresses."
3603
+ msgstr ""
3604
+
3605
+ #: src/Admin/Settings.php:432
3606
+ #: src/Admin/Settings.php:1200
3607
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:432
3608
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1200
3609
+ msgctxt "dhl"
3610
+ msgid "Default weight (kg)"
3611
+ msgstr ""
3612
+
3613
+ #: src/Admin/Settings.php:434
3614
+ #: src/Admin/Settings.php:1202
3615
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:434
3616
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1202
3617
+ msgctxt "dhl"
3618
+ msgid "Choose a default shipment weight to be used for labels if no weight has been applied to the shipment."
3619
+ msgstr ""
3620
+
3621
+ #: src/Admin/Settings.php:443
3622
+ #: src/Admin/Settings.php:1211
3623
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:443
3624
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1211
3625
+ msgctxt "dhl"
3626
+ msgid "Minimum weight (kg)"
3627
+ msgstr ""
3628
+
3629
+ #: src/Admin/Settings.php:445
3630
+ #: src/Admin/Settings.php:1213
3631
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:445
3632
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1213
3633
+ msgctxt "dhl"
3634
+ msgid "Choose a minimum weight to be used for labels e.g. to prevent low shipment weight errors."
3635
+ msgstr ""
3636
+
3637
+ #: src/Admin/Settings.php:457
3638
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:457
3639
+ msgctxt "dhl"
3640
+ msgid "Force email"
3641
+ msgstr ""
3642
+
3643
+ #: src/Admin/Settings.php:458
3644
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:458
3645
+ msgctxt "dhl"
3646
+ msgid "Force transferring customer email to DHL."
3647
+ msgstr ""
3648
+
3649
+ #: src/Admin/Settings.php:458
3650
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:458
3651
+ msgctxt "dhl"
3652
+ msgid "By default the customer email address is only transferred in case explicit consent has been given via a checkbox during checkout. You may force to transfer the customer email address during label creation to make sure your customers receive email notifications by DHL. Make sure to check your privacy policy and seek advice by a lawyer in case of doubt."
3653
+ msgstr ""
3654
+
3655
+ #: src/Admin/Settings.php:464
3656
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:464
3657
+ msgctxt "dhl"
3658
+ msgid "Street number"
3659
+ msgstr ""
3660
+
3661
+ #: src/Admin/Settings.php:465
3662
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:465
3663
+ msgctxt "dhl"
3664
+ msgid "Force existence of a street number within the first address field during checkout for EU countries."
3665
+ msgstr ""
3666
+
3667
+ #: src/Admin/Settings.php:466
3668
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:466
3669
+ msgctxt "dhl"
3670
+ msgid "Enabling this option will force a street number to be provided during checkout within the first address field to prevent missing or wrong data sets."
3671
+ msgstr ""
3672
+
3673
+ #: src/Admin/Settings.php:478
3674
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:478
3675
+ msgctxt "dhl"
3676
+ msgid "Additionally create inlay return labels for shipments that support returns."
3677
+ msgstr ""
3678
+
3679
+ #: src/Admin/Settings.php:497
3680
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:497
3681
+ msgctxt "dhl"
3682
+ msgid "Enable delivery to Packstation."
3683
+ msgstr ""
3684
+
3685
+ #: src/Admin/Settings.php:498
3686
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:498
3687
+ msgctxt "dhl"
3688
+ msgid "Let customers choose a Packstation as delivery address."
3689
+ msgstr ""
3690
+
3691
+ #: src/Admin/Settings.php:505
3692
+ #: templates/checkout/dhl/parcel-finder.php:50
3693
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:505
3694
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:50
3695
+ msgctxt "dhl"
3696
+ msgid "Postoffice"
3697
+ msgstr ""
3698
+
3699
+ #: src/Admin/Settings.php:506
3700
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:506
3701
+ msgctxt "dhl"
3702
+ msgid "Enable delivery to Post Offices."
3703
+ msgstr ""
3704
+
3705
+ #: src/Admin/Settings.php:507
3706
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:507
3707
+ msgctxt "dhl"
3708
+ msgid "Let customers choose a Post Office as delivery address."
3709
+ msgstr ""
3710
+
3711
+ #: src/Admin/Settings.php:514
3712
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:514
3713
+ msgctxt "dhl"
3714
+ msgid "Parcel Shop"
3715
+ msgstr ""
3716
+
3717
+ #: src/Admin/Settings.php:515
3718
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:515
3719
+ msgctxt "dhl"
3720
+ msgid "Enable delivery to Parcel Shops."
3721
+ msgstr ""
3722
+
3723
+ #: src/Admin/Settings.php:516
3724
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:516
3725
+ msgctxt "dhl"
3726
+ msgid "Let customers choose a Parcel Shop as delivery address."
3727
+ msgstr ""
3728
+
3729
+ #: src/Admin/Settings.php:535
3730
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:535
3731
+ msgctxt "dhl"
3732
+ msgid "Enable the GoGreen Service by default."
3733
+ msgstr ""
3734
+
3735
+ #: src/Admin/Settings.php:541
3736
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:541
3737
+ msgctxt "dhl"
3738
+ msgid "Additional Insurance"
3739
+ msgstr ""
3740
+
3741
+ #: src/Admin/Settings.php:542
3742
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:542
3743
+ msgctxt "dhl"
3744
+ msgid "Add an additional insurance to labels."
3745
+ msgstr ""
3746
+
3747
+ #: src/Admin/Settings.php:548
3748
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:548
3749
+ msgctxt "dhl"
3750
+ msgid "Retail Outlet Routing"
3751
+ msgstr ""
3752
+
3753
+ #: src/Admin/Settings.php:549
3754
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:549
3755
+ msgctxt "dhl"
3756
+ msgid "Send undeliverable items to nearest retail outlet instead of immediate return."
3757
+ msgstr ""
3758
+
3759
+ #: src/Admin/Settings.php:555
3760
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:555
3761
+ msgctxt "dhl"
3762
+ msgid "No Neighbor"
3763
+ msgstr ""
3764
+
3765
+ #: src/Admin/Settings.php:556
3766
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:556
3767
+ msgctxt "dhl"
3768
+ msgid "Do not deliver to neighbors."
3769
+ msgstr ""
3770
+
3771
+ #: src/Admin/Settings.php:563
3772
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:563
3773
+ msgctxt "dhl"
3774
+ msgid "Do only delivery to named person."
3775
+ msgstr ""
3776
+
3777
+ #: src/Admin/Settings.php:569
3778
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:569
3779
+ msgctxt "dhl"
3780
+ msgid "Bulky Goods"
3781
+ msgstr ""
3782
+
3783
+ #: src/Admin/Settings.php:570
3784
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:570
3785
+ msgctxt "dhl"
3786
+ msgid "Deliver as bulky goods."
3787
+ msgstr ""
3788
+
3789
+ #: src/Admin/Settings.php:576
3790
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:576
3791
+ msgctxt "dhl"
3792
+ msgid "Minimum age (Visual check)"
3793
+ msgstr ""
3794
+
3795
+ #: src/Admin/Settings.php:581
3796
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:581
3797
+ msgctxt "dhl"
3798
+ msgid "Choose this option if you want to let DHL check your customer's age."
3799
+ msgstr ""
3800
+
3801
+ #: src/Admin/Settings.php:584
3802
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:584
3803
+ msgctxt "dhl"
3804
+ msgid "Sync (Visual Check)"
3805
+ msgstr ""
3806
+
3807
+ #: src/Admin/Settings.php:585
3808
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:585
3809
+ msgctxt "dhl"
3810
+ msgid "Visually verify age if shipment contains applicable items."
3811
+ msgstr ""
3812
+
3813
+ #: src/Admin/Settings.php:585
3814
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:585
3815
+ msgctxt "dhl"
3816
+ msgid "Germanized offers an %s to be enabled for certain products and/or product categories. By checking this option labels for shipments with applicable items will automatically have the visual age check service enabled."
3817
+ msgstr ""
3818
+
3819
+ #: src/Admin/Settings.php:585
3820
+ #: src/Admin/Settings.php:600
3821
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:585
3822
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:600
3823
+ msgctxt "dhl"
3824
+ msgid "age verification checkbox"
3825
+ msgstr ""
3826
+
3827
+ #: src/Admin/Settings.php:591
3828
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:591
3829
+ msgctxt "dhl"
3830
+ msgid "Minimum age (Ident check)"
3831
+ msgstr ""
3832
+
3833
+ #: src/Admin/Settings.php:596
3834
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:596
3835
+ msgctxt "dhl"
3836
+ msgid "Choose this option if you want to let DHL check your customer's identity and age."
3837
+ msgstr ""
3838
+
3839
+ #: src/Admin/Settings.php:599
3840
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:599
3841
+ msgctxt "dhl"
3842
+ msgid "Sync (Ident Check)"
3843
+ msgstr ""
3844
+
3845
+ #: src/Admin/Settings.php:600
3846
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:600
3847
+ msgctxt "dhl"
3848
+ msgid "Verify identity and age if shipment contains applicable items."
3849
+ msgstr ""
3850
+
3851
+ #: src/Admin/Settings.php:600
3852
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:600
3853
+ msgctxt "dhl"
3854
+ msgid "Germanized offers an %s to be enabled for certain products and/or product categories. By checking this option labels for shipments with applicable items will automatically have the identity check service enabled."
3855
+ msgstr ""
3856
+
3857
+ #: src/Admin/Settings.php:607
3858
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:607
3859
+ msgctxt "dhl"
3860
+ msgid "Premium delivery for international shipments."
3861
+ msgstr ""
3862
+
3863
+ #: src/Admin/Settings.php:626
3864
+ #: src/Admin/Settings.php:1264
3865
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:626
3866
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1264
3867
+ msgctxt "dhl"
3868
+ msgid "Labels"
3869
+ msgstr ""
3870
+
3871
+ #: src/Admin/Settings.php:627
3872
+ #: src/Admin/Settings.php:1265
3873
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:627
3874
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1265
3875
+ msgctxt "dhl"
3876
+ msgid "Automatically create labels for shipments."
3877
+ msgstr ""
3878
+
3879
+ #: src/Admin/Settings.php:634
3880
+ #: src/Admin/Settings.php:661
3881
+ #: src/Admin/Settings.php:1272
3882
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:634
3883
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:661
3884
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1272
3885
+ msgctxt "dhl"
3886
+ msgid "Status"
3887
+ msgstr ""
3888
+
3889
+ #: src/Admin/Settings.php:638
3890
+ #: src/Admin/Settings.php:1276
3891
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:638
3892
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1276
3893
+ msgctxt "dhl"
3894
+ msgid "Choose a shipment status which should trigger generation of a label."
3895
+ msgstr ""
3896
+
3897
+ #: src/Admin/Settings.php:645
3898
+ #: src/Admin/Settings.php:1283
3899
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:645
3900
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1283
3901
+ msgctxt "dhl"
3902
+ msgid "Shipment Status"
3903
+ msgstr ""
3904
+
3905
+ #: src/Admin/Settings.php:646
3906
+ #: src/Admin/Settings.php:1284
3907
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:646
3908
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1284
3909
+ msgctxt "dhl"
3910
+ msgid "Mark shipment as shipped after label has been created successfully."
3911
+ msgstr ""
3912
+
3913
+ #: src/Admin/Settings.php:653
3914
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:653
3915
+ msgctxt "dhl"
3916
+ msgid "Returns"
3917
+ msgstr ""
3918
+
3919
+ #: src/Admin/Settings.php:654
3920
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:654
3921
+ msgctxt "dhl"
3922
+ msgid "Automatically create labels for returns."
3923
+ msgstr ""
3924
+
3925
+ #: src/Admin/Settings.php:665
3926
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:665
3927
+ msgctxt "dhl"
3928
+ msgid "Choose a shipment status which should trigger generation of a return label."
3929
+ msgstr ""
3930
+
3931
+ #: src/Admin/Settings.php:713
3932
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:713
3933
+ msgctxt "dhl"
3934
+ msgid "Adjust options for label creation. Settings may be overridden by more specific %s settings."
3935
+ msgstr ""
3936
+
3937
+ #: src/Admin/Settings.php:713
3938
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:713
3939
+ msgctxt "dhl"
3940
+ msgid "shipping method"
3941
+ msgstr ""
3942
+
3943
+ #: src/Admin/Settings.php:723
3944
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:723
3945
+ msgctxt "dhl"
3946
+ msgid "Adjust handling of return shipments through the DHL Retoure API. Make sure that your %s contains DHL Retoure Online."
3947
+ msgstr ""
3948
+
3949
+ #: src/Admin/Settings.php:723
3950
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:723
3951
+ msgctxt "dhl"
3952
+ msgid "contract"
3953
+ msgstr ""
3954
+
3955
+ #: src/Admin/Settings.php:735
3956
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:735
3957
+ msgctxt "dhl"
3958
+ msgid "Default Services"
3959
+ msgstr ""
3960
+
3961
+ #: src/Admin/Settings.php:735
3962
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:735
3963
+ msgctxt "dhl"
3964
+ msgid "Adjust services to be added to your labels by default. Find out more about these %s."
3965
+ msgstr ""
3966
+
3967
+ #: src/Admin/Settings.php:735
3968
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:735
3969
+ msgctxt "dhl"
3970
+ msgid "nationwide services"
3971
+ msgstr ""
3972
+
3973
+ #: src/Admin/Settings.php:747
3974
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:747
3975
+ msgctxt "dhl"
3976
+ msgid "Choose whether and under which conditions labels for your shipments shall be requested and generated automatically."
3977
+ msgstr ""
3978
+
3979
+ #: src/Admin/Settings.php:758
3980
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:758
3981
+ msgctxt "dhl"
3982
+ msgid "Shipper Address"
3983
+ msgstr ""
3984
+
3985
+ #: src/Admin/Settings.php:782
3986
+ #: src/Admin/Settings.php:851
3987
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:782
3988
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:851
3989
+ msgctxt "dhl"
3990
+ msgid "Street Number"
3991
+ msgstr ""
3992
+
3993
+ #: src/Admin/Settings.php:803
3994
+ #: src/Admin/Settings.php:872
3995
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:803
3996
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:872
3997
+ msgctxt "dhl"
3998
+ msgid "Country"
3999
+ msgstr ""
4000
+
4001
+ #: src/Admin/Settings.php:827
4002
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:827
4003
+ msgctxt "dhl"
4004
+ msgid "Inlay Return Address"
4005
+ msgstr ""
4006
+
4007
+ #: src/Admin/Settings.php:896
4008
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:896
4009
+ msgctxt "dhl"
4010
+ msgid "Bank Account"
4011
+ msgstr ""
4012
+
4013
+ #: src/Admin/Settings.php:896
4014
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:896
4015
+ msgctxt "dhl"
4016
+ msgid "Enter your bank details needed for services that use COD."
4017
+ msgstr ""
4018
+
4019
+ #: src/Admin/Settings.php:899
4020
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:899
4021
+ msgctxt "dhl"
4022
+ msgid "Holder"
4023
+ msgstr ""
4024
+
4025
+ #: src/Admin/Settings.php:906
4026
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:906
4027
+ msgctxt "dhl"
4028
+ msgid "Bank Name"
4029
+ msgstr ""
4030
+
4031
+ #: src/Admin/Settings.php:913
4032
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:913
4033
+ msgctxt "dhl"
4034
+ msgid "IBAN"
4035
+ msgstr ""
4036
+
4037
+ #: src/Admin/Settings.php:920
4038
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:920
4039
+ msgctxt "dhl"
4040
+ msgid "BIC"
4041
+ msgstr ""
4042
+
4043
+ #: src/Admin/Settings.php:927
4044
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:927
4045
+ msgctxt "dhl"
4046
+ msgid "Payment Reference"
4047
+ msgstr ""
4048
+
4049
+ #: src/Admin/Settings.php:931
4050
+ #: src/Admin/Settings.php:940
4051
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:931
4052
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:940
4053
+ msgctxt "dhl"
4054
+ msgid "Use these placeholders to add info to the payment reference: %s. This text is limited to 35 characters."
4055
+ msgstr ""
4056
+
4057
+ #: src/Admin/Settings.php:936
4058
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:936
4059
+ msgctxt "dhl"
4060
+ msgid "Payment Reference 2"
4061
+ msgstr ""
4062
+
4063
+ #: src/Admin/Settings.php:954
4064
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:954
4065
+ msgctxt "dhl"
4066
+ msgid "Enable creating labels for return shipments."
4067
+ msgstr ""
4068
+
4069
+ #: src/Admin/Settings.php:954
4070
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:954
4071
+ msgctxt "dhl"
4072
+ msgid "By enabling this option you might generate retoure labels for return shipments and send them to your customer via email."
4073
+ msgstr ""
4074
+
4075
+ #: src/Admin/Settings.php:975
4076
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:975
4077
+ msgctxt "dhl"
4078
+ msgid "Enable preferred day delivery."
4079
+ msgstr ""
4080
+
4081
+ #: src/Admin/Settings.php:975
4082
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:975
4083
+ msgctxt "dhl"
4084
+ msgid "Enabling this option will display options for the user to select their preferred day of delivery during the checkout."
4085
+ msgstr ""
4086
+
4087
+ #: src/Admin/Settings.php:984
4088
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:984
4089
+ msgctxt "dhl"
4090
+ msgid "Insert gross value as surcharge for preferred day delivery. Insert 0 to offer service for free."
4091
+ msgstr ""
4092
+
4093
+ #: src/Admin/Settings.php:995
4094
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:995
4095
+ msgctxt "dhl"
4096
+ msgid "Enable preferred location delivery."
4097
+ msgstr ""
4098
+
4099
+ #: src/Admin/Settings.php:995
4100
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:995
4101
+ msgctxt "dhl"
4102
+ msgid "Enabling this option will display options for the user to select their preferred delivery location during the checkout."
4103
+ msgstr ""
4104
+
4105
+ #: src/Admin/Settings.php:1003
4106
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1003
4107
+ msgctxt "dhl"
4108
+ msgid "Enable preferred neighbor delivery."
4109
+ msgstr ""
4110
+
4111
+ #: src/Admin/Settings.php:1003
4112
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1003
4113
+ msgctxt "dhl"
4114
+ msgid "Enabling this option will display options for the user to deliver to their preferred neighbor during the checkout."
4115
+ msgstr ""
4116
+
4117
+ #: src/Admin/Settings.php:1029
4118
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1029
4119
+ msgctxt "dhl"
4120
+ msgid "Cut-off time"
4121
+ msgstr ""
4122
+
4123
+ #: src/Admin/Settings.php:1032
4124
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1032
4125
+ msgctxt "dhl"
4126
+ msgid "The cut-off time is the latest possible order time up to which the minimum preferred day (day of order + 2 working days) can be guaranteed. As soon as the time is exceeded, the earliest preferred day displayed in the frontend will be shifted to one day later (day of order + 3 working days)."
4127
+ msgstr ""
4128
+
4129
+ #: src/Admin/Settings.php:1038
4130
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1038
4131
+ msgctxt "dhl"
4132
+ msgid "Preparation days"
4133
+ msgstr ""
4134
+
4135
+ #: src/Admin/Settings.php:1041
4136
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1041
4137
+ msgctxt "dhl"
4138
+ msgid "If you need more time to prepare your shipments you might want to add a static preparation time to the possible starting date for preferred day delivery."
4139
+ msgstr ""
4140
+
4141
+ #: src/Admin/Settings.php:1048
4142
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1048
4143
+ msgctxt "dhl"
4144
+ msgid "Exclude days of transfer"
4145
+ msgstr ""
4146
+
4147
+ #: src/Admin/Settings.php:1049
4148
+ #: src/Api/FinderSoap.php:31
4149
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1049
4150
+ #: packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php:31
4151
+ msgctxt "dhl"
4152
+ msgid "Monday"
4153
+ msgstr ""
4154
+
4155
+ #: src/Admin/Settings.php:1050
4156
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1050
4157
+ msgctxt "dhl"
4158
+ msgid "Exclude days from transferring shipments to DHL."
4159
+ msgstr ""
4160
+
4161
+ #: src/Admin/Settings.php:1059
4162
+ #: src/Api/FinderSoap.php:32
4163
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1059
4164
+ #: packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php:32
4165
+ msgctxt "dhl"
4166
+ msgid "Tuesday"
4167
+ msgstr ""
4168
+
4169
+ #: src/Admin/Settings.php:1068
4170
+ #: src/Api/FinderSoap.php:33
4171
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1068
4172
+ #: packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php:33
4173
+ msgctxt "dhl"
4174
+ msgid "Wednesday"
4175
+ msgstr ""
4176
+
4177
+ #: src/Admin/Settings.php:1077
4178
+ #: src/Api/FinderSoap.php:34
4179
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1077
4180
+ #: packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php:34
4181
+ msgctxt "dhl"
4182
+ msgid "Thursday"
4183
+ msgstr ""
4184
+
4185
+ #: src/Admin/Settings.php:1086
4186
+ #: src/Api/FinderSoap.php:35
4187
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1086
4188
+ #: packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php:35
4189
+ msgctxt "dhl"
4190
+ msgid "Friday"
4191
+ msgstr ""
4192
+
4193
+ #: src/Admin/Settings.php:1095
4194
+ #: src/Api/FinderSoap.php:36
4195
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1095
4196
+ #: packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php:36
4197
+ msgctxt "dhl"
4198
+ msgid "Saturday"
4199
+ msgstr ""
4200
+
4201
+ #: src/Admin/Settings.php:1104
4202
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1104
4203
+ msgctxt "dhl"
4204
+ msgid "Exclude gateways"
4205
+ msgstr ""
4206
+
4207
+ #: src/Admin/Settings.php:1106
4208
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1106
4209
+ msgctxt "dhl"
4210
+ msgid "Select payment gateways to be excluded from showing preferred services."
4211
+ msgstr ""
4212
+
4213
+ #: src/Admin/Settings.php:1131
4214
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1131
4215
+ msgctxt "dhl"
4216
+ msgid "Let customers find a DHL location on a map."
4217
+ msgstr ""
4218
+
4219
+ #: src/Admin/Settings.php:1131
4220
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1131
4221
+ msgctxt "dhl"
4222
+ msgid "Enable this option to let your customers choose a pickup option from a map within the checkout. If this option is disabled a link to the DHL website is placed instead."
4223
+ msgstr ""
4224
+
4225
+ #: src/Admin/Settings.php:1138
4226
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1138
4227
+ msgctxt "dhl"
4228
+ msgid "Google Maps Key"
4229
+ msgstr ""
4230
+
4231
+ #: src/Admin/Settings.php:1142
4232
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1142
4233
+ msgctxt "dhl"
4234
+ msgid "To integrate a map within your checkout you'll need a valid API key for Google Maps. You may %s."
4235
+ msgstr ""
4236
+
4237
+ #: src/Admin/Settings.php:1142
4238
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1142
4239
+ msgctxt "dhl"
4240
+ msgid "retrieve a new one"
4241
+ msgstr ""
4242
+
4243
+ #: src/Admin/Settings.php:1147
4244
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1147
4245
+ msgctxt "dhl"
4246
+ msgid "Limit results"
4247
+ msgstr ""
4248
+
4249
+ #: src/Admin/Settings.php:1151
4250
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1151
4251
+ msgctxt "dhl"
4252
+ msgid "Limit the number of DHL locations shown on the map"
4253
+ msgstr ""
4254
+
4255
+ #: src/Admin/Settings.php:1168
4256
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1168
4257
+ msgctxt "dhl"
4258
+ msgid "Enable Internetmarke integration."
4259
+ msgstr ""
4260
+
4261
+ #: src/Admin/Settings.php:1175
4262
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1175
4263
+ msgctxt "dhl"
4264
+ msgid "Username"
4265
+ msgstr ""
4266
+
4267
+ #: src/Admin/Settings.php:1177
4268
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1177
4269
+ msgctxt "dhl"
4270
+ msgid "Your credentials to the <a href=\"%s\" target=\"_blank\">Portokasse</a>. Please test your credentials before connecting."
4271
+ msgstr ""
4272
+
4273
+ #: src/Admin/Settings.php:1184
4274
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1184
4275
+ msgctxt "dhl"
4276
+ msgid "Password"
4277
+ msgstr ""
4278
+
4279
+ #: src/Admin/Settings.php:1226
4280
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1226
4281
+ msgctxt "dhl"
4282
+ msgid "Please select your default shipping service for domestic shipments that you want to offer to your customers (you can always change this within each individual shipment afterwards)."
4283
+ msgstr ""
4284
+
4285
+ #: src/Admin/Settings.php:1232
4286
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1232
4287
+ msgctxt "dhl"
4288
+ msgid "EU Default Service"
4289
+ msgstr ""
4290
+
4291
+ #: src/Admin/Settings.php:1236
4292
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1236
4293
+ msgctxt "dhl"
4294
+ msgid "Please select your default shipping service for EU shipments that you want to offer to your customers."
4295
+ msgstr ""
4296
+
4297
+ #: src/Admin/Settings.php:1246
4298
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1246
4299
+ msgctxt "dhl"
4300
+ msgid "Please select your default shipping service for cross-border shipments that you want to offer to your customers."
4301
+ msgstr ""
4302
+
4303
+ #: src/Admin/Settings.php:1303
4304
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1303
4305
+ msgctxt "dhl"
4306
+ msgid "Default Format"
4307
+ msgstr ""
4308
+
4309
+ #: src/Admin/Settings.php:1306
4310
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1306
4311
+ msgctxt "dhl"
4312
+ msgid "Choose a print format which will be selected by default when creating labels. Manually <a href=\"%s\">refresh</a> available print formats to make sure the list is up-to-date."
4313
+ msgstr ""
4314
+
4315
+ #: src/Admin/Settings.php:1333
4316
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1333
4317
+ msgctxt "dhl"
4318
+ msgid "Portokasse"
4319
+ msgstr ""
4320
+
4321
+ #: src/Admin/Settings.php:1336
4322
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1336
4323
+ msgctxt "dhl"
4324
+ msgid "Balance"
4325
+ msgstr ""
4326
+
4327
+ #: src/Admin/Settings.php:1343
4328
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1343
4329
+ msgctxt "dhl"
4330
+ msgid "Charge (€)"
4331
+ msgstr ""
4332
+
4333
+ #: src/Admin/Settings.php:1353
4334
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1353
4335
+ msgctxt "dhl"
4336
+ msgid "Products"
4337
+ msgstr ""
4338
+
4339
+ #: src/Admin/Settings.php:1356
4340
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1356
4341
+ msgctxt "dhl"
4342
+ msgid "Available Products"
4343
+ msgstr ""
4344
+
4345
+ #: src/Admin/Settings.php:1359
4346
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1359
4347
+ msgctxt "dhl"
4348
+ msgid "Choose the products you want to be available for your shipments from the list above. Manually <a href=\"%s\">refresh</a> the product list to make sure it is up-to-date."
4349
+ msgstr ""
4350
+
4351
+ #: src/Admin/Settings.php:1384
4352
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1384
4353
+ msgctxt "dhl"
4354
+ msgid "API Error"
4355
+ msgstr ""
4356
+
4357
+ #: src/Admin/Settings.php:1425
4358
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1425
4359
+ msgctxt "dhl"
4360
+ msgid "Charge Portokasse"
4361
+ msgstr ""
4362
+
4363
+ #: src/Admin/Settings.php:1426
4364
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1426
4365
+ msgctxt "dhl"
4366
+ msgid "The minimum amount is %s"
4367
+ msgstr ""
4368
+
4369
+ #: src/Admin/Settings.php:1436
4370
+ #: src/Admin/Settings.php:1438
4371
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1436
4372
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1438
4373
+ msgctxt "dhl"
4374
+ msgid "Not yet a customer?"
4375
+ msgstr ""
4376
+
4377
+ #: src/Admin/Settings.php:1466
4378
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1466
4379
+ msgctxt "dhl"
4380
+ msgid "Internetmarke"
4381
+ msgstr ""
4382
+
4383
+ #: src/Admin/Settings.php:1467
4384
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1467
4385
+ msgctxt "dhl"
4386
+ msgid "Preferred Services"
4387
+ msgstr ""
4388
+
4389
+ #: src/Admin/Settings.php:1468
4390
+ #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1468
4391
+ msgctxt "dhl"
4392
+ msgid "Parcel Pickup"
4393
+ msgstr ""
4394
+
4395
+ #: src/Admin/Status.php:22
4396
+ #: packages/woocommerce-germanized-dhl/src/Admin/Status.php:22
4397
+ msgctxt "dhl"
4398
+ msgid "Ping Check"
4399
+ msgstr ""
4400
+
4401
+ #: src/Admin/Status.php:37
4402
+ #: packages/woocommerce-germanized-dhl/src/Admin/Status.php:37
4403
+ msgctxt "dhl"
4404
+ msgid "Unable to connect to the URL. Please make sure that your webhost allows outgoing connections to that specific URL."
4405
+ msgstr ""
4406
+
4407
+ #: src/Admin/Status.php:49
4408
+ #: packages/woocommerce-germanized-dhl/src/Admin/Status.php:49
4409
+ msgctxt "dhl"
4410
+ msgid "DHL & Post"
4411
+ msgstr ""
4412
+
4413
+ #: src/Api/FinderSoap.php:37
4414
+ #: packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php:37
4415
+ msgctxt "dhl"
4416
+ msgid "Sunday"
4417
+ msgstr ""
4418
+
4419
+ #: src/Api/FinderSoap.php:84
4420
+ #: packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php:84
4421
+ msgctxt "dhl"
4422
+ msgid "At least shipping city or zip is required."
4423
+ msgstr ""
4424
+
4425
+ #: src/Api/FinderSoap.php:112
4426
+ #: packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php:112
4427
+ msgctxt "dhl location name"
4428
+ msgid "%s %s"
4429
+ msgstr ""
4430
+
4431
+ #: src/Api/ImProductList.php:302
4432
+ #: packages/woocommerce-germanized-dhl/src/Api/ImProductList.php:302
4433
+ msgctxt "dhl"
4434
+ msgid "PRIO"
4435
+ msgstr ""
4436
+
4437
+ #: src/Api/ImProductList.php:303
4438
+ #: packages/woocommerce-germanized-dhl/src/Api/ImProductList.php:303
4439
+ msgctxt "dhl"
4440
+ msgid "Einschreiben (Einwurf)"
4441
+ msgstr ""
4442
+
4443
+ #: src/Api/ImProductList.php:304
4444
+ #: packages/woocommerce-germanized-dhl/src/Api/ImProductList.php:304
4445
+ msgctxt "dhl"
4446
+ msgid "Einschreiben"
4447
+ msgstr ""
4448
+
4449
+ #: src/Api/ImProductList.php:305
4450
+ #: packages/woocommerce-germanized-dhl/src/Api/ImProductList.php:305
4451
+ msgctxt "dhl"
4452
+ msgid "Einschreiben (Eigenhändig)"
4453
+ msgstr ""
4454
+
4455
+ #: src/Api/ImProductList.php:306
4456
+ #: packages/woocommerce-germanized-dhl/src/Api/ImProductList.php:306
4457
+ msgctxt "dhl"
4458
+ msgid "Alterssichtprüfung 16"
4459
+ msgstr ""
4460
+
4461
+ #: src/Api/ImProductList.php:307
4462
+ #: packages/woocommerce-germanized-dhl/src/Api/ImProductList.php:307
4463
+ msgctxt "dhl"
4464
+ msgid "Alterssichtprüfung 18"
4465
+ msgstr ""
4466
+
4467
+ #: src/Api/ImProductList.php:308
4468
+ #: packages/woocommerce-germanized-dhl/src/Api/ImProductList.php:308
4469
+ msgctxt "dhl"
4470
+ msgid "Zusatzentgelt MBf"
4471
+ msgstr ""
4472
+
4473
+ #: src/Api/ImProductList.php:309
4474
+ #: packages/woocommerce-germanized-dhl/src/Api/ImProductList.php:309
4475
+ msgctxt "dhl"
4476
+ msgid "Unterschrift"
4477
+ msgstr ""
4478
+
4479
+ #: src/Api/ImProductList.php:310
4480
+ #: packages/woocommerce-germanized-dhl/src/Api/ImProductList.php:310
4481
+ msgctxt "dhl"
4482
+ msgid "Tracked"
4483
+ msgstr ""
4484
+
4485
+ #: src/Api/ImWarenpostIntRest.php:43
4486
+ #: src/Api/ImWarenpostIntRest.php:52
4487
+ #: src/Api/Internetmarke.php:490
4488
+ #: packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:43
4489
+ #: packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:52
4490
+ #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:490
4491
+ msgctxt "dhl"
4492
+ msgid "Error while fetching label PDF"
4493
+ msgstr ""
4494
+
4495
+ #: src/Api/ImWarenpostIntRest.php:77
4496
+ #: packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:77
4497
+ msgctxt "dhl"
4498
+ msgid "Missing shipment"
4499
+ msgstr ""
4500
+
4501
+ #: src/Api/ImWarenpostIntRest.php:168
4502
+ #: packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:168
4503
+ msgctxt "dhl"
4504
+ msgid "Invalid API response"
4505
+ msgstr ""
4506
+
4507
+ #: src/Api/ImWarenpostIntRest.php:190
4508
+ #: packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:190
4509
+ msgctxt "dhl"
4510
+ msgid "Error while authenticating user."
4511
+ msgstr ""
4512
+
4513
+ #: src/Api/ImWarenpostIntRest.php:276
4514
+ #: packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:276
4515
+ msgctxt "dhl"
4516
+ msgid "Error during Warenpost International request."
4517
+ msgstr ""
4518
+
4519
+ #: src/Api/ImWarenpostIntRest.php:298
4520
+ #: packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:298
4521
+ msgctxt "dhl"
4522
+ msgid "Error during request: %s"
4523
+ msgstr ""
4524
+
4525
+ #: src/Api/Internetmarke.php:64
4526
+ #: src/Api/Soap.php:54
4527
+ #: src/Package.php:84
4528
+ #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:64
4529
+ #: packages/woocommerce-germanized-dhl/src/Api/Soap.php:54
4530
+ #: packages/woocommerce-germanized-dhl/src/Package.php:84
4531
+ msgctxt "dhl"
4532
+ msgid "To enable communication between your shop and DHL, the PHP <a href=\"%s\">SOAPClient</a> is required. Please contact your host and make sure that SOAPClient is <a href=\"%s\">installed</a>."
4533
+ msgstr ""
4534
+
4535
+ #: src/Api/Internetmarke.php:69
4536
+ #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:69
4537
+ msgctxt "dhl"
4538
+ msgid "Error while instantiating main Internetmarke API: %s"
4539
+ msgstr ""
4540
+
4541
+ #: src/Api/Internetmarke.php:73
4542
+ #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:73
4543
+ msgctxt "dhl"
4544
+ msgid "Internetmarke is disabled. Please enable Internetmarke."
4545
+ msgstr ""
4546
+
4547
+ #: src/Api/Internetmarke.php:84
4548
+ #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:84
4549
+ msgctxt "dhl"
4550
+ msgid "Wrong username or password"
4551
+ msgstr ""
4552
+
4553
+ #: src/Api/Internetmarke.php:252
4554
+ #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:252
4555
+ msgctxt "dhl"
4556
+ msgid "until %s"
4557
+ msgstr ""
4558
+
4559
+ #: src/Api/Internetmarke.php:337
4560
+ #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:337
4561
+ msgctxt "dhl"
4562
+ msgid "Length: %s"
4563
+ msgstr ""
4564
+
4565
+ #: src/Api/Internetmarke.php:341
4566
+ #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:341
4567
+ msgctxt "dhl"
4568
+ msgid "Width: %s"
4569
+ msgstr ""
4570
+
4571
+ #: src/Api/Internetmarke.php:345
4572
+ #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:345
4573
+ msgctxt "dhl"
4574
+ msgid "Height: %s"
4575
+ msgstr ""
4576
+
4577
+ #: src/Api/Internetmarke.php:349
4578
+ #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:349
4579
+ msgctxt "dhl"
4580
+ msgid "Weight: %s"
4581
+ msgstr ""
4582
+
4583
+ #: src/Api/Internetmarke.php:354
4584
+ #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:354
4585
+ msgctxt "dhl"
4586
+ msgid "Total"
4587
+ msgstr ""
4588
+
4589
+ #: src/Api/Internetmarke.php:544
4590
+ #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:544
4591
+ msgctxt "dhl"
4592
+ msgid "Could not refund post label: %s"
4593
+ msgstr ""
4594
+
4595
+ #: src/Api/Internetmarke.php:558
4596
+ #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:558
4597
+ msgctxt "dhl"
4598
+ msgid "Refund API could not be instantiated"
4599
+ msgstr ""
4600
+
4601
+ #: src/Api/Internetmarke.php:647
4602
+ #: src/Api/LabelSoap.php:379
4603
+ #: src/Api/ReturnRest.php:34
4604
+ #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:647
4605
+ #: packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php:379
4606
+ #: packages/woocommerce-germanized-dhl/src/Api/ReturnRest.php:34
4607
+ msgctxt "dhl"
4608
+ msgid "Could not fetch shipment %d."
4609
+ msgstr ""
4610
+
4611
+ #: src/Api/Internetmarke.php:687
4612
+ #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:687
4613
+ msgctxt "dhl"
4614
+ msgid "Error while generating shop order id."
4615
+ msgstr ""
4616
+
4617
+ #: src/Api/Internetmarke.php:697
4618
+ #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:697
4619
+ msgctxt "dhl"
4620
+ msgid "Error while trying to purchase the stamp. Please manually <a href=\"%s\">refresh</a> your product database and try again."
4621
+ msgstr ""
4622
+
4623
+ #: src/Api/Internetmarke.php:740
4624
+ #: src/Api/Internetmarke.php:747
4625
+ #: src/Api/Internetmarke.php:775
4626
+ #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:740
4627
+ #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:747
4628
+ #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:775
4629
+ msgctxt "dhl"
4630
+ msgid "Error while downloading the PDF stamp."
4631
+ msgstr ""
4632
+
4633
+ #: src/Api/Internetmarke.php:782
4634
+ #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:782
4635
+ msgctxt "dhl"
4636
+ msgid "Invalid stamp response."
4637
+ msgstr ""
4638
+
4639
+ #: src/Api/LabelSoap.php:99
4640
+ #: packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php:99
4641
+ msgctxt "dhl"
4642
+ msgid "Your DHL API credentials seem to be invalid. Please check your DHL settings."
4643
+ msgstr ""
4644
+
4645
+ #: src/Api/LabelSoap.php:103
4646
+ #: packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php:103
4647
+ msgctxt "dhl"
4648
+ msgid "Your products are missing data relevant for custom declarations. Please provide missing DHL fields (country of origin, HS code) in your product data > shipping tab."
4649
+ msgstr ""
4650
+
4651
+ #: src/Api/LabelSoap.php:113
4652
+ #: packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php:113
4653
+ msgctxt "dhl"
4654
+ msgid "There was an error contacting the DHL API: %s."
4655
+ msgstr ""
4656
+
4657
+ #: src/Api/LabelSoap.php:116
4658
+ #: packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php:116
4659
+ msgctxt "dhl"
4660
+ msgid "An error ocurred while contacting the DHL API. Please consider enabling the sandbox mode."
4661
+ msgstr ""
4662
+
4663
+ #: src/Api/LabelSoap.php:138
4664
+ #: packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php:138
4665
+ msgctxt "dhl"
4666
+ msgid "There was an error generating the label. Please try again or consider switching to sandbox mode."
4667
+ msgstr ""
4668
+
4669
+ #: src/Api/LabelSoap.php:241
4670
+ #: src/Api/ReturnRest.php:156
4671
+ #: packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php:241
4672
+ #: packages/woocommerce-germanized-dhl/src/Api/ReturnRest.php:156
4673
+ msgctxt "dhl"
4674
+ msgid "Error while creating and uploading the label"
4675
+ msgstr ""
4676
+
4677
+ #: src/Api/LabelSoap.php:327
4678
+ #: packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php:327
4679
+ msgctxt "dhl"
4680
+ msgid "Could not delete label - %s"
4681
+ msgstr ""
4682
+
4683
+ #: src/Api/LabelSoap.php:358
4684
+ #: packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php:358
4685
+ msgctxt "dhl"
4686
+ msgid "Could not create account number - no product number."
4687
+ msgstr ""
4688
+
4689
+ #: src/Api/LabelSoap.php:648
4690
+ #: packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php:648
4691
+ msgctxt "dhl"
4692
+ msgid "Only %s shipment items can be processed, your shipment has %s items."
4693
+ msgstr ""
4694
+
4695
+ #: src/Api/Paket.php:61
4696
+ #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:61
4697
+ msgctxt "dhl"
4698
+ msgid "Label API not available: %s"
4699
+ msgstr ""
4700
+
4701
+ #: src/Api/Paket.php:63
4702
+ #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:63
4703
+ msgctxt "dhl"
4704
+ msgid "Label API not available"
4705
+ msgstr ""
4706
+
4707
+ #: src/Api/Paket.php:80
4708
+ #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:80
4709
+ msgctxt "dhl"
4710
+ msgid "Parcel Finder API not available"
4711
+ msgstr ""
4712
+
4713
+ #: src/Api/Paket.php:96
4714
+ #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:96
4715
+ msgctxt "dhl"
4716
+ msgid "Return API not available"
4717
+ msgstr ""
4718
+
4719
+ #: src/Api/Paket.php:112
4720
+ #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:112
4721
+ msgctxt "dhl"
4722
+ msgid "Parcel API not available"
4723
+ msgstr ""
4724
+
4725
+ #: src/Api/Paket.php:258
4726
+ #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:258
4727
+ msgctxt "dhl"
4728
+ msgid "Mon"
4729
+ msgstr ""
4730
+
4731
+ #: src/Api/Paket.php:259
4732
+ #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:259
4733
+ msgctxt "dhl"
4734
+ msgid "Tue"
4735
+ msgstr ""
4736
+
4737
+ #: src/Api/Paket.php:260
4738
+ #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:260
4739
+ msgctxt "dhl"
4740
+ msgid "Wed"
4741
+ msgstr ""
4742
+
4743
+ #: src/Api/Paket.php:261
4744
+ #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:261
4745
+ msgctxt "dhl"
4746
+ msgid "Thu"
4747
+ msgstr ""
4748
+
4749
+ #: src/Api/Paket.php:262
4750
+ #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:262
4751
+ msgctxt "dhl"
4752
+ msgid "Fri"
4753
+ msgstr ""
4754
+
4755
+ #: src/Api/Paket.php:263
4756
+ #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:263
4757
+ msgctxt "dhl"
4758
+ msgid "Sat"
4759
+ msgstr ""
4760
+
4761
+ #: src/Api/Paket.php:264
4762
+ #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:264
4763
+ msgctxt "dhl"
4764
+ msgid "Sun"
4765
+ msgstr ""
4766
+
4767
+ #: src/Api/ParcelRest.php:25
4768
+ #: packages/woocommerce-germanized-dhl/src/Api/ParcelRest.php:25
4769
+ msgctxt "dhl"
4770
+ msgid "Please provide the receiver postnumber."
4771
+ msgstr ""
4772
+
4773
+ #: src/Api/ParcelRest.php:29
4774
+ #: packages/woocommerce-germanized-dhl/src/Api/ParcelRest.php:29
4775
+ msgctxt "dhl"
4776
+ msgid "Please set an account in the DHL shipping settings."
4777
+ msgstr ""
4778
+
4779
+ #: src/Api/ParcelRest.php:33
4780
+ #: packages/woocommerce-germanized-dhl/src/Api/ParcelRest.php:33
4781
+ msgctxt "dhl"
4782
+ msgid "Please provide the shipment start date."
4783
+ msgstr ""
4784
+
4785
+ #: src/Api/Rest.php:101
4786
+ #: packages/woocommerce-germanized-dhl/src/Api/Rest.php:101
4787
+ msgctxt "dhl"
4788
+ msgid "400 - "
4789
+ msgstr ""
4790
+
4791
+ #: src/Api/Rest.php:104
4792
+ #: packages/woocommerce-germanized-dhl/src/Api/Rest.php:104
4793
+ msgctxt "dhl"
4794
+ msgid "401 - Unauthorized Access - Invalid token or Authentication Header parameter"
4795
+ msgstr ""
4796
+
4797
+ #: src/Api/Rest.php:107
4798
+ #: packages/woocommerce-germanized-dhl/src/Api/Rest.php:107
4799
+ msgctxt "dhl"
4800
+ msgid "408 - Request Timeout"
4801
+ msgstr ""
4802
+
4803
+ #: src/Api/Rest.php:110
4804
+ #: packages/woocommerce-germanized-dhl/src/Api/Rest.php:110
4805
+ msgctxt "dhl"
4806
+ msgid "429 - Too many requests in given amount of time"
4807
+ msgstr ""
4808
+
4809
+ #: src/Api/Rest.php:113
4810
+ #: packages/woocommerce-germanized-dhl/src/Api/Rest.php:113
4811
+ msgctxt "dhl"
4812
+ msgid "503 - Service Unavailable"
4813
+ msgstr ""
4814
+
4815
+ #: src/Api/Rest.php:117
4816
+ #: packages/woocommerce-germanized-dhl/src/Api/Rest.php:117
4817
+ msgctxt "dhl"
4818
+ msgid "GET error or timeout occured. Please try again later."
4819
+ msgstr ""
4820
+
4821
+ #: src/Api/Rest.php:170
4822
+ #: packages/woocommerce-germanized-dhl/src/Api/Rest.php:170
4823
+ msgctxt "dhl"
4824
+ msgid "POST error or timeout occured. Please try again later."
4825
+ msgstr ""
4826
+
4827
+ #: src/DataStores/Label.php:316
4828
+ #: packages/woocommerce-germanized-dhl/src/DataStores/Label.php:316
4829
+ msgctxt "dhl"
4830
+ msgid "Invalid label."
4831
+ msgstr ""
4832
+
4833
+ #: src/Order.php:299
4834
+ #: src/SimpleLabel.php:157
4835
+ #: packages/woocommerce-germanized-dhl/src/Order.php:299
4836
+ #: packages/woocommerce-germanized-dhl/src/SimpleLabel.php:157
4837
+ msgctxt "dhl time-span"
4838
+ msgid "%s-%s"
4839
+ msgstr ""
4840
+
4841
+ #: src/Package.php:274
4842
+ #: packages/woocommerce-germanized-dhl/src/Package.php:274
4843
+ msgctxt "dhl"
4844
+ msgid "Please check the street field and make sure to provide a valid street number."
4845
+ msgstr ""
4846
+
4847
+ #: src/Package.php:994
4848
+ #: packages/woocommerce-germanized-dhl/src/Package.php:994
4849
+ msgctxt "dhl"
4850
+ msgid "Germany"
4851
+ msgstr ""
4852
+
4853
+ #: src/ParcelLocator.php:92
4854
+ #: src/ParcelLocator.php:863
4855
+ #: src/ParcelLocator.php:892
4856
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:92
4857
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:863
4858
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:892
4859
+ msgctxt "dhl"
4860
+ msgid "Address Type"
4861
+ msgstr ""
4862
+
4863
+ #: src/ParcelLocator.php:95
4864
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:95
4865
+ msgctxt "dhl"
4866
+ msgid "Select whether delivery to DHL locations should be enabled."
4867
+ msgstr ""
4868
+
4869
+ #: src/ParcelLocator.php:100
4870
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:100
4871
+ msgctxt "dhl"
4872
+ msgid "Postnumber"
4873
+ msgstr ""
4874
+
4875
+ #: src/ParcelLocator.php:102
4876
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:102
4877
+ msgctxt "dhl"
4878
+ msgid "In case delivery to packstation is selected please fill in the corresponding DHL post number."
4879
+ msgstr ""
4880
+
4881
+ #: src/ParcelLocator.php:188
4882
+ #: src/ParcelLocator.php:579
4883
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:188
4884
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:579
4885
+ msgctxt "dhl"
4886
+ msgid "Invalid address type."
4887
+ msgstr ""
4888
+
4889
+ #: src/ParcelLocator.php:651
4890
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:651
4891
+ msgctxt "dhl"
4892
+ msgid "Sorry, but delivery to packstation is not available."
4893
+ msgstr ""
4894
+
4895
+ #: src/ParcelLocator.php:656
4896
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:656
4897
+ msgctxt "dhl"
4898
+ msgid "Sorry, but delivery to parcel shops is not available."
4899
+ msgstr ""
4900
+
4901
+ #: src/ParcelLocator.php:660
4902
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:660
4903
+ msgctxt "dhl"
4904
+ msgid "Sorry, but delivery to post offices is not available."
4905
+ msgstr ""
4906
+
4907
+ #: src/ParcelLocator.php:667
4908
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:667
4909
+ msgctxt "dhl"
4910
+ msgid "Please indicate shipment to %s by one of the following values: %s."
4911
+ msgstr ""
4912
+
4913
+ #: src/ParcelLocator.php:675
4914
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:675
4915
+ msgctxt "dhl"
4916
+ msgid "Your DHL customer number (Post number) is not valid. Please check your number."
4917
+ msgstr ""
4918
+
4919
+ #: src/ParcelLocator.php:678
4920
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:678
4921
+ msgctxt "dhl"
4922
+ msgid "Your DHL customer number (Post number) is needed to ship to a packstation."
4923
+ msgstr ""
4924
+
4925
+ #: src/ParcelLocator.php:727
4926
+ #: src/ParcelLocator.php:854
4927
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:727
4928
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:854
4929
+ msgctxt "dhl"
4930
+ msgid "Branch"
4931
+ msgstr ""
4932
+
4933
+ #: src/ParcelLocator.php:728
4934
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:728
4935
+ msgctxt "dhl"
4936
+ msgid "Postnumber "
4937
+ msgstr ""
4938
+
4939
+ #: src/ParcelLocator.php:829
4940
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:829
4941
+ msgctxt "dhl"
4942
+ msgid "e.g. %s 456"
4943
+ msgstr ""
4944
+
4945
+ #: src/ParcelLocator.php:854
4946
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:854
4947
+ msgctxt "dhl"
4948
+ msgid "Branches"
4949
+ msgstr ""
4950
+
4951
+ #: src/ParcelLocator.php:870
4952
+ #: src/ParcelLocator.php:903
4953
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:870
4954
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:903
4955
+ msgctxt "dhl"
4956
+ msgid "DHL customer number (Post number)"
4957
+ msgstr ""
4958
+
4959
+ #: src/ParcelLocator.php:880
4960
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:880
4961
+ msgctxt "dhl"
4962
+ msgid "Regular Address"
4963
+ msgstr ""
4964
+
4965
+ #: src/ParcelLocator.php:907
4966
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:907
4967
+ msgctxt "dhl"
4968
+ msgid "Not yet a DHL customer?"
4969
+ msgstr ""
4970
+
4971
+ #: src/ParcelLocator.php:907
4972
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:907
4973
+ msgctxt "dhl"
4974
+ msgid "Register now"
4975
+ msgstr ""
4976
+
4977
+ #: src/ParcelLocator.php:956
4978
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:956
4979
+ msgctxt "dhl"
4980
+ msgid "Search %s"
4981
+ msgstr ""
4982
+
4983
+ #: src/ParcelLocator.php:1061
4984
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:1061
4985
+ msgctxt "dhl"
4986
+ msgid "No DHL locations found"
4987
+ msgstr ""
4988
+
4989
+ #: src/ParcelLocator.php:1076
4990
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:1076
4991
+ msgctxt "dhl"
4992
+ msgid "There was an error while communicating with DHL. Please manually find a %s or %s."
4993
+ msgstr ""
4994
+
4995
+ #: src/ParcelLocator.php:1076
4996
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:1076
4997
+ msgctxt "dhl"
4998
+ msgid "DHL location"
4999
+ msgstr ""
5000
+
5001
+ #: src/ParcelLocator.php:1076
5002
+ #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:1076
5003
+ msgctxt "dhl"
5004
+ msgid "retry"
5005
+ msgstr ""
5006
+
5007
+ #: src/ParcelServices.php:135
5008
+ #: packages/woocommerce-germanized-dhl/src/ParcelServices.php:135
5009
+ msgctxt "dhl"
5010
+ msgid "DHL Preferred Day"
5011
+ msgstr ""
5012
+
5013
+ #: src/ParcelServices.php:278
5014
+ #: packages/woocommerce-germanized-dhl/src/ParcelServices.php:278
5015
+ msgctxt "dhl"
5016
+ msgid "Sorry, but the preferred day you have chosen is no longer available."
5017
+ msgstr ""
5018
+
5019
+ #: src/ParcelServices.php:301
5020
+ #: packages/woocommerce-germanized-dhl/src/ParcelServices.php:301
5021
+ msgctxt "dhl"
5022
+ msgid "Please choose a preferred location."
5023
+ msgstr ""
5024
+
5025
+ #: src/ParcelServices.php:313
5026
+ #: packages/woocommerce-germanized-dhl/src/ParcelServices.php:313
5027
+ msgctxt "dhl"
5028
+ msgid "Please choose name and address of your preferred neighbor."
5029
+ msgstr ""
5030
+
5031
+ #: src/ReturnLabel.php:125
5032
+ #: src/SimpleLabel.php:86
5033
+ #: packages/woocommerce-germanized-dhl/src/ReturnLabel.php:125
5034
+ #: packages/woocommerce-germanized-dhl/src/SimpleLabel.php:86
5035
+ msgctxt "dhl full name"
5036
+ msgid "%1$s"
5037
+ msgstr ""
5038
+
5039
+ #: src/ShippingProvider/DeutschePost.php:31
5040
+ #: packages/woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:31
5041
+ msgctxt "dhl"
5042
+ msgid "Deutsche Post"
5043
+ msgstr ""
5044
+
5045
+ #: src/ShippingProvider/DeutschePost.php:39
5046
+ #: packages/woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:39
5047
+ msgctxt "dhl"
5048
+ msgid "Integration for products of the Deutsche Post through Internetmarke."
5049
+ msgstr ""
5050
+
5051
+ #: src/ShippingProvider/DHL.php:47
5052
+ #: packages/woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:47
5053
+ msgctxt "dhl"
5054
+ msgid "Complete DHL integration supporting labels, preferred services and packstation delivery."
5055
+ msgstr ""
5056
+
5057
+ #: templates/checkout/dhl/parcel-finder-result.php:31
5058
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:31
5059
+ msgctxt "dhl"
5060
+ msgid "Opening Times"
5061
+ msgstr ""
5062
+
5063
+ #: templates/checkout/dhl/parcel-finder-result.php:39
5064
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:39
5065
+ msgctxt "dhl"
5066
+ msgid "Services"
5067
+ msgstr ""
5068
+
5069
+ #: templates/checkout/dhl/parcel-finder-result.php:41
5070
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:41
5071
+ msgctxt "dhl"
5072
+ msgid "Handicap Accessible"
5073
+ msgstr ""
5074
+
5075
+ #: templates/checkout/dhl/parcel-finder-result.php:41
5076
+ #: templates/checkout/dhl/parcel-finder-result.php:42
5077
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:41
5078
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:42
5079
+ msgctxt "dhl"
5080
+ msgid "Yes"
5081
+ msgstr ""
5082
+
5083
+ #: templates/checkout/dhl/parcel-finder-result.php:41
5084
+ #: templates/checkout/dhl/parcel-finder-result.php:42
5085
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:41
5086
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:42
5087
+ msgctxt "dhl"
5088
+ msgid "No"
5089
+ msgstr ""
5090
+
5091
+ #: templates/checkout/dhl/parcel-finder-result.php:42
5092
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:42
5093
+ msgctxt "dhl"
5094
+ msgid "Parking"
5095
+ msgstr ""
5096
+
5097
+ #: templates/checkout/dhl/parcel-finder-result.php:47
5098
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:47
5099
+ msgctxt "dhl"
5100
+ msgid "Select "
5101
+ msgstr ""
5102
+
5103
+ #: templates/checkout/dhl/parcel-finder.php:33
5104
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:33
5105
+ msgctxt "dhl"
5106
+ msgid "Address"
5107
+ msgstr ""
5108
+
5109
+ #: templates/checkout/dhl/parcel-finder.php:44
5110
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:44
5111
+ msgctxt "dhl"
5112
+ msgid "Parcelshop"
5113
+ msgstr ""
5114
+
5115
+ #: templates/checkout/dhl/parcel-finder.php:55
5116
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:55
5117
+ msgctxt "dhl"
5118
+ msgid "Search"
5119
+ msgstr ""
5120
+
5121
+ #: templates/checkout/dhl/preferred-services.php:27
5122
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:27
5123
+ msgctxt "dhl"
5124
+ msgid "DHL Preferred Delivery. Delivered just as you wish."
5125
+ msgstr ""
5126
+
5127
+ #: templates/checkout/dhl/preferred-services.php:30
5128
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:30
5129
+ msgctxt "dhl"
5130
+ msgid ""
5131
+ "Thanks to the flexible recipient services of DHL Preferred Delivery, you decide\n"
5132
+ "when and where you want to receive your parcels.<br/>\n"
5133
+ "Please choose your preferred delivery option."
5134
+ msgstr ""
5135
+
5136
+ #: templates/checkout/dhl/preferred-services.php:38
5137
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:38
5138
+ msgctxt "dhl"
5139
+ msgid "Preferred day: Delivery at your preferred day."
5140
+ msgstr ""
5141
+
5142
+ #: templates/checkout/dhl/preferred-services.php:38
5143
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:38
5144
+ msgctxt "dhl"
5145
+ msgid "Choose one of the displayed days as your preferred day for your parcel delivery. Other days are not possible due to delivery processes."
5146
+ msgstr ""
5147
+
5148
+ #: templates/checkout/dhl/preferred-services.php:42
5149
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:42
5150
+ msgctxt "dhl"
5151
+ msgid "There is a surcharge of %s incl. VAT for this service.*"
5152
+ msgstr ""
5153
+
5154
+ #: templates/checkout/dhl/preferred-services.php:65
5155
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:65
5156
+ msgctxt "dhl"
5157
+ msgid "Preferred location or neighbor"
5158
+ msgstr ""
5159
+
5160
+ #: templates/checkout/dhl/preferred-services.php:71
5161
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:71
5162
+ msgctxt "dhl location context"
5163
+ msgid "None"
5164
+ msgstr ""
5165
+
5166
+ #: templates/checkout/dhl/preferred-services.php:76
5167
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:76
5168
+ msgctxt "dhl"
5169
+ msgid "Location"
5170
+ msgstr ""
5171
+
5172
+ #: templates/checkout/dhl/preferred-services.php:82
5173
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:82
5174
+ msgctxt "dhl"
5175
+ msgid "Neighbor"
5176
+ msgstr ""
5177
+
5178
+ #: templates/checkout/dhl/preferred-services.php:89
5179
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:89
5180
+ msgctxt "dhl"
5181
+ msgid "Preferred location: Delivery to your preferred drop-off location"
5182
+ msgstr ""
5183
+
5184
+ #: templates/checkout/dhl/preferred-services.php:89
5185
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:89
5186
+ msgctxt "dhl"
5187
+ msgid "Choose a weather-protected and non-visible place on your property, where we can deposit the parcel in your absence."
5188
+ msgstr ""
5189
+
5190
+ #: templates/checkout/dhl/preferred-services.php:91
5191
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:91
5192
+ msgctxt "dhl"
5193
+ msgid "e.g. Garage, Terrace"
5194
+ msgstr ""
5195
+
5196
+ #: templates/checkout/dhl/preferred-services.php:98
5197
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:98
5198
+ msgctxt "dhl"
5199
+ msgid "Preferred neighbour: Delivery to a neighbour of your choice"
5200
+ msgstr ""
5201
+
5202
+ #: templates/checkout/dhl/preferred-services.php:98
5203
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:98
5204
+ msgctxt "dhl"
5205
+ msgid "Determine a person in your immediate neighborhood whom we can hand out your parcel in your absence. This person should live in the same building, directly opposite or next door."
5206
+ msgstr ""
5207
+
5208
+ #: templates/checkout/dhl/preferred-services.php:100
5209
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:100
5210
+ msgctxt "dhl"
5211
+ msgid "First name, last name of neighbor"
5212
+ msgstr ""
5213
+
5214
+ #: templates/checkout/dhl/preferred-services.php:101
5215
+ #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:101
5216
+ msgctxt "dhl"
5217
+ msgid "Street, number, postal code, city"
5218
+ msgstr ""
5219
+
5220
+ #. translators: 1: composer command. 2: plugin directory
5221
+ #: woocommerce-germanized-dhl.php:40
5222
+ #: woocommerce-germanized-dhl.php:58
5223
+ #: packages/woocommerce-germanized-dhl/woocommerce-germanized-dhl.php:40
5224
+ #: packages/woocommerce-germanized-dhl/woocommerce-germanized-dhl.php:58
5225
+ msgctxt "dhl"
5226
+ msgid "Your installation of the Germanized DHL feature plugin is incomplete. Please run %1$s within the %2$s directory."
5227
+ msgstr ""
5228
+
5229
+ #. Plugin Name of the plugin
5230
+ #: includes/admin/class-wc-gzd-admin.php:228
5231
+ msgid "Germanized for WooCommerce"
5232
+ msgstr ""
5233
+
5234
+ #. Plugin URI of the plugin
5235
+ msgid "https://www.vendidero.de/woocommerce-germanized"
5236
+ msgstr ""
5237
+
5238
+ #. Description of the plugin
5239
+ msgid "Germanized for WooCommerce extends WooCommerce to become a legally compliant store in the german market."
5240
+ msgstr ""
5241
+
5242
+ #: i18n/labels.php:18
5243
+ msgid "RRP: "
5244
+ msgstr ""
5245
+
5246
+ #: i18n/labels.php:19
5247
+ msgid "New Price: "
5248
+ msgstr ""
5249
+
5250
+ #: i18n/labels.php:20
5251
+ msgid "Old Price: "
5252
+ msgstr ""
5253
+
5254
+ #: i18n/units.php:18
5255
+ msgid "kg"
5256
+ msgstr ""
5257
+
5258
+ #: i18n/units.php:19
5259
+ msgid "g"
5260
+ msgstr ""
5261
+
5262
+ #: i18n/units.php:20
5263
+ msgid "lbs"
5264
+ msgstr ""
5265
+
5266
+ #: i18n/units.php:21
5267
+ msgid "oz"
5268
+ msgstr ""
5269
+
5270
+ #: i18n/units.php:22
5271
+ msgid "m"
5272
+ msgstr ""
5273
+
5274
+ #: i18n/units.php:23
5275
+ msgid "cm"
5276
+ msgstr ""
5277
+
5278
+ #: i18n/units.php:24
5279
+ msgid "mm"
5280
+ msgstr ""
5281
+
5282
+ #: i18n/units.php:25
5283
+ msgid "in"
5284
+ msgstr ""
5285
+
5286
+ #: i18n/units.php:26
5287
+ msgid "yd"
5288
+ msgstr ""
5289
+
5290
+ #: i18n/units.php:27
5291
+ msgid "ml"
5292
+ msgstr ""
5293
+
5294
+ #: i18n/units.php:28
5295
+ msgid "l"
5296
+ msgstr ""
5297
+
5298
+ #: includes/abstracts/abstract-wc-gzd-product.php:549
5299
+ #: includes/abstracts/abstract-wc-gzd-product.php:559
5300
+ #: includes/wc-gzd-core-functions.php:449
5301
+ #: includes/wc-gzd-template-functions.php:546
5302
+ #: includes/wc-gzd-template-functions.php:554
5303
+ msgid "incl. VAT"
5304
+ msgstr ""
5305
+
5306
+ #: includes/abstracts/abstract-wc-gzd-product.php:549
5307
+ msgid "excl. VAT"
5308
+ msgstr ""
5309
+
5310
+ #: includes/abstracts/abstract-wc-gzd-product.php:551
5311
+ #: includes/wc-gzd-core-functions.php:449
5312
+ msgid "incl. %s%% VAT"
5313
+ msgstr ""
5314
+
5315
+ #: includes/abstracts/abstract-wc-gzd-product.php:551
5316
+ msgid "excl. %s%% VAT"
5317
+ msgstr ""
5318
+
5319
+ #: includes/admin/class-wc-gzd-admin-customer.php:52
5320
+ msgid "Double opt in"
5321
+ msgstr ""
5322
+
5323
+ #: includes/admin/class-wc-gzd-admin-customer.php:58
5324
+ msgid "Yes, customer opted in"
5325
+ msgstr ""
5326
+
5327
+ #: includes/admin/class-wc-gzd-admin-customer.php:62
5328
+ msgid "Resend activation link"
5329
+ msgstr ""
5330
+
5331
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:63
5332
+ msgid "Please choose a page as your privacy policy first."
5333
+ msgstr ""
5334
+
5335
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:63
5336
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:190
5337
+ msgid "Found"
5338
+ msgstr ""
5339
+
5340
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:63
5341
+ msgid "Not found within label."
5342
+ msgstr ""
5343
+
5344
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:63
5345
+ msgid "Adjust label"
5346
+ msgstr ""
5347
+
5348
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:69
5349
+ msgid "Global minimum age"
5350
+ msgstr ""
5351
+
5352
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:73
5353
+ msgid "Choose a global minimum age necessary to buy your products. Can be overridden by product specific settings."
5354
+ msgstr ""
5355
+
5356
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:84
5357
+ msgid "e.g. include your privacy policy: {data_security_page}Privacy Policy{/data_security_page}"
5358
+ msgstr ""
5359
+
5360
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:90
5361
+ msgid "Policy Status"
5362
+ msgstr ""
5363
+
5364
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:93
5365
+ msgid "This option shows whether you have already embedded your privacy policy within your legal text."
5366
+ msgstr ""
5367
+
5368
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:104
5369
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:129
5370
+ msgid "Confirmation"
5371
+ msgstr ""
5372
+
5373
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:108
5374
+ msgid "This text will be appended to your order processing email if the order contains service products."
5375
+ msgstr ""
5376
+
5377
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:109
5378
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:134
5379
+ msgid "To insert a link to your revocation page use the following placeholder: %s"
5380
+ msgstr ""
5381
+
5382
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:110
5383
+ #: includes/updates/woocommerce-gzd-update-2.0.1.php:33
5384
+ msgid "Furthermore you have expressly agreed to start the performance of the contract for services before expiry of the withdrawal period. I have noted to lose my {link}right of withdrawal{/link} with the beginning of the performance of the contract."
5385
+ msgstr ""
5386
+
5387
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:122
5388
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:427
5389
+ msgid "Downloadable Product"
5390
+ msgstr ""
5391
+
5392
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:123
5393
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:428
5394
+ msgid "Virtual Product"
5395
+ msgstr ""
5396
+
5397
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:124
5398
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:46
5399
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:168
5400
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:429
5401
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:146
5402
+ msgid "Service"
5403
+ msgstr ""
5404
+
5405
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:133
5406
+ msgid "This text will be appended to your order processing email if the order contains digital products."
5407
+ msgstr ""
5408
+
5409
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:135
5410
+ #: includes/updates/woocommerce-gzd-update-2.0.1.php:27
5411
+ msgid "Furthermore you have expressly agreed to start the performance of the contract for digital items (e.g. downloads) before expiry of the withdrawal period. I have noted to lose my {link}right of withdrawal{/link} with the beginning of the performance of the contract."
5412
+ msgstr ""
5413
+
5414
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:138
5415
+ msgid "Digital Product types"
5416
+ msgstr ""
5417
+
5418
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:139
5419
+ msgid "Select product types for which the loss of recission notice is shown. Product types like \"simple product\" may be redudant because they include virtual and downloadable products."
5420
+ msgstr ""
5421
+
5422
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:158
5423
+ msgid "Show checkbox"
5424
+ msgstr ""
5425
+
5426
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:159
5427
+ msgid "Choose whether you like to always show the parcel delivery checkbox or do only show for certain shipping methods."
5428
+ msgstr ""
5429
+
5430
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:164
5431
+ msgid "For certain shipping methods."
5432
+ msgstr ""
5433
+
5434
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:165
5435
+ msgid "Always show."
5436
+ msgstr ""
5437
+
5438
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:170
5439
+ #: includes/admin/class-wc-gzd-admin-status.php:50
5440
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:114
5441
+ msgid "Shipping Methods"
5442
+ msgstr ""
5443
+
5444
+ #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:171
5445
+ msgid "Select shipping methods which are applicable for the Opt-In Checkbox."
5446
+ msgstr ""
5447
+
5448
+ #: includes/admin/class-wc-gzd-admin-notices.php:114
5449
+ msgid "<strong>Be aware!</strong> This update is not compatible with your current Germanized Pro version. Please check for updates (%s) before updating Germanized to prevent compatibility issues."
5450
+ msgstr ""
5451
+
5452
+ #: includes/admin/class-wc-gzd-admin-product-categories.php:58
5453
+ #: includes/admin/class-wc-gzd-admin-product-categories.php:79
5454
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:183
5455
+ msgid "Age Verification"
5456
+ msgstr ""
5457
+
5458
+ #: includes/admin/class-wc-gzd-admin-product-categories.php:60
5459
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:63
5460
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:73
5461
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:142
5462
+ msgid "Same as Parent"
5463
+ msgstr ""
5464
+
5465
+ #: includes/admin/class-wc-gzd-admin-product-categories.php:82
5466
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:436
5467
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:532
5468
+ msgid "None"
5469
+ msgstr ""
5470
+
5471
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:66
5472
+ msgid "Germanize"
5473
+ msgstr ""
5474
+
5475
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:73
5476
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:153
5477
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:79
5478
+ #: woocommerce-germanized.php:783
5479
+ msgid "Settings"
5480
+ msgstr ""
5481
+
5482
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:80
5483
+ #: includes/admin/views/setup/first-steps.php:9
5484
+ msgid "First Steps"
5485
+ msgstr ""
5486
+
5487
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:84
5488
+ #: includes/admin/settings/views/html-admin-settings-tabs.php:17
5489
+ msgid "Start tutorial"
5490
+ msgstr ""
5491
+
5492
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:92
5493
+ #: includes/admin/views/setup/dhl.php:10
5494
+ msgid "DHL"
5495
+ msgstr ""
5496
+
5497
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:100
5498
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:112
5499
+ msgid "Import settings"
5500
+ msgstr ""
5501
+
5502
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:104
5503
+ #: includes/admin/views/setup/internetmarke.php:10
5504
+ msgid "Internetmarke"
5505
+ msgstr ""
5506
+
5507
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:143
5508
+ msgid "Pages"
5509
+ msgstr ""
5510
+
5511
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:144
5512
+ msgid "Create legal pages placeholders e.g. terms & conditions."
5513
+ msgstr ""
5514
+
5515
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:154
5516
+ msgid "Germanize WooCommerce settings (e.g. currency, tax display)."
5517
+ msgstr ""
5518
+
5519
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:161
5520
+ msgctxt "install"
5521
+ msgid "VAT"
5522
+ msgstr ""
5523
+
5524
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:162
5525
+ msgid "Let Germanized insert EU VAT rates."
5526
+ msgstr ""
5527
+
5528
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:168
5529
+ msgctxt "install"
5530
+ msgid "Virtual VAT"
5531
+ msgstr ""
5532
+
5533
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:169
5534
+ msgid "Let Germanized insert virtual EU VAT rates."
5535
+ msgstr ""
5536
+
5537
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:180
5538
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:202
5539
+ #: includes/admin/views/html-page-status-germanized.php:43
5540
+ msgid "Small-Enterprise-Regulation"
5541
+ msgstr ""
5542
+
5543
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:181
5544
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:203
5545
+ msgid "VAT based on &#167;19 UStG"
5546
+ msgstr ""
5547
+
5548
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:181
5549
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:203
5550
+ msgid "Enable this option if you have chosen to apply to <a href=\"%s\" target=\"_blank\">&#167;19 UStG</a>."
5551
+ msgstr ""
5552
+
5553
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:187
5554
+ #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:21
5555
+ msgid "Double Opt In"
5556
+ msgstr ""
5557
+
5558
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:188
5559
+ #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:38
5560
+ msgid "Enable customer double opt in during registration."
5561
+ msgstr ""
5562
+
5563
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:188
5564
+ msgid "Sends an email to the customer after registration to verify his account. <strong>By default unactivated customers will be deleted after 7 days</strong>. You may adjust your DOI <a href=\"%s\" target=\"_blank\">settings</a> accordingly."
5565
+ msgstr ""
5566
+
5567
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:208
5568
+ msgid "Setup"
5569
+ msgstr ""
5570
+
5571
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:306
5572
+ msgid "Germanized &rsaquo; Setup Wizard"
5573
+ msgstr ""
5574
+
5575
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:375
5576
+ msgid "Skip Step"
5577
+ msgstr ""
5578
+
5579
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:379
5580
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:381
5581
+ msgid "Continue"
5582
+ msgstr ""
5583
+
5584
+ #: includes/admin/class-wc-gzd-admin-setup-wizard.php:387
5585
+ msgid "Return to WP Admin"
5586
+ msgstr ""
5587
+
5588
+ #: includes/admin/class-wc-gzd-admin-status.php:45
5589
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:53
5590
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:136
5591
+ #: includes/wc-gzd-core-functions.php:240
5592
+ msgid "Terms & Conditions"
5593
+ msgstr ""
5594
+
5595
+ #: includes/admin/class-wc-gzd-admin-status.php:46
5596
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:63
5597
+ msgid "Power of Revocation"
5598
+ msgstr ""
5599
+
5600
+ #: includes/admin/class-wc-gzd-admin-status.php:47
5601
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:84
5602
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:136
5603
+ #: includes/wc-gzd-core-functions.php:242
5604
+ msgid "Imprint"
5605
+ msgstr ""
5606
+
5607
+ #: includes/admin/class-wc-gzd-admin-status.php:48
5608
+ msgid "Data Security Statement"
5609
+ msgstr ""
5610
+
5611
+ #: includes/admin/class-wc-gzd-admin-status.php:49
5612
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:104
5613
+ #: includes/wc-gzd-core-functions.php:247
5614
+ msgid "Payment Methods"
5615
+ msgstr ""
5616
+
5617
+ #: includes/admin/class-wc-gzd-admin-welcome.php:52
5618
+ msgid "About Germanized"
5619
+ msgstr ""
5620
+
5621
+ #: includes/admin/class-wc-gzd-admin-welcome.php:53
5622
+ msgid "Welcome to Germanized"
5623
+ msgstr ""
5624
+
5625
+ #: includes/admin/class-wc-gzd-admin-welcome.php:290
5626
+ msgid "Go to Germanized Settings"
5627
+ msgstr ""
5628
+
5629
+ #: includes/admin/class-wc-gzd-admin.php:34
5630
+ #: includes/admin/class-wc-gzd-admin.php:43
5631
+ #: includes/class-wc-gzd-checkout.php:26
5632
+ #: includes/class-wc-gzd-checkout.php:35
5633
+ #: includes/class-wc-gzd-coupon-helper.php:24
5634
+ #: includes/class-wc-gzd-coupon-helper.php:33
5635
+ #: includes/class-wc-gzd-customer-helper.php:21
5636
+ #: includes/class-wc-gzd-customer-helper.php:30
5637
+ #: includes/class-wc-gzd-dependencies.php:56
5638
+ #: includes/class-wc-gzd-dependencies.php:65
5639
+ #: includes/class-wc-gzd-hook-priorities.php:35
5640
+ #: includes/class-wc-gzd-hook-priorities.php:44
5641
+ #: includes/class-wc-gzd-order-helper.php:21
5642
+ #: includes/class-wc-gzd-order-helper.php:30
5643
+ #: includes/class-wc-gzd-product-attribute-helper.php:21
5644
+ #: includes/class-wc-gzd-product-attribute-helper.php:30
5645
+ #: includes/export/class-wc-gzd-product-export.php:23
5646
+ #: includes/export/class-wc-gzd-product-export.php:32
5647
+ #: includes/import/class-wc-gzd-product-import.php:23
5648
+ #: includes/import/class-wc-gzd-product-import.php:32
5649
+ #: woocommerce-germanized.php:125
5650
+ #: woocommerce-germanized.php:134
5651
+ msgid "Cheatin&#8217; huh?"
5652
+ msgstr ""
5653
+
5654
+ #: includes/admin/class-wc-gzd-admin.php:114
5655
+ #: includes/admin/class-wc-gzd-admin.php:148
5656
+ msgctxt "dhl"
5657
+ msgid "Action failed. Please refresh the page and retry."
5658
+ msgstr ""
5659
+
5660
+ #: includes/admin/class-wc-gzd-admin.php:118
5661
+ #: includes/admin/class-wc-gzd-admin.php:152
5662
+ msgctxt "dhl"
5663
+ msgid "You don't have permission to do this."
5664
+ msgstr ""
5665
+
5666
+ #: includes/admin/class-wc-gzd-admin.php:338
5667
+ #: includes/admin/settings/views/html-admin-settings-tabs.php:45
5668
+ #: includes/admin/settings/views/html-admin-settings-tabs.php:58
5669
+ msgid "Yes"
5670
+ msgstr ""
5671
+
5672
+ #: includes/admin/class-wc-gzd-admin.php:338
5673
+ #: includes/admin/settings/views/html-admin-settings-tabs.php:58
5674
+ msgid "No"
5675
+ msgstr ""
5676
+
5677
+ #: includes/admin/class-wc-gzd-admin.php:410
5678
+ msgid "Paid for order notification manually sent to customer."
5679
+ msgstr ""
5680
+
5681
+ #: includes/admin/class-wc-gzd-admin.php:430
5682
+ msgid "Order confirmation manually sent to customer."
5683
+ msgstr ""
5684
+
5685
+ #: includes/admin/class-wc-gzd-admin.php:450
5686
+ msgid "Resend order confirmation"
5687
+ msgstr ""
5688
+
5689
+ #: includes/admin/class-wc-gzd-admin.php:451
5690
+ msgid "Send paid for order notification"
5691
+ msgstr ""
5692
+
5693
+ #: includes/admin/class-wc-gzd-admin.php:461
5694
+ #: includes/admin/settings/abstract-wc-gzd-settings-tab.php:114
5695
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:23
5696
+ #: includes/admin/settings/views/html-admin-settings-tabs.php:9
5697
+ #: includes/admin/views/html-page-status-germanized.php:27
5698
+ msgid "Germanized"
5699
+ msgstr ""
5700
+
5701
+ #: includes/admin/class-wc-gzd-admin.php:475
5702
+ msgid "Parcel Delivery Data Transfer:"
5703
+ msgstr ""
5704
+
5705
+ #: includes/admin/class-wc-gzd-admin.php:476
5706
+ msgid "allowed"
5707
+ msgstr ""
5708
+
5709
+ #: includes/admin/class-wc-gzd-admin.php:476
5710
+ msgid "not allowed"
5711
+ msgstr ""
5712
+
5713
+ #: includes/admin/class-wc-gzd-admin.php:559
5714
+ msgid "Optional Email Content"
5715
+ msgstr ""
5716
+
5717
+ #: includes/admin/class-wc-gzd-admin.php:577
5718
+ msgid "Add content which will be replacing default page content within emails."
5719
+ msgstr ""
5720
+
5721
+ #: includes/admin/class-wc-gzd-admin.php:591
5722
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:152
5723
+ msgid "Optional Mini Description"
5724
+ msgstr ""
5725
+
5726
+ #: includes/admin/class-wc-gzd-admin.php:613
5727
+ msgid "This content will be shown as short product description within checkout and emails."
5728
+ msgstr ""
5729
+
5730
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:46
5731
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:169
5732
+ msgid "Service products do not sell physical products."
5733
+ msgstr ""
5734
+
5735
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:61
5736
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:195
5737
+ msgid "Sale Label"
5738
+ msgstr ""
5739
+
5740
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:71
5741
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:202
5742
+ msgid "Sale Regular Label"
5743
+ msgstr ""
5744
+
5745
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:90
5746
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:217
5747
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:232
5748
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:264
5749
+ #: includes/compatibility/elementor/widgets/class-wc-gzd-elementor-widget-product-units.php:10
5750
+ msgid "Product Units"
5751
+ msgstr ""
5752
+
5753
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:90
5754
+ msgid "Number of units included per default product price. Example: 1000 ml. Leave blank to use parent value."
5755
+ msgstr ""
5756
+
5757
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:97
5758
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:249
5759
+ msgid "Calculation"
5760
+ msgstr ""
5761
+
5762
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:102
5763
+ msgid "Calculate unit prices automatically"
5764
+ msgstr ""
5765
+
5766
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:107
5767
+ msgid "Regular Unit Price"
5768
+ msgstr ""
5769
+
5770
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:114
5771
+ msgid "Sale Unit Price"
5772
+ msgstr ""
5773
+
5774
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:121
5775
+ msgid "To enable unit prices on variation level please choose a unit and base price units within %s."
5776
+ msgstr ""
5777
+
5778
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:121
5779
+ msgid "general product data"
5780
+ msgstr ""
5781
+
5782
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:126
5783
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:310
5784
+ #: includes/api/class-wc-gzd-rest-products-controller.php:32
5785
+ #: includes/api/class-wc-gzd-rest-products-controller.php:204
5786
+ #: includes/compatibility/elementor/widgets/class-wc-gzd-elementor-widget-product-delivery-time.php:10
5787
+ msgid "Delivery Time"
5788
+ msgstr ""
5789
+
5790
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:131
5791
+ msgid "Same as parent"
5792
+ msgstr ""
5793
+
5794
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:140
5795
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:269
5796
+ msgid "Minimum Age"
5797
+ msgstr ""
5798
+
5799
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:176
5800
+ msgid "Diff. Taxation"
5801
+ msgstr ""
5802
+
5803
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:177
5804
+ msgid "Product applies to differential taxation based on §25a UStG."
5805
+ msgstr ""
5806
+
5807
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:196
5808
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:203
5809
+ msgid "Select Price Label"
5810
+ msgstr ""
5811
+
5812
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:198
5813
+ msgid "If the product is on sale you may want to show a price label right before outputting the old price to inform the customer."
5814
+ msgstr ""
5815
+
5816
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:205
5817
+ msgid "If the product is on sale you may want to show a price label right before outputting the new price to inform the customer."
5818
+ msgstr ""
5819
+
5820
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:210
5821
+ #: includes/api/class-wc-gzd-rest-products-controller.php:107
5822
+ #: includes/class-wc-gzd-post-types.php:98
5823
+ msgid "Unit"
5824
+ msgstr ""
5825
+
5826
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:211
5827
+ msgid "Select unit"
5828
+ msgstr ""
5829
+
5830
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:213
5831
+ msgid "Needed if selling on a per unit basis"
5832
+ msgstr ""
5833
+
5834
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:220
5835
+ msgid "Number of units included per default product price. Example: 1000 ml."
5836
+ msgstr ""
5837
+
5838
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:224
5839
+ msgid "Base Price Units"
5840
+ msgstr ""
5841
+
5842
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:227
5843
+ msgid "Base price units. Example base price: 0,99 € / 100 ml. Insert 100 as base price unit amount."
5844
+ msgstr ""
5845
+
5846
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:250
5847
+ msgid "Calculate base prices automatically."
5848
+ msgstr ""
5849
+
5850
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:254
5851
+ msgid "Regular Base Price"
5852
+ msgstr ""
5853
+
5854
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:259
5855
+ msgid "Sale Base Price"
5856
+ msgstr ""
5857
+
5858
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:271
5859
+ msgid "Adds an age verification checkbox while purchasing this product."
5860
+ msgstr ""
5861
+
5862
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:282
5863
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:314
5864
+ msgid "Search for a delivery time&hellip;"
5865
+ msgstr ""
5866
+
5867
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:323
5868
+ msgid "Free shipping?"
5869
+ msgstr ""
5870
+
5871
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:324
5872
+ msgid "This option disables the \"plus shipping costs\" notice on product page"
5873
+ msgstr ""
5874
+
5875
+ #: includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:29
5876
+ msgctxt "dhl"
5877
+ msgid "DHL built-in Integration"
5878
+ msgstr ""
5879
+
5880
+ #: includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:33
5881
+ msgctxt "dhl"
5882
+ msgid "It seems like you are currently using the DHL for WooCommerce plugin. Germanized does now fully integrate DHL services and switching is as simple as can be. Check your advantages by using the DHL integration in Germanized and let Germanized import your current settings for you."
5883
+ msgstr ""
5884
+
5885
+ #: includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:35
5886
+ #: includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:35
5887
+ msgctxt "dhl"
5888
+ msgid "No need to use an external plugin which might lead to incompatibilities"
5889
+ msgstr ""
5890
+
5891
+ #: includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:36
5892
+ #: includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:36
5893
+ msgctxt "dhl"
5894
+ msgid "Many improved features such as automation, services per shipping method and %s"
5895
+ msgstr ""
5896
+
5897
+ #: includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:36
5898
+ #: includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:36
5899
+ msgctxt "dhl"
5900
+ msgid "many more"
5901
+ msgstr ""
5902
+
5903
+ #: includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:37
5904
+ msgctxt "dhl"
5905
+ msgid "Perfectly integrated in Germanized &ndash; easily create labels for shipments"
5906
+ msgstr ""
5907
+
5908
+ #: includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:47
5909
+ #: includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:47
5910
+ msgctxt "dhl"
5911
+ msgid "Import settings and activate"
5912
+ msgstr ""
5913
+
5914
+ #: includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:53
5915
+ #: includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:53
5916
+ msgctxt "dhl"
5917
+ msgid "Learn more"
5918
+ msgstr ""
5919
+
5920
+ #: includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:29
5921
+ msgctxt "dhl"
5922
+ msgid "Internetmarke built-in Integration"
5923
+ msgstr ""
5924
+
5925
+ #: includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:33
5926
+ msgctxt "dhl"
5927
+ msgid "It seems like you are currently using the Deutsche Post Internetmarke plugin. Germanized does now fully integrate Internetmarke and switching is as simple as can be. Check your advantages by using the Internetmarke integration in Germanized and let Germanized import your current settings for you."
5928
+ msgstr ""
5929
+
5930
+ #: includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:37
5931
+ msgctxt "dhl"
5932
+ msgid "Perfectly integrated in Germanized &ndash; easily create stamps for shipments"
5933
+ msgstr ""
5934
+
5935
+ #: includes/admin/notes/class-wc-gzd-admin-note-pro.php:23
5936
+ msgid "For professionals: Upgrade to Pro-Version"
5937
+ msgstr ""
5938
+
5939
+ #: includes/admin/notes/class-wc-gzd-admin-note-pro.php:27
5940
+ msgid "Do you enjoy Germanized? Do you want to benefit from even more and better features? You may consider an uprade to Pro. Check out some of the main Pro features:"
5941
+ msgstr ""
5942
+
5943
+ #: includes/admin/notes/class-wc-gzd-admin-note-pro.php:29
5944
+ msgid "PDF invoices and packing slips"
5945
+ msgstr ""
5946
+
5947
+ #: includes/admin/notes/class-wc-gzd-admin-note-pro.php:30
5948
+ msgid "Generator for terms & conditions and right of recission"
5949
+ msgstr ""
5950
+
5951
+ #: includes/admin/notes/class-wc-gzd-admin-note-pro.php:31
5952
+ msgid "Multistep Checkout"
5953
+ msgstr ""
5954
+
5955
+ #: includes/admin/notes/class-wc-gzd-admin-note-pro.php:32
5956
+ msgid "Premium Ticket Support"
5957
+ msgstr ""
5958
+
5959
+ #: includes/admin/notes/class-wc-gzd-admin-note-pro.php:43
5960
+ msgid "Learn more about Pro Version"
5961
+ msgstr ""
5962
+
5963
+ #: includes/admin/notes/class-wc-gzd-admin-note-review.php:24
5964
+ msgid "Do you like Germanized?"
5965
+ msgstr ""
5966
+
5967
+ #: includes/admin/notes/class-wc-gzd-admin-note-review.php:28
5968
+ msgid "If you like Germanized and our Plugin does a good job it would be great if you would write a review about WooCommerce Germanized on WordPress.org. Thank you for your support!"
5969
+ msgstr ""
5970
+
5971
+ #: includes/admin/notes/class-wc-gzd-admin-note-review.php:40
5972
+ msgid "I've added my review"
5973
+ msgstr ""
5974
+
5975
+ #: includes/admin/notes/class-wc-gzd-admin-note-review.php:47
5976
+ msgid "Write review now"
5977
+ msgstr ""
5978
+
5979
+ #: includes/admin/notes/class-wc-gzd-admin-note-review.php:53
5980
+ msgid "Found Bugs?"
5981
+ msgstr ""
5982
+
5983
+ #: includes/admin/notes/class-wc-gzd-admin-note-shipping-excl-tax.php:29
5984
+ msgid "Shipping and fee taxes"
5985
+ msgstr ""
5986
+
5987
+ #: includes/admin/notes/class-wc-gzd-admin-note-shipping-excl-tax.php:33
5988
+ msgid "Starting with the newest Germanized version your <strong>shipping costs and fees will no longer be treated including tax</strong>. This change in Germanized was necessary due to your prices being treated excluding taxes (see your WooCommerce tax settings). Due to the way WooCommerce calculates taxes for orders (based on prices excluding taxes) there is no consistent way to (re-)calculate shipping costs and/or fee taxes if they are treated including taxes. Please check your shipping costs and fees and edit costs accordingly."
5989
+ msgstr ""
5990
+
5991
+ #: includes/admin/notes/class-wc-gzd-admin-note-shipping-excl-tax.php:40
5992
+ msgid "Manage shipping methods"
5993
+ msgstr ""
5994
+
5995
+ #: includes/admin/notes/class-wc-gzd-admin-note-shipping-excl-tax.php:45
5996
+ #: includes/admin/settings/abstract-wc-gzd-settings-tab.php:152
5997
+ #: includes/admin/settings/class-wc-gzd-settings-tab-dhl.php:35
5998
+ #: includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:61
5999
+ msgid "Learn more"
6000
+ msgstr ""
6001
+
6002
+ #: includes/admin/notes/class-wc-gzd-admin-note-template-outdated.php:53
6003
+ msgid "Your theme contains outdated Germanized template files"
6004
+ msgstr ""
6005
+
6006
+ #: includes/admin/notes/class-wc-gzd-admin-note-template-outdated.php:57
6007
+ msgid "These files may need updating to ensure they are compatible with the current version of Germanized. Suggestions to fix this:"
6008
+ msgstr ""
6009
+
6010
+ #: includes/admin/notes/class-wc-gzd-admin-note-template-outdated.php:59
6011
+ msgid "Update your theme to the latest version. If no update is available contact your theme author asking about compatibility with the current Germanized version."
6012
+ msgstr ""
6013
+
6014
+ #: includes/admin/notes/class-wc-gzd-admin-note-template-outdated.php:60
6015
+ msgid "If you copied over a template file to change something, then you will need to copy the new version of the template and apply your changes again."
6016
+ msgstr ""
6017
+
6018
+ #: includes/admin/notes/class-wc-gzd-admin-note-template-outdated.php:70
6019
+ msgid "View affected templates"
6020
+ msgstr ""
6021
+
6022
+ #: includes/admin/notes/class-wc-gzd-admin-note-theme-supported.php:40
6023
+ msgid "Enable full %s support"
6024
+ msgstr ""
6025
+
6026
+ #: includes/admin/notes/class-wc-gzd-admin-note-theme-supported.php:46
6027
+ msgid "Your current theme %s needs some adaptions to seamlessly integrate with Germanized. Our Pro Version will <strong>enable support for %s</strong> and makes sure Germanized settings are shown and styled within frontend for a better user experience. A better user experience will help you selling more products."
6028
+ msgstr ""
6029
+
6030
+ #: includes/admin/notes/class-wc-gzd-admin-note-theme-supported.php:55
6031
+ msgid "Enable support for %s"
6032
+ msgstr ""
6033
+
6034
+ #: includes/admin/notes/class-wc-gzd-admin-note-update.php:25
6035
+ msgid "Germanized Data Update Required"
6036
+ msgstr ""
6037
+
6038
+ #: includes/admin/notes/class-wc-gzd-admin-note-update.php:29
6039
+ msgid "We just need to update your install to the latest version. <strong>Make sure to backup your data before updating</strong>."
6040
+ msgstr ""
6041
+
6042
+ #: includes/admin/notes/class-wc-gzd-admin-note-update.php:40
6043
+ msgid "Run the updater"
6044
+ msgstr ""
6045
+
6046
+ #: includes/admin/notes/class-wc-gzd-admin-note.php:185
6047
+ msgid "Not now"
6048
+ msgstr ""
6049
+
6050
+ #: includes/admin/notes/class-wc-gzd-admin-note.php:189
6051
+ msgctxt "woocommerce-germanized"
6052
+ msgid "Deactivate"
6053
+ msgstr ""
6054
+
6055
+ #: includes/admin/settings/abstract-wc-gzd-settings-tab.php:39
6056
+ #: includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:52
6057
+ #: includes/admin/views/html-settings-pro.php:23
6058
+ msgid "Get Germanized Pro to unlock"
6059
+ msgstr ""
6060
+
6061
+ #: includes/admin/settings/abstract-wc-gzd-settings-tab.php:40
6062
+ #: includes/admin/views/html-settings-pro.php:24
6063
+ msgid "Enjoy even more professional features such as invoices, legal text generators, B2B VAT settings and premium support!"
6064
+ msgstr ""
6065
+
6066
+ #: includes/admin/settings/abstract-wc-gzd-settings-tab.php:42
6067
+ #: includes/admin/settings/class-wc-gzd-settings-pointers.php:177
6068
+ #: includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:63
6069
+ #: includes/admin/views/html-settings-pro.php:26
6070
+ #: includes/admin/views/setup/first-steps.php:35
6071
+ #: includes/compatibility/elementor/widgets/abstact-class-wc-gzd-elementor-widget.php:54
6072
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:90
6073
+ msgid "Upgrade now"
6074
+ msgstr ""
6075
+
6076
+ #: includes/admin/settings/class-wc-gzd-settings-pointers.php:78
6077
+ msgid "Setting tabs"
6078
+ msgstr ""
6079
+
6080
+ #: includes/admin/settings/class-wc-gzd-settings-pointers.php:79
6081
+ msgid "To make it more comfortable for you, we've splitted the settings into multiple tabs."
6082
+ msgstr ""
6083
+
6084
+ #: includes/admin/settings/class-wc-gzd-settings-pointers.php:92
6085
+ #: includes/class-wc-gzd-legal-checkbox.php:785
6086
+ msgid "Status"
6087
+ msgstr ""
6088
+
6089
+ #: includes/admin/settings/class-wc-gzd-settings-pointers.php:93
6090
+ msgid "Some features can be switched on or off explicitly by toggling the input."
6091
+ msgstr ""
6092
+
6093
+ #: includes/admin/settings/class-wc-gzd-settings-pointers.php:144
6094
+ msgid "Dismiss"
6095
+ msgstr ""
6096
+
6097
+ #: includes/admin/settings/class-wc-gzd-settings-pointers.php:145
6098
+ msgid "Next"
6099
+ msgstr ""
6100
+
6101
+ #: includes/admin/settings/class-wc-gzd-settings-pointers.php:152
6102
+ msgid "Let's go"
6103
+ msgstr ""
6104
+
6105
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:17
6106
+ msgid "These settings will help you to make sure your checkout complies with the button solution."
6107
+ msgstr ""
6108
+
6109
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:21
6110
+ msgid "Button Solution"
6111
+ msgstr ""
6112
+
6113
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:41
6114
+ msgid "Buy now button"
6115
+ msgstr ""
6116
+
6117
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:42
6118
+ msgid "These settings help you comply to the button solution. The buy now button text is forced and static so that no payment gateway might override it."
6119
+ msgstr ""
6120
+
6121
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:55
6122
+ msgid "Product table background"
6123
+ msgstr ""
6124
+
6125
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:56
6126
+ msgid "The product table within your checkout should be noticeable for your customers. You might want to choose a different background color for it."
6127
+ msgstr ""
6128
+
6129
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:74
6130
+ msgid "Button Text"
6131
+ msgstr ""
6132
+
6133
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:75
6134
+ msgid "This text serves as Button text for the Order Submit Button."
6135
+ msgstr ""
6136
+
6137
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:79
6138
+ msgid "Buy Now"
6139
+ msgstr ""
6140
+
6141
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:82
6142
+ msgid "Product attributes"
6143
+ msgstr ""
6144
+
6145
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:83
6146
+ msgid "List all product attributes during cart and checkout."
6147
+ msgstr ""
6148
+
6149
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:87
6150
+ msgid "This option forces WooCommerce to output a list of all product attributes during cart and checkout."
6151
+ msgstr ""
6152
+
6153
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:90
6154
+ msgid "Back to cart"
6155
+ msgstr ""
6156
+
6157
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:91
6158
+ msgid "Add a back to cart button to the checkout table."
6159
+ msgstr ""
6160
+
6161
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:91
6162
+ msgid "This button may let your customer edit their order before submitting. Some people state that this button should be hidden to avoid legal problems."
6163
+ msgstr ""
6164
+
6165
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:97
6166
+ msgid "Edit data notice"
6167
+ msgstr ""
6168
+
6169
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:98
6170
+ msgid "Display an edit-your-data notice within checkout."
6171
+ msgstr ""
6172
+
6173
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:102
6174
+ msgid "This notice will be added right before the order comments field."
6175
+ msgstr ""
6176
+
6177
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:105
6178
+ msgid "Product Table Color"
6179
+ msgstr ""
6180
+
6181
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:107
6182
+ msgid "Choose the color of your checkout product table. This table should be highlighted within your checkout page."
6183
+ msgstr ""
6184
+
6185
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:112
6186
+ msgid "Thumbnails"
6187
+ msgstr ""
6188
+
6189
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:113
6190
+ msgid "Show product thumbnails within checkout table."
6191
+ msgstr ""
6192
+
6193
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:117
6194
+ msgid "Uncheck if you don't want to show your product thumbnails within checkout table."
6195
+ msgstr ""
6196
+
6197
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:120
6198
+ msgid "Hide Shipping Select"
6199
+ msgstr ""
6200
+
6201
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:121
6202
+ msgid "Hide shipping rate selection from checkout."
6203
+ msgstr ""
6204
+
6205
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:125
6206
+ msgid "This option will hide shipping rate selection from checkout. By then customers will only be able to change their shipping rate on cart page."
6207
+ msgstr ""
6208
+
6209
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:128
6210
+ msgid "Estimated taxes"
6211
+ msgstr ""
6212
+
6213
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:129
6214
+ msgid "Hide the \"taxes and shipping estimated\" text from the cart."
6215
+ msgstr ""
6216
+
6217
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:133
6218
+ msgid "By default WooCommerce adds a \"taxes and shipping estimated\" text to your cart. This might puzzle your customers and may not meet german law."
6219
+ msgstr ""
6220
+
6221
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:136
6222
+ #: includes/admin/views/html-page-status-germanized.php:65
6223
+ msgid "Fallback Mode"
6224
+ msgstr ""
6225
+
6226
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:137
6227
+ msgid "Force default WooCommerce checkout template."
6228
+ msgstr ""
6229
+
6230
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:137
6231
+ msgid "If you are facing problems within your checkout e.g. legally relevant data is not showing (terms, delivery time, unit price etc.) your theme seems to be incompatible (not using default WooCommerce hooks and filters). As a workaround you may use this fallback which ensures default review-order.php and form-checkout.php is used."
6232
+ msgstr ""
6233
+
6234
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:145
6235
+ msgid "Thankyou Page"
6236
+ msgstr ""
6237
+
6238
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:151
6239
+ msgid "Information"
6240
+ msgstr ""
6241
+
6242
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:152
6243
+ msgid "Hide product table and customer data on order thankyou page."
6244
+ msgstr ""
6245
+
6246
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:158
6247
+ msgid "Order Success Text"
6248
+ msgstr ""
6249
+
6250
+ #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:159
6251
+ msgid "Choose a custom text to display on order success page."
6252
+ msgstr ""
6253
+
6254
+ #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:17
6255
+ msgid "Ask your customers for a certain permission or action before a form may be submitted."
6256
+ msgstr ""
6257
+
6258
+ #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:21
6259
+ msgid "Legal Checkboxes"
6260
+ msgstr ""
6261
+
6262
+ #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:41
6263
+ msgid "Edit checkbox"
6264
+ msgstr ""
6265
+
6266
+ #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:42
6267
+ msgid "Legal checkboxes help you obtain consent from your customers. You might edit a checkbox' label and other options by clicking on the link."
6268
+ msgstr ""
6269
+
6270
+ #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:62
6271
+ #: includes/class-wc-gzd-legal-checkbox.php:821
6272
+ msgid "Label"
6273
+ msgstr ""
6274
+
6275
+ #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:63
6276
+ msgid "Adjust the label of your checkbox which will be shown within your shop (e.g. checkout). Use placeholders to add links to your legal pages."
6277
+ msgstr ""
6278
+
6279
+ #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:104
6280
+ msgid "New checkbox"
6281
+ msgstr ""
6282
+
6283
+ #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:130
6284
+ msgid "Add checkbox"
6285
+ msgstr ""
6286
+
6287
+ #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:173
6288
+ msgid "Edit failed. Please try again."
6289
+ msgstr ""
6290
+
6291
+ #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:206
6292
+ msgid "Sorry, but this checkbox does not exist."
6293
+ msgstr ""
6294
+
6295
+ #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:233
6296
+ msgid "Your changed data will be lost if you leave this page without saving."
6297
+ msgstr ""
6298
+
6299
+ #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:234
6300
+ msgid "Are you sure you want to delete this checkbox? This action cannot be undone."
6301
+ msgstr ""
6302
+
6303
+ #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:235
6304
+ msgid "Your changes were not saved. Please retry."
6305
+ msgstr ""
6306
+
6307
+ #: includes/admin/settings/class-wc-gzd-settings-tab-contract.php:17
6308
+ msgid "Adjust the time of closing contract with your customer."
6309
+ msgstr ""
6310
+
6311
+ #: includes/admin/settings/class-wc-gzd-settings-tab-contract.php:21
6312
+ msgid "Manual contract"
6313
+ msgstr ""
6314
+
6315
+ #: includes/admin/settings/class-wc-gzd-settings-tab-contract.php:21
6316
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:32
6317
+ #: includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:21
6318
+ #: includes/admin/settings/class-wc-gzd-settings-tab-multistep-checkout.php:21
6319
+ #: includes/admin/settings/class-wc-gzd-settings-tab-revocation-generator.php:21
6320
+ #: includes/admin/settings/class-wc-gzd-settings-tab-terms-generator.php:21
6321
+ msgid "pro"
6322
+ msgstr ""
6323
+
6324
+ #: includes/admin/settings/class-wc-gzd-settings-tab-dhl.php:19
6325
+ msgid "Integrate Post & DHL Services such as Labels for Shipments and Returns."
6326
+ msgstr ""
6327
+
6328
+ #: includes/admin/settings/class-wc-gzd-settings-tab-dhl.php:44
6329
+ msgid "Post & DHL"
6330
+ msgstr ""
6331
+
6332
+ #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:17
6333
+ msgid "Extend the WooCommerce registration process with a double opt in."
6334
+ msgstr ""
6335
+
6336
+ #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:29
6337
+ msgid "Caution: New customers that register within your store and do not activate their account will be deleted after %d day(s). You might adjust that behaviour within the Double-Opt-In settings."
6338
+ msgstr ""
6339
+
6340
+ #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:37
6341
+ msgid "Enable"
6342
+ msgstr ""
6343
+
6344
+ #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:38
6345
+ msgid "If customer chooses to create a customer account an email with an activation link will be sent by mail. Customer account will be marked as activated if user clicks on the link within the email. More information on this topic can be found <a href=\"%s\" target=\"_blank\">here</a>."
6346
+ msgstr ""
6347
+
6348
+ #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:44
6349
+ msgid "Disable"
6350
+ msgstr ""
6351
+
6352
+ #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:45
6353
+ msgid "Disable login and checkout for unactivated customers."
6354
+ msgstr ""
6355
+
6356
+ #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:46
6357
+ msgid "Customers that did not click on the activation link will not be able to complete checkout nor login to their account."
6358
+ msgstr ""
6359
+
6360
+ #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:55
6361
+ msgid "Delete unactivated after"
6362
+ msgstr ""
6363
+
6364
+ #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:56
6365
+ msgid "This will make sure unactivated customer accounts will be deleted after X days. Set to 0 if you don't want to automatically delete unactivated customers."
6366
+ msgstr ""
6367
+
6368
+ #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:57
6369
+ msgid "days"
6370
+ msgstr ""
6371
+
6372
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:17
6373
+ msgid "Adjust email related settings e.g. attach your legal page content to certain email templates."
6374
+ msgstr ""
6375
+
6376
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:21
6377
+ msgid "Emails"
6378
+ msgstr ""
6379
+
6380
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:30
6381
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:21
6382
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:37
6383
+ msgid "General"
6384
+ msgstr ""
6385
+
6386
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:31
6387
+ msgid "Visibility"
6388
+ msgstr ""
6389
+
6390
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:32
6391
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:64
6392
+ msgid "PDF Attachments"
6393
+ msgstr ""
6394
+
6395
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:49
6396
+ msgid "Email attachments"
6397
+ msgstr ""
6398
+
6399
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:50
6400
+ msgid "Choose which of your email templates (e.g. order confirmation) should contain your legal page content e.g. terms and conditions within it's footer."
6401
+ msgstr ""
6402
+
6403
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:65
6404
+ msgid "Customers of our pro version may attach PDF files instead of plain text content to emails."
6405
+ msgstr ""
6406
+
6407
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:81
6408
+ msgid "Use drag & drop to customize attachment order. Don't forget to save your changes."
6409
+ msgstr ""
6410
+
6411
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:120
6412
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:141
6413
+ msgid "Want to attach automatically generated PDF files to emails instead of plain text? %sUpgrade to %spro%s%s"
6414
+ msgstr ""
6415
+
6416
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:163
6417
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:239
6418
+ #: includes/api/class-wc-gzd-rest-customers-controller.php:137
6419
+ #: includes/api/class-wc-gzd-rest-customers-controller.php:144
6420
+ #: includes/api/class-wc-gzd-rest-orders-controller.php:138
6421
+ #: includes/api/class-wc-gzd-rest-orders-controller.php:145
6422
+ #: includes/class-wc-gzd-checkout.php:559
6423
+ #: includes/class-wc-gzd-checkout.php:572
6424
+ #: includes/class-wc-gzd-customer-helper.php:225
6425
+ #: includes/class-wc-gzd-customer-helper.php:233
6426
+ msgid "Title"
6427
+ msgstr ""
6428
+
6429
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:164
6430
+ msgid "Adjust the title to be used within emails. Use {first_name}, {last_name} and {title} as placeholders."
6431
+ msgstr ""
6432
+
6433
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:166
6434
+ msgid "Hi {first_name},"
6435
+ msgstr ""
6436
+
6437
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:170
6438
+ msgid "Hide Username"
6439
+ msgstr ""
6440
+
6441
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:171
6442
+ msgid "Hide username from email content if password or password reset link is embedded."
6443
+ msgstr ""
6444
+
6445
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:171
6446
+ msgid "Trusted Shops advises to not show the username together with an account password or password reset link. This option hides (or masks) the username in those specific cases."
6447
+ msgstr ""
6448
+
6449
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:178
6450
+ msgid "Pay now Button"
6451
+ msgstr ""
6452
+
6453
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:179
6454
+ msgid "Add a pay now button to emails and order success page."
6455
+ msgstr ""
6456
+
6457
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:180
6458
+ msgid "Add a pay now button to order confirmation email and order success page if the order awaits payment (PayPal etc)."
6459
+ msgstr ""
6460
+
6461
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:186
6462
+ msgid "Disabled for"
6463
+ msgstr ""
6464
+
6465
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:187
6466
+ msgid "You may want to disable the pay now button for certain payment methods."
6467
+ msgstr ""
6468
+
6469
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:214
6470
+ msgid "Customer"
6471
+ msgstr ""
6472
+
6473
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:214
6474
+ msgid "Admin"
6475
+ msgstr ""
6476
+
6477
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:231
6478
+ msgid "Attach %s"
6479
+ msgstr ""
6480
+
6481
+ #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:232
6482
+ msgid "Attach %s to the following email templates"
6483
+ msgstr ""
6484
+
6485
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:17
6486
+ msgid "Adjust general options e.g. legal pages."
6487
+ msgstr ""
6488
+
6489
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:30
6490
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:370
6491
+ #: includes/admin/views/html-page-status-germanized.php:174
6492
+ msgid "Legal Pages"
6493
+ msgstr ""
6494
+
6495
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:31
6496
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:146
6497
+ msgid "Dispute Resolution"
6498
+ msgstr ""
6499
+
6500
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:32
6501
+ msgid "Small Businesses"
6502
+ msgstr ""
6503
+
6504
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:33
6505
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:578
6506
+ #: src/Shopmarks.php:299
6507
+ msgid "Checkout"
6508
+ msgstr ""
6509
+
6510
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:34
6511
+ msgid "Shop"
6512
+ msgstr ""
6513
+
6514
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:40
6515
+ msgid "Since Feb. 1 2017 regulations regarding alternative dispute resolution take effect. Further information regarding your duty to supply information can be found <a href=\"%s\" target=\"_blank\">here</a>."
6516
+ msgstr ""
6517
+
6518
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:47
6519
+ msgid "Checkbox status: %s"
6520
+ msgstr ""
6521
+
6522
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:54
6523
+ msgid "This page should contain your terms & conditions."
6524
+ msgstr ""
6525
+
6526
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:60
6527
+ msgid "Don't have terms & conditions yet? <a href=\"%s\">Generate now</a>!"
6528
+ msgstr ""
6529
+
6530
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:64
6531
+ msgid "This page should contain information regarding your customer's Right of Revocation."
6532
+ msgstr ""
6533
+
6534
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:70
6535
+ msgid "Don't have a revocation page yet? <a href=\"%s\">Generate now</a>!"
6536
+ msgstr ""
6537
+
6538
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:74
6539
+ msgid "Revocation Address"
6540
+ msgstr ""
6541
+
6542
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:75
6543
+ msgid "Type in an address, telephone/telefax number, email address which is to be used as revocation address"
6544
+ msgstr ""
6545
+
6546
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:85
6547
+ msgid "This page should contain an imprint with your company's information."
6548
+ msgstr ""
6549
+
6550
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:94
6551
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:200
6552
+ msgid "Privacy Policy"
6553
+ msgstr ""
6554
+
6555
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:95
6556
+ msgid "This page should contain information regarding your data security policy."
6557
+ msgstr ""
6558
+
6559
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:105
6560
+ msgid "This page should contain information regarding the Payment Methods that are chooseable during checkout."
6561
+ msgstr ""
6562
+
6563
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:115
6564
+ msgid "This page should contain information regarding shipping methods that are chooseable during checkout."
6565
+ msgstr ""
6566
+
6567
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:140
6568
+ msgid "This status indicates whether your terms & conditions contain the [gzd_complaints] shortcode which outputs the complaints options chosen from above or not. If you've added the text manually, you might ignore this status."
6569
+ msgstr ""
6570
+
6571
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:147
6572
+ msgid "You may select whether you are willing, obliged or not willing to participate in dispute settlement proceeedings before a consumer arbitration board. The corresponding Resolution Text is attached to the [gzd_complaints] shortcode which you should add to your imprint. Trusted Shops advises you to add that text to your Terms & Conditions as well."
6573
+ msgstr ""
6574
+
6575
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:153
6576
+ msgid "Not obliged, not willing"
6577
+ msgstr ""
6578
+
6579
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:154
6580
+ msgid "Not obliged, willing"
6581
+ msgstr ""
6582
+
6583
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:155
6584
+ msgid "Obliged"
6585
+ msgstr ""
6586
+
6587
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:159
6588
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:168
6589
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:177
6590
+ msgid "Resolution Text"
6591
+ msgstr ""
6592
+
6593
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:160
6594
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:169
6595
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:178
6596
+ msgid "Adapt this example text regarding alternative dispute resolution to your needs. Text will be added to the [gzd_complaints] Shortcode. You may as well add this text to your terms & conditions."
6597
+ msgstr ""
6598
+
6599
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:162
6600
+ msgid "The european commission provides a platform for online dispute resolution (OS) which is accessible at https://ec.europa.eu/consumers/odr. We are not obliged nor willing to participate in dispute settlement proceedings before a consumer arbitration board."
6601
+ msgstr ""
6602
+
6603
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:171
6604
+ msgid "The european commission provides a platform for online dispute resolution (OS) which is accessible at https://ec.europa.eu/consumers/odr. Consumers may use this platform for the settlements of their disputes. We are in principle prepared to participate in an extrajudicial arbitration proceeding."
6605
+ msgstr ""
6606
+
6607
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:180
6608
+ msgid "The european commission provides a platform for online dispute resolution (OS) which is accessible at https://ec.europa.eu/consumers/odr. Consumers may contact [Name, Address, Website of arbitration board] for the settlements of their disputes. We are obliged to participate in arbitration proceeding before that board."
6609
+ msgstr ""
6610
+
6611
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:186
6612
+ msgid "Shortcode Status"
6613
+ msgstr ""
6614
+
6615
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:190
6616
+ msgid "Not found within %s"
6617
+ msgstr ""
6618
+
6619
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:190
6620
+ msgid "Append it now"
6621
+ msgstr ""
6622
+
6623
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:209
6624
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:371
6625
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:131
6626
+ msgid "Notice Text"
6627
+ msgstr ""
6628
+
6629
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:210
6630
+ msgid "You may want to adjust the small buisness notice text to meet your criteria."
6631
+ msgstr ""
6632
+
6633
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:217
6634
+ #: includes/wc-gzd-core-functions.php:319
6635
+ msgid "Value added tax is not collected, as small businesses according to §19 (1) UStG."
6636
+ msgstr ""
6637
+
6638
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:232
6639
+ msgid "Phone"
6640
+ msgstr ""
6641
+
6642
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:233
6643
+ msgid "Mark phone number as non-required within checkout."
6644
+ msgstr ""
6645
+
6646
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:240
6647
+ msgid "Add a title field to the address within checkout."
6648
+ msgstr ""
6649
+
6650
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:246
6651
+ msgid "Disallow cancellations"
6652
+ msgstr ""
6653
+
6654
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:247
6655
+ msgid "Don't allow customers to manually cancel orders."
6656
+ msgstr ""
6657
+
6658
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:247
6659
+ msgid "By default payment methods like PayPal allow order cancellation by clicking the abort link. This option will stop customers from manually cancel orders."
6660
+ msgstr ""
6661
+
6662
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:253
6663
+ msgid "Disallow gateway choosing"
6664
+ msgstr ""
6665
+
6666
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:254
6667
+ msgid "Don't allow customers to change the payment gateway after ordering."
6668
+ msgstr ""
6669
+
6670
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:254
6671
+ msgid "Customers paying through a gateway which allows later payment (e.g. PayPal) will find a link within their customer account which redirects them to a pay page. This page offers the possibility to choose another gateway than before which may lead to further problems e.g. additional gateway costs etc. which would require a new order submittal. This option makes sure the customer gets redirected directly to the gateways payment page, e.g. to PayPal."
6672
+ msgstr ""
6673
+
6674
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:260
6675
+ msgid "Free shipping"
6676
+ msgstr ""
6677
+
6678
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:261
6679
+ msgid "Force free shipping method if available."
6680
+ msgstr ""
6681
+
6682
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:261
6683
+ msgid "By default WooCommerce will let customers choose other shipping methods than free shipping (if available). This option will force free shipping if available."
6684
+ msgstr ""
6685
+
6686
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:268
6687
+ msgid "Exclude Methods"
6688
+ msgstr ""
6689
+
6690
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:277
6691
+ msgid "Optionally choose methods which should be excluded from hiding when free shipping is available (e.g. express shipping options)."
6692
+ msgstr ""
6693
+
6694
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:289
6695
+ msgid "Price Range Format"
6696
+ msgstr ""
6697
+
6698
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:290
6699
+ msgid "Adjust the price range format e.g. for variable products. Use {min_price} as placeholder for the minimum price. Use {max_price} as placeholder for the maximum price."
6700
+ msgstr ""
6701
+
6702
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:294
6703
+ #: includes/wc-gzd-core-functions.php:861
6704
+ msgid "{min_price} &ndash; {max_price}"
6705
+ msgstr ""
6706
+
6707
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:298
6708
+ msgid "Add to Cart"
6709
+ msgstr ""
6710
+
6711
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:299
6712
+ msgid "Show add to cart button on listings."
6713
+ msgstr ""
6714
+
6715
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:303
6716
+ msgid "unset this option if you don't want to show the add to cart button within the product listings"
6717
+ msgstr ""
6718
+
6719
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:306
6720
+ msgid "Link"
6721
+ msgstr ""
6722
+
6723
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:307
6724
+ msgid "Link to product details page instead of add to cart within listings."
6725
+ msgstr ""
6726
+
6727
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:311
6728
+ msgid "Decide whether you like to link to your product's details page instead of displaying an add to cart button within product listings."
6729
+ msgstr ""
6730
+
6731
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:314
6732
+ msgid "Product Details Text"
6733
+ msgstr ""
6734
+
6735
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:316
6736
+ msgid "Details"
6737
+ msgstr ""
6738
+
6739
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:321
6740
+ msgid "If you have chosen to link to product details page instead of add to cart URL you may want to change the button text."
6741
+ msgstr ""
6742
+
6743
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:342
6744
+ msgid "Overview"
6745
+ msgstr ""
6746
+
6747
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:343
6748
+ msgid "You can always return to the settings overview by navigating through the breadcrumb navigation."
6749
+ msgstr ""
6750
+
6751
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:356
6752
+ msgid "Sections"
6753
+ msgstr ""
6754
+
6755
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:357
6756
+ msgid "Each setting tab might have sub sections containing more specific options."
6757
+ msgstr ""
6758
+
6759
+ #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:371
6760
+ msgid "Adjust legal pages e.g. terms and conditions. These pages are used to add links within checkboxes and text attachments to emails."
6761
+ msgstr ""
6762
+
6763
+ #: includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:17
6764
+ msgid "Configure PDF invoices and packing slips."
6765
+ msgstr ""
6766
+
6767
+ #: includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:21
6768
+ msgid "Invoices & Packing Slips"
6769
+ msgstr ""
6770
+
6771
+ #: includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:53
6772
+ msgid "Generate custom and professional PDF invoices, cancellations and packing slips automatically with Germanized Pro."
6773
+ msgstr ""
6774
+
6775
+ #: includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:55
6776
+ msgid "Customize your documents with the built-in document editor"
6777
+ msgstr ""
6778
+
6779
+ #: includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:56
6780
+ msgid "Transfer your documents to your lexoffice and/or sevDesk account"
6781
+ msgstr ""
6782
+
6783
+ #: includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:57
6784
+ msgid "Export your documents as CSV and ZIP"
6785
+ msgstr ""
6786
+
6787
+ #: includes/admin/settings/class-wc-gzd-settings-tab-multistep-checkout.php:17
6788
+ msgid "Transform your checkout into a multistep checkout process."
6789
+ msgstr ""
6790
+
6791
+ #: includes/admin/settings/class-wc-gzd-settings-tab-multistep-checkout.php:21
6792
+ msgid "Multistep checkout"
6793
+ msgstr ""
6794
+
6795
+ #: includes/admin/settings/class-wc-gzd-settings-tab-revocation-generator.php:17
6796
+ msgid "Easily generate your revocation terms through our API."
6797
+ msgstr ""
6798
+
6799
+ #: includes/admin/settings/class-wc-gzd-settings-tab-revocation-generator.php:21
6800
+ msgid "Revocation Terms Generator"
6801
+ msgstr ""
6802
+
6803
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shipments.php:19
6804
+ msgid "Create shipments for your orders and improve default shipment handling."
6805
+ msgstr ""
6806
+
6807
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shipments.php:23
6808
+ msgid "Shipments"
6809
+ msgstr ""
6810
+
6811
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:20
6812
+ msgid "Adjust shopmark related settings. Choose which and where they shall be attached to your product data."
6813
+ msgstr ""
6814
+
6815
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:24
6816
+ msgid "Shopmarks"
6817
+ msgstr ""
6818
+
6819
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:38
6820
+ msgid "Delivery times"
6821
+ msgstr ""
6822
+
6823
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:39
6824
+ msgid "Unit prices"
6825
+ msgstr ""
6826
+
6827
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:40
6828
+ msgid "Price labels"
6829
+ msgstr ""
6830
+
6831
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:48
6832
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:210
6833
+ msgid "Widgets & Blocks"
6834
+ msgstr ""
6835
+
6836
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:49
6837
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:255
6838
+ msgid "E-Mails"
6839
+ msgstr ""
6840
+
6841
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:68
6842
+ msgid "Shopmark Display"
6843
+ msgstr ""
6844
+
6845
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:69
6846
+ msgid "By adjusting the display settings you might determine where to show or hide your shopmarks e.g. the tax notice on single product pages."
6847
+ msgstr ""
6848
+
6849
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:87
6850
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:330
6851
+ msgid "Location"
6852
+ msgstr ""
6853
+
6854
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:88
6855
+ msgid "Adjust the location of the shopmark by selecting a location from the list. Some Themes might apply the locations at different positions that's why the result may differ from Theme to Theme."
6856
+ msgstr ""
6857
+
6858
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:101
6859
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:345
6860
+ msgid "Priority"
6861
+ msgstr ""
6862
+
6863
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:102
6864
+ msgid "Many different information may be attached to the location selected. By adjusting the priority you can choose whether the shopmark gets applied earlier (lower) or later (higher)."
6865
+ msgstr ""
6866
+
6867
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:120
6868
+ #: includes/admin/views/html-page-status-germanized.php:50
6869
+ msgid "Default Delivery Time"
6870
+ msgstr ""
6871
+
6872
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:121
6873
+ msgid "Choose a delivery time that serves as fallback in case no delivery time was added to the product."
6874
+ msgstr ""
6875
+
6876
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:134
6877
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:458
6878
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:505
6879
+ msgid "Format"
6880
+ msgstr ""
6881
+
6882
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:135
6883
+ msgid "You may want to adjust the delivery time output format. You might use {delivery_time} to output the current product's delivery time."
6884
+ msgstr ""
6885
+
6886
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:153
6887
+ msgid "Default Sale Label"
6888
+ msgstr ""
6889
+
6890
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:154
6891
+ msgid "Price labels are added to sale products to inform the customers of the different prices' meaning. You may add a fallback label in case a product does not contain a label."
6892
+ msgstr ""
6893
+
6894
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:195
6895
+ msgid "Adjust Product Widgets & Blocks visibility options."
6896
+ msgstr ""
6897
+
6898
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:199
6899
+ msgid "Adjust %s visibility options and choose which shopmarks to be displayed at which locations."
6900
+ msgstr ""
6901
+
6902
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:211
6903
+ msgid "Shipping Costs notice"
6904
+ msgstr ""
6905
+
6906
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:218
6907
+ msgid "Tax Info"
6908
+ msgstr ""
6909
+
6910
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:225
6911
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:256
6912
+ msgid "Base Price"
6913
+ msgstr ""
6914
+
6915
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:239
6916
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:272
6917
+ msgid "Delivery Time Notice"
6918
+ msgstr ""
6919
+
6920
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:280
6921
+ msgid "Short Description"
6922
+ msgstr ""
6923
+
6924
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:303
6925
+ msgid "Show %s shopmark"
6926
+ msgstr ""
6927
+
6928
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:311
6929
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
6930
+ msgid "Tax"
6931
+ msgstr ""
6932
+
6933
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:312
6934
+ msgid "Show Tax shopmark"
6935
+ msgstr ""
6936
+
6937
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:320
6938
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:365
6939
+ #: includes/wc-gzd-core-functions.php:248
6940
+ msgid "Shipping Costs"
6941
+ msgstr ""
6942
+
6943
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:321
6944
+ msgid "Show Shipping Costs shopmark"
6945
+ msgstr ""
6946
+
6947
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:331
6948
+ msgid "Choose a location for the shopmark. Locations are mapped to specific WooCommerce hooks and may differ from Theme to Theme."
6949
+ msgstr ""
6950
+
6951
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:346
6952
+ msgid "Choose a priority by which the shopmark should be attached to the location. The higher the priority, the later the shopmark will be attached. Defaults to %d."
6953
+ msgstr ""
6954
+
6955
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:372
6956
+ msgid "This text will be used to inform the customer about shipping costs. Use {link}{/link} to insert link to shipping costs page."
6957
+ msgstr ""
6958
+
6959
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:377
6960
+ msgid "plus {link}Shipping Costs{/link}"
6961
+ msgstr ""
6962
+
6963
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:380
6964
+ msgid "Free Shipping Text"
6965
+ msgstr ""
6966
+
6967
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:381
6968
+ msgid "This text will be used to inform the customer about free shipping. Leave empty to disable notice. Use {link}{/link} to insert link to shipping costs page."
6969
+ msgstr ""
6970
+
6971
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:389
6972
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:487
6973
+ msgid "Hide Notice"
6974
+ msgstr ""
6975
+
6976
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:390
6977
+ msgid "Select product types for which you might want to disable the shipping costs notice."
6978
+ msgstr ""
6979
+
6980
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:400
6981
+ msgid "Footer"
6982
+ msgstr ""
6983
+
6984
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:403
6985
+ msgid "Notice"
6986
+ msgstr ""
6987
+
6988
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:404
6989
+ msgid "Attach a global VAT notice to your footer."
6990
+ msgstr ""
6991
+
6992
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:411
6993
+ msgid "Attach a global sale price notice to your footer."
6994
+ msgstr ""
6995
+
6996
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:447
6997
+ msgid "Fallback"
6998
+ msgstr ""
6999
+
7000
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:448
7001
+ msgid "This delivery time will be added to every product if no delivery time has been chosen individually"
7002
+ msgstr ""
7003
+
7004
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:455
7005
+ msgid "Manage Delivery Times"
7006
+ msgstr ""
7007
+
7008
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:459
7009
+ msgid "This text will be used to indicate delivery time for products. Use {delivery_time} as placeholder."
7010
+ msgstr ""
7011
+
7012
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:463
7013
+ msgid "Delivery time: {delivery_time}"
7014
+ msgstr ""
7015
+
7016
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:466
7017
+ msgid "Digital text"
7018
+ msgstr ""
7019
+
7020
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:470
7021
+ msgid "Enter a text which will be shown as digital delivery time text (replacement for default digital time on digital products)."
7022
+ msgstr ""
7023
+
7024
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:473
7025
+ msgid "Backorder"
7026
+ msgstr ""
7027
+
7028
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:474
7029
+ msgid "Hide delivery time if a product is on backorder."
7030
+ msgstr ""
7031
+
7032
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:480
7033
+ msgid "Not in Stock"
7034
+ msgstr ""
7035
+
7036
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:481
7037
+ msgid "Hide delivery time if a product is not in stock."
7038
+ msgstr ""
7039
+
7040
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:488
7041
+ msgid "Select product types for which you might want to disable the delivery time notice."
7042
+ msgstr ""
7043
+
7044
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:506
7045
+ msgid "This text will be used to display the base price. Use {price} to insert the price. If you want to specifically format base price output use {base}, {unit} and {base_price} as placeholders."
7046
+ msgstr ""
7047
+
7048
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:510
7049
+ msgid "{price}"
7050
+ msgstr ""
7051
+
7052
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:513
7053
+ msgid "Variable Price"
7054
+ msgstr ""
7055
+
7056
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:514
7057
+ msgid "Enable price range base prices for variable products."
7058
+ msgstr ""
7059
+
7060
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:520
7061
+ msgid "Product units format"
7062
+ msgstr ""
7063
+
7064
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:521
7065
+ msgid "This text will be used to display the product units. Use {product_units} to insert the amount of product units. Use {unit} to insert the unit. Optionally display the formatted unit price with {unit_price}."
7066
+ msgstr ""
7067
+
7068
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:525
7069
+ msgid "Product contains: {product_units} {unit}"
7070
+ msgstr ""
7071
+
7072
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:537
7073
+ msgid "Fallback Sale Label"
7074
+ msgstr ""
7075
+
7076
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:544
7077
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:554
7078
+ msgid "Manage Price Labels"
7079
+ msgstr ""
7080
+
7081
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:544
7082
+ msgid "Choose whether you would like to have a default sale price label to inform the customer about the regular price (e.g. Recommended Retail Price)."
7083
+ msgstr ""
7084
+
7085
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:547
7086
+ msgid "Fallback Regular Label"
7087
+ msgstr ""
7088
+
7089
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:554
7090
+ msgid "Choose whether you would like to have a default sale price regular label to inform the customer about the sale price (e.g. New Price)."
7091
+ msgstr ""
7092
+
7093
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:558
7094
+ #: src/Shopmarks.php:294
7095
+ msgid "Single Product"
7096
+ msgstr ""
7097
+
7098
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:559
7099
+ msgid "Show price labels on single product page."
7100
+ msgstr ""
7101
+
7102
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:566
7103
+ msgid "Loop"
7104
+ msgstr ""
7105
+
7106
+ #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:567
7107
+ msgid "Show price labels in product loops."
7108
+ msgstr ""
7109
+
7110
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:17
7111
+ msgid "Adjust tax related settings e.g. Split-tax calculation for shipping costs."
7112
+ msgstr ""
7113
+
7114
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:21
7115
+ #: includes/admin/views/html-page-status-germanized.php:86
7116
+ msgid "Taxes"
7117
+ msgstr ""
7118
+
7119
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:30
7120
+ #: includes/wc-gzd-core-functions.php:451
7121
+ msgid "VAT"
7122
+ msgstr ""
7123
+
7124
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:31
7125
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:101
7126
+ #: includes/admin/views/html-page-status-germanized.php:91
7127
+ msgid "Split-tax"
7128
+ msgstr ""
7129
+
7130
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:32
7131
+ msgid "Differential Taxation"
7132
+ msgstr ""
7133
+
7134
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:42
7135
+ #: includes/admin/views/html-page-status-germanized.php:101
7136
+ msgid "Virtual VAT"
7137
+ msgstr ""
7138
+
7139
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:43
7140
+ msgid "Enable if you want to charge your customer's countries' VAT for virtual products."
7141
+ msgstr ""
7142
+
7143
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:43
7144
+ msgid "New EU VAT rule applies on 01.01.2015. Make sure that every digital or virtual product has chosen the right tax class (Virtual Rate or Virtual Reduced Rate). Gross prices will not differ from the prices you have chosen for affected products. In fact the net price will differ depending on the VAT rate of your customers' country. Shop settings will be adjusted to show prices including tax. More information can be found <a href=\"%s\" target=\"_blank\">here</a>."
7145
+ msgstr ""
7146
+
7147
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:55
7148
+ msgid "Tax Rate"
7149
+ msgstr ""
7150
+
7151
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:56
7152
+ msgid "Hide specific tax rate within shop pages."
7153
+ msgstr ""
7154
+
7155
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:60
7156
+ msgid "This option will make sure that within shop pages no specific tax rates are shown. Instead only incl. tax or excl. tax notice is shown."
7157
+ msgstr ""
7158
+
7159
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:72
7160
+ msgid "VAT ID"
7161
+ msgstr ""
7162
+
7163
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:75
7164
+ msgid "%sUpgrade to %spro%s%s to unlock this feature and enjoy premium support."
7165
+ msgstr ""
7166
+
7167
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
7168
+ msgid "By choosing this option shipping cost and fee taxes will be calculated based on the tax rates included within the cart. Imagine the following example. The tax share is calculated based on net prices. Further information can be found <a href=\"%s\" target=\"_blank\">here</a>. %s"
7169
+ msgstr ""
7170
+
7171
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
7172
+ msgid "Product"
7173
+ msgstr ""
7174
+
7175
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
7176
+ msgid "Price"
7177
+ msgstr ""
7178
+
7179
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
7180
+ msgid "Price (net)"
7181
+ msgstr ""
7182
+
7183
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
7184
+ msgid "Tax rate"
7185
+ msgstr ""
7186
+
7187
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
7188
+ msgid "Share"
7189
+ msgstr ""
7190
+
7191
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
7192
+ msgid "Book"
7193
+ msgstr ""
7194
+
7195
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
7196
+ msgid "DVD"
7197
+ msgstr ""
7198
+
7199
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
7200
+ msgid "Shipping"
7201
+ msgstr ""
7202
+
7203
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:102
7204
+ msgid "Enable split-tax calculation for additional costs (shipping costs and fees)."
7205
+ msgstr ""
7206
+
7207
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:117
7208
+ msgid "Taxation Notice"
7209
+ msgstr ""
7210
+
7211
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:118
7212
+ msgid "Enable differential taxation text notice beneath product price."
7213
+ msgstr ""
7214
+
7215
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:118
7216
+ msgid "If you have disabled this option, a normal VAT notice will be displayed, which is sufficient as Trusted Shops states. To further inform your customers you may enable this notice."
7217
+ msgstr ""
7218
+
7219
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:124
7220
+ msgid "Mixed carts"
7221
+ msgstr ""
7222
+
7223
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:125
7224
+ msgid "Disallow buying normal and differential taxed products at the same time."
7225
+ msgstr ""
7226
+
7227
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:125
7228
+ msgid "Shipping costs for differential taxed products may not be taxed (compare %s) or must be taxed separately which is impossible within a single order. This option will prevent your customers from buying normal products and differential taxed products at the same time to prevent taxation problems."
7229
+ msgstr ""
7230
+
7231
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:125
7232
+ msgid "HK Hamburg"
7233
+ msgstr ""
7234
+
7235
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:132
7236
+ msgid "This text will be shown as a further notice for the customer to inform him about differential taxation."
7237
+ msgstr ""
7238
+
7239
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:137
7240
+ msgid "incl. VAT (differential taxation according to §25a UStG.)"
7241
+ msgstr ""
7242
+
7243
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:141
7244
+ msgid "Checkout & E-Mails"
7245
+ msgstr ""
7246
+
7247
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:142
7248
+ msgid "Enable differential taxation notice during checkout and in emails."
7249
+ msgstr ""
7250
+
7251
+ #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:187
7252
+ msgid "Sorry, but the new Virtual VAT rules cannot be applied to small business."
7253
+ msgstr ""
7254
+
7255
+ #: includes/admin/settings/class-wc-gzd-settings-tab-terms-generator.php:17
7256
+ msgid "Easily generate your custom terms & conditions through our API."
7257
+ msgstr ""
7258
+
7259
+ #: includes/admin/settings/class-wc-gzd-settings-tab-terms-generator.php:21
7260
+ msgid "TOS Generator"
7261
+ msgstr ""
7262
+
7263
+ #: includes/admin/settings/views/html-admin-page-checkboxes.php:10
7264
+ msgid "Drag and drop to re-order checkboxes. This is the order being used for printing the fields."
7265
+ msgstr ""
7266
+
7267
+ #: includes/admin/settings/views/html-admin-page-checkboxes.php:11
7268
+ #: includes/admin/settings/views/html-admin-settings-tabs.php:27
7269
+ #: includes/class-wc-gzd-legal-checkbox.php:793
7270
+ msgid "Name"
7271
+ msgstr ""
7272
+
7273
+ #: includes/admin/settings/views/html-admin-page-checkboxes.php:12
7274
+ #: includes/admin/settings/views/html-admin-settings-tabs.php:29
7275
+ #: includes/class-wc-gzd-legal-checkbox.php:812
7276
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:888
7277
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:124
7278
+ msgid "Description"
7279
+ msgstr ""
7280
+
7281
+ #: includes/admin/settings/views/html-admin-page-checkboxes.php:13
7282
+ #: includes/admin/settings/views/html-admin-settings-tabs.php:28
7283
+ msgid "Enabled"
7284
+ msgstr ""
7285
+
7286
+ #: includes/admin/settings/views/html-admin-page-checkboxes.php:14
7287
+ #: includes/class-wc-gzd-legal-checkbox.php:849
7288
+ msgid "Mandatory"
7289
+ msgstr ""
7290
+
7291
+ #: includes/admin/settings/views/html-admin-page-checkboxes.php:15
7292
+ msgid "Location(s)"
7293
+ msgstr ""
7294
+
7295
+ #: includes/admin/settings/views/html-admin-page-checkboxes.php:28
7296
+ msgid "Edit"
7297
+ msgstr ""
7298
+
7299
+ #: includes/admin/settings/views/html-admin-page-checkboxes.php:30
7300
+ msgid "Delete"
7301
+ msgstr ""
7302
+
7303
+ #: includes/admin/settings/views/html-admin-settings-tabs.php:13
7304
+ msgid "Upgrade to %s"
7305
+ msgstr ""
7306
+
7307
+ #: includes/admin/settings/views/html-admin-settings-tabs.php:21
7308
+ msgid "Adapt your WooCommerce installation to the german market with Germanized."
7309
+ msgstr ""
7310
+
7311
+ #: includes/admin/settings/views/html-admin-settings-tabs.php:65
7312
+ #: includes/admin/settings/views/html-admin-settings-tabs.php:66
7313
+ msgid "Find out more"
7314
+ msgstr ""
7315
+
7316
+ #: includes/admin/settings/views/html-admin-settings-tabs.php:67
7317
+ msgid "How to"
7318
+ msgstr ""
7319
+
7320
+ #: includes/admin/settings/views/html-admin-settings-tabs.php:71
7321
+ #: includes/admin/settings/views/html-admin-settings-tabs.php:72
7322
+ msgid "Manage settings"
7323
+ msgstr ""
7324
+
7325
+ #: includes/admin/settings/views/html-admin-settings-tabs.php:73
7326
+ msgid "Manage"
7327
+ msgstr ""
7328
+
7329
+ #: includes/admin/views/html-notice-dependencies.php:15
7330
+ msgid "WooCommerce missing or outdated"
7331
+ msgstr ""
7332
+
7333
+ #. translators: 1$-2$: opening and closing <strong> tags, 3$-4$: link tags, takes to woocommerce plugin on wp.org, 5$-6$: opening and closing link tags, leads to plugins.php in admin
7334
+ #: includes/admin/views/html-notice-dependencies.php:21
7335
+ msgid "%1$sGermanized is inactive.%2$s The %3$sWooCommerce plugin%4$s must be active for Germanized to work. Please %5$sinstall WooCommerce &raquo;%6$s"
7336
+ msgstr ""
7337
+
7338
+ #. translators: 1$-2$: opening and closing <strong> tags, 3$-4$: link tags, takes to woocommerce plugin on wp.org, 5$-6$: opening and closing link tags, leads to plugins.php in admin
7339
+ #: includes/admin/views/html-notice-dependencies.php:27
7340
+ msgid "%1$sGermanized is inactive.%2$s The %3$sWooCommerce plugin%4$s must be active for Germanized to work. Please %5$sactivate WooCommerce &raquo;%6$s"
7341
+ msgstr ""
7342
+
7343
+ #. translators: 1$-2$: opening and closing <strong> tags, 3$: minimum supported WooCommerce version, 4$-5$: opening and closing link tags, leads to plugin admin
7344
+ #: includes/admin/views/html-notice-dependencies.php:33
7345
+ msgid "%1$sGermanized is inactive.%2$s This version of Germanized requires WooCommerce %3$s or newer. Please %4$supdate WooCommerce to version %3$s or newer &raquo;%5$s"
7346
+ msgstr ""
7347
+
7348
+ #: includes/admin/views/html-notice-fallback.php:13
7349
+ msgid "Hide"
7350
+ msgstr ""
7351
+
7352
+ #: includes/admin/views/html-notice-update-pro-incompatible.php:15
7353
+ msgid "<strong>Be aware!</strong> This update is not compatible with your current Germanized Pro version. Please <a href=\"%s\">check for updates</a> before updating Germanized to prevent <a href=\"%s\">compatibility issues</a>."
7354
+ msgstr ""
7355
+
7356
+ #: includes/admin/views/html-page-status-germanized.php:12
7357
+ msgid "Please copy and paste this information in your ticket when contacting support:"
7358
+ msgstr ""
7359
+
7360
+ #: includes/admin/views/html-page-status-germanized.php:14
7361
+ msgid "Get System Report"
7362
+ msgstr ""
7363
+
7364
+ #: includes/admin/views/html-page-status-germanized.php:19
7365
+ msgid "Copied!"
7366
+ msgstr ""
7367
+
7368
+ #: includes/admin/views/html-page-status-germanized.php:19
7369
+ msgid "Copy for Support"
7370
+ msgstr ""
7371
+
7372
+ #: includes/admin/views/html-page-status-germanized.php:32
7373
+ msgid "Version"
7374
+ msgstr ""
7375
+
7376
+ #: includes/admin/views/html-page-status-germanized.php:37
7377
+ msgid "Database Version"
7378
+ msgstr ""
7379
+
7380
+ #: includes/admin/views/html-page-status-germanized.php:62
7381
+ msgid "Term doesn’t exist"
7382
+ msgstr ""
7383
+
7384
+ #: includes/admin/views/html-page-status-germanized.php:96
7385
+ msgid "Additional costs include taxes"
7386
+ msgstr ""
7387
+
7388
+ #: includes/admin/views/html-page-status-germanized.php:106
7389
+ msgid "Tax Rate Name Collision"
7390
+ msgstr ""
7391
+
7392
+ #: includes/admin/views/html-page-status-germanized.php:109
7393
+ msgid "Make sure, that different tax rates do not have the same names. WooCommerce will then merge these rates within checkout into one line."
7394
+ msgstr ""
7395
+
7396
+ #: includes/admin/views/html-page-status-germanized.php:153
7397
+ msgid "VAT Table Check"
7398
+ msgstr ""
7399
+
7400
+ #: includes/admin/views/html-page-status-germanized.php:154
7401
+ msgid "Checks whether all WooCommerce tax relevant tables have been added."
7402
+ msgstr ""
7403
+
7404
+ #: includes/admin/views/html-page-status-germanized.php:155
7405
+ msgid "Missing: %s"
7406
+ msgstr ""
7407
+
7408
+ #: includes/admin/views/html-page-status-germanized.php:183
7409
+ msgid "Page doesn’t exist"
7410
+ msgstr ""
7411
+
7412
+ #: includes/admin/views/html-page-status-germanized.php:203
7413
+ msgid "Compatibility"
7414
+ msgstr ""
7415
+
7416
+ #: includes/admin/views/html-page-status-germanized.php:219
7417
+ msgid "Checks whether compatibility options for %s are being applied."
7418
+ msgstr ""
7419
+
7420
+ #: includes/admin/views/html-page-status-germanized.php:222
7421
+ msgid "Version %s not supported, supporting version %s - %s"
7422
+ msgstr ""
7423
+
7424
+ #: includes/admin/views/html-page-status-germanized.php:244
7425
+ msgid "Tools"
7426
+ msgstr ""
7427
+
7428
+ #: includes/admin/views/html-page-status-germanized.php:249
7429
+ msgid "German Formal"
7430
+ msgstr ""
7431
+
7432
+ #: includes/admin/views/html-page-status-germanized.php:250
7433
+ msgid "This option will install and activate German formal as your WordPress and WooCommerce language."
7434
+ msgstr ""
7435
+
7436
+ #: includes/admin/views/html-page-status-germanized.php:253
7437
+ msgid "Install de_DE_formal"
7438
+ msgstr ""
7439
+
7440
+ #: includes/admin/views/html-page-status-germanized.php:256
7441
+ msgid "Text Options"
7442
+ msgstr ""
7443
+
7444
+ #: includes/admin/views/html-page-status-germanized.php:257
7445
+ msgid "This option removes custom Germanized text options (e.g. Pay-Button-Text) and installs default options. You may use this options to reinstall text options e.g. after a language switch."
7446
+ msgstr ""
7447
+
7448
+ #: includes/admin/views/html-page-status-germanized.php:260
7449
+ msgid "Delete text options"
7450
+ msgstr ""
7451
+
7452
+ #: includes/admin/views/html-page-status-germanized.php:263
7453
+ msgid "Renew EU VAT Rates"
7454
+ msgstr ""
7455
+
7456
+ #: includes/admin/views/html-page-status-germanized.php:264
7457
+ msgid "Insert VAT rates (standard, recuded and virtual) for EU countries. This option deletes all of your standard, reduced and virtual rates before inserting."
7458
+ msgstr ""
7459
+
7460
+ #: includes/admin/views/html-page-status-germanized.php:267
7461
+ msgid "Renew VAT Rates"
7462
+ msgstr ""
7463
+
7464
+ #: includes/admin/views/html-page-status-germanized.php:270
7465
+ #: includes/admin/views/html-page-status-germanized.php:273
7466
+ msgid "Disable notices"
7467
+ msgstr ""
7468
+
7469
+ #: includes/admin/views/html-page-status-germanized.php:271
7470
+ msgid "Germanized might ask you to leave a review or notices you of using a possibly unsupported theme. If you want to disable these notices, check this option."
7471
+ msgstr ""
7472
+
7473
+ #: includes/admin/views/html-page-status-germanized.php:273
7474
+ msgid "Enable notices"
7475
+ msgstr ""
7476
+
7477
+ #: includes/admin/views/html-page-status-germanized.php:292
7478
+ msgid "Templates"
7479
+ msgstr ""
7480
+
7481
+ #: includes/admin/views/html-page-status-germanized.php:298
7482
+ msgid "Overrides"
7483
+ msgstr ""
7484
+
7485
+ #: includes/admin/views/html-page-status-germanized.php:307
7486
+ msgid "Version %s is out of date. The core version is %s."
7487
+ msgstr ""
7488
+
7489
+ #: includes/admin/views/html-page-status-germanized.php:315
7490
+ msgid "Learn how to update outdated templates"
7491
+ msgstr ""
7492
+
7493
+ #: includes/admin/views/setup/dhl.php:12
7494
+ msgid "Want to easily ship your orders via DHL? Enable our deep DHL integration and start generating labels for shipments comfortably via your admin panel."
7495
+ msgstr ""
7496
+
7497
+ #: includes/admin/views/setup/dhl.php:17
7498
+ msgid "We've found out that you have been using DHL for WooCommerce already. We will automatically import your settings and you can start using our integration instead."
7499
+ msgstr ""
7500
+
7501
+ #: includes/admin/views/setup/first-steps.php:11
7502
+ msgid "Congratulations! You are ready to go. You should now head over to the settings to configure Germanized in-deep."
7503
+ msgstr ""
7504
+
7505
+ #: includes/admin/views/setup/first-steps.php:15
7506
+ msgid "Resources"
7507
+ msgstr ""
7508
+
7509
+ #: includes/admin/views/setup/first-steps.php:20
7510
+ msgid "Knowledge Base"
7511
+ msgstr ""
7512
+
7513
+ #: includes/admin/views/setup/first-steps.php:22
7514
+ msgid "Stay tuned"
7515
+ msgstr ""
7516
+
7517
+ #: includes/admin/views/setup/first-steps.php:25
7518
+ msgid "Learn how to use WordPress"
7519
+ msgstr ""
7520
+
7521
+ #: includes/admin/views/setup/first-steps.php:28
7522
+ msgid "Learn how to use WooCommerce"
7523
+ msgstr ""
7524
+
7525
+ #: includes/admin/views/setup/first-steps.php:36
7526
+ msgid "Want more features and premium support?"
7527
+ msgstr ""
7528
+
7529
+ #: includes/admin/views/setup/first-steps.php:39
7530
+ msgid "Discover professional version"
7531
+ msgstr ""
7532
+
7533
+ #: includes/admin/views/setup/germanize.php:12
7534
+ msgid "Germany"
7535
+ msgstr ""
7536
+
7537
+ #: includes/admin/views/setup/germanize.php:14
7538
+ msgid "Germanize WooCommerce"
7539
+ msgstr ""
7540
+
7541
+ #: includes/admin/views/setup/germanize.php:16
7542
+ msgid "Let Germanized help you to adjust your WooCommerce settings for %s."
7543
+ msgstr ""
7544
+
7545
+ #: includes/admin/views/setup/internetmarke.php:12
7546
+ msgid "Want to easily ship your orders via Deutsche Post? Enable our Internetmarke integration and start generating labels for shipments comfortably via your admin panel."
7547
+ msgstr ""
7548
+
7549
+ #: includes/admin/views/setup/internetmarke.php:17
7550
+ msgid "We've found out that you have been using the Internetmarke standalone Plugin already. We will automatically import your settings and you can start using our integration instead."
7551
+ msgstr ""
7552
+
7553
+ #: includes/admin/views/setup/settings.php:7
7554
+ msgid "Adjust Germanized"
7555
+ msgstr ""
7556
+
7557
+ #: includes/admin/views/setup/settings.php:9
7558
+ msgid "Configure Germanized to your needs. You can always adjust these settings later on."
7559
+ msgstr ""
7560
+
7561
+ #: includes/api/class-wc-gzd-rest-customers-controller.php:152
7562
+ msgid "Has been activated via DOI?"
7563
+ msgstr ""
7564
+
7565
+ #: includes/api/class-wc-gzd-rest-customers-controller.php:160
7566
+ #: includes/api/class-wc-gzd-rest-orders-controller.php:159
7567
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:39
7568
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:884
7569
+ #: includes/gateways/direct-debit/views/html-export.php:30
7570
+ msgid "Direct Debit"
7571
+ msgstr ""
7572
+
7573
+ #: includes/api/class-wc-gzd-rest-customers-controller.php:165
7574
+ #: includes/api/class-wc-gzd-rest-orders-controller.php:164
7575
+ #: includes/class-wc-gzd-privacy.php:85
7576
+ #: includes/class-wc-gzd-privacy.php:117
7577
+ #: includes/class-wc-gzd-privacy.php:166
7578
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:117
7579
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:600
7580
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:910
7581
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1056
7582
+ msgid "Account Holder"
7583
+ msgstr ""
7584
+
7585
+ #: includes/api/class-wc-gzd-rest-customers-controller.php:170
7586
+ #: includes/api/class-wc-gzd-rest-orders-controller.php:169
7587
+ #: includes/class-wc-gzd-privacy.php:86
7588
+ #: includes/class-wc-gzd-privacy.php:118
7589
+ #: includes/class-wc-gzd-privacy.php:167
7590
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:124
7591
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:601
7592
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:918
7593
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1060
7594
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1190
7595
+ msgid "IBAN"
7596
+ msgstr ""
7597
+
7598
+ #: includes/api/class-wc-gzd-rest-customers-controller.php:175
7599
+ #: includes/api/class-wc-gzd-rest-orders-controller.php:174
7600
+ #: includes/class-wc-gzd-privacy.php:87
7601
+ #: includes/class-wc-gzd-privacy.php:119
7602
+ #: includes/class-wc-gzd-privacy.php:168
7603
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:131
7604
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:602
7605
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1064
7606
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1191
7607
+ msgid "BIC/SWIFT"
7608
+ msgstr ""
7609
+
7610
+ #: includes/api/class-wc-gzd-rest-orders-controller.php:152
7611
+ msgid "Parcel Delivery Data Transfer"
7612
+ msgstr ""
7613
+
7614
+ #: includes/api/class-wc-gzd-rest-orders-controller.php:179
7615
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:138
7616
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:606
7617
+ msgid "Mandate Reference ID"
7618
+ msgstr ""
7619
+
7620
+ #: includes/api/class-wc-gzd-rest-products-controller.php:37
7621
+ #: includes/api/class-wc-gzd-rest-products-controller.php:209
7622
+ msgid "Delivery Time ID"
7623
+ msgstr ""
7624
+
7625
+ #: includes/api/class-wc-gzd-rest-products-controller.php:42
7626
+ #: includes/api/class-wc-gzd-rest-products-controller.php:214
7627
+ msgid "Delivery Time Name"
7628
+ msgstr ""
7629
+
7630
+ #: includes/api/class-wc-gzd-rest-products-controller.php:48
7631
+ #: includes/api/class-wc-gzd-rest-products-controller.php:220
7632
+ msgid "Delivery Time Slug"
7633
+ msgstr ""
7634
+
7635
+ #: includes/api/class-wc-gzd-rest-products-controller.php:53
7636
+ #: includes/api/class-wc-gzd-rest-products-controller.php:225
7637
+ msgid "Delivery Time HTML"
7638
+ msgstr ""
7639
+
7640
+ #: includes/api/class-wc-gzd-rest-products-controller.php:61
7641
+ #: includes/api/class-wc-gzd-rest-products-controller.php:84
7642
+ #: includes/api/class-wc-gzd-rest-products-controller.php:233
7643
+ #: includes/api/class-wc-gzd-rest-products-controller.php:256
7644
+ #: includes/class-wc-gzd-post-types.php:144
7645
+ msgid "Price Label"
7646
+ msgstr ""
7647
+
7648
+ #: includes/api/class-wc-gzd-rest-products-controller.php:66
7649
+ #: includes/api/class-wc-gzd-rest-products-controller.php:89
7650
+ #: includes/api/class-wc-gzd-rest-products-controller.php:238
7651
+ #: includes/api/class-wc-gzd-rest-products-controller.php:261
7652
+ msgid "Price Label ID"
7653
+ msgstr ""
7654
+
7655
+ #: includes/api/class-wc-gzd-rest-products-controller.php:71
7656
+ #: includes/api/class-wc-gzd-rest-products-controller.php:94
7657
+ #: includes/api/class-wc-gzd-rest-products-controller.php:243
7658
+ #: includes/api/class-wc-gzd-rest-products-controller.php:266
7659
+ msgid "Price Label Name"
7660
+ msgstr ""
7661
+
7662
+ #: includes/api/class-wc-gzd-rest-products-controller.php:77
7663
+ #: includes/api/class-wc-gzd-rest-products-controller.php:100
7664
+ #: includes/api/class-wc-gzd-rest-products-controller.php:249
7665
+ #: includes/api/class-wc-gzd-rest-products-controller.php:272
7666
+ msgid "Price Label Slug"
7667
+ msgstr ""
7668
+
7669
+ #: includes/api/class-wc-gzd-rest-products-controller.php:112
7670
+ msgid "Unit ID"
7671
+ msgstr ""
7672
+
7673
+ #: includes/api/class-wc-gzd-rest-products-controller.php:117
7674
+ msgid "Unit Name"
7675
+ msgstr ""
7676
+
7677
+ #: includes/api/class-wc-gzd-rest-products-controller.php:123
7678
+ msgid "Unit Slug"
7679
+ msgstr ""
7680
+
7681
+ #: includes/api/class-wc-gzd-rest-products-controller.php:130
7682
+ #: includes/api/class-wc-gzd-rest-products-controller.php:296
7683
+ #: includes/compatibility/elementor/widgets/class-wc-gzd-elementor-widget-product-unit-price.php:10
7684
+ msgid "Unit Price"
7685
+ msgstr ""
7686
+
7687
+ #: includes/api/class-wc-gzd-rest-products-controller.php:135
7688
+ #: includes/api/class-wc-gzd-rest-products-controller.php:301
7689
+ msgid "Unit Base"
7690
+ msgstr ""
7691
+
7692
+ #: includes/api/class-wc-gzd-rest-products-controller.php:140
7693
+ #: includes/api/class-wc-gzd-rest-products-controller.php:306
7694
+ msgid "Unit Product"
7695
+ msgstr ""
7696
+
7697
+ #: includes/api/class-wc-gzd-rest-products-controller.php:145
7698
+ #: includes/api/class-wc-gzd-rest-products-controller.php:311
7699
+ msgid "Unit Auto Calculation"
7700
+ msgstr ""
7701
+
7702
+ #: includes/api/class-wc-gzd-rest-products-controller.php:151
7703
+ #: includes/api/class-wc-gzd-rest-products-controller.php:317
7704
+ msgid "Current Unit Price"
7705
+ msgstr ""
7706
+
7707
+ #: includes/api/class-wc-gzd-rest-products-controller.php:156
7708
+ #: includes/api/class-wc-gzd-rest-products-controller.php:322
7709
+ msgid "Unit Regular Price"
7710
+ msgstr ""
7711
+
7712
+ #: includes/api/class-wc-gzd-rest-products-controller.php:161
7713
+ #: includes/api/class-wc-gzd-rest-products-controller.php:327
7714
+ msgid "Unit Sale Price"
7715
+ msgstr ""
7716
+
7717
+ #: includes/api/class-wc-gzd-rest-products-controller.php:166
7718
+ #: includes/api/class-wc-gzd-rest-products-controller.php:332
7719
+ msgid "Unit Price HTML"
7720
+ msgstr ""
7721
+
7722
+ #: includes/api/class-wc-gzd-rest-products-controller.php:174
7723
+ #: includes/api/class-wc-gzd-rest-products-controller.php:285
7724
+ msgid "Small Cart Product Description"
7725
+ msgstr ""
7726
+
7727
+ #: includes/api/class-wc-gzd-rest-products-controller.php:179
7728
+ msgid "Deactivate the hint for additional shipping costs"
7729
+ msgstr ""
7730
+
7731
+ #: includes/api/class-wc-gzd-rest-products-controller.php:185
7732
+ #: includes/api/class-wc-gzd-rest-products-controller.php:290
7733
+ msgid "Age verification minimum age."
7734
+ msgstr ""
7735
+
7736
+ #: includes/api/class-wc-gzd-rest-products-controller.php:192
7737
+ #: includes/api/class-wc-gzd-rest-products-controller.php:279
7738
+ msgid "Whether this product is a service or not"
7739
+ msgstr ""
7740
+
7741
+ #: includes/api/class-wc-gzd-rest-products-controller.php:198
7742
+ msgid "Whether this product applies for differential taxation or not"
7743
+ msgstr ""
7744
+
7745
+ #: includes/api/v1/class-wc-gzd-rest-product-delivery-times-v1-controller.php:73
7746
+ #: includes/api/v1/class-wc-gzd-rest-product-price-labels-v1-controller.php:73
7747
+ #: includes/api/v1/class-wc-gzd-rest-product-units-v1-controller.php:73
7748
+ msgid "Unique identifier for the resource."
7749
+ msgstr ""
7750
+
7751
+ #: includes/api/v1/class-wc-gzd-rest-product-delivery-times-v1-controller.php:79
7752
+ #: includes/api/v1/class-wc-gzd-rest-product-price-labels-v1-controller.php:79
7753
+ #: includes/api/v1/class-wc-gzd-rest-product-units-v1-controller.php:79
7754
+ msgid "Resource name."
7755
+ msgstr ""
7756
+
7757
+ #: includes/api/v1/class-wc-gzd-rest-product-delivery-times-v1-controller.php:87
7758
+ #: includes/api/v1/class-wc-gzd-rest-product-price-labels-v1-controller.php:87
7759
+ #: includes/api/v1/class-wc-gzd-rest-product-units-v1-controller.php:87
7760
+ msgid "An alphanumeric identifier for the resource unique to its type."
7761
+ msgstr ""
7762
+
7763
+ #: includes/api/v1/class-wc-gzd-rest-product-delivery-times-v1-controller.php:95
7764
+ #: includes/api/v1/class-wc-gzd-rest-product-price-labels-v1-controller.php:95
7765
+ #: includes/api/v1/class-wc-gzd-rest-product-units-v1-controller.php:95
7766
+ msgid "HTML description of the resource."
7767
+ msgstr ""
7768
+
7769
+ #: includes/api/v1/class-wc-gzd-rest-product-delivery-times-v1-controller.php:103
7770
+ #: includes/api/v1/class-wc-gzd-rest-product-price-labels-v1-controller.php:103
7771
+ #: includes/api/v1/class-wc-gzd-rest-product-units-v1-controller.php:103
7772
+ msgid "Number of published products for the resource."
7773
+ msgstr ""
7774
+
7775
+ #: includes/class-wc-gzd-ajax.php:189
7776
+ msgid "%s [new]"
7777
+ msgstr ""
7778
+
7779
+ #: includes/class-wc-gzd-ajax.php:269
7780
+ msgctxt "revocation-form"
7781
+ msgid "is not a valid email address."
7782
+ msgstr ""
7783
+
7784
+ #: includes/class-wc-gzd-ajax.php:273
7785
+ msgctxt "revocation-form"
7786
+ msgid "Please enter a valid postcode/ZIP"
7787
+ msgstr ""
7788
+
7789
+ #: includes/class-wc-gzd-ajax.php:281
7790
+ msgctxt "revocation-form"
7791
+ msgid "is not valid."
7792
+ msgstr ""
7793
+
7794
+ #: includes/class-wc-gzd-ajax.php:302
7795
+ msgctxt "revocation-form"
7796
+ msgid "Thank you. We have received your Revocation Request. You will receive a conformation email within a few minutes."
7797
+ msgstr ""
7798
+
7799
+ #: includes/class-wc-gzd-checkout.php:233
7800
+ msgid "Sorry, but differential taxed products cannot be purchased with normal products at the same time."
7801
+ msgstr ""
7802
+
7803
+ #: includes/class-wc-gzd-checkout.php:239
7804
+ msgid "Sorry, but normal products cannot be purchased together with differential taxed products at the same time."
7805
+ msgstr ""
7806
+
7807
+ #: includes/class-wc-gzd-checkout.php:892
7808
+ #: includes/class-wc-gzd-revocation.php:52
7809
+ #: includes/wc-gzd-core-functions.php:604
7810
+ msgid "Mr."
7811
+ msgstr ""
7812
+
7813
+ #: includes/class-wc-gzd-checkout.php:893
7814
+ msgctxt "customer-title-male-address"
7815
+ msgid "Mr."
7816
+ msgstr ""
7817
+
7818
+ #: includes/class-wc-gzd-coupon-helper.php:72
7819
+ msgid "The cart contains one or more vouchers. Vouchers cannot be mixed with normal coupons."
7820
+ msgstr ""
7821
+
7822
+ #: includes/class-wc-gzd-coupon-helper.php:74
7823
+ msgid "The cart contains one or more coupons. Vouchers cannot be mixed with normal coupons. Please remove the coupon before adding your voucher."
7824
+ msgstr ""
7825
+
7826
+ #: includes/class-wc-gzd-coupon-helper.php:371
7827
+ msgid "Is voucher?"
7828
+ msgstr ""
7829
+
7830
+ #: includes/class-wc-gzd-coupon-helper.php:372
7831
+ msgid "Whether or not this coupon is a voucher which has been sold to a customer without VAT and needs to be taxed as soon as the customer redeems the voucher. Find more information <a href=\"%s\" target=\"_blank\">here</a>."
7832
+ msgstr ""
7833
+
7834
+ #: includes/class-wc-gzd-customer-helper.php:147
7835
+ #: includes/class-wc-gzd-customer-helper.php:212
7836
+ #: includes/class-wc-gzd-customer-helper.php:323
7837
+ msgid "Please activate your account through clicking on the activation link received via email."
7838
+ msgstr ""
7839
+
7840
+ #: includes/class-wc-gzd-customer-helper.php:154
7841
+ msgid "Did not receive the activation email? <a href=\"%s\">Try again</a>."
7842
+ msgstr ""
7843
+
7844
+ #: includes/class-wc-gzd-customer-helper.php:333
7845
+ msgid "Continue without creating an account? <a href=\"%s\">Click here</a>"
7846
+ msgstr ""
7847
+
7848
+ #: includes/class-wc-gzd-customer-helper.php:335
7849
+ msgid "Please create an account or login before continuing to checkout"
7850
+ msgstr ""
7851
+
7852
+ #: includes/class-wc-gzd-customer-helper.php:443
7853
+ msgid "Please activate your account through clicking on the activation link received via email. Did not receive the email? <a href=\"%s\">Try again</a>."
7854
+ msgstr ""
7855
+
7856
+ #: includes/class-wc-gzd-customer-helper.php:475
7857
+ msgid "This activation code has expired. We have sent you a new activation code via e-mail."
7858
+ msgstr ""
7859
+
7860
+ #: includes/class-wc-gzd-customer-helper.php:477
7861
+ msgid "Sorry, but this activation code cannot be found."
7862
+ msgstr ""
7863
+
7864
+ #: includes/class-wc-gzd-customer-helper.php:481
7865
+ msgid "Thank you. You have successfully activated your account."
7866
+ msgstr ""
7867
+
7868
+ #: includes/class-wc-gzd-customer-helper.php:661
7869
+ msgid "Expired activation key"
7870
+ msgstr ""
7871
+
7872
+ #: includes/class-wc-gzd-customer-helper.php:666
7873
+ msgid "Invalid activation key"
7874
+ msgstr ""
7875
+
7876
+ #: includes/class-wc-gzd-emails.php:191
7877
+ msgid "BCC recipients"
7878
+ msgstr ""
7879
+
7880
+ #: includes/class-wc-gzd-emails.php:193
7881
+ msgid "Enter blind-copy recipients (comma separated) for this email."
7882
+ msgstr ""
7883
+
7884
+ #: includes/class-wc-gzd-emails.php:232
7885
+ msgid "Confirmation text"
7886
+ msgstr ""
7887
+
7888
+ #: includes/class-wc-gzd-emails.php:233
7889
+ msgid "Your order has been received and is now being processed. Your order details are shown below for your reference:"
7890
+ msgstr ""
7891
+
7892
+ #: includes/class-wc-gzd-emails.php:234
7893
+ msgid "This text will be inserted within the order confirmation email. Use {order_number}, {site_title} or {order_date} as placeholder."
7894
+ msgstr ""
7895
+
7896
+ #: includes/class-wc-gzd-emails.php:352
7897
+ msgid "Your order has been received and is now being processed. Your order details are shown below for your reference."
7898
+ msgstr ""
7899
+
7900
+ #: includes/class-wc-gzd-emails.php:400
7901
+ msgid "Someone requested a password reset for your account."
7902
+ msgstr ""
7903
+
7904
+ #: includes/class-wc-gzd-emails.php:415
7905
+ msgid "Thanks for creating an account on %s."
7906
+ msgstr ""
7907
+
7908
+ #: includes/class-wc-gzd-emails.php:1130
7909
+ msgctxt "revocation-form"
7910
+ msgid "Forward your Revocation online"
7911
+ msgstr ""
7912
+
7913
+ #: includes/class-wc-gzd-install.php:167
7914
+ msgid "Please install <a href=\"%s\" target=\"_blank\">WooCommerce</a> before installing WooCommerce Germanized. Thank you!"
7915
+ msgstr ""
7916
+
7917
+ #: includes/class-wc-gzd-install.php:487
7918
+ #: includes/class-wc-gzd-install.php:501
7919
+ msgid "Reduced rate"
7920
+ msgstr ""
7921
+
7922
+ #: includes/class-wc-gzd-install.php:543
7923
+ msgctxt "vat-rate-import"
7924
+ msgid "VAT %s"
7925
+ msgstr ""
7926
+
7927
+ #: includes/class-wc-gzd-install.php:658
7928
+ msgctxt "Page slug"
7929
+ msgid "data-security"
7930
+ msgstr ""
7931
+
7932
+ #: includes/class-wc-gzd-install.php:659
7933
+ msgctxt "Page title"
7934
+ msgid "Data Security Statement"
7935
+ msgstr ""
7936
+
7937
+ #: includes/class-wc-gzd-install.php:663
7938
+ msgctxt "Page slug"
7939
+ msgid "imprint"
7940
+ msgstr ""
7941
+
7942
+ #: includes/class-wc-gzd-install.php:664
7943
+ msgctxt "Page title"
7944
+ msgid "Imprint"
7945
+ msgstr ""
7946
+
7947
+ #: includes/class-wc-gzd-install.php:668
7948
+ msgctxt "Page slug"
7949
+ msgid "terms"
7950
+ msgstr ""
7951
+
7952
+ #: includes/class-wc-gzd-install.php:669
7953
+ msgctxt "Page title"
7954
+ msgid "Terms & Conditions"
7955
+ msgstr ""
7956
+
7957
+ #: includes/class-wc-gzd-install.php:673
7958
+ msgctxt "Page slug"
7959
+ msgid "revocation"
7960
+ msgstr ""
7961
+
7962
+ #: includes/class-wc-gzd-install.php:674
7963
+ msgctxt "Page title"
7964
+ msgid "Power of Revocation"
7965
+ msgstr ""
7966
+
7967
+ #: includes/class-wc-gzd-install.php:678
7968
+ msgctxt "Page slug"
7969
+ msgid "shipping-methods"
7970
+ msgstr ""
7971
+
7972
+ #: includes/class-wc-gzd-install.php:679
7973
+ msgctxt "Page title"
7974
+ msgid "Shipping Methods"
7975
+ msgstr ""
7976
+
7977
+ #: includes/class-wc-gzd-install.php:683
7978
+ msgctxt "Page slug"
7979
+ msgid "payment-methods"
7980
+ msgstr ""
7981
+
7982
+ #: includes/class-wc-gzd-install.php:684
7983
+ msgctxt "Page title"
7984
+ msgid "Payment Methods"
7985
+ msgstr ""
7986
+
7987
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:104
7988
+ #: includes/updates/woocommerce-gzd-update-2.0.1.php:18
7989
+ msgid "With your order, you agree to have read and understood our {term_link}Terms and Conditions{/term_link} your {revocation_link}Right of Recission{/revocation_link} and our {data_security_link}Privacy Policy{/data_security_link}."
7990
+ msgstr ""
7991
+
7992
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:105
7993
+ #: includes/updates/woocommerce-gzd-update-2.0.1.php:19
7994
+ msgid "To finish the order you have to accept to our {term_link}Terms and Conditions{/term_link}, {revocation_link}Right of Recission{/revocation_link} and our {data_security_link}Privacy Policy{/data_security_link}."
7995
+ msgstr ""
7996
+
7997
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:111
7998
+ msgid "Legal"
7999
+ msgstr ""
8000
+
8001
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:112
8002
+ msgid "General legal checkbox which shall include terms, revocation and privacy notice."
8003
+ msgstr ""
8004
+
8005
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:120
8006
+ #: includes/updates/woocommerce-gzd-update-2.0.1.php:24
8007
+ msgid "For digital products: I strongly agree that the execution of the agreement starts before the revocation period has expired. I am aware that my right of withdrawal ceases with the beginning of the agreement."
8008
+ msgstr ""
8009
+
8010
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:122
8011
+ #: includes/updates/woocommerce-gzd-update-2.0.1.php:25
8012
+ msgid "To retrieve direct access to digital content you have to agree to the loss of your right of withdrawal."
8013
+ msgstr ""
8014
+
8015
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:128
8016
+ msgid "Digital"
8017
+ msgstr ""
8018
+
8019
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:129
8020
+ msgid "Asks the customer to skip revocation period for digital products."
8021
+ msgstr ""
8022
+
8023
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:138
8024
+ #: includes/updates/woocommerce-gzd-update-2.0.1.php:31
8025
+ msgid "For services: I demand and acknowledge the immediate performance of the service before the expiration of the withdrawal period. I acknowledge that thereby I lose my right to cancel once the service has begun."
8026
+ msgstr ""
8027
+
8028
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:140
8029
+ #: includes/updates/woocommerce-gzd-update-2.0.1.php:32
8030
+ msgid "To allow the immediate performance of the services you have to agree to the loss of your right of withdrawal."
8031
+ msgstr ""
8032
+
8033
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:147
8034
+ msgid "Asks the customer to skip revocation period for services."
8035
+ msgstr ""
8036
+
8037
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:155
8038
+ #: includes/updates/woocommerce-gzd-update-2.0.1.php:40
8039
+ msgid "Yes, I would like to be reminded via E-mail about parcel delivery ({shipping_method_title}). Your E-mail Address will only be transferred to our parcel service provider for that particular reason."
8040
+ msgstr ""
8041
+
8042
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:160
8043
+ msgid "Please accept our parcel delivery agreement"
8044
+ msgstr ""
8045
+
8046
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:165
8047
+ msgid "Parcel Delivery"
8048
+ msgstr ""
8049
+
8050
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:166
8051
+ msgid "Asks the customer to hand over data to the parcel delivery service provider."
8052
+ msgstr ""
8053
+
8054
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:175
8055
+ msgid "I hereby confirm that I'm at least {age} years old."
8056
+ msgstr ""
8057
+
8058
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:177
8059
+ msgid "Please confirm your age."
8060
+ msgstr ""
8061
+
8062
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:184
8063
+ msgid "Asks the customer to confirm a minimum age."
8064
+ msgstr ""
8065
+
8066
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:193
8067
+ #: includes/updates/woocommerce-gzd-update-2.0.1.php:44
8068
+ msgid "Yes, I’d like create a new account and have read and understood the {data_security_link}data privacy statement{/data_security_link}."
8069
+ msgstr ""
8070
+
8071
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:197
8072
+ msgid "Please accept our privacy policy to create a new customer account"
8073
+ msgstr ""
8074
+
8075
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:201
8076
+ msgid "Let customers accept your privacy policy before registering."
8077
+ msgstr ""
8078
+
8079
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:215
8080
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:975
8081
+ msgid "I hereby agree to the {link}direct debit mandate{/link}."
8082
+ msgstr ""
8083
+
8084
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:221
8085
+ msgid "Please accept the direct debit mandate."
8086
+ msgstr ""
8087
+
8088
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:226
8089
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:201
8090
+ msgid "SEPA"
8091
+ msgstr ""
8092
+
8093
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:227
8094
+ msgid "Asks the customer to issue the SEPA mandate."
8095
+ msgstr ""
8096
+
8097
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:579
8098
+ msgid "Register form"
8099
+ msgstr ""
8100
+
8101
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:580
8102
+ msgid "Pay for order"
8103
+ msgstr ""
8104
+
8105
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:581
8106
+ msgid "Reviews"
8107
+ msgstr ""
8108
+
8109
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:645
8110
+ msgid "Checkbox location %s does not exist."
8111
+ msgstr ""
8112
+
8113
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:671
8114
+ msgid "Please make sure to check %s checkbox."
8115
+ msgstr ""
8116
+
8117
+ #: includes/class-wc-gzd-legal-checkbox-manager.php:676
8118
+ msgid "Checkbox with name %s does already exist."
8119
+ msgstr ""
8120
+
8121
+ #: includes/class-wc-gzd-legal-checkbox.php:344
8122
+ #: includes/class-wc-gzd-legal-checkbox.php:364
8123
+ msgid "%s is a mandatory field."
8124
+ msgstr ""
8125
+
8126
+ #: includes/class-wc-gzd-legal-checkbox.php:788
8127
+ msgid "Enable checkbox"
8128
+ msgstr ""
8129
+
8130
+ #: includes/class-wc-gzd-legal-checkbox.php:797
8131
+ msgid "Choose a name to identify your checkbox. Upon creating a new checkbox, this value is being used to generate the Id."
8132
+ msgstr ""
8133
+
8134
+ #: includes/class-wc-gzd-legal-checkbox.php:802
8135
+ msgid "Id"
8136
+ msgstr ""
8137
+
8138
+ #: includes/class-wc-gzd-legal-checkbox.php:806
8139
+ msgid "The checkbox Id is the unique indentifier which is used to identify the checkbox within the code. Cannot be edited after creating the checkbox."
8140
+ msgstr ""
8141
+
8142
+ #: includes/class-wc-gzd-legal-checkbox.php:815
8143
+ msgid "Describe the use case of your checkbox."
8144
+ msgstr ""
8145
+
8146
+ #: includes/class-wc-gzd-legal-checkbox.php:825
8147
+ msgid "Choose a label to be inserted next to the checkbox."
8148
+ msgstr ""
8149
+
8150
+ #: includes/class-wc-gzd-legal-checkbox.php:826
8151
+ #: includes/class-wc-gzd-legal-checkbox.php:836
8152
+ msgid "You may use one of the following placeholders within the text: %s"
8153
+ msgstr ""
8154
+
8155
+ #: includes/class-wc-gzd-legal-checkbox.php:831
8156
+ msgid "Error Message"
8157
+ msgstr ""
8158
+
8159
+ #: includes/class-wc-gzd-legal-checkbox.php:835
8160
+ msgid "Choose an error message to be shown when the user has not confirmed the checkbox."
8161
+ msgstr ""
8162
+
8163
+ #: includes/class-wc-gzd-legal-checkbox.php:841
8164
+ msgid "Hide input"
8165
+ msgstr ""
8166
+
8167
+ #: includes/class-wc-gzd-legal-checkbox.php:844
8168
+ msgid "Do only show a label and hide the actual checkbox."
8169
+ msgstr ""
8170
+
8171
+ #: includes/class-wc-gzd-legal-checkbox.php:852
8172
+ msgid "Mark the checkbox as mandatory."
8173
+ msgstr ""
8174
+
8175
+ #: includes/class-wc-gzd-legal-checkbox.php:857
8176
+ msgid "Locations"
8177
+ msgstr ""
8178
+
8179
+ #: includes/class-wc-gzd-legal-checkbox.php:861
8180
+ msgid "Choose where to display your checkbox."
8181
+ msgstr ""
8182
+
8183
+ #: includes/class-wc-gzd-payment-gateways.php:150
8184
+ #: includes/class-wc-gzd-payment-gateways.php:206
8185
+ msgid "%s payment charge"
8186
+ msgstr ""
8187
+
8188
+ #: includes/class-wc-gzd-payment-gateways.php:153
8189
+ #: includes/wc-gzd-order-functions.php:35
8190
+ #: includes/wc-gzd-template-functions.php:472
8191
+ msgid "Plus %s forwarding fee (charged by the transport agent)"
8192
+ msgstr ""
8193
+
8194
+ #: includes/class-wc-gzd-payment-gateways.php:240
8195
+ msgid "Fee"
8196
+ msgstr ""
8197
+
8198
+ #: includes/class-wc-gzd-payment-gateways.php:242
8199
+ msgid "This fee is being added if customer selects payment method within checkout."
8200
+ msgstr ""
8201
+
8202
+ #: includes/class-wc-gzd-payment-gateways.php:248
8203
+ msgid "Fee is taxable?"
8204
+ msgstr ""
8205
+
8206
+ #: includes/class-wc-gzd-payment-gateways.php:250
8207
+ msgid "Check if fee is taxable."
8208
+ msgstr ""
8209
+
8210
+ #: includes/class-wc-gzd-payment-gateways.php:256
8211
+ msgid "Forwarding Fee"
8212
+ msgstr ""
8213
+
8214
+ #: includes/class-wc-gzd-payment-gateways.php:259
8215
+ msgid "Forwarding fee will be charged by the transport agent in addition to the cash of delivery fee e.g. DHL - tax free."
8216
+ msgstr ""
8217
+
8218
+ #: includes/class-wc-gzd-payment-gateways.php:297
8219
+ msgid "Payment charge"
8220
+ msgstr ""
8221
+
8222
+ #: includes/class-wc-gzd-post-types.php:49
8223
+ #: includes/class-wc-gzd-post-types.php:51
8224
+ msgid "Product Delivery Times"
8225
+ msgstr ""
8226
+
8227
+ #: includes/class-wc-gzd-post-types.php:52
8228
+ msgid "Product Delivery Time"
8229
+ msgstr ""
8230
+
8231
+ #: includes/class-wc-gzd-post-types.php:53
8232
+ msgctxt "Admin menu name"
8233
+ msgid "Delivery Time"
8234
+ msgstr ""
8235
+
8236
+ #: includes/class-wc-gzd-post-types.php:54
8237
+ msgid "Search Delivery Times"
8238
+ msgstr ""
8239
+
8240
+ #: includes/class-wc-gzd-post-types.php:55
8241
+ msgid "All Product Delivery Times"
8242
+ msgstr ""
8243
+
8244
+ #: includes/class-wc-gzd-post-types.php:56
8245
+ msgid "Edit Product Delivery Time"
8246
+ msgstr ""
8247
+
8248
+ #: includes/class-wc-gzd-post-types.php:57
8249
+ msgid "Update Product Delivery Time"
8250
+ msgstr ""
8251
+
8252
+ #: includes/class-wc-gzd-post-types.php:58
8253
+ msgid "Add New Product Delivery Time"
8254
+ msgstr ""
8255
+
8256
+ #: includes/class-wc-gzd-post-types.php:59
8257
+ msgid "New Product Delivery Time Name"
8258
+ msgstr ""
8259
+
8260
+ #: includes/class-wc-gzd-post-types.php:95
8261
+ #: includes/class-wc-gzd-post-types.php:97
8262
+ msgid "Units"
8263
+ msgstr ""
8264
+
8265
+ #: includes/class-wc-gzd-post-types.php:99
8266
+ msgctxt "Admin menu name"
8267
+ msgid "Units"
8268
+ msgstr ""
8269
+
8270
+ #: includes/class-wc-gzd-post-types.php:100
8271
+ msgid "Search Units"
8272
+ msgstr ""
8273
+
8274
+ #: includes/class-wc-gzd-post-types.php:101
8275
+ msgid "All Units"
8276
+ msgstr ""
8277
+
8278
+ #: includes/class-wc-gzd-post-types.php:102
8279
+ msgid "Edit Unit"
8280
+ msgstr ""
8281
+
8282
+ #: includes/class-wc-gzd-post-types.php:103
8283
+ msgid "Update Unit"
8284
+ msgstr ""
8285
+
8286
+ #: includes/class-wc-gzd-post-types.php:104
8287
+ msgid "Add New Unit"
8288
+ msgstr ""
8289
+
8290
+ #: includes/class-wc-gzd-post-types.php:105
8291
+ msgid "New Unit Name"
8292
+ msgstr ""
8293
+
8294
+ #: includes/class-wc-gzd-post-types.php:141
8295
+ #: includes/class-wc-gzd-post-types.php:143
8296
+ msgid "Price Labels"
8297
+ msgstr ""
8298
+
8299
+ #: includes/class-wc-gzd-post-types.php:145
8300
+ msgctxt "Admin menu name"
8301
+ msgid "Price Labels"
8302
+ msgstr ""
8303
+
8304
+ #: includes/class-wc-gzd-post-types.php:146
8305
+ msgid "Search Price Labels"
8306
+ msgstr ""
8307
+
8308
+ #: includes/class-wc-gzd-post-types.php:147
8309
+ msgid "All Price Labels"
8310
+ msgstr ""
8311
+
8312
+ #: includes/class-wc-gzd-post-types.php:148
8313
+ msgid "Edit Price Label"
8314
+ msgstr ""
8315
+
8316
+ #: includes/class-wc-gzd-post-types.php:149
8317
+ msgid "Update Price Label"
8318
+ msgstr ""
8319
+
8320
+ #: includes/class-wc-gzd-post-types.php:150
8321
+ msgid "Add New Price Label"
8322
+ msgstr ""
8323
+
8324
+ #: includes/class-wc-gzd-post-types.php:151
8325
+ msgid "New Price Label Name"
8326
+ msgstr ""
8327
+
8328
+ #: includes/class-wc-gzd-privacy.php:82
8329
+ #: includes/class-wc-gzd-privacy.php:116
8330
+ #: includes/class-wc-gzd-privacy.php:163
8331
+ msgid "Postnumber"
8332
+ msgstr ""
8333
+
8334
+ #: includes/class-wc-gzd-privacy.php:83
8335
+ #: includes/class-wc-gzd-privacy.php:164
8336
+ msgid "Billing Title"
8337
+ msgstr ""
8338
+
8339
+ #: includes/class-wc-gzd-privacy.php:84
8340
+ #: includes/class-wc-gzd-privacy.php:165
8341
+ msgid "Shipping Title"
8342
+ msgstr ""
8343
+
8344
+ #. Translators: %s Prop name.
8345
+ #: includes/class-wc-gzd-privacy.php:95
8346
+ msgid "Removed customer \"%s\""
8347
+ msgstr ""
8348
+
8349
+ #: includes/class-wc-gzd-privacy.php:120
8350
+ msgid "Mandate Date"
8351
+ msgstr ""
8352
+
8353
+ #: includes/class-wc-gzd-privacy.php:121
8354
+ msgid "Mandate ID"
8355
+ msgstr ""
8356
+
8357
+ #: includes/class-wc-gzd-privacy.php:122
8358
+ msgid "Mandate Email"
8359
+ msgstr ""
8360
+
8361
+ #: includes/class-wc-gzd-product-attribute-helper.php:67
8362
+ msgid "Visible during checkout"
8363
+ msgstr ""
8364
+
8365
+ #: includes/class-wc-gzd-revocation.php:33
8366
+ msgctxt "revocation-form"
8367
+ msgid "Revocation"
8368
+ msgstr ""
8369
+
8370
+ #: includes/class-wc-gzd-revocation.php:35
8371
+ msgctxt "revocation-form"
8372
+ msgid "Tip: Delete whatever entry does not apply, and provide, as needed"
8373
+ msgstr ""
8374
+
8375
+ #: includes/class-wc-gzd-revocation.php:36
8376
+ msgctxt "revocation-form"
8377
+ msgid "I/We hereby give notice that I/We withdraw from my/our contract of sale of the following goods/provision of the following service: "
8378
+ msgstr ""
8379
+
8380
+ #: includes/class-wc-gzd-revocation.php:40
8381
+ msgctxt "revocation-form"
8382
+ msgid "Received"
8383
+ msgstr ""
8384
+
8385
+ #: includes/class-wc-gzd-revocation.php:44
8386
+ msgctxt "revocation-form"
8387
+ msgid "Order Date"
8388
+ msgstr ""
8389
+
8390
+ #: includes/class-wc-gzd-revocation.php:46
8391
+ msgctxt "revocation-form"
8392
+ msgid "Customer Data"
8393
+ msgstr ""
8394
+
8395
+ #: includes/class-wc-gzd-revocation.php:49
8396
+ msgctxt "revocation-form"
8397
+ msgid "Title"
8398
+ msgstr ""
8399
+
8400
+ #: includes/class-wc-gzd-revocation.php:53
8401
+ #: includes/wc-gzd-core-functions.php:605
8402
+ #: includes/wc-gzd-core-functions.php:623
8403
+ msgid "Ms."
8404
+ msgstr ""
8405
+
8406
+ #: includes/class-wc-gzd-revocation.php:58
8407
+ msgctxt "revocation-form"
8408
+ msgid "First Name"
8409
+ msgstr ""
8410
+
8411
+ #: includes/class-wc-gzd-revocation.php:63
8412
+ msgctxt "revocation-form"
8413
+ msgid "Last Name"
8414
+ msgstr ""
8415
+
8416
+ #: includes/class-wc-gzd-revocation.php:68
8417
+ msgctxt "revocation-form"
8418
+ msgid "Street"
8419
+ msgstr ""
8420
+
8421
+ #: includes/class-wc-gzd-revocation.php:73
8422
+ msgctxt "revocation-form"
8423
+ msgid "Postal Code"
8424
+ msgstr ""
8425
+
8426
+ #: includes/class-wc-gzd-revocation.php:78
8427
+ msgctxt "revocation-form"
8428
+ msgid "City"
8429
+ msgstr ""
8430
+
8431
+ #: includes/class-wc-gzd-revocation.php:83
8432
+ msgctxt "revocation-form"
8433
+ msgid "Country"
8434
+ msgstr ""
8435
+
8436
+ #: includes/class-wc-gzd-revocation.php:89
8437
+ msgctxt "revocation-form"
8438
+ msgid "Mail"
8439
+ msgstr ""
8440
+
8441
+ #: includes/class-wc-gzd-revocation.php:102
8442
+ msgctxt "revocation-form"
8443
+ msgid "Please accept our <a href=\"%s\" target=\"_blank\">Pricacy Policy</a> so that we can process your inquiry."
8444
+ msgstr ""
8445
+
8446
+ #: includes/compatibility/class-wc-gzd-compatibility-woo-poly-integration.php:263
8447
+ msgctxt "polylang"
8448
+ msgid "Unit Price Metas"
8449
+ msgstr ""
8450
+
8451
+ #: includes/compatibility/class-wc-gzd-compatibility-woo-poly-integration.php:264
8452
+ msgctxt "polylang"
8453
+ msgid "Note the last unit price field is the final unit price taking into account the effect of unit sale price"
8454
+ msgstr ""
8455
+
8456
+ #: includes/compatibility/class-wc-gzd-compatibility-woo-poly-integration.php:277
8457
+ msgctxt "polylang"
8458
+ msgid "Sale Price Labels"
8459
+ msgstr ""
8460
+
8461
+ #: includes/compatibility/class-wc-gzd-compatibility-woo-poly-integration.php:278
8462
+ msgctxt "polylang"
8463
+ msgid "Sale price labels used to mark old prices (e.g. Recommended Retail Price)"
8464
+ msgstr ""
8465
+
8466
+ #: includes/compatibility/elementor/widgets/abstact-class-wc-gzd-elementor-widget.php:54
8467
+ msgid "Upgrade to WooCommerce Germanized Pro to use your our custom Elementor Widgets. %s"
8468
+ msgstr ""
8469
+
8470
+ #: includes/compatibility/elementor/widgets/class-wc-gzd-elementor-widget-product-shipping-notice.php:10
8471
+ msgid "Shipping Notice"
8472
+ msgstr ""
8473
+
8474
+ #: includes/compatibility/elementor/widgets/class-wc-gzd-elementor-widget-product-tax-notice.php:10
8475
+ msgid "Tax Notice"
8476
+ msgstr ""
8477
+
8478
+ #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:40
8479
+ msgid "New account activation"
8480
+ msgstr ""
8481
+
8482
+ #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:41
8483
+ msgid "Customer \"new account activation\" emails are sent to the customer when a customer signs up via checkout or account pages. This mail is being used as double opt in for new customer accounts."
8484
+ msgstr ""
8485
+
8486
+ #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:60
8487
+ msgid "Activate your account on {site_title}"
8488
+ msgstr ""
8489
+
8490
+ #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:70
8491
+ msgid "Account activation {site_title}"
8492
+ msgstr ""
8493
+
8494
+ #: includes/emails/class-wc-gzd-email-customer-paid-for-order.php:28
8495
+ msgid "Paid for order"
8496
+ msgstr ""
8497
+
8498
+ #: includes/emails/class-wc-gzd-email-customer-paid-for-order.php:29
8499
+ msgid "This E-Mail is being sent to a customer after the order has been paid."
8500
+ msgstr ""
8501
+
8502
+ #: includes/emails/class-wc-gzd-email-customer-paid-for-order.php:54
8503
+ msgid "Payment received for order {order_number}"
8504
+ msgstr ""
8505
+
8506
+ #: includes/emails/class-wc-gzd-email-customer-paid-for-order.php:64
8507
+ msgid "Payment received"
8508
+ msgstr ""
8509
+
8510
+ #: includes/emails/class-wc-gzd-email-customer-processing-order.php:47
8511
+ msgid "Order Confirmation"
8512
+ msgstr ""
8513
+
8514
+ #: includes/emails/class-wc-gzd-email-customer-processing-order.php:57
8515
+ msgid "Confirmation of your order {order_number}"
8516
+ msgstr ""
8517
+
8518
+ #: includes/emails/class-wc-gzd-email-customer-processing-order.php:67
8519
+ msgid "Thank you for your order"
8520
+ msgstr ""
8521
+
8522
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:33
8523
+ msgid "Revocation"
8524
+ msgstr ""
8525
+
8526
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:34
8527
+ msgid "Email being sent if a customer fills out the revocation form."
8528
+ msgstr ""
8529
+
8530
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:53
8531
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:63
8532
+ msgid "Your revocation"
8533
+ msgstr ""
8534
+
8535
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:174
8536
+ msgid "Admin email"
8537
+ msgstr ""
8538
+
8539
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:177
8540
+ msgid "Insert the email address of your shop manager here. A copy of the revocation email is being sent to this address."
8541
+ msgstr ""
8542
+
8543
+ #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:32
8544
+ #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:58
8545
+ #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:68
8546
+ msgid "SEPA Direct Debit Mandate"
8547
+ msgstr ""
8548
+
8549
+ #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:33
8550
+ msgid "Email contains a copy of the SEPA mandate generated by information provided by the customer."
8551
+ msgstr ""
8552
+
8553
+ #: includes/export/class-wc-gzd-product-export.php:50
8554
+ msgctxt "exporter"
8555
+ msgid "Is service?"
8556
+ msgstr ""
8557
+
8558
+ #: includes/export/class-wc-gzd-product-export.php:51
8559
+ msgctxt "exporter"
8560
+ msgid "Is differential taxed?"
8561
+ msgstr ""
8562
+
8563
+ #: includes/export/class-wc-gzd-product-export.php:52
8564
+ msgctxt "exporter"
8565
+ msgid "Has free shipping?"
8566
+ msgstr ""
8567
+
8568
+ #: includes/export/class-wc-gzd-product-export.php:53
8569
+ msgctxt "exporter"
8570
+ msgid "Unit price regular"
8571
+ msgstr ""
8572
+
8573
+ #: includes/export/class-wc-gzd-product-export.php:54
8574
+ msgctxt "exporter"
8575
+ msgid "Unit price sale"
8576
+ msgstr ""
8577
+
8578
+ #: includes/export/class-wc-gzd-product-export.php:55
8579
+ msgctxt "exporter"
8580
+ msgid "Unit price calculated automatically?"
8581
+ msgstr ""
8582
+
8583
+ #: includes/export/class-wc-gzd-product-export.php:56
8584
+ msgctxt "exporter"
8585
+ msgid "Unit"
8586
+ msgstr ""
8587
+
8588
+ #: includes/export/class-wc-gzd-product-export.php:57
8589
+ msgctxt "exporter"
8590
+ msgid "Unit base"
8591
+ msgstr ""
8592
+
8593
+ #: includes/export/class-wc-gzd-product-export.php:58
8594
+ msgctxt "exporter"
8595
+ msgid "Unit product"
8596
+ msgstr ""
8597
+
8598
+ #: includes/export/class-wc-gzd-product-export.php:59
8599
+ msgctxt "exporter"
8600
+ msgid "Cart description"
8601
+ msgstr ""
8602
+
8603
+ #: includes/export/class-wc-gzd-product-export.php:60
8604
+ msgctxt "exporter"
8605
+ msgid "Delivery time"
8606
+ msgstr ""
8607
+
8608
+ #: includes/export/class-wc-gzd-product-export.php:61
8609
+ msgctxt "exporter"
8610
+ msgid "Sale price label"
8611
+ msgstr ""
8612
+
8613
+ #: includes/export/class-wc-gzd-product-export.php:62
8614
+ msgctxt "exporter"
8615
+ msgid "Sale price regular label"
8616
+ msgstr ""
8617
+
8618
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:40
8619
+ msgid "Allows you to offer direct debit as a payment method to your customers. Adds SEPA fields to checkout. %s"
8620
+ msgstr ""
8621
+
8622
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:40
8623
+ msgid "SEPA XML Bulk Export"
8624
+ msgstr ""
8625
+
8626
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:65
8627
+ msgid ""
8628
+ "[company_info]\n"
8629
+ "debtee identification number: [company_identification_number]\n"
8630
+ "mandat reference number: [mandate_id].\n"
8631
+ "\n"
8632
+ "<h3>SEPA Direct Debit Mandate</h3>\n"
8633
+ "\n"
8634
+ "I hereby authorize the payee to [mandate_type_text] draft from my savings account listed below for the specified amount. I further authorize my bank to accept the direct debit from this account.\n"
8635
+ "\n"
8636
+ "Notice: I may request a full refund within eight weeks starting with the initial debiting date. Responsibilities agreed with my credit institute apply for a refund.\n"
8637
+ "\n"
8638
+ "<strong>Debtor:</strong>\n"
8639
+ "Account holder: [account_holder]\n"
8640
+ "Street: [street]\n"
8641
+ "Postcode: [postcode]\n"
8642
+ "City: [city]\n"
8643
+ "Country: [country]\n"
8644
+ "IBAN: [account_iban]\n"
8645
+ "BIC: [account_swift]\n"
8646
+ "\n"
8647
+ "[city], [date], [account_holder]\n"
8648
+ "\n"
8649
+ "This letter is done automatically and is valid without signature.\n"
8650
+ "\n"
8651
+ "<hr/>\n"
8652
+ "\n"
8653
+ "Please notice: Period for pre-information of the SEPA direct debit is shortened to one day."
8654
+ msgstr ""
8655
+
8656
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:209
8657
+ msgid "SEPA XML"
8658
+ msgstr ""
8659
+
8660
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:279
8661
+ msgid "SEPA XML Export"
8662
+ msgstr ""
8663
+
8664
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:501
8665
+ msgid "Order %s"
8666
+ msgstr ""
8667
+
8668
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:532
8669
+ msgid "Will be notified separately"
8670
+ msgstr ""
8671
+
8672
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:621
8673
+ msgid "We will debit %s from your account by direct debit on or shortly after %s."
8674
+ msgstr ""
8675
+
8676
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:759
8677
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:791
8678
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:824
8679
+ msgid "a single payment"
8680
+ msgstr ""
8681
+
8682
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:875
8683
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:111
8684
+ msgid "Enable/Disable"
8685
+ msgstr ""
8686
+
8687
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:877
8688
+ msgid "Enable Direct Debit Payment"
8689
+ msgstr ""
8690
+
8691
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:881
8692
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:117
8693
+ msgctxt "gateway"
8694
+ msgid "Title"
8695
+ msgstr ""
8696
+
8697
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:883
8698
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:119
8699
+ msgid "This controls the title which the user sees during checkout."
8700
+ msgstr ""
8701
+
8702
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:890
8703
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:126
8704
+ msgid "Payment method description that the customer will see on your checkout."
8705
+ msgstr ""
8706
+
8707
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:891
8708
+ msgid "The order amount will be debited directly from your bank account."
8709
+ msgstr ""
8710
+
8711
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:895
8712
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:131
8713
+ msgid "Instructions"
8714
+ msgstr ""
8715
+
8716
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:897
8717
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:133
8718
+ msgid "Instructions that will be added to the thank you page and emails."
8719
+ msgstr ""
8720
+
8721
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:902
8722
+ msgid "Debtee"
8723
+ msgstr ""
8724
+
8725
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:904
8726
+ msgid "Insert your company information."
8727
+ msgstr ""
8728
+
8729
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:906
8730
+ msgid "Company Inc, John Doe Street, New York"
8731
+ msgstr ""
8732
+
8733
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:912
8734
+ msgid "Insert the bank account holder name."
8735
+ msgstr ""
8736
+
8737
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:914
8738
+ msgid "Company Inc"
8739
+ msgstr ""
8740
+
8741
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:920
8742
+ msgid "Insert the bank account IBAN."
8743
+ msgstr ""
8744
+
8745
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:925
8746
+ msgid "BIC"
8747
+ msgstr ""
8748
+
8749
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:927
8750
+ msgid "Insert the bank account BIC."
8751
+ msgstr ""
8752
+
8753
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:932
8754
+ msgid "Debtee identification number"
8755
+ msgstr ""
8756
+
8757
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:934
8758
+ msgid "Insert your debtee indentification number. More information can be found <a href=\"%s\">here</a>."
8759
+ msgstr ""
8760
+
8761
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:938
8762
+ msgid "Generate Mandate ID"
8763
+ msgstr ""
8764
+
8765
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:940
8766
+ msgid "Automatically generate Mandate ID."
8767
+ msgstr ""
8768
+
8769
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:941
8770
+ msgid "Automatically generate Mandate ID after order completion (based on Order ID)."
8771
+ msgstr ""
8772
+
8773
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:945
8774
+ msgid "XML Pain Format"
8775
+ msgstr ""
8776
+
8777
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:947
8778
+ msgid "You may adjust the XML Export Pain Schema to your banks needs. Some banks may require pain.001.003.03."
8779
+ msgstr ""
8780
+
8781
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:951
8782
+ msgid "Mandate ID Format"
8783
+ msgstr ""
8784
+
8785
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:953
8786
+ msgid "You may extend the Mandate ID format by adding a prefix and/or suffix. Use {id} as placeholder to insert the automatically generated ID."
8787
+ msgstr ""
8788
+
8789
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:957
8790
+ msgid "Mandate Text"
8791
+ msgstr ""
8792
+
8793
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:959
8794
+ msgid "This text will be populated with live order/checkout data. Will be used as preview direct debit mandate and as email template text."
8795
+ msgstr ""
8796
+
8797
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:965
8798
+ msgid "Checkbox"
8799
+ msgstr ""
8800
+
8801
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:966
8802
+ msgid "Enable \"agree to SEPA mandate\" checkbox"
8803
+ msgstr ""
8804
+
8805
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:968
8806
+ msgid "Enable a checkbox linking to a SEPA direct debit mandate preview."
8807
+ msgstr ""
8808
+
8809
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:972
8810
+ msgid "Checkbox label"
8811
+ msgstr ""
8812
+
8813
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:974
8814
+ msgid "Customize the checkbox label. Use {link}link name{/link} to insert the preview link."
8815
+ msgstr ""
8816
+
8817
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:979
8818
+ msgid "Enable pre-notification"
8819
+ msgstr ""
8820
+
8821
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:980
8822
+ msgid "Insert pre-notification text within the order confirmation email."
8823
+ msgstr ""
8824
+
8825
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:982
8826
+ msgid "This option inserts a standard text containing a pre-notification for the customer."
8827
+ msgstr ""
8828
+
8829
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:986
8830
+ msgid "Debit days"
8831
+ msgstr ""
8832
+
8833
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:988
8834
+ msgid "This option is used to calculate the debit date and is added to the order date."
8835
+ msgstr ""
8836
+
8837
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:992
8838
+ msgid "Mask IBAN"
8839
+ msgstr ""
8840
+
8841
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:993
8842
+ msgid "Mask the IBAN within emails."
8843
+ msgstr ""
8844
+
8845
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:995
8846
+ msgid "This will lead to masked IBANs within emails (replaced by *). All but last 4 digits will be masked."
8847
+ msgstr ""
8848
+
8849
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1005
8850
+ msgid "Remember"
8851
+ msgstr ""
8852
+
8853
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1006
8854
+ msgid "Remember account data for returning customers."
8855
+ msgstr ""
8856
+
8857
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1008
8858
+ msgid "Save account data as user meta if user has/creates a customer account."
8859
+ msgstr ""
8860
+
8861
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1118
8862
+ msgid "Please insert your SEPA account data."
8863
+ msgstr ""
8864
+
8865
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1140
8866
+ msgid "Your IBAN seems to be invalid."
8867
+ msgstr ""
8868
+
8869
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1142
8870
+ msgid "Your IBAN's country code doesn’t match with your billing country."
8871
+ msgstr ""
8872
+
8873
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1147
8874
+ msgid "Your BIC seems to be invalid."
8875
+ msgstr ""
8876
+
8877
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1192
8878
+ msgid "is invalid"
8879
+ msgstr ""
8880
+
8881
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1239
8882
+ msgid "Awaiting Direct Debit Payment"
8883
+ msgstr ""
8884
+
8885
+ #: includes/gateways/direct-debit/views/html-encryption-notice.php:18
8886
+ msgid "Please upgrade your PHP Version to at least 5.4 and make sure that you have <a href=\"%s\" target=\"_blank\">openssl</a> enabled and WP Version 4.4 or greater installed to support account data encryption."
8887
+ msgstr ""
8888
+
8889
+ #: includes/gateways/direct-debit/views/html-encryption-notice.php:22
8890
+ msgid "Please insert the following code in your <a href=\"%s\" target=\"_blank\">wp-config.php</a> to enable encryption. You may of course choose your own key:"
8891
+ msgstr ""
8892
+
8893
+ #: includes/gateways/direct-debit/views/html-encryption-notice.php:24
8894
+ msgid "Your customers’ account data (IBAN, BIC) will from then on be saved <a href=\"%s\" target=\"_blank\">encrypted</a> within your database."
8895
+ msgstr ""
8896
+
8897
+ #: includes/gateways/direct-debit/views/html-export.php:36
8898
+ msgid "Start Date"
8899
+ msgstr ""
8900
+
8901
+ #: includes/gateways/direct-debit/views/html-export.php:40
8902
+ msgid "End Date"
8903
+ msgstr ""
8904
+
8905
+ #: includes/gateways/direct-debit/views/html-export.php:44
8906
+ msgid "Unpaid only"
8907
+ msgstr ""
8908
+
8909
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:35
8910
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:120
8911
+ msgid "Pay by Invoice"
8912
+ msgstr ""
8913
+
8914
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:36
8915
+ msgid "Customers will be able to pay by invoice."
8916
+ msgstr ""
8917
+
8918
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:86
8919
+ msgid "Automatically generate PDF invoices for this gateway?"
8920
+ msgstr ""
8921
+
8922
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:87
8923
+ msgid "By upgrading to the professional version you'll be able to automatically generate PDF invoices to this payment gateway. Furthermore you'll benefit from even more professional features such as a multistep checkout page, legal text generators, B2B VAT settings and premium support!"
8924
+ msgstr ""
8925
+
8926
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:93
8927
+ msgid "Learn more about PDF invoicing"
8928
+ msgstr ""
8929
+
8930
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:113
8931
+ msgid "Enable Pay by Invoice"
8932
+ msgstr ""
8933
+
8934
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:127
8935
+ msgid "You'll receive an invoice after your order. Please transfer the order amount to our bank account within 14 days."
8936
+ msgstr ""
8937
+
8938
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:138
8939
+ msgid "Order Status"
8940
+ msgstr ""
8941
+
8942
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:140
8943
+ msgid "Choose which order status should be applied after a customer has chosen to pay by invoice."
8944
+ msgstr ""
8945
+
8946
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:146
8947
+ msgid "Registered customers"
8948
+ msgstr ""
8949
+
8950
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:147
8951
+ msgid "Do only offer pay by invoice to registered/logged in customers."
8952
+ msgstr ""
8953
+
8954
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:149
8955
+ msgid "This will enable Pay by Invoice to logged in customers only"
8956
+ msgstr ""
8957
+
8958
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:154
8959
+ msgid "Customer limitation"
8960
+ msgstr ""
8961
+
8962
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:155
8963
+ msgid "Do only offer pay by invoice to customers who have at least completed one order."
8964
+ msgstr ""
8965
+
8966
+ #: includes/wc-gzd-core-functions.php:195
8967
+ msgid ">= 12 years"
8968
+ msgstr ""
8969
+
8970
+ #: includes/wc-gzd-core-functions.php:196
8971
+ msgid ">= 16 years"
8972
+ msgstr ""
8973
+
8974
+ #: includes/wc-gzd-core-functions.php:197
8975
+ msgid ">= 18 years"
8976
+ msgstr ""
8977
+
8978
+ #: includes/wc-gzd-core-functions.php:198
8979
+ msgid ">= 21 years"
8980
+ msgstr ""
8981
+
8982
+ #: includes/wc-gzd-core-functions.php:199
8983
+ msgid ">= 25 years"
8984
+ msgstr ""
8985
+
8986
+ #: includes/wc-gzd-core-functions.php:204
8987
+ msgctxt "age"
8988
+ msgid "None"
8989
+ msgstr ""
8990
+
8991
+ #: includes/wc-gzd-core-functions.php:241
8992
+ msgid "Right of Recission"
8993
+ msgstr ""
8994
+
8995
+ #: includes/wc-gzd-core-functions.php:243
8996
+ msgid "Data Security"
8997
+ msgstr ""
8998
+
8999
+ #: includes/wc-gzd-core-functions.php:451
9000
+ msgid "%s%% VAT"
9001
+ msgstr ""
9002
+
9003
+ #: includes/wc-gzd-core-functions.php:603
9004
+ #: includes/wc-gzd-core-functions.php:630
9005
+ msgctxt "title-option"
9006
+ msgid "None"
9007
+ msgstr ""
9008
+
9009
+ #: includes/wc-gzd-core-functions.php:606
9010
+ #: includes/wc-gzd-core-functions.php:630
9011
+ msgid "Mx"
9012
+ msgstr ""
9013
+
9014
+ #: includes/wc-gzd-template-functions.php:225
9015
+ #: templates/checkout/edit-data-notice.php:25
9016
+ msgid "Edit Order"
9017
+ msgstr ""
9018
+
9019
+ #: includes/wc-gzd-template-functions.php:236
9020
+ msgid "Choose a Payment Gateway"
9021
+ msgstr ""
9022
+
9023
+ #: includes/wc-gzd-template-functions.php:376
9024
+ msgid "Place order"
9025
+ msgstr ""
9026
+
9027
+ #: packages/woocommerce-trusted-shops/includes/admin/settings/class-wc-ts-gzd-settings-tab.php:48
9028
+ msgctxt "trusted-shops"
9029
+ msgid "Setup your Trusted Shops Integration."
9030
+ msgstr ""
9031
+
9032
+ #: packages/woocommerce-trusted-shops/includes/admin/settings/class-wc-ts-gzd-settings-tab.php:52
9033
+ #: packages/woocommerce-trusted-shops/includes/class-wc-ts-settings-handler.php:23
9034
+ msgctxt "trusted-shops"
9035
+ msgid "Trusted Shops"
9036
+ msgstr ""
9037
+
9038
+ #: packages/woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:16
9039
+ msgctxt "trusted-shops"
9040
+ msgid "Dependencies Missing or Outdated"
9041
+ msgstr ""
9042
+
9043
+ #: packages/woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:24
9044
+ msgctxt "trusted-shops"
9045
+ msgid "To use WooCommerce Trusted Shops you may at first install the following plugins:"
9046
+ msgstr ""
9047
+
9048
+ #: packages/woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:28
9049
+ msgctxt "trusted-shops"
9050
+ msgid "Install %s"
9051
+ msgstr ""
9052
+
9053
+ #: packages/woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:36
9054
+ msgctxt "trusted-shops"
9055
+ msgid "To use WooCommerce Trusted Shops you may at first update the following plugins to a newer version:"
9056
+ msgstr ""
9057
+
9058
+ #: packages/woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:40
9059
+ msgctxt "trusted-shops"
9060
+ msgid "%s required in at least version %s"
9061
+ msgstr ""
9062
+
9063
+ #: packages/woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:49
9064
+ msgctxt "trusted-shops"
9065
+ msgid "Check for Updates"
9066
+ msgstr ""
9067
+
9068
+ #: packages/woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:50
9069
+ msgctxt "trusted-shops"
9070
+ msgid "or"
9071
+ msgstr ""
9072
+
9073
+ #: packages/woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:51
9074
+ msgctxt "trusted-shops"
9075
+ msgid "Install an older version"
9076
+ msgstr ""
9077
+
9078
+ #: packages/woocommerce-trusted-shops/includes/admin/views/html-notice-update.php:14
9079
+ msgctxt "trusted-shops"
9080
+ msgid "<strong>WooCommerce Trusted Shops Data Update Required</strong> &#8211; We just need to update your installation to the latest version"
9081
+ msgstr ""
9082
+
9083
+ #: packages/woocommerce-trusted-shops/includes/admin/views/html-notice-update.php:15
9084
+ msgctxt "trusted-shops"
9085
+ msgid "Run the updater"
9086
+ msgstr ""
9087
+
9088
+ #: packages/woocommerce-trusted-shops/includes/admin/views/html-notice-update.php:19
9089
+ msgctxt "trusted-shops"
9090
+ msgid "It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?"
9091
+ msgstr ""
9092
+
9093
+ #: packages/woocommerce-trusted-shops/includes/admin/views/html-wpml-notice.php:11
9094
+ msgctxt "trusted-shops"
9095
+ msgid "WPML Support"
9096
+ msgstr ""
9097
+
9098
+ #: packages/woocommerce-trusted-shops/includes/admin/views/html-wpml-notice.php:14
9099
+ msgctxt "trusted-shops"
9100
+ msgid "These settings serve as default settings for all your languages. To adjust the settings for a certain language, please switch your admin language through the WPML language switcher and adjust the corresponding settings."
9101
+ msgstr ""
9102
+
9103
+ #: packages/woocommerce-trusted-shops/includes/admin/views/html-wpml-notice.php:16
9104
+ msgctxt "trusted-shops"
9105
+ msgid "These settings apply for your %s shop. To adjust settings for another language, please switch your admin language through the WPML language switcher."
9106
+ msgstr ""
9107
+
9108
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:84
9109
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:121
9110
+ msgctxt "trusted-shops"
9111
+ msgid "GTIN"
9112
+ msgstr ""
9113
+
9114
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:84
9115
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:121
9116
+ msgctxt "trusted-shops"
9117
+ msgid "ID that allows your products to be identified worldwide. If you want to display your Trusted Shops Product Reviews in Google Shopping and paid Google adverts, Google needs the GTIN."
9118
+ msgstr ""
9119
+
9120
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:88
9121
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:122
9122
+ msgctxt "trusted-shops"
9123
+ msgid "MPN"
9124
+ msgstr ""
9125
+
9126
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:88
9127
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:122
9128
+ msgctxt "trusted-shops"
9129
+ msgid "If you don't have a GTIN for your products, you can pass the brand name and the MPN on to Google to use the Trusted Shops Google Integration."
9130
+ msgstr ""
9131
+
9132
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:142
9133
+ msgctxt "trusted-shops"
9134
+ msgid "Brand"
9135
+ msgstr ""
9136
+
9137
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:176
9138
+ msgctxt "trusted-shops"
9139
+ msgid "This field is mandatory"
9140
+ msgstr ""
9141
+
9142
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:183
9143
+ msgctxt "trusted-shops"
9144
+ msgid "Trusted Shops Options"
9145
+ msgstr ""
9146
+
9147
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:190
9148
+ msgctxt "trusted-shops"
9149
+ msgid "Arial"
9150
+ msgstr ""
9151
+
9152
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:191
9153
+ msgctxt "trusted-shops"
9154
+ msgid "Geneva"
9155
+ msgstr ""
9156
+
9157
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:192
9158
+ msgctxt "trusted-shops"
9159
+ msgid "Georgia"
9160
+ msgstr ""
9161
+
9162
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:193
9163
+ msgctxt "trusted-shops"
9164
+ msgid "Helvetica"
9165
+ msgstr ""
9166
+
9167
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:194
9168
+ msgctxt "trusted-shops"
9169
+ msgid "Sans-serif"
9170
+ msgstr ""
9171
+
9172
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:195
9173
+ msgctxt "trusted-shops"
9174
+ msgid "Serif"
9175
+ msgstr ""
9176
+
9177
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:196
9178
+ msgctxt "trusted-shops"
9179
+ msgid "Trebuchet MS"
9180
+ msgstr ""
9181
+
9182
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:197
9183
+ msgctxt "trusted-shops"
9184
+ msgid "Verdana"
9185
+ msgstr ""
9186
+
9187
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:220
9188
+ msgctxt "trusted-shops"
9189
+ msgid "Trusted Shops Integration"
9190
+ msgstr ""
9191
+
9192
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:221
9193
+ msgctxt "trusted-shops"
9194
+ msgid "Do you need help with integrating your Trustbadge? %s"
9195
+ msgstr ""
9196
+
9197
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:221
9198
+ msgctxt "trusted-shops"
9199
+ msgid "To the step-by-step instructions"
9200
+ msgstr ""
9201
+
9202
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:227
9203
+ msgctxt "trusted-shops"
9204
+ msgid "Trusted Shops ID"
9205
+ msgstr ""
9206
+
9207
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:228
9208
+ msgctxt "trusted-shops"
9209
+ msgid "The Trusted Shops ID is a unique identifier for your shop. You can find your Trusted Shops ID in your My Trusted Shops account."
9210
+ msgstr ""
9211
+
9212
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:237
9213
+ msgctxt "trusted-shops"
9214
+ msgid "Edit Mode"
9215
+ msgstr ""
9216
+
9217
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:239
9218
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:300
9219
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:423
9220
+ msgctxt "trusted-shops"
9221
+ msgid "The advanced configuration is for users with programming skills. Here you can create even more individual settings."
9222
+ msgstr ""
9223
+
9224
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:243
9225
+ msgctxt "trusted-shops"
9226
+ msgid "Standard configuration"
9227
+ msgstr ""
9228
+
9229
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:244
9230
+ msgctxt "trusted-shops"
9231
+ msgid "Advanced configuration"
9232
+ msgstr ""
9233
+
9234
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:252
9235
+ msgctxt "trusted-shops"
9236
+ msgid "Configure your Trustbadge"
9237
+ msgstr ""
9238
+
9239
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:258
9240
+ msgctxt "trusted-shops"
9241
+ msgid "Display Trustbadge"
9242
+ msgstr ""
9243
+
9244
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:260
9245
+ msgctxt "trusted-shops"
9246
+ msgid "Display the Trustbadge on all the pages of your shop."
9247
+ msgstr ""
9248
+
9249
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:267
9250
+ msgctxt "trusted-shops"
9251
+ msgid "Variant"
9252
+ msgstr ""
9253
+
9254
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:269
9255
+ msgctxt "trusted-shops"
9256
+ msgid "You can display your Trustbadge with or without Review Stars."
9257
+ msgstr ""
9258
+
9259
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:273
9260
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:763
9261
+ msgctxt "trusted-shops"
9262
+ msgid "Display Trustbadge with review stars"
9263
+ msgstr ""
9264
+
9265
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:274
9266
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:767
9267
+ msgctxt "trusted-shops"
9268
+ msgid "Display Trustbadge without review stars"
9269
+ msgstr ""
9270
+
9271
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:280
9272
+ msgctxt "trusted-shops"
9273
+ msgid "Vertical Offset"
9274
+ msgstr ""
9275
+
9276
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:281
9277
+ msgctxt "trusted-shops"
9278
+ msgid "Choose the distance that the Trustbadge will appear from the bottom-right corner of the screen."
9279
+ msgstr ""
9280
+
9281
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:284
9282
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:492
9283
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:543
9284
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:558
9285
+ msgctxt "trusted-shops"
9286
+ msgid "px"
9287
+ msgstr ""
9288
+
9289
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:290
9290
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:499
9291
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:549
9292
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:565
9293
+ msgctxt "trusted-shops"
9294
+ msgid "Please choose a non-negative number (at least %d)"
9295
+ msgstr ""
9296
+
9297
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:296
9298
+ msgctxt "trusted-shops"
9299
+ msgid "Trustbadge code"
9300
+ msgstr ""
9301
+
9302
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:308
9303
+ msgctxt "trusted-shops"
9304
+ msgid "Configure your Shop Reviews"
9305
+ msgstr ""
9306
+
9307
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:314
9308
+ msgctxt "trusted-shops"
9309
+ msgid "Display Shop Review Sticker"
9310
+ msgstr ""
9311
+
9312
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:315
9313
+ msgctxt "trusted-shops"
9314
+ msgid "To display the Shop Review Sticker, you have to assign the widget \"Trusted Shops Review Sticker\"."
9315
+ msgstr ""
9316
+
9317
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:316
9318
+ msgctxt "trusted-shops"
9319
+ msgid "Assign widget %s"
9320
+ msgstr ""
9321
+
9322
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:316
9323
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:588
9324
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:896
9325
+ msgctxt "trusted-shops"
9326
+ msgid "here"
9327
+ msgstr ""
9328
+
9329
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:324
9330
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:472
9331
+ msgctxt "trusted-shops"
9332
+ msgid "Background color"
9333
+ msgstr ""
9334
+
9335
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:325
9336
+ msgctxt "trusted-shops"
9337
+ msgid "Choose the background color for your Review Sticker."
9338
+ msgstr ""
9339
+
9340
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:332
9341
+ msgctxt "trusted-shops"
9342
+ msgid "Font"
9343
+ msgstr ""
9344
+
9345
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:334
9346
+ msgctxt "trusted-shops"
9347
+ msgid "Choose the font for your Review Sticker."
9348
+ msgstr ""
9349
+
9350
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:341
9351
+ msgctxt "trusted-shops"
9352
+ msgid "Number of reviews displayed"
9353
+ msgstr ""
9354
+
9355
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:342
9356
+ msgctxt "trusted-shops"
9357
+ msgid "Display x alternating Shop Reviews in your Shop Review Sticker. You can display between 1 and 5 alternating Shop Reviews."
9358
+ msgstr ""
9359
+
9360
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:345
9361
+ msgctxt "trusted-shops"
9362
+ msgid "Show x alternating reviews"
9363
+ msgstr ""
9364
+
9365
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:352
9366
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:369
9367
+ msgctxt "trusted-shops"
9368
+ msgid "Please choose a non-negative number between %d and %d"
9369
+ msgstr ""
9370
+
9371
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:358
9372
+ msgctxt "trusted-shops"
9373
+ msgid "Minimum rating displayed"
9374
+ msgstr ""
9375
+
9376
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:359
9377
+ msgctxt "trusted-shops"
9378
+ msgid "Only show Shop Reviews with a minimum rating of x stars. "
9379
+ msgstr ""
9380
+
9381
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:362
9382
+ msgctxt "trusted-shops"
9383
+ msgid "Star(s)"
9384
+ msgstr ""
9385
+
9386
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:375
9387
+ msgctxt "trusted-shops"
9388
+ msgid "Sticker code"
9389
+ msgstr ""
9390
+
9391
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:379
9392
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:506
9393
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:571
9394
+ msgctxt "trusted-shops"
9395
+ msgid "The advanced configuration is for users with programming skills. Here you can perform even more individual settings."
9396
+ msgstr ""
9397
+
9398
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:385
9399
+ msgctxt "trusted-shops"
9400
+ msgid "Google Organic Search"
9401
+ msgstr ""
9402
+
9403
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:386
9404
+ msgctxt "trusted-shops"
9405
+ msgid "Activate this option to give Google the opportunity to show your Shop Reviews in Google organic search results."
9406
+ msgstr ""
9407
+
9408
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:387
9409
+ msgctxt "trusted-shops"
9410
+ msgid "By activating this option, rich snippets will be integrated in the selected pages so your shop review stars may be displayed in Google organic search results. If you use Product Reviews and already activated rich snippets in expert mode, we recommend integrating rich snippets for Shop Reviews on category pages only."
9411
+ msgstr ""
9412
+
9413
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:394
9414
+ msgctxt "trusted-shops"
9415
+ msgid "Activate rich snippets on"
9416
+ msgstr ""
9417
+
9418
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:395
9419
+ msgctxt "trusted-shops"
9420
+ msgid "category pages"
9421
+ msgstr ""
9422
+
9423
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:403
9424
+ msgctxt "trusted-shops"
9425
+ msgid "product pages"
9426
+ msgstr ""
9427
+
9428
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:411
9429
+ msgctxt "trusted-shops"
9430
+ msgid "homepage (not recommended)"
9431
+ msgstr ""
9432
+
9433
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:419
9434
+ msgctxt "trusted-shops"
9435
+ msgid "Rich snippets code"
9436
+ msgstr ""
9437
+
9438
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:431
9439
+ msgctxt "trusted-shops"
9440
+ msgid "Configure your Product Reviews "
9441
+ msgstr ""
9442
+
9443
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:432
9444
+ msgctxt "trusted-shops"
9445
+ msgid "To use Product Reviews, activate them in your %s first."
9446
+ msgstr ""
9447
+
9448
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:432
9449
+ msgctxt "trusted-shops"
9450
+ msgid "Trusted Shops package"
9451
+ msgstr ""
9452
+
9453
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:438
9454
+ msgctxt "trusted-shops"
9455
+ msgid "Collect Product Reviews"
9456
+ msgstr ""
9457
+
9458
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:439
9459
+ msgctxt "trusted-shops"
9460
+ msgid "Show Product Reviews on the product page in a separate tab, just as shown on the picture on the right."
9461
+ msgstr ""
9462
+
9463
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:447
9464
+ msgctxt "trusted-shops"
9465
+ msgid "Reviews"
9466
+ msgstr ""
9467
+
9468
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:448
9469
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:457
9470
+ msgctxt "trusted-shops"
9471
+ msgid "You can choose a name for the tab with your Product Reviews."
9472
+ msgstr ""
9473
+
9474
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:449
9475
+ msgctxt "trusted-shops"
9476
+ msgid "Show Product Reviews on the product detail page in an additional tab."
9477
+ msgstr ""
9478
+
9479
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:456
9480
+ msgctxt "trusted-shops"
9481
+ msgid "Name of Product Reviews tab"
9482
+ msgstr ""
9483
+
9484
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:460
9485
+ msgctxt "trusted-shops"
9486
+ msgid "Product reviews"
9487
+ msgstr ""
9488
+
9489
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:464
9490
+ msgctxt "trusted-shops"
9491
+ msgid "Border color"
9492
+ msgstr ""
9493
+
9494
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:465
9495
+ msgctxt "trusted-shops"
9496
+ msgid "Set the color for the frame around your Product Reviews."
9497
+ msgstr ""
9498
+
9499
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:473
9500
+ msgctxt "trusted-shops"
9501
+ msgid "Set the background color for your Product Reviews."
9502
+ msgstr ""
9503
+
9504
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:480
9505
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:530
9506
+ msgctxt "trusted-shops"
9507
+ msgid "Star color"
9508
+ msgstr ""
9509
+
9510
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:481
9511
+ msgctxt "trusted-shops"
9512
+ msgid "Set the color for the Product Review stars in your Product Reviews tab."
9513
+ msgstr ""
9514
+
9515
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:488
9516
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:538
9517
+ msgctxt "trusted-shops"
9518
+ msgid "Star size"
9519
+ msgstr ""
9520
+
9521
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:493
9522
+ msgctxt "trusted-shops"
9523
+ msgid "Set the size for the Product Review stars in your Product Reviews tab."
9524
+ msgstr ""
9525
+
9526
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:504
9527
+ msgctxt "trusted-shops"
9528
+ msgid "Product Sticker Code"
9529
+ msgstr ""
9530
+
9531
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:513
9532
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:579
9533
+ msgctxt "trusted-shops"
9534
+ msgid "jQuerySelector"
9535
+ msgstr ""
9536
+
9537
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:514
9538
+ msgctxt "trusted-shops"
9539
+ msgid "Please choose where your Product Reviews shall be displayed on the Product detail page."
9540
+ msgstr ""
9541
+
9542
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:521
9543
+ msgctxt "trusted-shops"
9544
+ msgid "Rating stars"
9545
+ msgstr ""
9546
+
9547
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:522
9548
+ msgctxt "trusted-shops"
9549
+ msgid "Show star ratings on the product detail page below your product name."
9550
+ msgstr ""
9551
+
9552
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:523
9553
+ msgctxt "trusted-shops"
9554
+ msgid "Display Product Review stars on product pages below the product name, just as shown in the picture on the right."
9555
+ msgstr ""
9556
+
9557
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:532
9558
+ msgctxt "trusted-shops"
9559
+ msgid "Set the color for the review stars, that are displayed on the product page, below your product name."
9560
+ msgstr ""
9561
+
9562
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:540
9563
+ msgctxt "trusted-shops"
9564
+ msgid "Set the size for the review stars that are displayed on the product page, below your product name."
9565
+ msgstr ""
9566
+
9567
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:554
9568
+ msgctxt "trusted-shops"
9569
+ msgid "Font size"
9570
+ msgstr ""
9571
+
9572
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:556
9573
+ msgctxt "trusted-shops"
9574
+ msgid "Set the font size for the text that goes with your review stars."
9575
+ msgstr ""
9576
+
9577
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:570
9578
+ msgctxt "trusted-shops"
9579
+ msgid "Product Review Code"
9580
+ msgstr ""
9581
+
9582
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:580
9583
+ msgctxt "trusted-shops"
9584
+ msgid "Please choose where your Product Review Stars shall be displayed on the Product Detail page."
9585
+ msgstr ""
9586
+
9587
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:587
9588
+ msgctxt "trusted-shops"
9589
+ msgid "Brand attribute"
9590
+ msgstr ""
9591
+
9592
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:588
9593
+ msgctxt "trusted-shops"
9594
+ msgid "Create brand attribute %s"
9595
+ msgstr ""
9596
+
9597
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:589
9598
+ msgctxt "trusted-shops"
9599
+ msgid "Brand name of the product. By passing this information on to Google, you improve your chances of having Google identify your products. Assign your brand attribute. If your products don't have a GTIN, you can pass on the brand name and the MPN to use Google Integration."
9600
+ msgstr ""
9601
+
9602
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:595
9603
+ msgctxt "trusted-shops"
9604
+ msgid "None"
9605
+ msgstr ""
9606
+
9607
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:606
9608
+ msgctxt "trusted-shops"
9609
+ msgid "Configure your Review Requests"
9610
+ msgstr ""
9611
+
9612
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:607
9613
+ msgctxt "trusted-shops"
9614
+ msgid "7 days after an order has been placed, Trusted Shops automatically sends an invite to your customers. If you want to set a different time for sending automatic Review Requests, please activate the option below. If you want to send review requests with legal certainty, you need your customers' consent to receive Review Requests. You also have to include an option to unsubscribe."
9615
+ msgstr ""
9616
+
9617
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:613
9618
+ msgctxt "trusted-shops"
9619
+ msgid "Enable Review Requests"
9620
+ msgstr ""
9621
+
9622
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:622
9623
+ msgctxt "trusted-shops"
9624
+ msgid "WooCommerce status"
9625
+ msgstr ""
9626
+
9627
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:623
9628
+ msgctxt "trusted-shops"
9629
+ msgid "We recommend choosing the order status that you set when your products have been shipped."
9630
+ msgstr ""
9631
+
9632
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:631
9633
+ msgctxt "trusted-shops"
9634
+ msgid "Days until Review Request"
9635
+ msgstr ""
9636
+
9637
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:632
9638
+ msgctxt "trusted-shops"
9639
+ msgid "Set the number of days to wait after an order has reached the order status you selected above before having a review request sent to your customers."
9640
+ msgstr ""
9641
+
9642
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:644
9643
+ msgctxt "trusted-shops"
9644
+ msgid "Permission via checkbox"
9645
+ msgstr ""
9646
+
9647
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:645
9648
+ msgctxt "trusted-shops"
9649
+ msgid "If the checkbox is activated, only customers who gave their consent will receive Review Requests."
9650
+ msgstr ""
9651
+
9652
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:649
9653
+ msgctxt "trusted-shops"
9654
+ msgid "Edit checkbox"
9655
+ msgstr ""
9656
+
9657
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:653
9658
+ msgctxt "trusted-shops"
9659
+ msgid "Unsubscribe via link"
9660
+ msgstr ""
9661
+
9662
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:654
9663
+ msgctxt "trusted-shops"
9664
+ msgid "Allows the customer to unsubscribe from Review Requests."
9665
+ msgstr ""
9666
+
9667
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:755
9668
+ msgctxt "trusted-shops"
9669
+ msgid "How does Trusted Shops make your shop better?"
9670
+ msgstr ""
9671
+
9672
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:757
9673
+ msgctxt "trusted-shops"
9674
+ msgid "Get your account"
9675
+ msgstr ""
9676
+
9677
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:777
9678
+ msgctxt "trusted-shops"
9679
+ msgid "Product Reviews on the product detail page in an additional tab"
9680
+ msgstr ""
9681
+
9682
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:780
9683
+ msgctxt "trusted-shops"
9684
+ msgid "Show Star-Ratings on the product detail page below your product name"
9685
+ msgstr ""
9686
+
9687
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:784
9688
+ msgctxt "trusted-shops"
9689
+ msgid "Please note: If you want to send review requests through WooCommerce, you should deactivate automated review requests through Trusted Shops. To do so, please go to your My Trusted Shops account. Log in and go to Reviews > Settings and deactivate \"Collect reviews automatically\""
9690
+ msgstr ""
9691
+
9692
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:785
9693
+ msgctxt "trusted-shops"
9694
+ msgid "To your My Trusted Shops account"
9695
+ msgstr ""
9696
+
9697
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:789
9698
+ msgctxt "trusted-shops"
9699
+ msgid "Export your customer information here and upload it in the Trusted Shops Review Collector. To do so go to your My Trusted Shops account. Log in and go to Reviews > Shop Reviews > Review Collector"
9700
+ msgstr ""
9701
+
9702
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:790
9703
+ msgctxt "trusted-shops"
9704
+ msgid "To the Trusted Shops Review Collector"
9705
+ msgstr ""
9706
+
9707
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:880
9708
+ msgctxt "trusted-shops"
9709
+ msgid "Review Collector"
9710
+ msgstr ""
9711
+
9712
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:882
9713
+ msgctxt "trusted-shops"
9714
+ msgid "Want to collect reviews for orders that were placed before your Trusted Shops Integration? No problem. Export old orders here and upload them in your %s."
9715
+ msgstr ""
9716
+
9717
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:882
9718
+ msgctxt "trusted-shops"
9719
+ msgid "My Trusted Shops account"
9720
+ msgstr ""
9721
+
9722
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:888
9723
+ msgctxt "trusted-shops"
9724
+ msgid "Export orders"
9725
+ msgstr ""
9726
+
9727
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:888
9728
+ msgctxt "trusted-shops"
9729
+ msgid "Export your customer and order information of the last x days and upload them in your My Trusted Shops Account."
9730
+ msgstr ""
9731
+
9732
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:892
9733
+ msgctxt "trusted-shops"
9734
+ msgid "30 days"
9735
+ msgstr ""
9736
+
9737
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:893
9738
+ msgctxt "trusted-shops"
9739
+ msgid "60 days"
9740
+ msgstr ""
9741
+
9742
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:894
9743
+ msgctxt "trusted-shops"
9744
+ msgid "90 days"
9745
+ msgstr ""
9746
+
9747
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:896
9748
+ msgctxt "trusted-shops"
9749
+ msgid "Upload customer and order information %s."
9750
+ msgstr ""
9751
+
9752
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:899
9753
+ msgctxt "trusted-shops"
9754
+ msgid "Days until reminder mail"
9755
+ msgstr ""
9756
+
9757
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:899
9758
+ msgctxt "trusted-shops"
9759
+ msgid "Set the number of days to wait after the order date before having a Review Request sent to your customers."
9760
+ msgstr ""
9761
+
9762
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:903
9763
+ msgctxt "trusted-shops"
9764
+ msgid "Start export"
9765
+ msgstr ""
9766
+
9767
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-core.php:53
9768
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-core.php:62
9769
+ #: packages/woocommerce-trusted-shops/includes/class-wc-ts-dependencies.php:36
9770
+ #: packages/woocommerce-trusted-shops/includes/class-wc-ts-dependencies.php:45
9771
+ msgctxt "trusted-shops"
9772
+ msgid "Cheatin&#8217; huh?"
9773
+ msgstr ""
9774
+
9775
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-core.php:212
9776
+ msgctxt "trusted-shops"
9777
+ msgid "Yes"
9778
+ msgstr ""
9779
+
9780
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-core.php:212
9781
+ msgctxt "trusted-shops"
9782
+ msgid "No"
9783
+ msgstr ""
9784
+
9785
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-core.php:260
9786
+ msgctxt "trusted-shops"
9787
+ msgid "If the <strong>App</strong> helped you, please leave a %s&#9733;&#9733;&#9733;&#9733;&#9733;%s in the Wordpress plugin repository."
9788
+ msgstr ""
9789
+
9790
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-core.php:409
9791
+ msgctxt "trusted-shops"
9792
+ msgid "Settings"
9793
+ msgstr ""
9794
+
9795
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-review-exporter.php:64
9796
+ msgctxt "trusted-shops"
9797
+ msgid "Order ID"
9798
+ msgstr ""
9799
+
9800
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-review-exporter.php:65
9801
+ msgctxt "trusted-shops"
9802
+ msgid "Order date"
9803
+ msgstr ""
9804
+
9805
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-review-exporter.php:66
9806
+ msgctxt "trusted-shops"
9807
+ msgid "# Days"
9808
+ msgstr ""
9809
+
9810
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-review-exporter.php:67
9811
+ msgctxt "trusted-shops"
9812
+ msgid "Email"
9813
+ msgstr ""
9814
+
9815
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-review-exporter.php:68
9816
+ msgctxt "trusted-shops"
9817
+ msgid "First name"
9818
+ msgstr ""
9819
+
9820
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-review-exporter.php:69
9821
+ msgctxt "trusted-shops"
9822
+ msgid "Last name"
9823
+ msgstr ""
9824
+
9825
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-template-hooks.php:121
9826
+ msgctxt "trusted-shops"
9827
+ msgid "Your review reminder e-mail has been cancelled successfully. Return to %s."
9828
+ msgstr ""
9829
+
9830
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-template-hooks.php:121
9831
+ msgctxt "trusted-shops"
9832
+ msgid "Home"
9833
+ msgstr ""
9834
+
9835
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-template-hooks.php:193
9836
+ msgctxt "trusted-shops"
9837
+ msgid "Yes, I would like to be reminded via e-mail after {days} day(s) to review my order. I am able to cancel the reminder at any time by clicking on the \"cancel review reminder\" link within the order confirmation."
9838
+ msgstr ""
9839
+
9840
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-template-hooks.php:198
9841
+ msgctxt "trusted-shops"
9842
+ msgid "Please allow us to send a review reminder by e-mail."
9843
+ msgstr ""
9844
+
9845
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-template-hooks.php:201
9846
+ msgctxt "trusted-shops"
9847
+ msgid "Review reminder"
9848
+ msgstr ""
9849
+
9850
+ #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-template-hooks.php:202
9851
+ msgctxt "trusted-shops"
9852
+ msgid "Asks the customer to receive a Trusted Shops review reminder."
9853
+ msgstr ""
9854
+
9855
+ #: packages/woocommerce-trusted-shops/includes/emails/class-wc-ts-email-customer-trusted-shops.php:26
9856
+ msgctxt "trusted-shops"
9857
+ msgid "Trusted Shops Review Reminder"
9858
+ msgstr ""
9859
+
9860
+ #: packages/woocommerce-trusted-shops/includes/emails/class-wc-ts-email-customer-trusted-shops.php:27
9861
+ msgctxt "trusted-shops"
9862
+ msgid "This E-Mail is being sent to a customer to remind him about the possibility to leave a review at Trusted Shops."
9863
+ msgstr ""
9864
+
9865
+ #: packages/woocommerce-trusted-shops/includes/emails/class-wc-ts-email-customer-trusted-shops.php:55
9866
+ msgctxt "trusted-shops"
9867
+ msgid "Please rate your {site_title} order from {order_date}"
9868
+ msgstr ""
9869
+
9870
+ #: packages/woocommerce-trusted-shops/includes/emails/class-wc-ts-email-customer-trusted-shops.php:65
9871
+ msgctxt "trusted-shops"
9872
+ msgid "Please rate your Order"
9873
+ msgstr ""
9874
+
9875
+ #: packages/woocommerce-trusted-shops/includes/widgets/class-wc-trusted-shops-widget-review-sticker.php:19
9876
+ msgctxt "trusted-shops"
9877
+ msgid "Show your TS shop review sticker."
9878
+ msgstr ""
9879
+
9880
+ #: packages/woocommerce-trusted-shops/includes/widgets/class-wc-trusted-shops-widget-review-sticker.php:21
9881
+ msgctxt "trusted-shops"
9882
+ msgid "Trusted Shops Shop Review Sticker"
9883
+ msgstr ""
9884
+
9885
+ #: packages/woocommerce-trusted-shops/includes/widgets/class-wc-trusted-shops-widget-review-sticker.php:25
9886
+ #: packages/woocommerce-trusted-shops/includes/widgets/class-wc-trusted-shops-widget-review-sticker.php:46
9887
+ msgctxt "trusted-shops"
9888
+ msgid "Trusted Shops Reviews"
9889
+ msgstr ""
9890
+
9891
+ #: packages/woocommerce-trusted-shops/includes/widgets/class-wc-trusted-shops-widget-review-sticker.php:26
9892
+ msgctxt "trusted-shops"
9893
+ msgid "Title"
9894
+ msgstr ""
9895
+
9896
+ #: packages/woocommerce-trusted-shops/src/Package.php:55
9897
+ msgctxt "trusted-shops"
9898
+ msgid "Trustbadge Reviews for WooCommerce needs at least WooCommerce version 3.1 to run."
9899
+ msgstr ""
9900
+
9901
+ #: packages/woocommerce-trusted-shops/templates/emails/cancel-review-reminder.php:13
9902
+ msgctxt "trusted-shops"
9903
+ msgid "If you do not want to receive the review reminder e-mail, please follow the %s link."
9904
+ msgstr ""
9905
+
9906
+ #: packages/woocommerce-trusted-shops/templates/emails/cancel-review-reminder.php:13
9907
+ msgctxt "trusted-shops"
9908
+ msgid "cancel review reminder"
9909
+ msgstr ""
9910
+
9911
+ #: packages/woocommerce-trusted-shops/templates/emails/customer-trusted-shops.php:17
9912
+ #: packages/woocommerce-trusted-shops/templates/emails/plain/customer-trusted-shops.php:14
9913
+ msgctxt "trusted-shops"
9914
+ msgid "Dear %s %s,"
9915
+ msgstr ""
9916
+
9917
+ #: packages/woocommerce-trusted-shops/templates/emails/customer-trusted-shops.php:18
9918
+ #: packages/woocommerce-trusted-shops/templates/emails/plain/customer-trusted-shops.php:16
9919
+ msgctxt "trusted-shops"
9920
+ msgid "You have recently shopped at %s. Thank you! We would be glad if you spent some time to write a review about your order. To do so please follow follow the link."
9921
+ msgstr ""
9922
+
9923
+ #: packages/woocommerce-trusted-shops/templates/emails/customer-trusted-shops.php:22
9924
+ msgctxt "trusted-shops"
9925
+ msgid "Rate Order now"
9926
+ msgstr ""
9927
+
9928
+ #. translators: 1: composer command. 2: plugin directory
9929
+ #: packages/woocommerce-trusted-shops/woocommerce-trusted-shops.php:41
9930
+ #: packages/woocommerce-trusted-shops/woocommerce-trusted-shops.php:59
9931
+ msgctxt "trusted-shops"
9932
+ msgid "Your installation of the Trustbadge Reviews for WooCommerce plugin is incomplete. Please run %1$s within the %2$s directory."
9933
+ msgstr ""
9934
+
9935
+ #: src/Autoloader.php:50
9936
+ #: src/Packages.php:94
9937
+ msgid "Your installation of Germanized is incomplete. If you installed Germanized from GitHub, please refer to this document to set up your development environment: https://github.com/vendidero/woocommerce-germanized/wiki/How-to-set-up-a-Germanized-development-environment"
9938
+ msgstr ""
9939
+
9940
+ #. translators: 1: is a link to a support document. 2: closing link
9941
+ #: src/Autoloader.php:62
9942
+ #: src/Packages.php:116
9943
+ msgid "Your installation of Germanized is incomplete. If you installed Germanized from GitHub, %1$splease refer to this document%2$s to set up your development environment."
9944
+ msgstr ""
9945
+
9946
+ #. Translators: %s package name.
9947
+ #: src/Packages.php:92
9948
+ #: src/Packages.php:107
9949
+ msgid "Missing the Germanized %s package"
9950
+ msgstr ""
9951
+
9952
+ #: src/Shopmarks.php:295
9953
+ msgid "Single Product (Grouped)"
9954
+ msgstr ""
9955
+
9956
+ #: src/Shopmarks.php:296
9957
+ msgid "Product Loop"
9958
+ msgstr ""
9959
+
9960
+ #: src/Shopmarks.php:297
9961
+ msgid "Cart"
9962
+ msgstr ""
9963
+
9964
+ #: src/Shopmarks.php:298
9965
+ msgid "Mini Cart"
9966
+ msgstr ""
9967
+
9968
+ #: src/Shopmarks.php:313
9969
+ msgid "Summary"
9970
+ msgstr ""
9971
+
9972
+ #: src/Shopmarks.php:318
9973
+ msgid "Meta"
9974
+ msgstr ""
9975
+
9976
+ #: src/Shopmarks.php:323
9977
+ msgid "After Meta"
9978
+ msgstr ""
9979
+
9980
+ #: src/Shopmarks.php:328
9981
+ msgid "Before add to cart"
9982
+ msgstr ""
9983
+
9984
+ #: src/Shopmarks.php:333
9985
+ msgid "After add to cart"
9986
+ msgstr ""
9987
+
9988
+ #: src/Shopmarks.php:338
9989
+ msgid "After Summary"
9990
+ msgstr ""
9991
+
9992
+ #: src/Shopmarks.php:345
9993
+ msgid "Price Column"
9994
+ msgstr ""
9995
+
9996
+ #: src/Shopmarks.php:350
9997
+ msgid "Label Column"
9998
+ msgstr ""
9999
+
10000
+ #: src/Shopmarks.php:355
10001
+ msgid "Quantity Column"
10002
+ msgstr ""
10003
+
10004
+ #: src/Shopmarks.php:362
10005
+ msgid "After Item Title"
10006
+ msgstr ""
10007
+
10008
+ #: src/Shopmarks.php:367
10009
+ msgid "Before Item Title"
10010
+ msgstr ""
10011
+
10012
+ #: src/Shopmarks.php:372
10013
+ msgid "Item Title"
10014
+ msgstr ""
10015
+
10016
+ #: src/Shopmarks.php:377
10017
+ msgid "After Item"
10018
+ msgstr ""
10019
+
10020
+ #: src/Shopmarks.php:384
10021
+ #: src/Shopmarks.php:406
10022
+ msgid "Item Price"
10023
+ msgstr ""
10024
+
10025
+ #: src/Shopmarks.php:389
10026
+ #: src/Shopmarks.php:411
10027
+ #: src/Shopmarks.php:423
10028
+ msgid "Item Name"
10029
+ msgstr ""
10030
+
10031
+ #: src/Shopmarks.php:394
10032
+ msgid "After Item Name"
10033
+ msgstr ""
10034
+
10035
+ #: src/Shopmarks.php:399
10036
+ #: src/Shopmarks.php:418
10037
+ msgid "Subtotal"
10038
+ msgstr ""
10039
+
10040
+ #: src/Shopmarks.php:428
10041
+ msgid "After Item Quantity"
10042
+ msgstr ""
10043
+
10044
+ #: src/Shopmarks.php:454
10045
+ #: src/Shopmarks.php:460
10046
+ #: src/Shopmarks.php:466
10047
+ #: src/Shopmarks.php:473
10048
+ #: src/Shopmarks.php:479
10049
+ #: src/Shopmarks.php:485
10050
+ msgctxt "shopmark"
10051
+ msgid "Unit Price"
10052
+ msgstr ""
10053
+
10054
+ #: src/Shopmarks.php:455
10055
+ #: src/Shopmarks.php:461
10056
+ #: src/Shopmarks.php:467
10057
+ #: src/Shopmarks.php:475
10058
+ #: src/Shopmarks.php:481
10059
+ #: src/Shopmarks.php:487
10060
+ msgctxt "shopmark"
10061
+ msgid "Delivery Time"
10062
+ msgstr ""
10063
+
10064
+ #: src/Shopmarks.php:456
10065
+ #: src/Shopmarks.php:462
10066
+ msgctxt "shopmark"
10067
+ msgid "General"
10068
+ msgstr ""
10069
+
10070
+ #: src/Shopmarks.php:457
10071
+ #: src/Shopmarks.php:463
10072
+ #: src/Shopmarks.php:470
10073
+ #: src/Shopmarks.php:474
10074
+ #: src/Shopmarks.php:480
10075
+ #: src/Shopmarks.php:486
10076
+ msgctxt "shopmark"
10077
+ msgid "Product Units"
10078
+ msgstr ""
10079
+
10080
+ #: src/Shopmarks.php:468
10081
+ msgctxt "shopmark"
10082
+ msgid "Tax"
10083
+ msgstr ""
10084
+
10085
+ #: src/Shopmarks.php:469
10086
+ msgctxt "shopmark"
10087
+ msgid "Shipping Costs"
10088
+ msgstr ""
10089
+
10090
+ #: src/Shopmarks.php:476
10091
+ #: src/Shopmarks.php:482
10092
+ #: src/Shopmarks.php:488
10093
+ msgctxt "shopmark"
10094
+ msgid "Cart Description"
10095
+ msgstr ""
10096
+
10097
+ #: templates/checkout/edit-data-notice.php:25
10098
+ msgid "Please check all of your entries carefully. You may change your entries with the help of the button \"%s\"."
10099
+ msgstr ""
10100
+
10101
+ #: templates/checkout/edit-data-notice.php:27
10102
+ msgid "Please check all of your entries carefully. You may change your entries with the help of the \"Back\" button in your browser"
10103
+ msgstr ""
10104
+
10105
+ #: templates/checkout/order-submit.php:26
10106
+ msgid "Since your browser does not support JavaScript, or it is disabled, please ensure you click the %1$sUpdate Totals%2$s button before placing your order. You may be charged more than the amount stated above if you fail to do so."
10107
+ msgstr ""
10108
+
10109
+ #: templates/checkout/order-submit.php:29
10110
+ msgid "Update totals"
10111
+ msgstr ""
10112
+
10113
+ #: templates/emails/customer-new-account-activation.php:25
10114
+ #: templates/emails/plain/customer-new-account-activation.php:25
10115
+ msgid "Thanks for creating an account on %s. Please follow the activation link to activate your account:"
10116
+ msgstr ""
10117
+
10118
+ #: templates/emails/customer-new-account-activation.php:28
10119
+ msgid "Activate your account"
10120
+ msgstr ""
10121
+
10122
+ #: templates/emails/customer-new-account-activation.php:33
10123
+ #: templates/emails/plain/customer-new-account-activation.php:35
10124
+ msgid "Your password has been automatically generated: <strong>%s</strong>"
10125
+ msgstr ""
10126
+
10127
+ #: templates/emails/customer-new-account-activation.php:37
10128
+ #: templates/emails/plain/customer-new-account-activation.php:39
10129
+ msgid "If you haven't created an account on %s please ignore this email."
10130
+ msgstr ""
10131
+
10132
+ #: templates/emails/customer-new-account-activation.php:39
10133
+ msgid "If you cannot follow the link above please copy this url and paste it to your browser bar: %s"
10134
+ msgstr ""
10135
+
10136
+ #: templates/emails/customer-paid-for-order.php:26
10137
+ #: templates/emails/plain/customer-paid-for-order.php:25
10138
+ msgid "Hi there. Thank you! We have successfully received your payment for order %s. Your order is now being processed."
10139
+ msgstr ""
10140
+
10141
+ #: templates/emails/customer-revocation.php:26
10142
+ #: templates/emails/plain/customer-revocation.php:27
10143
+ msgctxt "revocation-form"
10144
+ msgid "By sending you this email we confirm your Revocation. Please review your data."
10145
+ msgstr ""
10146
+
10147
+ #: templates/emails/customer-sepa-direct-debit-mandate.php:25
10148
+ msgid "Please see the SEPA direct debit mandate for order %s attached to this email."
10149
+ msgstr ""
10150
+
10151
+ #: templates/emails/email-sepa-data.php:29
10152
+ msgid "SEPA Data"
10153
+ msgstr ""
10154
+
10155
+ #: templates/footer/sale-info.php:22
10156
+ msgid "All striked out prices refer to prices used to be charged at this shop."
10157
+ msgstr ""
10158
+
10159
+ #: templates/footer/vat-info.php:22
10160
+ msgid "All prices incl. VAT."
10161
+ msgstr ""
10162
+
10163
+ #: templates/footer/vat-info.php:22
10164
+ msgid "All prices excl. VAT."
10165
+ msgstr ""
10166
+
10167
+ #: templates/forms/revocation-form.php:26
10168
+ msgctxt "revocation-form"
10169
+ msgid "To"
10170
+ msgstr ""
10171
+
10172
+ #: templates/forms/revocation-form.php:49
10173
+ #: templates/forms/revocation-form.php:50
10174
+ msgctxt "revocation-form"
10175
+ msgid "Forward Revocation"
10176
+ msgstr ""
10177
+
10178
+ #: templates/global/complaints.php:22
10179
+ msgid "Alternative Dispute Resolution in accordance with Art. 14 (1) ODR-VO and § 36 VSBG:"
10180
+ msgstr ""
10181
+
10182
+ #: templates/order/order-pay-now-button.php:25
10183
+ msgid "Pay now"
10184
+ msgstr ""
10185
+
10186
+ #. translators: %s is the word upgrade with a link to a support page about upgrading
10187
+ #: woocommerce-germanized.php:49
10188
+ msgid "Germanized requires at least PHP 5.6 to work. Please %s your PHP version."
10189
+ msgstr ""
10190
+
10191
+ #: woocommerce-germanized.php:50
10192
+ msgid "upgrade"
10193
+ msgstr ""
10194
+
10195
+ #: woocommerce-germanized.php:314
10196
+ msgid "This version of the Corona Helper Plugin includes a bug which could lead to tax rates being added multiple times. Please <a href=\"%s\">deactivate</a> the plugin and check our <a href=\"%s\" target=\"_blank\">blog post</a>."
10197
+ msgstr ""
10198
+
10199
+ #: woocommerce-germanized.php:975
10200
+ msgid "Pease wait while we are trying to redirect you to the payment provider."
10201
+ msgstr ""
includes/admin/class-wc-gzd-admin-notices.php CHANGED
@@ -48,6 +48,8 @@ if ( ! class_exists( 'WC_GZD_Admin_Notices' ) ) :
48
 
49
  add_action( 'after_switch_theme', array( $this, 'remove_theme_notice_hide' ), 25 );
50
  add_action( 'admin_print_styles', array( $this, 'add_notices' ), 1 );
 
 
51
 
52
  include_once( 'notes/class-wc-gzd-admin-note.php' );
53
  include_once( 'notes/class-wc-gzd-admin-note-theme-supported.php' );
@@ -57,6 +59,64 @@ if ( ! class_exists( 'WC_GZD_Admin_Notices' ) ) :
57
  include_once( 'notes/class-wc-gzd-admin-note-pro.php' );
58
  include_once( 'notes/class-wc-gzd-admin-note-dhl-importer.php' );
59
  include_once( 'notes/class-wc-gzd-admin-note-internetmarke-importer.php' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  }
61
 
62
  public function enable_notices() {
@@ -94,7 +154,8 @@ if ( ! class_exists( 'WC_GZD_Admin_Notices' ) ) :
94
  'WC_GZD_Admin_Note_Template_Outdated',
95
  'WC_GZD_Admin_Note_Pro',
96
  'WC_GZD_Admin_Note_DHL_Importer',
97
- 'WC_GZD_Admin_Note_Internetmarke_Importer'
 
98
  ) );
99
 
100
  $this->notes = array();
48
 
49
  add_action( 'after_switch_theme', array( $this, 'remove_theme_notice_hide' ), 25 );
50
  add_action( 'admin_print_styles', array( $this, 'add_notices' ), 1 );
51
+ add_action( 'in_plugin_update_message-woocommerce-germanized/woocommerce-germanized.php', array( $this, 'pro_incompatibility_notice' ), 10, 2 );
52
+ add_filter( 'site_transient_update_plugins', array( $this, 'pro_incompatibility_plain_update_message' ), 10 );
53
 
54
  include_once( 'notes/class-wc-gzd-admin-note.php' );
55
  include_once( 'notes/class-wc-gzd-admin-note-theme-supported.php' );
59
  include_once( 'notes/class-wc-gzd-admin-note-pro.php' );
60
  include_once( 'notes/class-wc-gzd-admin-note-dhl-importer.php' );
61
  include_once( 'notes/class-wc-gzd-admin-note-internetmarke-importer.php' );
62
+ include_once( 'notes/class-wc-gzd-admin-note-shipping-excl-tax.php' );
63
+ }
64
+
65
+ public function pro_incompatibility_plain_update_message( $data ) {
66
+ if ( isset( $data->response ) && array_key_exists( 'woocommerce-germanized/woocommerce-germanized.php', $data->response ) && WC_germanized()->is_pro() ) {
67
+ $plugin_data = $data->response['woocommerce-germanized/woocommerce-germanized.php'];
68
+
69
+ if ( ! isset( $plugin_data->upgrade_notice ) && ! $this->is_next_update_compatible_with_pro( $plugin_data->new_version ) ) {
70
+ $data->response['woocommerce-germanized/woocommerce-germanized.php']->upgrade_notice = $this->get_pro_incompatible_message( true );
71
+ }
72
+ }
73
+
74
+ return $data;
75
+ }
76
+
77
+ protected function is_next_update_compatible_with_pro( $new_version ) {
78
+ $is_supported = true;
79
+
80
+ if ( WC_germanized()->is_pro() ) {
81
+ // Check compatibility with next version
82
+ $max_version_supported = '';
83
+
84
+ if ( class_exists( 'WC_GZDP_Dependencies' ) ) {
85
+ $dep = WC_GZDP_Dependencies::instance();
86
+
87
+ if ( is_callable( array( $dep, 'get_wc_gzd_max_version_supported' ) ) ) {
88
+ $max_version_supported = WC_GZDP_Dependencies::instance()->get_wc_gzd_max_version_supported();
89
+ }
90
+ }
91
+
92
+ if ( ! empty( $max_version_supported ) ) {
93
+ /**
94
+ * Explicitly use $max_version_supported as first parameter to make sure
95
+ * the more accurate $new_version string is cut if necessary.
96
+ */
97
+ if ( WC_GZD_Dependencies::instance()->compare_versions( $max_version_supported, $new_version, '<' ) ) {
98
+ $is_supported = false;
99
+ }
100
+ }
101
+ }
102
+
103
+ return $is_supported;
104
+ }
105
+
106
+ public function pro_incompatibility_notice( $data, $plugin ) {
107
+ if ( WC_germanized()->is_pro() && ! $this->is_next_update_compatible_with_pro( $plugin->new_version ) ) {
108
+ echo '</p>' . $this->get_pro_incompatible_message();
109
+ }
110
+ }
111
+
112
+ protected function get_pro_incompatible_message( $plain = false ) {
113
+ if ( $plain ) {
114
+ return sprintf( __( '<strong>Be aware!</strong> This update is not compatible with your current Germanized Pro version. Please check for updates (%s) before updating Germanized to prevent compatibility issues.', 'woocommerce-germanized' ), 'https://vendidero.de/dokument/germanized-pro-aktualisieren' );
115
+ } else {
116
+ ob_start();
117
+ include __DIR__ . '/views/html-notice-update-pro-incompatible.php';
118
+ return ob_get_clean();
119
+ }
120
  }
121
 
122
  public function enable_notices() {
154
  'WC_GZD_Admin_Note_Template_Outdated',
155
  'WC_GZD_Admin_Note_Pro',
156
  'WC_GZD_Admin_Note_DHL_Importer',
157
+ 'WC_GZD_Admin_Note_Internetmarke_Importer',
158
+ 'WC_GZD_Admin_Note_Shipping_Excl_Tax'
159
  ) );
160
 
161
  $this->notes = array();
includes/admin/class-wc-gzd-admin-order.php CHANGED
@@ -25,18 +25,21 @@ class WC_GZD_Admin_Order {
25
  }
26
 
27
  public function __construct() {
28
- if ( 'yes' === get_option( 'woocommerce_gzd_shipping_tax' ) ) {
29
  add_action( 'woocommerce_order_item_shipping_after_calculate_taxes', array(
30
  $this,
31
  'adjust_item_taxes'
32
- ), 10, 2 );
33
- }
34
 
35
- if ( 'yes' === get_option( 'woocommerce_gzd_fee_tax' ) ) {
36
  add_action( 'woocommerce_order_item_fee_after_calculate_taxes', array(
37
  $this,
38
  'adjust_item_taxes'
39
- ), 10, 2 );
 
 
 
 
 
40
  }
41
  }
42
 
@@ -44,15 +47,14 @@ class WC_GZD_Admin_Order {
44
  * @param WC_Order_Item $item
45
  * @param $for
46
  */
47
- public function adjust_item_taxes( $item, $for ) {
48
-
49
- if ( $item->get_total() <= 0 ) {
50
  return;
51
  }
52
 
53
  if ( $order = $item->get_order() ) {
54
  // Calculate tax shares
55
- $tax_share = $this->get_order_tax_share( $order, is_a( $item, 'WC_Order_Item_Shipping' ) ? 'shipping' : 'fee' );
56
 
57
  // Do only adjust taxes if tax share contains more than one tax rate
58
  if ( $tax_share && ! empty( $tax_share ) && sizeof( $tax_share ) > 1 ) {
@@ -61,29 +63,38 @@ class WC_GZD_Admin_Order {
61
 
62
  // Lets grab a fresh copy (loaded from DB) to make sure we are not dependent on Woo's calculated taxes in $item.
63
  if ( $old_item ) {
64
- $item_total = $old_item->get_total() + $old_item->get_total_tax();
 
 
 
 
65
  } else {
66
- $item_total = $item->get_total() + $item->get_totaL_tax();
 
 
 
 
67
  }
68
 
69
  foreach ( $tax_share as $rate => $class ) {
70
  $tax_rates = WC_Tax::get_rates( $rate );
71
- $taxes = $taxes + WC_Tax::calc_tax( ( $item_total * $class['share'] ), $tax_rates, true );
72
- // Apply the same total tax rounding as we do in WC_GZD_Shipping_Rate::set_shared_taxes
73
- $taxes = array_map( 'wc_round_tax_total', $taxes );
74
  }
75
 
76
  $item->set_taxes( array( 'total' => $taxes ) );
77
 
78
  // The new net total equals old gross total minus new tax totals
79
- $item->set_total( $item_total - $item->get_total_tax() );
 
 
80
 
81
  $order->update_meta_data( '_has_split_tax', 'yes' );
82
- $order->save();
83
  } else {
84
  $order->delete_meta_data( '_has_split_tax' );
85
- $order->save();
86
  }
 
 
 
87
  }
88
  }
89
 
25
  }
26
 
27
  public function __construct() {
28
+ if ( wc_gzd_enable_additional_costs_split_tax_calculation() ) {
29
  add_action( 'woocommerce_order_item_shipping_after_calculate_taxes', array(
30
  $this,
31
  'adjust_item_taxes'
32
+ ), 10 );
 
33
 
 
34
  add_action( 'woocommerce_order_item_fee_after_calculate_taxes', array(
35
  $this,
36
  'adjust_item_taxes'
37
+ ), 10 );
38
+
39
+ add_action( 'woocommerce_order_item_after_calculate_taxes', array(
40
+ $this,
41
+ 'adjust_item_taxes'
42
+ ), 10 );
43
  }
44
  }
45
 
47
  * @param WC_Order_Item $item
48
  * @param $for
49
  */
50
+ public function adjust_item_taxes( $item ) {
51
+ if ( ! wc_tax_enabled() || $item->get_total() <= 0 || ! in_array( $item->get_type(), array( 'fee', 'shipping' ) ) ) {
 
52
  return;
53
  }
54
 
55
  if ( $order = $item->get_order() ) {
56
  // Calculate tax shares
57
+ $tax_share = $this->get_order_tax_share( $order, 'shipping' === $item->get_type() ? 'shipping' : 'fee' );
58
 
59
  // Do only adjust taxes if tax share contains more than one tax rate
60
  if ( $tax_share && ! empty( $tax_share ) && sizeof( $tax_share ) > 1 ) {
63
 
64
  // Lets grab a fresh copy (loaded from DB) to make sure we are not dependent on Woo's calculated taxes in $item.
65
  if ( $old_item ) {
66
+ $item_total = $old_item->get_total();
67
+
68
+ if ( wc_gzd_additional_costs_include_tax() ) {
69
+ $item_total += $old_item->get_total_tax();
70
+ }
71
  } else {
72
+ $item_total = $item->get_total();
73
+
74
+ if ( wc_gzd_additional_costs_include_tax() ) {
75
+ $item_total += $item->get_total_tax();
76
+ }
77
  }
78
 
79
  foreach ( $tax_share as $rate => $class ) {
80
  $tax_rates = WC_Tax::get_rates( $rate );
81
+ $taxes = $taxes + WC_Tax::calc_tax( ( $item_total * $class['share'] ), $tax_rates, wc_gzd_additional_costs_include_tax() );
 
 
82
  }
83
 
84
  $item->set_taxes( array( 'total' => $taxes ) );
85
 
86
  // The new net total equals old gross total minus new tax totals
87
+ if ( wc_gzd_additional_costs_include_tax() ) {
88
+ $item->set_total( $item_total - $item->get_total_tax() );
89
+ }
90
 
91
  $order->update_meta_data( '_has_split_tax', 'yes' );
 
92
  } else {
93
  $order->delete_meta_data( '_has_split_tax' );
 
94
  }
95
+
96
+ $order->update_meta_data( '_additional_costs_include_tax', wc_bool_to_string( wc_gzd_additional_costs_include_tax() ) );
97
+ $order->save();
98
  }
99
  }
100
 
includes/admin/class-wc-gzd-admin.php CHANGED
@@ -797,9 +797,6 @@ class WC_GZD_Admin {
797
  update_option( 'woocommerce_price_display_suffix', '' );
798
 
799
  update_option( 'woocommerce_gzd_shipping_tax', 'no' );
800
- update_option( 'woocommerce_gzd_shipping_tax_force', 'no' );
801
- update_option( 'woocommerce_gzd_fee_tax', 'no' );
802
- update_option( 'woocommerce_gzd_fee_tax_force', 'no' );
803
  update_option( 'woocommerce_gzd_enable_virtual_vat', 'no' );
804
  }
805
 
797
  update_option( 'woocommerce_price_display_suffix', '' );
798
 
799
  update_option( 'woocommerce_gzd_shipping_tax', 'no' );
 
 
 
800
  update_option( 'woocommerce_gzd_enable_virtual_vat', 'no' );
801
  }
802
 
includes/admin/notes/class-wc-gzd-admin-note-shipping-excl-tax.php ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ defined( 'ABSPATH' ) || exit;
4
+
5
+ /**
6
+ * WC_Admin_Notes_Welcome_Message.
7
+ */
8
+ class WC_GZD_Admin_Note_Shipping_Excl_Tax extends WC_GZD_Admin_Note {
9
+
10
+ public function is_disabled() {
11
+ if ( 'yes' !== get_option( '_wc_gzd_show_shipping_tax_excl_notice' ) ) {
12
+ return true;
13
+ }
14
+
15
+ return parent::is_disabled();
16
+ }
17
+
18
+ public function dismiss( $and_note = true ) {
19
+ delete_option( '_wc_gzd_show_shipping_tax_excl_notice' );
20
+
21
+ parent::dismiss( $and_note );
22
+ }
23
+
24
+ public function get_name() {
25
+ return 'shipping_excl_tax';
26
+ }
27
+
28
+ public function get_title() {
29
+ return __( 'Shipping and fee taxes', 'woocommerce-germanized' );
30
+ }
31
+
32
+ public function get_content() {
33
+ return __( 'Starting with the newest Germanized version your <strong>shipping costs and fees will no longer be treated including tax</strong>. This change in Germanized was necessary due to your prices being treated excluding taxes (see your WooCommerce tax settings). Due to the way WooCommerce calculates taxes for orders (based on prices excluding taxes) there is no consistent way to (re-)calculate shipping costs and/or fee taxes if they are treated including taxes. Please check your shipping costs and fees and edit costs accordingly.', 'woocommerce-germanized' );
34
+ }
35
+
36
+ public function get_actions() {
37
+ return array(
38
+ array(
39
+ 'url' => admin_url( 'admin.php?page=wc-settings&tab=shipping' ),
40
+ 'title' => __( 'Manage shipping methods', 'woocommerce-germanized' ),
41
+ 'is_primary' => true,
42
+ ),
43
+ array(
44
+ 'url' => 'https://vendidero.de/dokument/steuerberechnung-fuer-versandkosten-und-gebuehren',
45
+ 'title' => __( 'Learn more', 'woocommerce-germanized' ),
46
+ 'target' => '_blank',
47
+ 'is_primary' => false,
48
+ ),
49
+ );
50
+ }
51
+ }
includes/admin/settings/class-wc-gzd-settings-tab-taxes.php CHANGED
@@ -33,6 +33,10 @@ class WC_GZD_Settings_Tab_Taxes extends WC_GZD_Settings_Tab {
33
  );
34
  }
35
 
 
 
 
 
36
  protected function get_vat_settings() {
37
  $virtual_vat = wc_gzd_is_small_business() ? array() : array(
38
  'title' => __( 'Virtual VAT', 'woocommerce-germanized' ),
@@ -84,58 +88,24 @@ class WC_GZD_Settings_Tab_Taxes extends WC_GZD_Settings_Tab {
84
 
85
  protected function get_split_tax_settings() {
86
 
87
- $shipping_tax_example = sprintf( __( 'By choosing this option shipping cost taxation will be calculated based on tax rates within cart. Imagine the following example. Further information can be found <a href="%s" target="_blank">here</a>. %s', 'woocommerce-germanized' ), 'http://www.it-recht-kanzlei.de/umsatzsteuer-versandkosten-mehrwertsteuer.html', '<table class="wc-gzd-tax-example"><thead><tr><th>Produkt</th><th>Preis</th><th>MwSt.-Satz</th><th>Anteil</th><th>MwSt.</th></tr></thead><tbody><tr><td>Buch</td><td>' . wc_price( 40 ) . '</td><td>7%</td><td>40%</td><td>' . wc_price( 2.62 ) . '</td></tr><tr><td>DVD</td><td>' . wc_price( 60 ) . '</td><td>19%</td><td>60%</td><td>' . wc_price( 9.58 ) . '</td></tr><tr><td>Versand</td><td>' . wc_price( 5 ) . '</td><td>7% | 19%</td><td>40% | 60%</td><td>' . wc_price( 0.13 ) . ' | ' . wc_price( 0.48 ) . '</td></tr></tbody></table>' );
88
 
89
  return array(
90
  array(
91
- 'title' => __( 'Shipping costs', 'woocommerce-germanized' ),
92
  'type' => 'title',
93
- 'id' => 'shipping_tax_options'
94
  ),
95
 
96
  array(
97
  'title' => __( 'Split-tax', 'woocommerce-germanized' ),
98
- 'desc' => __( 'Enable split-tax calculation for shipping costs.', 'woocommerce-germanized' ) . '<div class="wc-gzd-additional-desc">' . $shipping_tax_example . '</div>',
99
  'id' => 'woocommerce_gzd_shipping_tax',
100
  'default' => 'yes',
101
  'type' => 'gzd_toggle',
102
  ),
103
- array(
104
- 'title' => __( 'Force', 'woocommerce-germanized' ),
105
- 'desc' => __( 'Force split-tax calculation for shipping methods.', 'woocommerce-germanized' ),
106
- 'id' => 'woocommerce_gzd_shipping_tax_force',
107
- 'default' => 'yes',
108
- 'type' => 'gzd_toggle',
109
- 'custom_attributes' => array(
110
- 'data-show_if_woocommerce_gzd_shipping_tax' => '',
111
- ),
112
- 'desc_tip' => __( 'This option will overwrite settings for each individual shipping method to force tax calculation (instead of only calculating tax for those methods which are taxeable).', 'woocommerce-germanized' ),
113
- ),
114
-
115
- array( 'type' => 'sectionend', 'id' => 'shipping_tax_options' ),
116
-
117
- array( 'title' => __( 'Fees', 'woocommerce-germanized' ), 'type' => 'title', 'id' => 'fee_tax_options' ),
118
-
119
- array(
120
- 'title' => __( 'Split-tax', 'woocommerce-germanized' ),
121
- 'desc' => __( 'Enable split-tax calculation for fees.', 'woocommerce-germanized' ),
122
- 'id' => 'woocommerce_gzd_fee_tax',
123
- 'default' => 'yes',
124
- 'type' => 'gzd_toggle',
125
- ),
126
- array(
127
- 'title' => __( 'Force', 'woocommerce-germanized' ),
128
- 'desc' => __( 'Force split-tax calculation for fees.', 'woocommerce-germanized' ),
129
- 'id' => 'woocommerce_gzd_fee_tax_force',
130
- 'default' => 'yes',
131
- 'custom_attributes' => array(
132
- 'data-show_if_woocommerce_gzd_fee_tax' => '',
133
- ),
134
- 'type' => 'gzd_toggle',
135
- 'desc_tip' => __( 'This option will overwrite settings for each individual fee to force tax calculation (instead of only calculating tax for those fees which are taxeable).', 'woocommerce-germanized' ),
136
- ),
137
 
138
- array( 'type' => 'sectionend', 'id' => 'fee_tax_options' ),
139
  );
140
  }
141
 
33
  );
34
  }
35
 
36
+ public function get_help_link() {
37
+ return 'https://vendidero.de/dokumentation/woocommerce-germanized/steuern';
38
+ }
39
+
40
  protected function get_vat_settings() {
41
  $virtual_vat = wc_gzd_is_small_business() ? array() : array(
42
  'title' => __( 'Virtual VAT', 'woocommerce-germanized' ),
88
 
89
  protected function get_split_tax_settings() {
90
 
91
+ $shipping_tax_example = sprintf( __( 'By choosing this option shipping cost and fee taxes will be calculated based on the tax rates included within the cart. Imagine the following example. The tax share is calculated based on net prices. Further information can be found <a href="%s" target="_blank">here</a>. %s', 'woocommerce-germanized' ), 'https://vendidero.de/dokument/steuerberechnung-fuer-versandkosten-und-gebuehren', '<table class="wc-gzd-tax-example"><thead><tr><th>' . __( 'Product', 'woocommerce-germanized' ) . '</th><th>' . __( 'Price', 'woocommerce-germanized' ) . '</th><th>' . __( 'Price (net)', 'woocommerce-germanized' ) . '</th><th>' . __( 'Tax rate', 'woocommerce-germanized' ) . '</th><th>' . __( 'Share', 'woocommerce-germanized' ) . '</th><th>' . __( 'Tax', 'woocommerce-germanized' ) . '</th></tr></thead><tbody><tr><td>' . __( 'Book', 'woocommerce-germanized' ) . '</td><td>' . wc_price( 40 ) . '</td><td>' . wc_price( 37.38 ) . '</td><td>7 %</td><td>42.56 %</td><td>' . wc_price( 2.62 ) . '</td></tr><tr><td>' . __( 'DVD', 'woocommerce-germanized' ) . '</td><td>' . wc_price( 60 ) . '</td><td>' . wc_price( 50.42 ) . '</td><td>19 %</td><td>57.43 %</td><td>' . wc_price( 9.58 ) . '</td></tr><tr><td>' . __( 'Shipping', 'woocommerce-germanized' ) . '</td><td>' . wc_price( 5 ) . '</td><td>' . wc_price( 4.40 ) . '</td><td>7 % | 19 %</td><td>42.56 % | 57.43 %</td><td>' . wc_price( 0.14 ) . ' | ' . wc_price( 0.46 ) . '</td></tr></tbody></table>' );
92
 
93
  return array(
94
  array(
95
+ 'title' => '',
96
  'type' => 'title',
97
+ 'id' => 'split_tax_options'
98
  ),
99
 
100
  array(
101
  'title' => __( 'Split-tax', 'woocommerce-germanized' ),
102
+ 'desc' => __( 'Enable split-tax calculation for additional costs (shipping costs and fees).', 'woocommerce-germanized' ) . '<div class="wc-gzd-additional-desc">' . $shipping_tax_example . '</div>',
103
  'id' => 'woocommerce_gzd_shipping_tax',
104
  'default' => 'yes',
105
  'type' => 'gzd_toggle',
106
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
107
 
108
+ array( 'type' => 'sectionend', 'id' => 'split_tax_options' ),
109
  );
110
  }
111
 
includes/admin/views/html-notice-update-pro-incompatible.php ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if ( ! defined( 'ABSPATH' ) ) {
3
+ exit; // Exit if accessed directly
4
+ }
5
+ ?>
6
+ <style>
7
+ .plugins p.wc-gzd-update-warning {
8
+ border-top: 1px solid #ffb900; margin-left: -12px; margin-right: -12px; padding: 12px; padding-bottom: 3px;
9
+ }
10
+ .plugins p.wc-gzd-update-warning::before {
11
+ display: none;
12
+ }
13
+ </style>
14
+ <p class="wc-gzd-update-warning">
15
+ <?php printf( __( '<strong>Be aware!</strong> This update is not compatible with your current Germanized Pro version. Please <a href="%s">check for updates</a> before updating Germanized to prevent <a href="%s">compatibility issues</a>.', 'woocommerce-germanized' ), 'https://vendidero.de/dokument/germanized-pro-aktualisieren', 'https://vendidero.de/dokument/wichtige-plugins-fehlen-sind-veraltet-oder-werden-nicht-unterstuetzt' ); ?>
includes/admin/views/html-page-status-germanized.php CHANGED
@@ -88,14 +88,14 @@ if ( ! defined( 'ABSPATH' ) ) {
88
  </thead>
89
  <tbody>
90
  <tr>
91
- <td data-export-label="Shipping Taxes"><?php _e( 'Shipping Taxes', 'woocommerce-germanized' ); ?>:</td>
92
  <td class="help">&nbsp;</td>
93
- <td><?php echo 'yes' === get_option( 'woocommerce_gzd_shipping_tax' ) ? '<mark class="yes"><span class="dashicons dashicons-yes"></span></mark>' . ( 'yes' === get_option( 'woocommerce_gzd_shipping_tax_force' ) ? ' [' . __( 'Forced', 'woocommerce-germanized' ) . ']' : '' ) : '<mark class="no">' . '&ndash;' . '</mark>'; ?></td>
94
  </tr>
95
  <tr>
96
- <td data-export-label="Fee Taxes"><?php _e( 'Fee Taxes', 'woocommerce-germanized' ); ?>:</td>
97
  <td class="help">&nbsp;</td>
98
- <td><?php echo 'yes' === get_option( 'woocommerce_gzd_fee_tax' ) ? '<mark class="yes"><span class="dashicons dashicons-yes"></span></mark>' . ( 'yes' === get_option( 'woocommerce_gzd_fee_tax_force' ) ? ' [' . __( 'Forced', 'woocommerce-germanized' ) . ']' : '' ) : '<mark class="no">' . '&ndash;' . '</mark>'; ?></td>
99
  </tr>
100
  <tr>
101
  <td data-export-label="Virtual VAT"><?php _e( 'Virtual VAT', 'woocommerce-germanized' ); ?>:</td>
88
  </thead>
89
  <tbody>
90
  <tr>
91
+ <td data-export-label="Split Tax"><?php _e( 'Split-tax', 'woocommerce-germanized' ); ?>:</td>
92
  <td class="help">&nbsp;</td>
93
+ <td><?php echo 'yes' === get_option( 'woocommerce_gzd_shipping_tax' ) ? '<mark class="yes"><span class="dashicons dashicons-yes"></span></mark>' : '<mark class="no">' . '&ndash;' . '</mark>'; ?></td>
94
  </tr>
95
  <tr>
96
+ <td data-export-label="Split Tax"><?php _e( 'Additional costs include taxes', 'woocommerce-germanized' ); ?>:</td>
97
  <td class="help">&nbsp;</td>
98
+ <td><?php echo wc_gzd_additional_costs_include_tax() ? '<mark class="yes"><span class="dashicons dashicons-yes"></span></mark>' : '<mark class="no">' . '&ndash;' . '</mark>'; ?></td>
99
  </tr>
100
  <tr>
101
  <td data-export-label="Virtual VAT"><?php _e( 'Virtual VAT', 'woocommerce-germanized' ); ?>:</td>
includes/class-wc-gzd-checkout.php CHANGED
@@ -65,8 +65,12 @@ class WC_GZD_Checkout {
65
  // Deactivate checkout shipping selection
66
  add_action( 'woocommerce_review_order_before_shipping', array( $this, 'remove_shipping_rates' ), 0 );
67
 
68
- // Add better fee taxation
69
- add_action( 'woocommerce_calculate_totals', array( $this, 'do_fee_tax_calculation' ), 1500, 1 );
 
 
 
 
70
 
71
  if ( 'yes' === get_option( 'woocommerce_gzd_differential_taxation_disallow_mixed_carts' ) ) {
72
  add_filter( 'woocommerce_add_to_cart_validation', array( $this, 'prevent_differential_mixed_carts' ), 10, 3 );
@@ -206,12 +210,14 @@ class WC_GZD_Checkout {
206
  * @param WC_Order $order
207
  */
208
  public function order_meta( $order ) {
209
- if ( 'yes' === get_option( 'woocommerce_gzd_shipping_tax' ) ) {
210
  $tax_shares = wc_gzd_get_cart_tax_share( 'shipping', $order->get_items() );
211
 
212
  if ( sizeof( $tax_shares ) > 1 ) {
213
  $order->update_meta_data( '_has_split_tax', 'yes' );
214
  }
 
 
215
  }
216
  }
217
 
@@ -646,102 +652,204 @@ class WC_GZD_Checkout {
646
  }
647
 
648
  /**
649
- * Recalculate fee taxes to split tax based on different tax rates contained within cart
650
  *
 
 
 
 
 
651
  * @param WC_Cart $cart
652
  */
653
- public function do_fee_tax_calculation( $cart ) {
654
- if ( 'yes' !== get_option( 'woocommerce_gzd_fee_tax' ) ) {
655
- return;
656
- }
657
 
658
- if ( ! method_exists( $cart, 'set_fee_taxes' ) ) {
659
- return;
660
  }
661
 
662
- $calculate_taxes = wc_tax_enabled() && ! WC()->customer->is_vat_exempt();
 
 
 
 
 
663
 
664
- // Do not calculate tax shares if tax calculation is disabled
665
- if ( ! $calculate_taxes ) {
666
- return;
667
- }
668
 
669
- $fees = $cart->get_fees();
 
 
 
 
 
670
 
671
- if ( ! empty( $fees ) ) {
672
- $tax_shares = wc_gzd_get_cart_tax_share( 'fee' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
673
 
674
  /**
675
- * Do not calculate fee taxes if tax shares are empty (e.g. zero-taxes only).
676
- * In this case, remove fee taxes altogether and force gross price.
677
  */
678
- if ( empty( $tax_shares ) ) {
679
- $this->remove_fee_taxes( $cart );
 
 
 
 
 
 
 
 
680
 
681
- return;
682
- }
 
683
 
684
- $fee_tax_total = 0;
685
- $fee_tax_data = array();
686
- $new_fees = array();
687
 
688
- foreach ( $cart->get_fees() as $key => $fee ) {
 
689
 
690
- if ( ! $fee->taxable && 'yes' !== get_option( 'woocommerce_gzd_fee_tax_force' ) ) {
691
- continue;
 
 
692
  }
 
693
 
694
- // Calculate gross price if necessary
695
- if ( $fee->taxable ) {
696
- $fee_tax_rates = WC_Tax::get_rates( $fee->tax_class );
697
- $fee_tax = WC_Tax::calc_tax( $fee->amount, $fee_tax_rates, false );
698
- $fee->amount += array_sum( $fee_tax );
 
 
 
 
 
 
699
  }
700
 
701
- // Set fee to nontaxable to avoid WooCommerce default tax calculation
702
- $fee->taxable = false;
 
703
 
704
- // Calculate tax class share
705
- if ( ! empty( $tax_shares ) ) {
706
- $fee_taxes = array();
707
 
708
- foreach ( $tax_shares as $rate => $class ) {
709
- $tax_rates = WC_Tax::get_rates( $rate );
710
- $tax_shares[ $rate ]['fee_tax_share'] = $fee->amount * $class['share'];
711
- $tax_shares[ $rate ]['fee_tax'] = WC_Tax::calc_tax( ( $fee->amount * $class['share'] ), $tax_rates, true );
 
 
712
 
713
- $fee_taxes += $tax_shares[ $rate ]['fee_tax'];
714
- }
 
715
 
716
- foreach ( $tax_shares as $rate => $class ) {
717
- foreach ( $class['fee_tax'] as $rate_id => $tax ) {
718
- if ( ! array_key_exists( $rate_id, $fee_tax_data ) ) {
719
- $fee_tax_data[ $rate_id ] = 0;
720
- }
721
 
722
- $fee_tax_data[ $rate_id ] += $tax;
723
- }
 
 
724
 
725
- $fee_tax_total += array_sum( $class['fee_tax'] );
726
- }
727
 
728
- $fee->tax_data = $fee_taxes;
729
- $fee->tax = wc_round_tax_total( $fee_tax_total );
730
- $fee->amount = ( $fee->amount - $fee->tax );
731
- $fee->total = $fee->amount;
 
 
 
 
732
 
733
- $new_fees[ $key ] = $fee;
 
 
 
 
 
 
 
734
  }
735
  }
736
 
737
- $cart->fees_api()->set_fees( $new_fees );
738
- $cart->set_fee_tax( array_sum( $fee_tax_data ) );
739
- $cart->set_fee_taxes( $fee_tax_data );
740
 
741
- $fee_total = array_sum( wp_list_pluck( $new_fees, 'total' ) );
 
 
 
 
 
 
 
742
 
743
- $cart->set_fee_total( wc_format_decimal( $fee_total, wc_get_price_decimals() ) );
 
 
 
 
744
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
745
  }
746
 
747
  /**
@@ -779,6 +887,10 @@ class WC_GZD_Checkout {
779
  }
780
 
781
  public function set_formatted_address( $placeholder, $args ) {
 
 
 
 
782
  if ( isset( $args['title'] ) ) {
783
 
784
  if ( ! empty( $args['title'] ) ) {
65
  // Deactivate checkout shipping selection
66
  add_action( 'woocommerce_review_order_before_shipping', array( $this, 'remove_shipping_rates' ), 0 );
67
 
68
+ /**
69
+ * Split tax calculation for fees and shipping
70
+ */
71
+ add_filter( 'woocommerce_cart_totals_get_fees_from_cart_taxes', array( $this, 'adjust_fee_taxes' ), 100, 3 );
72
+ add_filter( 'woocommerce_package_rates', array( $this, 'adjust_shipping_taxes' ), 100, 2 );
73
+ add_filter( 'woocommerce_cart_tax_totals', array( $this, 'fix_cart_shipping_tax_rounding' ), 100, 2 );
74
 
75
  if ( 'yes' === get_option( 'woocommerce_gzd_differential_taxation_disallow_mixed_carts' ) ) {
76
  add_filter( 'woocommerce_add_to_cart_validation', array( $this, 'prevent_differential_mixed_carts' ), 10, 3 );
210
  * @param WC_Order $order
211
  */
212
  public function order_meta( $order ) {
213
+ if ( wc_gzd_enable_additional_costs_split_tax_calculation() ) {
214
  $tax_shares = wc_gzd_get_cart_tax_share( 'shipping', $order->get_items() );
215
 
216
  if ( sizeof( $tax_shares ) > 1 ) {
217
  $order->update_meta_data( '_has_split_tax', 'yes' );
218
  }
219
+
220
+ $order->update_meta_data( '_additional_costs_include_tax', wc_bool_to_string( wc_gzd_additional_costs_include_tax() ) );
221
  }
222
  }
223
 
652
  }
653
 
654
  /**
655
+ * This filter is important to get the right (rounded) per tax rate tax amounts.
656
  *
657
+ * By default Woo does round shipping taxes differently as shipping costs
658
+ * are treated as net prices. Germanized does treat shipping costs as gross in
659
+ * case prices include tax.
660
+ *
661
+ * @param $taxes
662
  * @param WC_Cart $cart
663
  */
664
+ public function fix_cart_shipping_tax_rounding( $taxes, $cart ) {
 
 
 
665
 
666
+ if ( ! wc_gzd_additional_costs_include_tax() ) {
667
+ return $taxes;
668
  }
669
 
670
+ // Remove the current filter before calling get_tax_totals to prevent infinite loops
671
+ remove_filter( 'woocommerce_cart_tax_totals', array( $this, 'fix_cart_shipping_tax_rounding' ), 100 );
672
+ // Remove shipping taxes to prevent different rounding for them within WC_Cart::get_tax_totals
673
+ add_filter( 'woocommerce_cart_get_shipping_taxes', array( $this, 'remove_shipping_taxes' ), 10 );
674
+ // Make sure that total taxes still include shipping taxes
675
+ add_filter( 'woocommerce_cart_get_taxes', array( $this, 'maybe_remove_shipping_tax_filter' ), 10, 2 );
676
 
677
+ $taxes = $cart->get_tax_totals();
 
 
 
678
 
679
+ // Remove cart tax filter
680
+ remove_filter( 'woocommerce_cart_get_taxes', array( $this, 'maybe_remove_shipping_tax_filter' ), 10 );
681
+ // Remove shipping tax filter
682
+ remove_filter( 'woocommerce_cart_get_shipping_taxes', array( $this, 'remove_shipping_taxes' ), 10 );
683
+ // Re add the filter
684
+ add_filter( 'woocommerce_cart_tax_totals', array( $this, 'fix_cart_shipping_tax_rounding' ), 100, 2 );
685
 
686
+ return $taxes;
687
+ }
688
+
689
+ /**
690
+ * @param $taxes
691
+ * @param WC_Cart $cart
692
+ */
693
+ public function maybe_remove_shipping_tax_filter( $taxes, $cart ) {
694
+ remove_filter( 'woocommerce_cart_get_shipping_taxes', array( $this, 'remove_shipping_taxes' ), 10 );
695
+ remove_filter( 'woocommerce_cart_get_taxes', array( $this, 'maybe_remove_shipping_tax_filter' ), 10 );
696
+
697
+ return $cart->get_taxes();
698
+ }
699
+
700
+ public function remove_shipping_taxes( $taxes ) {
701
+ return array();
702
+ }
703
+
704
+ /**
705
+ * @param WC_Shipping_Rate[] $rates
706
+ * @param $package
707
+ *
708
+ * @return mixed
709
+ */
710
+ public function adjust_shipping_taxes( $rates, $package ) {
711
+
712
+ if ( ! wc_gzd_enable_additional_costs_split_tax_calculation() ) {
713
+ return $rates;
714
+ }
715
+
716
+ foreach( $rates as $key => $rate ) {
717
+ $original_taxes = $rate->get_taxes();
718
+ $cost = $rate->get_cost();
719
+ $tax_shares = wc_gzd_get_cart_tax_share( 'shipping' );
720
 
721
  /**
722
+ * Calculate split taxes if the cart contains more than one tax rate.
723
+ * Tax rounding (e.g. for subtotal) is handled by WC_Cart_Totals::get_shipping_from_cart
724
  */
725
+ if ( apply_filters( 'woocommerce_gzd_force_additional_costs_taxation', true ) ) {
726
+ if ( $rate->get_shipping_tax() > 0 ) {
727
+ if ( ! empty( $tax_shares ) ) {
728
+ $taxes = array();
729
+
730
+ foreach ( $tax_shares as $tax_rate => $class ) {
731
+ $tax_rates = WC_Tax::get_rates( $tax_rate );
732
+ $cost_share = $cost * $class['share'];
733
+ $taxes = $taxes + WC_Tax::calc_tax( $cost_share, $tax_rates, wc_gzd_additional_costs_include_tax() );
734
+ }
735
 
736
+ $rates[ $key ]->set_taxes( $taxes );
737
+ } else {
738
+ $original_tax_rates = array_keys( $original_taxes );
739
 
740
+ if ( ! empty( $original_tax_rates ) ) {
741
+ $tax_rates = WC_Tax::get_shipping_tax_rates();
 
742
 
743
+ if ( ! empty( $tax_rates ) ) {
744
+ $taxes = WC_Tax::calc_tax( $cost, $tax_rates, wc_gzd_additional_costs_include_tax() );
745
 
746
+ $rates[ $key ]->set_taxes( $taxes );
747
+ }
748
+ }
749
+ }
750
  }
751
+ }
752
 
753
+ /**
754
+ * Convert shipping costs to gross prices in case prices include tax
755
+ */
756
+ if ( wc_gzd_additional_costs_include_tax() ) {
757
+ $tax_total = array_sum( $rates[ $key ]->get_taxes() );
758
+ $cost = $rates[ $key ]->get_cost() - $tax_total;
759
+
760
+ if ( WC()->customer->is_vat_exempt() ) {
761
+ $shipping_rates = WC_Tax::get_shipping_tax_rates();
762
+ $shipping_taxes = WC_Tax::calc_inclusive_tax( $rate->get_cost(), $shipping_rates );
763
+ $cost = ( $cost - array_sum( $shipping_taxes ) );
764
  }
765
 
766
+ $rates[ $key ]->set_cost( $cost );
767
+ }
768
+ }
769
 
770
+ return $rates;
771
+ }
 
772
 
773
+ /**
774
+ * @param $fee_taxes
775
+ * @param $fee
776
+ * @param WC_Cart_Totals $cart_totals
777
+ */
778
+ public function adjust_fee_taxes( $fee_taxes, $fee, $cart_totals ) {
779
 
780
+ if ( ! wc_gzd_enable_additional_costs_split_tax_calculation() ) {
781
+ return $fee_taxes;
782
+ }
783
 
784
+ $calculate_taxes = wc_tax_enabled();
 
 
 
 
785
 
786
+ // Do not calculate tax shares if tax calculation is disabled
787
+ if ( ! $calculate_taxes ) {
788
+ return $fee_taxes;
789
+ }
790
 
791
+ $tax_shares = wc_gzd_get_cart_tax_share( 'fee' );
 
792
 
793
+ /**
794
+ * Do not calculate fee taxes if tax shares are empty (e.g. zero-taxes only).
795
+ * In this case, remove fee taxes altogether.
796
+ */
797
+ if ( empty( $tax_shares ) || WC()->customer->is_vat_exempt() ) {
798
+ if ( wc_gzd_additional_costs_include_tax() ) {
799
+ $total_tax = array_sum( array_map( array( $this, 'round_line_tax_in_cents' ), $fee_taxes ) );
800
+ $fee->total = $fee->total - $total_tax;
801
 
802
+ /**
803
+ * In case the customer is a VAT exempt - use customer's tax rates
804
+ * to find the fee net price.
805
+ */
806
+ if ( WC()->customer->is_vat_exempt() ) {
807
+ $fee_rates = WC_Tax::get_rates( '' );
808
+ $fee_taxes = WC_Tax::calc_inclusive_tax( $fee->total, $fee_rates );
809
+ $fee->total = $fee->total - array_sum( $fee_taxes );
810
  }
811
  }
812
 
813
+ return array();
814
+ }
 
815
 
816
+ // Calculate tax class share
817
+ if ( ! empty( $tax_shares ) ) {
818
+ $fee_taxes = array();
819
+
820
+ foreach ( $tax_shares as $rate => $class ) {
821
+ $tax_rates = WC_Tax::get_rates( $rate );
822
+ $fee_taxes = $fee_taxes + WC_Tax::calc_tax( ( $fee->total * $class['share'] ), $tax_rates, wc_gzd_additional_costs_include_tax() );
823
+ }
824
 
825
+ $total_tax = array_sum( array_map( array( $this, 'round_line_tax_in_cents' ), $fee_taxes ) );
826
+
827
+ if ( wc_gzd_additional_costs_include_tax() ) {
828
+ $fee->total = $fee->total - $total_tax;
829
+ }
830
  }
831
+
832
+ return $fee_taxes;
833
+ }
834
+
835
+ /**
836
+ * Apply rounding to an array of taxes before summing. Rounds to store DP setting, ignoring precision.
837
+ *
838
+ * @since 3.2.6
839
+ * @param float $value Tax value.
840
+ * @param bool $in_cents Whether precision of value is in cents.
841
+ * @return float
842
+ */
843
+ public function round_line_tax( $value, $in_cents = false ) {
844
+ if ( 'yes' !== get_option( 'woocommerce_tax_round_at_subtotal' ) ) {
845
+ $value = wc_round_tax_total( $value, $in_cents ? 0 : null );
846
+ }
847
+
848
+ return $value;
849
+ }
850
+
851
+ public function round_line_tax_in_cents( $value ) {
852
+ return $this->round_line_tax( $value, true );
853
  }
854
 
855
  /**
887
  }
888
 
889
  public function set_formatted_address( $placeholder, $args ) {
890
+ if ( ! WC_GZD_Customer_Helper::instance()->is_customer_title_enabled() ) {
891
+ return $placeholder;
892
+ }
893
+
894
  if ( isset( $args['title'] ) ) {
895
 
896
  if ( ! empty( $args['title'] ) ) {
includes/class-wc-gzd-coupon-helper.php CHANGED
@@ -43,6 +43,38 @@ class WC_GZD_Coupon_Helper {
43
 
44
  // Add Hook before recalculating line taxes
45
  add_action( 'wp_ajax_woocommerce_calc_line_taxes', array( $this, 'before_recalculate_totals' ), 0 );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  }
47
 
48
  /**
@@ -82,7 +114,7 @@ class WC_GZD_Coupon_Helper {
82
 
83
  if ( $coupons = $order->get_items( 'coupon' ) ) {
84
  foreach ( $coupons as $coupon ) {
85
- if ( 'yes' === $coupon->get_meta( 'is_voucher', true ) ) {
86
  $total += $coupon->get_discount();
87
 
88
  if ( $inc_tax ) {
@@ -170,12 +202,21 @@ class WC_GZD_Coupon_Helper {
170
  }
171
 
172
  /**
173
- * @param WC_Cart $cart
 
 
174
  */
175
- public function recalculate_tax_totals( $cart ) {
 
 
176
 
177
- if ( WC()->customer->is_vat_exempt() ) {
178
- return;
 
 
 
 
 
179
  }
180
 
181
  // Check for discounts and whether the coupon is a voucher
@@ -183,12 +224,25 @@ class WC_GZD_Coupon_Helper {
183
  $has_vouchers = false;
184
 
185
  foreach ( $coupons as $coupon ) {
186
- if ( 'yes' === $coupon->get_meta( 'is_voucher', true ) ) {
187
  $has_vouchers = true;
 
188
  }
189
  }
190
 
191
- if ( ! $has_vouchers ) {
 
 
 
 
 
 
 
 
 
 
 
 
192
  return;
193
  }
194
 
@@ -307,7 +361,6 @@ class WC_GZD_Coupon_Helper {
307
  */
308
  public function convert_coupon_to_voucher( $coupon ) {
309
  $coupon->update_meta_data( 'is_voucher', 'yes' );
310
- $coupon->set_individual_use( true );
311
  $coupon->save();
312
  }
313
 
43
 
44
  // Add Hook before recalculating line taxes
45
  add_action( 'wp_ajax_woocommerce_calc_line_taxes', array( $this, 'before_recalculate_totals' ), 0 );
46
+
47
+ // Disallow mixing normal coupons with vouchers to avoid taxation problems
48
+ add_filter( 'woocommerce_coupon_is_valid', array( $this, 'disallow_coupon_type_merging' ), 50, 3 );
49
+ }
50
+
51
+ /**
52
+ * @param boolean $is_valid
53
+ * @param WC_Coupon $coupon
54
+ * @param WC_Discounts $discounts
55
+ *
56
+ * @throws Exception
57
+ */
58
+ public function disallow_coupon_type_merging( $is_valid, $coupon, $discounts ) {
59
+ $object = $discounts->get_object();
60
+ $has_vouchers = false;
61
+ $has_coupons = false;
62
+
63
+ if ( is_a( $object, 'WC_Cart' ) ) {
64
+ $has_vouchers = $this->cart_has_voucher( $object );
65
+ $has_coupons = sizeof( $object->get_coupons() ) > 0;
66
+ } elseif( is_a( $object, 'WC_Order' ) ) {
67
+ $has_vouchers = $this->order_has_voucher( $object );
68
+ $has_coupons = sizeof( $object->get_coupons() ) > 0;
69
+ }
70
+
71
+ if ( $has_vouchers && ! $this->coupon_is_voucher( $coupon ) ) {
72
+ throw new Exception( __( 'The cart contains one or more vouchers. Vouchers cannot be mixed with normal coupons.', 'woocommerce-germanized' ) );
73
+ } elseif ( $has_coupons && ! $has_vouchers && $this->coupon_is_voucher( $coupon ) ) {
74
+ throw new Exception( __( 'The cart contains one or more coupons. Vouchers cannot be mixed with normal coupons. Please remove the coupon before adding your voucher.', 'woocommerce-germanized' ) );
75
+ }
76
+
77
+ return $is_valid;
78
  }
79
 
80
  /**
114
 
115
  if ( $coupons = $order->get_items( 'coupon' ) ) {
116
  foreach ( $coupons as $coupon ) {
117
+ if ( $this->coupon_is_voucher( $coupon ) ) {
118
  $total += $coupon->get_discount();
119
 
120
  if ( $inc_tax ) {
202
  }
203
 
204
  /**
205
+ * @param WC_Coupon|WC_Order_Item_Coupon $coupon
206
+ *
207
+ * @return bool
208
  */
209
+ protected function coupon_is_voucher( $coupon ) {
210
+ return 'yes' === $coupon->get_meta( 'is_voucher', true );
211
+ }
212
 
213
+ protected function cart_has_voucher( $cart = null ) {
214
+ if ( is_null( $cart ) ) {
215
+ $cart = WC()->cart;
216
+ }
217
+
218
+ if ( is_null( $cart ) ) {
219
+ return false;
220
  }
221
 
222
  // Check for discounts and whether the coupon is a voucher
224
  $has_vouchers = false;
225
 
226
  foreach ( $coupons as $coupon ) {
227
+ if ( $this->coupon_is_voucher( $coupon ) ) {
228
  $has_vouchers = true;
229
+ break;
230
  }
231
  }
232
 
233
+ return $has_vouchers;
234
+ }
235
+
236
+ /**
237
+ * @param WC_Cart $cart
238
+ */
239
+ public function recalculate_tax_totals( $cart ) {
240
+
241
+ if ( WC()->customer->is_vat_exempt() ) {
242
+ return;
243
+ }
244
+
245
+ if ( ! $this->cart_has_voucher( $cart ) ) {
246
  return;
247
  }
248
 
361
  */
362
  public function convert_coupon_to_voucher( $coupon ) {
363
  $coupon->update_meta_data( 'is_voucher', 'yes' );
 
364
  $coupon->save();
365
  }
366
 
includes/class-wc-gzd-customer-helper.php CHANGED
@@ -151,7 +151,11 @@ class WC_GZD_Customer_Helper {
151
 
152
  public function maybe_add_activation_notice() {
153
  if ( is_user_logged_in() && ! is_cart() && ! is_checkout() && ! wc_gzd_is_customer_activated() && ! isset( $_GET['wc-gzd-resent'] ) ) {
154
- wc_add_notice( sprintf( __( 'Did not receive the activation email? <a href="%s">Try again</a>.', 'woocommerce-germanized' ), $this->get_resend_activation_url() ), 'notice' );
 
 
 
 
155
  }
156
  }
157
 
151
 
152
  public function maybe_add_activation_notice() {
153
  if ( is_user_logged_in() && ! is_cart() && ! is_checkout() && ! wc_gzd_is_customer_activated() && ! isset( $_GET['wc-gzd-resent'] ) ) {
154
+ $notice_text = sprintf( __( 'Did not receive the activation email? <a href="%s">Try again</a>.', 'woocommerce-germanized' ), $this->get_resend_activation_url() );
155
+
156
+ if ( ! wc_has_notice( $notice_text, 'notice' ) ) {
157
+ wc_add_notice( $notice_text, 'notice' );
158
+ }
159
  }
160
  }
161
 
includes/class-wc-gzd-install.php CHANGED
@@ -36,7 +36,8 @@ if ( ! class_exists( 'WC_GZD_Install' ) ) :
36
  '3.0.6' => 'updates/woocommerce-gzd-update-3.0.6.php',
37
  '3.0.8' => 'updates/woocommerce-gzd-update-3.0.8.php',
38
  '3.1.6' => 'updates/woocommerce-gzd-update-3.1.6.php',
39
- '3.1.9' => 'updates/woocommerce-gzd-update-3.1.9.php'
 
40
  );
41
 
42
  /**
@@ -446,7 +447,7 @@ if ( ! class_exists( 'WC_GZD_Install' ) ) :
446
  'BG' => 20,
447
  'CZ' => 21,
448
  'DK' => 25,
449
- 'DE' => 16,
450
  'EE' => 20,
451
  'GR' => 23,
452
  'ES' => 21,
@@ -469,7 +470,7 @@ if ( ! class_exists( 'WC_GZD_Install' ) ) :
469
  'SK' => 20,
470
  'FI' => 24,
471
  'SE' => 25,
472
- 'GB' => 20,
473
  ) );
474
 
475
  // Delete digital rates
@@ -570,14 +571,14 @@ if ( ! class_exists( 'WC_GZD_Install' ) ) :
570
  }
571
 
572
  public static function create_tax_rates( $tax_rate = '', $tax_rate_reduced = '' ) {
573
- $countries = WC()->countries->get_european_union_countries();
574
 
575
  if ( empty( $tax_rate ) || ! is_numeric( $tax_rate ) ) {
576
- $tax_rate = WC()->countries->get_base_country() === 'AT' ? 20 : 16;
577
  }
578
 
579
  if ( empty( $tax_rate_reduced ) || ! is_numeric( $tax_rate_reduced ) ) {
580
- $tax_rate_reduced = WC()->countries->get_base_country() === 'AT' ? 10 : 5;
581
  }
582
 
583
  foreach ( $countries as $key => $country ) {
36
  '3.0.6' => 'updates/woocommerce-gzd-update-3.0.6.php',
37
  '3.0.8' => 'updates/woocommerce-gzd-update-3.0.8.php',
38
  '3.1.6' => 'updates/woocommerce-gzd-update-3.1.6.php',
39
+ '3.1.9' => 'updates/woocommerce-gzd-update-3.1.9.php',
40
+ '3.3.4' => 'updates/woocommerce-gzd-update-3.3.4.php'
41
  );
42
 
43
  /**
447
  'BG' => 20,
448
  'CZ' => 21,
449
  'DK' => 25,
450
+ 'DE' => 19,
451
  'EE' => 20,
452
  'GR' => 23,
453
  'ES' => 21,
470
  'SK' => 20,
471
  'FI' => 24,
472
  'SE' => 25,
473
+ 'MC' => 19.6
474
  ) );
475
 
476
  // Delete digital rates
571
  }
572
 
573
  public static function create_tax_rates( $tax_rate = '', $tax_rate_reduced = '' ) {
574
+ $countries = WC()->countries->get_european_union_countries( 'eu_vat' );
575
 
576
  if ( empty( $tax_rate ) || ! is_numeric( $tax_rate ) ) {
577
+ $tax_rate = WC()->countries->get_base_country() === 'AT' ? 20 : 19;
578
  }
579
 
580
  if ( empty( $tax_rate_reduced ) || ! is_numeric( $tax_rate_reduced ) ) {
581
+ $tax_rate_reduced = WC()->countries->get_base_country() === 'AT' ? 10 : 7;
582
  }
583
 
584
  foreach ( $countries as $key => $country ) {
includes/class-wc-gzd-payment-gateways.php CHANGED
@@ -291,16 +291,9 @@ class WC_GZD_Payment_Gateways {
291
  * @param object $gateway
292
  */
293
  public function set_fee( $gateway ) {
294
-
295
  $is_taxable = ( ( 'no' === $gateway->get_option( 'fee_is_taxable', 'no' ) || get_option( 'woocommerce_calc_taxes' ) !== 'yes' ) ? false : true );
296
  $fee = $gateway->get_option( 'fee' );
297
 
298
- if ( $is_taxable ) {
299
- $tax_rates = WC_Tax::get_rates();
300
- $fee_taxes = WC_Tax::calc_tax( $fee, $tax_rates, true );
301
- $fee = $fee - array_sum( $fee_taxes );
302
- }
303
-
304
  WC()->cart->add_fee( __( 'Payment charge', 'woocommerce-germanized' ), $fee, $is_taxable );
305
  }
306
  }
291
  * @param object $gateway
292
  */
293
  public function set_fee( $gateway ) {
 
294
  $is_taxable = ( ( 'no' === $gateway->get_option( 'fee_is_taxable', 'no' ) || get_option( 'woocommerce_calc_taxes' ) !== 'yes' ) ? false : true );
295
  $fee = $gateway->get_option( 'fee' );
296
 
 
 
 
 
 
 
297
  WC()->cart->add_fee( __( 'Payment charge', 'woocommerce-germanized' ), $fee, $is_taxable );
298
  }
299
  }
includes/class-wc-gzd-shipping-rate.php CHANGED
@@ -10,8 +10,7 @@ class WC_GZD_Shipping_Rate extends WC_Shipping_Rate {
10
  try {
11
  $method = new ReflectionMethod( 'WC_Shipping_Rate', '__construct' );
12
  $num = $method->getNumberOfParameters();
13
- } catch ( Exception $e ) {
14
- }
15
 
16
  if ( $num === 6 ) {
17
  parent::__construct( $rate->id, $rate->label, $rate->cost, $rate->taxes, $rate->method_id, $rate->instance_id );
@@ -19,82 +18,19 @@ class WC_GZD_Shipping_Rate extends WC_Shipping_Rate {
19
  parent::__construct( $rate->id, $rate->label, $rate->cost, $rate->taxes, $rate->method_id );
20
  }
21
 
22
- if ( get_option( 'woocommerce_gzd_shipping_tax' ) === 'yes' && ( ! empty( $rate->taxes ) || get_option( 'woocommerce_gzd_shipping_tax_force' ) === 'yes' ) ) {
23
-
24
- if ( $this->get_shipping_tax() > 0 ) {
25
- $this->set_shared_taxes();
26
- }
27
- }
28
-
29
- $this->set_costs();
30
  }
31
 
32
  public function set_shared_taxes() {
33
- $cart = WC()->cart;
34
- $this->tax_shares = wc_gzd_get_cart_tax_share();
35
-
36
- // Calculate tax class share
37
- if ( ! empty( $this->tax_shares ) ) {
38
-
39
- foreach ( $this->tax_shares as $rate => $class ) {
40
- $tax_rates = WC_Tax::get_rates( $rate );
41
- $this->tax_shares[ $rate ]['shipping_tax_share'] = $this->cost * $class['share'];
42
- $this->tax_shares[ $rate ]['shipping_tax'] = WC_Tax::calc_tax( ( $this->cost * $class['share'] ), $tax_rates, ( wc_gzd_get_cart_tax_display_mode() === 'incl' ) );
43
- }
44
-
45
- $taxes = array();
46
-
47
- foreach ( $this->tax_shares as $rate => $class ) {
48
- $taxes = array_map( 'wc_round_tax_total', $taxes + $class['shipping_tax'] );
49
- }
50
-
51
- if ( is_callable( array( $this, 'set_taxes' ) ) ) {
52
- $this->set_taxes( $taxes );
53
- } else {
54
- $this->taxes = $taxes;
55
- }
56
- // Fallback when no taxes have been defined for the items - use default shipping rate instead.
57
- } else {
58
- $rates = array_keys( $this->taxes );
59
-
60
- if ( ! empty( $rates ) ) {
61
- $tax_rates = WC_Tax::get_shipping_tax_rates();
62
-
63
- if ( ! empty( $tax_rates ) ) {
64
- $taxes = WC_Tax::calc_tax( $this->cost, $tax_rates, ( wc_gzd_get_cart_tax_display_mode() === 'incl' ) );
65
-
66
- if ( is_callable( array( $this, 'set_taxes' ) ) ) {
67
- $this->set_taxes( $taxes );
68
- } else {
69
- $this->taxes = $taxes;
70
- }
71
- }
72
- }
73
- }
74
  }
75
 
76
  public function set_costs() {
77
- if ( wc_gzd_get_cart_tax_display_mode() === 'incl' || WC()->customer->is_vat_exempt() ) {
78
-
79
- $cost = $this->cost - array_sum( $this->taxes );
80
-
81
- if ( WC()->customer->is_vat_exempt() ) {
82
- $shipping_rates = WC_Tax::get_shipping_tax_rates();
83
- $shipping_taxes = WC_Tax::calc_inclusive_tax( $this->cost, $shipping_rates );
84
- $cost = ( $cost - array_sum( $shipping_taxes ) );
85
- }
86
-
87
- if ( is_callable( array( $this, 'set_cost' ) ) ) {
88
- $this->set_cost( wc_format_decimal( $cost, wc_get_price_decimals() ) );
89
- } else {
90
- $this->cost = wc_format_decimal( $cost, wc_get_price_decimals() );
91
- }
92
- }
93
  }
94
 
95
  public function get_shared_taxes() {
96
- return $this->taxes;
97
  }
98
  }
99
-
100
  ?>
10
  try {
11
  $method = new ReflectionMethod( 'WC_Shipping_Rate', '__construct' );
12
  $num = $method->getNumberOfParameters();
13
+ } catch ( Exception $e ) {}
 
14
 
15
  if ( $num === 6 ) {
16
  parent::__construct( $rate->id, $rate->label, $rate->cost, $rate->taxes, $rate->method_id, $rate->instance_id );
18
  parent::__construct( $rate->id, $rate->label, $rate->cost, $rate->taxes, $rate->method_id );
19
  }
20
 
21
+ wc_deprecated_function( 'WC_GZD_Shipping_Rate::__construct', '3.3.4' );
 
 
 
 
 
 
 
22
  }
23
 
24
  public function set_shared_taxes() {
25
+ wc_deprecated_function( 'WC_GZD_Shipping_Rate::set_shares_taxes', '3.3.4' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  }
27
 
28
  public function set_costs() {
29
+ wc_deprecated_function( 'WC_GZD_Shipping_Rate::set_costs', '3.3.4' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  }
31
 
32
  public function get_shared_taxes() {
33
+ wc_deprecated_function( 'WC_GZD_Shipping_Rate::get_shared_taxes', '3.3.4' );
34
  }
35
  }
 
36
  ?>
includes/compatibility/class-wc-gzd-compatibility-flexible-checkout-fields.php CHANGED
@@ -25,19 +25,19 @@ class WC_GZD_Compatibility_Flexible_Checkout_Fields extends WC_GZD_Compatibility
25
 
26
  // Add Title to billing address format
27
  add_filter( 'woocommerce_order_formatted_billing_address', array(
28
- WC_GZD_Checkout::instance(),
29
  'set_formatted_billing_address'
30
  ), $priority, 2 );
31
 
32
  add_filter( 'woocommerce_order_formatted_shipping_address', array(
33
- WC_GZD_Checkout::instance(),
34
  'set_formatted_shipping_address'
35
  ), $priority, 2 );
36
 
37
  /**
38
  * Prevent double-adding format.
39
  */
40
- remove_filter( 'woocommerce_formatted_address_replacements', array( WC_GZD_Checkout::instance(), 'set_formatted_address' ), 0, 2 );
41
  add_filter( 'woocommerce_formatted_address_replacements', array( WC_GZD_Checkout::instance(), 'set_formatted_address' ), $priority, 2 );
42
 
43
  /**
25
 
26
  // Add Title to billing address format
27
  add_filter( 'woocommerce_order_formatted_billing_address', array(
28
+ WC_GZD_Order_Helper::instance(),
29
  'set_formatted_billing_address'
30
  ), $priority, 2 );
31
 
32
  add_filter( 'woocommerce_order_formatted_shipping_address', array(
33
+ WC_GZD_Order_Helper::instance(),
34
  'set_formatted_shipping_address'
35
  ), $priority, 2 );
36
 
37
  /**
38
  * Prevent double-adding format.
39
  */
40
+ remove_filter( 'woocommerce_formatted_address_replacements', array( WC_GZD_Checkout::instance(), 'set_formatted_address' ), 0 );
41
  add_filter( 'woocommerce_formatted_address_replacements', array( WC_GZD_Checkout::instance(), 'set_formatted_address' ), $priority, 2 );
42
 
43
  /**
includes/compatibility/class-wc-gzd-compatibility-wpml-string-translation.php CHANGED
@@ -368,9 +368,11 @@ class WC_GZD_Compatibility_WPML_String_Translation extends WC_GZD_Compatibility
368
  $args = $string_options[ $option ];
369
 
370
  foreach ( $org_value as $id => $options ) {
371
- foreach ( $options as $key => $value ) {
372
- if ( in_array( $key, $args ) ) {
373
- $org_value[ $id ][ $key ] = $this->translate_option( $value, "[{$option}][{$id}]{$key}", "admin_texts_{$option}" );
 
 
374
  }
375
  }
376
  }
368
  $args = $string_options[ $option ];
369
 
370
  foreach ( $org_value as $id => $options ) {
371
+ if ( is_array( $options ) ) {
372
+ foreach ( $options as $key => $value ) {
373
+ if ( in_array( $key, $args ) ) {
374
+ $org_value[ $id ][ $key ] = $this->translate_option( $value, "[{$option}][{$id}]{$key}", "admin_texts_{$option}" );
375
+ }
376
  }
377
  }
378
  }
includes/updates/woocommerce-gzd-update-3.3.4.php ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ if ( 'yes' === get_option( 'woocommerce_gzd_shipping_tax' ) || 'yes' === get_option( 'woocommerce_gzd_fee_tax' ) ) {
8
+ /**
9
+ * Do only use the global shipping tax notice (applies for fees too) for additional costs.
10
+ */
11
+ update_option( 'woocommerce_gzd_shipping_tax', 'yes' );
12
+
13
+ if ( 'yes' === get_option( 'woocommerce_calc_taxes' ) && 'no' === get_option( 'woocommerce_prices_include_tax' ) ) {
14
+ // Show notice
15
+ update_option( '_wc_gzd_show_shipping_tax_excl_notice', 'yes');
16
+
17
+ $notices = WC_GZD_Admin_Notices::instance();
18
+
19
+ if ( $note = $notices->get_note( 'shipping_excl_tax' ) ) {
20
+ $note->reset();
21
+ }
22
+ }
23
+ }
includes/wc-gzd-core-functions.php CHANGED
@@ -1044,4 +1044,20 @@ function wc_gzd_format_unit_price( $price, $unit, $unit_base ) {
1044
  * @since 3.2.0
1045
  */
1046
  return apply_filters( 'woocommerce_gzd_formatted_unit_price', $html, $price, $unit_base, $unit );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1047
  }
1044
  * @since 3.2.0
1045
  */
1046
  return apply_filters( 'woocommerce_gzd_formatted_unit_price', $html, $price, $unit_base, $unit );
1047
+ }
1048
+
1049
+ function wc_gzd_enable_additional_costs_split_tax_calculation() {
1050
+ return 'yes' === get_option( 'woocommerce_gzd_shipping_tax' );
1051
+ }
1052
+
1053
+ function wc_gzd_additional_costs_include_tax() {
1054
+ /**
1055
+ * Filter to adjust whether additional costs (e.g. shipping costs, fees) are treated including taxes or not.
1056
+ * This filter will only be applied in case split tax calculation is enabled within the Germanized settings.
1057
+ *
1058
+ * @param boolean $include_tax Whether additional costs include taxes or not
1059
+ *
1060
+ * @since 3.3.4
1061
+ */
1062
+ return ( wc_gzd_enable_additional_costs_split_tax_calculation() && apply_filters( 'woocommerce_gzd_additional_costs_include_tax', wc_prices_include_tax() ) );
1063
  }
includes/wc-gzd-template-functions.php CHANGED
@@ -257,7 +257,7 @@ if ( ! function_exists( 'woocommerce_gzd_template_checkout_table_content_replace
257
  */
258
  function woocommerce_gzd_template_checkout_table_content_replacement() {
259
  wc_get_template( 'checkout/review-order-product-table.php' );
260
- add_filter( 'woocommerce_checkout_cart_item_visible', 'woocommerce_gzd_template_checkout_table_product_hide', PHP_INT_MAX );
261
  }
262
 
263
  }
@@ -281,7 +281,7 @@ if ( ! function_exists( 'woocommerce_gzd_template_checkout_table_product_hide_fi
281
  * Remove review order product table cart item visibility filter after output has been suppressed.
282
  */
283
  function woocommerce_gzd_template_checkout_table_product_hide_filter_removal() {
284
- remove_filter( 'woocommerce_checkout_cart_item_visible', 'woocommerce_gzd_template_checkout_table_product_hide', PHP_INT_MAX );
285
  }
286
 
287
  }
@@ -413,7 +413,7 @@ if ( ! function_exists( 'woocommerce_gzd_template_set_order_button_remove_filter
413
  * Temporarily add a filter which removes order button html (that's how we get the order button at the end of checkout since WC 2.3)
414
  */
415
  function woocommerce_gzd_template_set_order_button_remove_filter() {
416
- add_filter( 'woocommerce_order_button_html', 'woocommerce_gzd_template_button_temporary_hide', PHP_INT_MAX );
417
  }
418
 
419
  }
@@ -435,7 +435,7 @@ if ( ! function_exists( 'woocommerce_gzd_template_set_order_button_show_filter'
435
  * Remove the order button html filter after payment.php has been parsed
436
  */
437
  function woocommerce_gzd_template_set_order_button_show_filter() {
438
- remove_filter( 'woocommerce_order_button_html', 'woocommerce_gzd_template_button_temporary_hide', PHP_INT_MAX );
439
  }
440
 
441
  }
257
  */
258
  function woocommerce_gzd_template_checkout_table_content_replacement() {
259
  wc_get_template( 'checkout/review-order-product-table.php' );
260
+ add_filter( 'woocommerce_checkout_cart_item_visible', 'woocommerce_gzd_template_checkout_table_product_hide', 1500 );
261
  }
262
 
263
  }
281
  * Remove review order product table cart item visibility filter after output has been suppressed.
282
  */
283
  function woocommerce_gzd_template_checkout_table_product_hide_filter_removal() {
284
+ remove_filter( 'woocommerce_checkout_cart_item_visible', 'woocommerce_gzd_template_checkout_table_product_hide', 1500 );
285
  }
286
 
287
  }
413
  * Temporarily add a filter which removes order button html (that's how we get the order button at the end of checkout since WC 2.3)
414
  */
415
  function woocommerce_gzd_template_set_order_button_remove_filter() {
416
+ add_filter( 'woocommerce_order_button_html', 'woocommerce_gzd_template_button_temporary_hide', 1500 );
417
  }
418
 
419
  }
435
  * Remove the order button html filter after payment.php has been parsed
436
  */
437
  function woocommerce_gzd_template_set_order_button_show_filter() {
438
+ remove_filter( 'woocommerce_order_button_html', 'woocommerce_gzd_template_button_temporary_hide', 1500 );
439
  }
440
 
441
  }
includes/wc-gzd-template-hooks.php CHANGED
@@ -164,9 +164,9 @@ add_action( 'init', 'woocommerce_gzd_checkout_load_ajax_relevant_hooks' );
164
  add_filter( 'woocommerce_checkout_show_terms', 'woocommerce_gzd_template_set_wc_terms_hide', 100 );
165
 
166
  // Temporarily remove order button from payment.php - then add again to show after product table
167
- add_action( 'woocommerce_review_order_before_submit', 'woocommerce_gzd_template_set_order_button_remove_filter', PHP_INT_MAX );
168
- add_action( 'woocommerce_review_order_after_submit', 'woocommerce_gzd_template_set_order_button_show_filter', PHP_INT_MAX );
169
- add_action( 'woocommerce_gzd_review_order_before_submit', 'woocommerce_gzd_template_set_order_button_show_filter', PHP_INT_MAX );
170
 
171
  /**
172
  * Render Checkboxes (except checkout)
164
  add_filter( 'woocommerce_checkout_show_terms', 'woocommerce_gzd_template_set_wc_terms_hide', 100 );
165
 
166
  // Temporarily remove order button from payment.php - then add again to show after product table
167
+ add_action( 'woocommerce_review_order_before_submit', 'woocommerce_gzd_template_set_order_button_remove_filter', 1500 );
168
+ add_action( 'woocommerce_review_order_after_submit', 'woocommerce_gzd_template_set_order_button_show_filter', 1500 );
169
+ add_action( 'woocommerce_gzd_review_order_before_submit', 'woocommerce_gzd_template_set_order_button_show_filter', 1500 );
170
 
171
  /**
172
  * Render Checkboxes (except checkout)
packages/woocommerce-germanized-dhl/i18n/holidays.php CHANGED
@@ -11,27 +11,6 @@ defined( 'ABSPATH' ) || exit;
11
 
12
  return array(
13
  'DE' => array(
14
- '2020-01-06',
15
- '2020-06-11',
16
- '2020-04-12',
17
- '2020-03-08',
18
- '2020-11-01',
19
- '2020-05-21',
20
- '2020-05-01',
21
- '2020-12-26',
22
- '2020-10-03',
23
- '2020-09-20',
24
- '2020-08-08',
25
- '2020-11-18',
26
- '2020-01-01',
27
- '2020-10-31',
28
- '2020-06-01',
29
- '2020-08-15',
30
- '2020-04-10',
31
- '2020-12-25',
32
- '2020-04-09',
33
- '2020-05-31',
34
- '2020-04-13',
35
  '2021-01-06',
36
  '2021-06-03',
37
  '2021-04-04',
@@ -53,5 +32,26 @@ return array(
53
  '2021-04-01',
54
  '2021-05-23',
55
  '2021-04-05',
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  ),
57
  );
11
 
12
  return array(
13
  'DE' => array(
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  '2021-01-06',
15
  '2021-06-03',
16
  '2021-04-04',
32
  '2021-04-01',
33
  '2021-05-23',
34
  '2021-04-05',
35
+ '2022-01-06',
36
+ '2022-06-16',
37
+ '2022-04-17',
38
+ '2022-03-08',
39
+ '2022-11-01',
40
+ '2022-05-26',
41
+ '2022-05-01',
42
+ '2022-12-26',
43
+ '2022-10-03',
44
+ '2022-09-20',
45
+ '2022-08-08',
46
+ '2022-11-16',
47
+ '2022-01-01',
48
+ '2022-10-31',
49
+ '2022-06-06',
50
+ '2022-08-15',
51
+ '2022-04-15',
52
+ '2022-12-25',
53
+ '2022-04-14',
54
+ '2022-06-05',
55
+ '2022-04-18',
56
  ),
57
  );
packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php CHANGED
@@ -10,82 +10,87 @@ use \Vendidero\Germanized\DHL\ParcelServices;
10
  use \Vendidero\Germanized\DHL\Admin\Settings;
11
  use \Vendidero\Germanized\DHL\ParcelLocator;
12
 
13
- $settings = array(
14
- 'dhl_label_title' => array(
15
- 'title' => _x( 'DHL Labels', 'dhl', 'woocommerce-germanized' ),
16
- 'type' => 'title',
17
- 'default' => '',
18
- 'description' => sprintf( _x( 'Adjust DHL label settings. Changes override <a href="%s">global settings</a>.', 'dhl', 'woocommerce-germanized' ), admin_url( 'admin.php?page=wc-settings&tab=germanized-dhl&section=labels' ) ),
19
- ),
20
- );
21
-
22
- $label_settings = Settings::get_label_default_settings( true );
23
- $settings = array_merge( $settings, $label_settings );
24
-
25
- if ( Package::base_country_supports( 'services' ) ) {
26
- $settings = array_merge( $settings, array(
27
- 'dhl_label_service_title' => array(
28
- 'title' => _x( 'DHL Label Services', 'dhl', 'woocommerce-germanized' ),
29
  'type' => 'title',
30
  'default' => '',
31
- 'description' => sprintf( _x( 'Adjust default DHL label service settings. Changes override <a href="%s">global settings</a>.', 'dhl', 'woocommerce-germanized' ), admin_url( 'admin.php?page=wc-settings&tab=germanized-dhl&section=labels' ) ),
32
  ),
33
- ) );
34
 
35
- $label_service_settings = Settings::get_label_default_services_settings( true );
36
- $settings = array_merge( $settings, $label_service_settings );
37
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
38
 
39
- $settings = array_merge( $settings, array(
40
- 'dhl_label_auto_title' => array(
41
- 'title' => _x( 'Label Automation', 'dhl', 'woocommerce-germanized' ),
42
- 'type' => 'title',
43
- 'default' => '',
44
- 'description' => sprintf( _x( 'Adjust label automation settings. Changes override <a href="%s">global settings</a>.', 'dhl', 'woocommerce-germanized' ), admin_url( 'admin.php?page=wc-settings&tab=germanized-dhl&section=labels' ) ),
45
- ),
46
- ) );
47
- $auto_settings = Settings::get_automation_settings( true );
48
- $settings = array_merge( $settings, $auto_settings );
49
-
50
- if ( ParcelServices::is_enabled() ) {
51
  $settings = array_merge( $settings, array(
52
- 'dhl_preferred_services_title' => array(
53
- 'title' => _x( 'DHL Preferred Services', 'dhl', 'woocommerce-germanized' ),
54
  'type' => 'title',
55
  'default' => '',
56
- 'description' => sprintf( _x( 'Adjust preferred service settings. Changes override <a href="%s">global settings</a>.', 'dhl', 'woocommerce-germanized' ), admin_url( 'admin.php?page=wc-settings&tab=germanized-dhl&section=services' ) ),
57
  ),
58
  ) );
59
- $service_settings = Settings::get_preferred_services_settings( true );
60
- $settings = array_merge( $settings, $service_settings );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  }
62
 
63
- if ( ParcelLocator::is_enabled() ) {
 
 
 
64
  $settings = array_merge( $settings, array(
65
- 'dhl_parcel_pickup_title' => array(
66
- 'title' => _x( 'DHL Pickup', 'dhl', 'woocommerce-germanized' ),
67
  'type' => 'title',
68
  'default' => '',
69
- 'description' => sprintf( _x( 'Adjust pickup settings. Changes override <a href="%s">global settings</a>.', 'dhl', 'woocommerce-germanized' ), admin_url( 'admin.php?page=wc-settings&tab=germanized-dhl&section=pickup' ) ),
70
  ),
71
  ) );
72
- $service_settings = Settings::get_parcel_pickup_type_settings( true );
73
- $settings = array_merge( $settings, $service_settings );
74
- }
75
 
76
- /**
77
- * Deutsche Post
78
- */
79
- $settings = array_merge( $settings, array(
80
- 'deutsche_post_label_title' => array(
81
- 'title' => _x( 'Deutsche Post Labels', 'dhl', 'woocommerce-germanized' ),
82
- 'type' => 'title',
83
- 'default' => '',
84
- 'description' => sprintf( _x( 'Adjust Deutsche Post label settings. Changes override <a href="%s">global settings</a>.', 'dhl', 'woocommerce-germanized' ), admin_url( 'admin.php?page=wc-settings&tab=germanized-dhl&section=internetmarke' ) ),
85
- ),
86
- ) );
87
-
88
- if ( Package::is_internetmarke_enabled() ) {
89
  $label_settings = Settings::get_internetmarke_default_settings( true );
90
  $settings = array_merge( $settings, $label_settings );
91
 
10
  use \Vendidero\Germanized\DHL\Admin\Settings;
11
  use \Vendidero\Germanized\DHL\ParcelLocator;
12
 
13
+ $settings = array();
14
+
15
+ if ( Package::is_dhl_enabled() ) {
16
+ $settings = array(
17
+ 'dhl_label_title' => array(
18
+ 'title' => _x( 'DHL Labels', 'dhl', 'woocommerce-germanized' ),
 
 
 
 
 
 
 
 
 
 
19
  'type' => 'title',
20
  'default' => '',
21
+ 'description' => sprintf( _x( 'Adjust DHL label settings. Changes override <a href="%s">global settings</a>.', 'dhl', 'woocommerce-germanized' ), admin_url( 'admin.php?page=wc-settings&tab=germanized-dhl&section=labels' ) ),
22
  ),
23
+ );
24
 
25
+ $label_settings = Settings::get_label_default_settings( true );
26
+ $settings = array_merge( $settings, $label_settings );
27
+
28
+ if ( Package::base_country_supports( 'services' ) ) {
29
+ $settings = array_merge( $settings, array(
30
+ 'dhl_label_service_title' => array(
31
+ 'title' => _x( 'DHL Label Services', 'dhl', 'woocommerce-germanized' ),
32
+ 'type' => 'title',
33
+ 'default' => '',
34
+ 'description' => sprintf( _x( 'Adjust default DHL label service settings. Changes override <a href="%s">global settings</a>.', 'dhl', 'woocommerce-germanized' ), admin_url( 'admin.php?page=wc-settings&tab=germanized-dhl&section=labels' ) ),
35
+ ),
36
+ ) );
37
+
38
+ $label_service_settings = Settings::get_label_default_services_settings( true );
39
+ $settings = array_merge( $settings, $label_service_settings );
40
+ }
41
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  $settings = array_merge( $settings, array(
43
+ 'dhl_label_auto_title' => array(
44
+ 'title' => _x( 'Label Automation', 'dhl', 'woocommerce-germanized' ),
45
  'type' => 'title',
46
  'default' => '',
47
+ 'description' => sprintf( _x( 'Adjust label automation settings. Changes override <a href="%s">global settings</a>.', 'dhl', 'woocommerce-germanized' ), admin_url( 'admin.php?page=wc-settings&tab=germanized-dhl&section=labels' ) ),
48
  ),
49
  ) );
50
+
51
+ $auto_settings = Settings::get_automation_settings( true );
52
+ $settings = array_merge( $settings, $auto_settings );
53
+
54
+ if ( ParcelServices::is_enabled() ) {
55
+ $settings = array_merge( $settings, array(
56
+ 'dhl_preferred_services_title' => array(
57
+ 'title' => _x( 'DHL Preferred Services', 'dhl', 'woocommerce-germanized' ),
58
+ 'type' => 'title',
59
+ 'default' => '',
60
+ 'description' => sprintf( _x( 'Adjust preferred service settings. Changes override <a href="%s">global settings</a>.', 'dhl', 'woocommerce-germanized' ), admin_url( 'admin.php?page=wc-settings&tab=germanized-dhl&section=services' ) ),
61
+ ),
62
+ ) );
63
+ $service_settings = Settings::get_preferred_services_settings( true );
64
+ $settings = array_merge( $settings, $service_settings );
65
+ }
66
+
67
+ if ( ParcelLocator::is_enabled() ) {
68
+ $settings = array_merge( $settings, array(
69
+ 'dhl_parcel_pickup_title' => array(
70
+ 'title' => _x( 'DHL Pickup', 'dhl', 'woocommerce-germanized' ),
71
+ 'type' => 'title',
72
+ 'default' => '',
73
+ 'description' => sprintf( _x( 'Adjust pickup settings. Changes override <a href="%s">global settings</a>.', 'dhl', 'woocommerce-germanized' ), admin_url( 'admin.php?page=wc-settings&tab=germanized-dhl&section=pickup' ) ),
74
+ ),
75
+ ) );
76
+ $service_settings = Settings::get_parcel_pickup_type_settings( true );
77
+ $settings = array_merge( $settings, $service_settings );
78
+ }
79
  }
80
 
81
+ if ( Package::is_internetmarke_enabled() ) {
82
+ /**
83
+ * Deutsche Post
84
+ */
85
  $settings = array_merge( $settings, array(
86
+ 'deutsche_post_label_title' => array(
87
+ 'title' => _x( 'Deutsche Post Labels', 'dhl', 'woocommerce-germanized' ),
88
  'type' => 'title',
89
  'default' => '',
90
+ 'description' => sprintf( _x( 'Adjust Deutsche Post label settings. Changes override <a href="%s">global settings</a>.', 'dhl', 'woocommerce-germanized' ), admin_url( 'admin.php?page=wc-settings&tab=germanized-dhl&section=internetmarke' ) ),
91
  ),
92
  ) );
 
 
 
93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
94
  $label_settings = Settings::get_internetmarke_default_settings( true );
95
  $settings = array_merge( $settings, $label_settings );
96
 
packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php CHANGED
@@ -497,11 +497,20 @@ function wc_gzd_dhl_validate_deutsche_post_label_args( $shipment, $args = array(
497
 
498
  $available_products = wc_gzd_dhl_get_deutsche_post_products( $shipment, false );
499
 
 
 
 
 
 
 
500
  /**
501
  * Check whether the product might not be available for the current shipment
502
  */
503
- if ( ! array_key_exists( $args['dhl_product'], $available_products ) ) {
504
- if ( empty( $available_products ) ) {
 
 
 
505
  $error->add( 500, sprintf( __( 'Sorry but none of your selected <a href="%s">Deutsche Post Products</a> is available for this shipment. Please verify your shipment data (e.g. weight) and try again.', 'dhl', 'woocommerce-germanized' ), admin_url( \Vendidero\Germanized\DHL\Admin\Settings::get_settings_url( 'internetmarke' ) ) ) );
506
  } else {
507
  /**
@@ -944,6 +953,7 @@ function wc_gzd_dhl_get_service_product_attributes( $service ) {
944
  function wc_gzd_dhl_get_deutsche_post_label_default_args( $dhl_order, $shipment ) {
945
  $shipping_method = $shipment->get_shipping_method();
946
  $dp_shipping_method = wc_gzd_dhl_get_deutsche_post_shipping_method( $shipping_method );
 
947
 
948
  $defaults = array(
949
  'dhl_product' => wc_gzd_dhl_get_deutsche_post_default_product( $shipment->get_country(), $dp_shipping_method ),
@@ -951,6 +961,9 @@ function wc_gzd_dhl_get_deutsche_post_label_default_args( $dhl_order, $shipment
951
  'stamp_total' => 0,
952
  'additional_services' => array(),
953
  'weight' => wc_gzd_dhl_get_shipment_weight( $shipment ),
 
 
 
954
  );
955
 
956
  if ( ! empty( $defaults['dhl_product'] ) ) {
@@ -1073,12 +1086,16 @@ function wc_gzd_dhl_get_label_default_args( $dhl_order, $shipment ) {
1073
 
1074
  $shipping_method = $shipment->get_shipping_method();
1075
  $dhl_shipping_method = wc_gzd_dhl_get_shipping_method( $shipping_method );
 
1076
 
1077
  $defaults = array(
1078
  'dhl_product' => wc_gzd_dhl_get_default_product( $shipment->get_country(), $dhl_shipping_method ),
1079
  'services' => array(),
1080
  'codeable_address_only' => Package::get_setting( 'label_address_codeable_only', $dhl_shipping_method ),
1081
  'weight' => wc_gzd_dhl_get_shipment_weight( $shipment ),
 
 
 
1082
  );
1083
 
1084
  if ( $dhl_order->supports_email_notification() ) {
@@ -1268,6 +1285,33 @@ function wc_gzd_dhl_get_custom_label_format( $label, $type = '' ) {
1268
  return $format;
1269
  }
1270
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1271
  /**
1272
  * @param Shipment $shipment
1273
  * @param string $unit
@@ -1314,11 +1358,15 @@ function wc_gzd_dhl_get_return_label_default_args( $dhl_order, $shipment ) {
1314
 
1315
  $shipping_method = $shipment->get_shipping_method();
1316
  $dhl_shipping_method = wc_gzd_dhl_get_shipping_method( $shipping_method );
 
1317
 
1318
  $defaults = array(
1319
  'services' => array(),
1320
  'receiver_slug' => wc_gzd_dhl_get_default_return_receiver_slug( $shipment->get_sender_country(), $dhl_shipping_method ),
1321
  'weight' => wc_gzd_dhl_get_shipment_weight( $shipment ),
 
 
 
1322
  'sender_address' => $shipment->get_sender_address(),
1323
  );
1324
 
@@ -1355,7 +1403,7 @@ function wc_gzd_dhl_create_label( $shipment, $args = array() ) {
1355
  $label_type = 'return' === $shipment_type ? 'deutsche_post_return' : 'deutsche_post';
1356
  }
1357
 
1358
- $hook_suffix = 'simple' === $label_type ? '' : $label_type . '_';
1359
 
1360
  if ( 'return' === $label_type ) {
1361
  $args = wp_parse_args( $args, wc_gzd_dhl_get_return_label_default_args( $dhl_order, $shipment ) );
497
 
498
  $available_products = wc_gzd_dhl_get_deutsche_post_products( $shipment, false );
499
 
500
+ /**
501
+ * Force the product to check to parent id because some services might not be explicitly added as
502
+ * available products.
503
+ */
504
+ $im_parent_code = Package::get_internetmarke_api()->get_product_parent_code( $args['dhl_product'] );
505
+
506
  /**
507
  * Check whether the product might not be available for the current shipment
508
  */
509
+ if ( ! array_key_exists( $im_parent_code, $available_products ) ) {
510
+ /**
511
+ * In case no other products are available or this is a manual request - return error
512
+ */
513
+ if ( empty( $available_products ) || ( is_admin() && current_user_can( 'manage_woocommerce' ) ) ) {
514
  $error->add( 500, sprintf( __( 'Sorry but none of your selected <a href="%s">Deutsche Post Products</a> is available for this shipment. Please verify your shipment data (e.g. weight) and try again.', 'dhl', 'woocommerce-germanized' ), admin_url( \Vendidero\Germanized\DHL\Admin\Settings::get_settings_url( 'internetmarke' ) ) ) );
515
  } else {
516
  /**
953
  function wc_gzd_dhl_get_deutsche_post_label_default_args( $dhl_order, $shipment ) {
954
  $shipping_method = $shipment->get_shipping_method();
955
  $dp_shipping_method = wc_gzd_dhl_get_deutsche_post_shipping_method( $shipping_method );
956
+ $dimensions = wc_gzd_dhl_get_shipment_dimensions( $shipment );
957
 
958
  $defaults = array(
959
  'dhl_product' => wc_gzd_dhl_get_deutsche_post_default_product( $shipment->get_country(), $dp_shipping_method ),
961
  'stamp_total' => 0,
962
  'additional_services' => array(),
963
  'weight' => wc_gzd_dhl_get_shipment_weight( $shipment ),
964
+ 'length' => $dimensions['length'],
965
+ 'width' => $dimensions['width'],
966
+ 'height' => $dimensions['height'],
967
  );
968
 
969
  if ( ! empty( $defaults['dhl_product'] ) ) {
1086
 
1087
  $shipping_method = $shipment->get_shipping_method();
1088
  $dhl_shipping_method = wc_gzd_dhl_get_shipping_method( $shipping_method );
1089
+ $dimensions = wc_gzd_dhl_get_shipment_dimensions( $shipment );
1090
 
1091
  $defaults = array(
1092
  'dhl_product' => wc_gzd_dhl_get_default_product( $shipment->get_country(), $dhl_shipping_method ),
1093
  'services' => array(),
1094
  'codeable_address_only' => Package::get_setting( 'label_address_codeable_only', $dhl_shipping_method ),
1095
  'weight' => wc_gzd_dhl_get_shipment_weight( $shipment ),
1096
+ 'length' => $dimensions['length'],
1097
+ 'width' => $dimensions['width'],
1098
+ 'height' => $dimensions['height'],
1099
  );
1100
 
1101
  if ( $dhl_order->supports_email_notification() ) {
1285
  return $format;
1286
  }
1287
 
1288
+ /**
1289
+ * @param Shipment $shipment
1290
+ * @param string $dimension
1291
+ * @param string $unit
1292
+ */
1293
+ function wc_gzd_dhl_get_shipment_dimensions( $shipment, $unit = 'cm' ) {
1294
+ $dimensions = array(
1295
+ 'length' => 0,
1296
+ 'width' => 0,
1297
+ 'height' => 0,
1298
+ );
1299
+
1300
+ if ( $shipment->has_dimensions() ) {
1301
+ $dimensions = $shipment->get_package_dimensions();
1302
+
1303
+ if ( apply_filters( 'woocommerce_gzd_dhl_use_shipment_inner_dimensions', false, $shipment ) ) {
1304
+ $dimensions = $shipment->get_dimensions();
1305
+ }
1306
+
1307
+ foreach( $dimensions as $key => $data ) {
1308
+ $dimensions[ $key ] = wc_get_dimension( $data, $unit, $shipment->get_dimension_unit() );
1309
+ }
1310
+ }
1311
+
1312
+ return apply_filters( 'woocommerce_gzd_dhl_shipment_dimensions', $dimensions, $shipment, $unit );
1313
+ }
1314
+
1315
  /**
1316
  * @param Shipment $shipment
1317
  * @param string $unit
1358
 
1359
  $shipping_method = $shipment->get_shipping_method();
1360
  $dhl_shipping_method = wc_gzd_dhl_get_shipping_method( $shipping_method );
1361
+ $dimensions = wc_gzd_dhl_get_shipment_dimensions( $shipment );
1362
 
1363
  $defaults = array(
1364
  'services' => array(),
1365
  'receiver_slug' => wc_gzd_dhl_get_default_return_receiver_slug( $shipment->get_sender_country(), $dhl_shipping_method ),
1366
  'weight' => wc_gzd_dhl_get_shipment_weight( $shipment ),
1367
+ 'length' => $dimensions['length'],
1368
+ 'width' => $dimensions['width'],
1369
+ 'height' => $dimensions['height'],
1370
  'sender_address' => $shipment->get_sender_address(),
1371
  );
1372
 
1403
  $label_type = 'return' === $shipment_type ? 'deutsche_post_return' : 'deutsche_post';
1404
  }
1405
 
1406
+ $hook_suffix = 'simple' === $label_type ? '' : $label_type . '_';
1407
 
1408
  if ( 'return' === $label_type ) {
1409
  $args = wp_parse_args( $args, wc_gzd_dhl_get_return_label_default_args( $dhl_order, $shipment ) );
packages/woocommerce-germanized-dhl/src/Admin/Settings.php CHANGED
@@ -459,15 +459,7 @@ class Settings {
459
  'id' => 'woocommerce_gzd_dhl_label_force_email_transfer',
460
  'default' => 'no',
461
  'type' => 'gzd_toggle',
462
- ),
463
- array(
464
- 'title' => _x( 'Street number', 'dhl', 'woocommerce-germanized' ),
465
- 'desc' => _x( 'Force existence of a street number within the first address field during checkout for EU countries.', 'dhl', 'woocommerce-germanized' ),
466
- 'desc_tip' => _x( 'Enabling this option will force a street number to be provided during checkout within the first address field to prevent missing or wrong data sets.', 'dhl', 'woocommerce-germanized' ),
467
- 'id' => 'woocommerce_gzd_dhl_label_checkout_validate_street_number_address',
468
- 'default' => 'no',
469
- 'type' => 'gzd_toggle',
470
- ),
471
  ) );
472
  }
473
 
@@ -707,53 +699,20 @@ class Settings {
707
  return $new_settings;
708
  }
709
 
710
- protected static function get_label_settings() {
711
-
712
  $settings = array(
713
- array( 'title' => '', 'type' => 'title', 'id' => 'dhl_label_options', 'desc' => sprintf( _x( 'Adjust options for label creation. Settings may be overridden by more specific %s settings.', 'dhl', 'woocommerce-germanized' ), '<a href="' . admin_url( 'admin.php?page=wc-settings&tab=shipping' ) . '" target="_blank">' . _x( 'shipping method', 'dhl', 'woocommerce-germanized' ) . '</a>' ) ),
714
- );
715
 
716
- $settings = array_merge( $settings, self::get_label_default_settings() );
717
-
718
- $settings = array_merge( $settings, array(
719
- array( 'type' => 'sectionend', 'id' => 'dhl_label_options' ),
720
- ) );
721
-
722
- $settings = array_merge( $settings, array(
723
- array( 'title' => _x( 'Retoure', 'dhl', 'woocommerce-germanized' ), 'type' => 'title', 'id' => 'dhl_retoure_options', 'desc' => sprintf( _x( 'Adjust handling of return shipments through the DHL Retoure API. Make sure that your %s contains DHL Retoure Online.', 'dhl', 'woocommerce-germanized' ), '<a href="' . Package::get_geschaeftskunden_portal_url() . '">' . _x( 'contract', 'dhl', 'woocommerce-germanized' ) . '</a>' ) ),
724
- ) );
725
-
726
- $settings = array_merge( $settings, self::get_retoure_settings() );
727
-
728
- $settings = array_merge( $settings, array(
729
- array( 'type' => 'sectionend', 'id' => 'dhl_retoure_options' ),
730
- ) );
731
-
732
- if ( Package::base_country_supports( 'services' ) ) {
733
-
734
- $settings = array_merge( $settings, array(
735
- array( 'title' => _x( 'Default Services', 'dhl', 'woocommerce-germanized' ), 'type' => 'title', 'id' => 'dhl_label_default_services_options', 'desc' => sprintf( _x( 'Adjust services to be added to your labels by default. Find out more about these %s.', 'dhl', 'woocommerce-germanized' ), '<a href="https://www.dhl.de/de/geschaeftskunden/paket/leistungen-und-services/services/service-loesungen.html" target="_blank">' . _x( 'nationwide services', 'dhl', 'woocommerce-germanized' ) . '</a>' ) ),
736
- ) );
737
-
738
- $settings = array_merge( $settings, self::get_label_default_services_settings() );
739
-
740
- $settings = array_merge( $settings, array(
741
- array( 'type' => 'sectionend', 'id' => 'dhl_label_default_services_options' ),
742
- ) );
743
-
744
- }
745
-
746
- $settings = array_merge( $settings, array(
747
- array( 'title' => _x( 'Automation', 'dhl', 'woocommerce-germanized' ), 'type' => 'title', 'id' => 'dhl_automation_options', 'desc' => _x( 'Choose whether and under which conditions labels for your shipments shall be requested and generated automatically.', 'dhl', 'woocommerce-germanized' ) ),
748
- ) );
749
-
750
- $settings = array_merge( $settings, self::get_automation_settings() );
751
-
752
- $settings = array_merge( $settings, array(
753
- array( 'type' => 'sectionend', 'id' => 'dhl_automation_options' ),
754
- ) );
755
 
756
- $settings = array_merge( $settings, array(
757
 
758
  array( 'title' => _x( 'Shipper Address', 'dhl', 'woocommerce-germanized' ), 'type' => 'title', 'id' => 'dhl_shipper_address_options' ),
759
 
@@ -892,6 +851,58 @@ class Settings {
892
  ),
893
 
894
  array( 'type' => 'sectionend', 'id' => 'dhl_return_address_options' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
895
 
896
  array( 'title' => _x( 'Bank Account', 'dhl', 'woocommerce-germanized' ), 'type' => 'title', 'id' => 'dhl_bank_account_options', 'desc' => _x( 'Enter your bank details needed for services that use COD.', 'dhl', 'woocommerce-germanized' ) ),
897
 
@@ -1448,6 +1459,8 @@ class Settings {
1448
  $settings = self::get_general_settings();
1449
  } elseif( 'labels' === $current_section ) {
1450
  $settings = self::get_label_settings();
 
 
1451
  } elseif( 'services' === $current_section && Package::base_country_supports( 'services' ) ) {
1452
  $settings = self::get_service_settings();
1453
  } elseif( 'pickup' === $current_section && Package::base_country_supports( 'pickup' ) ) {
@@ -1462,8 +1475,9 @@ class Settings {
1462
  public static function get_sections() {
1463
  $sections = array(
1464
  '' => _x( 'DHL', 'dhl', 'woocommerce-germanized' ),
1465
- 'labels' => _x( 'DHL Labels', 'dhl', 'woocommerce-germanized' ),
1466
  'internetmarke' => _x( 'Internetmarke', 'dhl', 'woocommerce-germanized' ),
 
1467
  'services' => _x( 'Preferred Services', 'dhl', 'woocommerce-germanized' ),
1468
  'pickup' => _x( 'Parcel Pickup', 'dhl', 'woocommerce-germanized' ),
1469
  );
459
  'id' => 'woocommerce_gzd_dhl_label_force_email_transfer',
460
  'default' => 'no',
461
  'type' => 'gzd_toggle',
462
+ )
 
 
 
 
 
 
 
 
463
  ) );
464
  }
465
 
699
  return $new_settings;
700
  }
701
 
702
+ protected static function get_address_settings() {
 
703
  $settings = array(
704
+ array( 'title' => '', 'type' => 'title', 'id' => 'dhl_address_options' ),
 
705
 
706
+ array(
707
+ 'title' => _x( 'Street number', 'dhl', 'woocommerce-germanized' ),
708
+ 'desc' => _x( 'Force existence of a street number within the first address field during checkout for EU countries.', 'dhl', 'woocommerce-germanized' ),
709
+ 'desc_tip' => _x( 'Enabling this option will force a street number to be provided during checkout within the first address field to prevent missing or wrong data sets.', 'dhl', 'woocommerce-germanized' ),
710
+ 'id' => 'woocommerce_gzd_dhl_label_checkout_validate_street_number_address',
711
+ 'default' => 'no',
712
+ 'type' => 'gzd_toggle',
713
+ ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
714
 
715
+ array( 'type' => 'sectionend', 'id' => 'dhl_address_options' ),
716
 
717
  array( 'title' => _x( 'Shipper Address', 'dhl', 'woocommerce-germanized' ), 'type' => 'title', 'id' => 'dhl_shipper_address_options' ),
718
 
851
  ),
852
 
853
  array( 'type' => 'sectionend', 'id' => 'dhl_return_address_options' ),
854
+ );
855
+
856
+ return $settings;
857
+ }
858
+
859
+ protected static function get_label_settings() {
860
+
861
+ $settings = array(
862
+ array( 'title' => '', 'type' => 'title', 'id' => 'dhl_label_options', 'desc' => sprintf( _x( 'Adjust options for label creation. Settings may be overridden by more specific %s settings.', 'dhl', 'woocommerce-germanized' ), '<a href="' . admin_url( 'admin.php?page=wc-settings&tab=shipping' ) . '" target="_blank">' . _x( 'shipping method', 'dhl', 'woocommerce-germanized' ) . '</a>' ) ),
863
+ );
864
+
865
+ $settings = array_merge( $settings, self::get_label_default_settings() );
866
+
867
+ $settings = array_merge( $settings, array(
868
+ array( 'type' => 'sectionend', 'id' => 'dhl_label_options' ),
869
+ ) );
870
+
871
+ $settings = array_merge( $settings, array(
872
+ array( 'title' => _x( 'Retoure', 'dhl', 'woocommerce-germanized' ), 'type' => 'title', 'id' => 'dhl_retoure_options', 'desc' => sprintf( _x( 'Adjust handling of return shipments through the DHL Retoure API. Make sure that your %s contains DHL Retoure Online.', 'dhl', 'woocommerce-germanized' ), '<a href="' . Package::get_geschaeftskunden_portal_url() . '">' . _x( 'contract', 'dhl', 'woocommerce-germanized' ) . '</a>' ) ),
873
+ ) );
874
+
875
+ $settings = array_merge( $settings, self::get_retoure_settings() );
876
+
877
+ $settings = array_merge( $settings, array(
878
+ array( 'type' => 'sectionend', 'id' => 'dhl_retoure_options' ),
879
+ ) );
880
+
881
+ if ( Package::base_country_supports( 'services' ) ) {
882
+
883
+ $settings = array_merge( $settings, array(
884
+ array( 'title' => _x( 'Default Services', 'dhl', 'woocommerce-germanized' ), 'type' => 'title', 'id' => 'dhl_label_default_services_options', 'desc' => sprintf( _x( 'Adjust services to be added to your labels by default. Find out more about these %s.', 'dhl', 'woocommerce-germanized' ), '<a href="https://www.dhl.de/de/geschaeftskunden/paket/leistungen-und-services/services/service-loesungen.html" target="_blank">' . _x( 'nationwide services', 'dhl', 'woocommerce-germanized' ) . '</a>' ) ),
885
+ ) );
886
+
887
+ $settings = array_merge( $settings, self::get_label_default_services_settings() );
888
+
889
+ $settings = array_merge( $settings, array(
890
+ array( 'type' => 'sectionend', 'id' => 'dhl_label_default_services_options' ),
891
+ ) );
892
+
893
+ }
894
+
895
+ $settings = array_merge( $settings, array(
896
+ array( 'title' => _x( 'Automation', 'dhl', 'woocommerce-germanized' ), 'type' => 'title', 'id' => 'dhl_automation_options', 'desc' => _x( 'Choose whether and under which conditions labels for your shipments shall be requested and generated automatically.', 'dhl', 'woocommerce-germanized' ) ),
897
+ ) );
898
+
899
+ $settings = array_merge( $settings, self::get_automation_settings() );
900
+
901
+ $settings = array_merge( $settings, array(
902
+ array( 'type' => 'sectionend', 'id' => 'dhl_automation_options' ),
903
+ ) );
904
+
905
+ $settings = array_merge( $settings, array(
906
 
907
  array( 'title' => _x( 'Bank Account', 'dhl', 'woocommerce-germanized' ), 'type' => 'title', 'id' => 'dhl_bank_account_options', 'desc' => _x( 'Enter your bank details needed for services that use COD.', 'dhl', 'woocommerce-germanized' ) ),
908
 
1459
  $settings = self::get_general_settings();
1460
  } elseif( 'labels' === $current_section ) {
1461
  $settings = self::get_label_settings();
1462
+ } elseif( 'addresses' === $current_section ) {
1463
+ $settings = self::get_address_settings();
1464
  } elseif( 'services' === $current_section && Package::base_country_supports( 'services' ) ) {
1465
  $settings = self::get_service_settings();
1466
  } elseif( 'pickup' === $current_section && Package::base_country_supports( 'pickup' ) ) {
1475
  public static function get_sections() {
1476
  $sections = array(
1477
  '' => _x( 'DHL', 'dhl', 'woocommerce-germanized' ),
1478
+ 'labels' => _x( 'Labels', 'dhl', 'woocommerce-germanized' ),
1479
  'internetmarke' => _x( 'Internetmarke', 'dhl', 'woocommerce-germanized' ),
1480
+ 'addresses' => _x( 'Addresses', 'dhl', 'woocommerce-germanized' ),
1481
  'services' => _x( 'Preferred Services', 'dhl', 'woocommerce-germanized' ),
1482
  'pickup' => _x( 'Parcel Pickup', 'dhl', 'woocommerce-germanized' ),
1483
  );
packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php CHANGED
@@ -115,7 +115,7 @@ class ImWarenpostIntRest extends Rest {
115
  'addressLine1' => $shipment->get_address_1(),
116
  'addressLine2' => $shipment->get_address_2(),
117
  'city' => $shipment->get_city(),
118
- 'state' => $shipment->get_state(),
119
  'postalCode' => $shipment->get_postcode(),
120
  'destinationCountry' => $shipment->get_country(),
121
  'shipmentAmount' => wc_format_decimal( $shipment->get_total() + $shipment->get_additional_total(), 2 ),
115
  'addressLine1' => $shipment->get_address_1(),
116
  'addressLine2' => $shipment->get_address_2(),
117
  'city' => $shipment->get_city(),
118
+ 'state' => wc_gzd_dhl_format_label_state( $shipment->get_state(), $shipment->get_country() ),
119
  'postalCode' => $shipment->get_postcode(),
120
  'destinationCountry' => $shipment->get_country(),
121
  'shipmentAmount' => wc_format_decimal( $shipment->get_total() + $shipment->get_additional_total(), 2 ),
packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php CHANGED
@@ -453,12 +453,12 @@ class LabelSoap extends Soap {
453
  'shipmentDate' => Package::get_date_de_timezone( 'Y-m-d' ),
454
  'ShipmentItem' => array(
455
  'weightInKG' => $label->get_weight(),
456
- 'lengthInCM' => $shipment->has_dimensions() ? wc_get_dimension( $shipment->get_length(), 'cm', $shipment->get_dimension_unit() ) : '',
457
- 'widthInCM' => $shipment->has_dimensions() ? wc_get_dimension( $shipment->get_width(), 'cm', $shipment->get_dimension_unit() ) : '',
458
- 'heightInCM' => $shipment->has_dimensions() ? wc_get_dimension( $shipment->get_height(), 'cm', $shipment->get_dimension_unit() ) : '',
459
  ),
460
  'Service' => $services,
461
- 'Notification' => $label->has_email_notification() ? array( 'recipientEmailAddress' => $shipment->get_email() ) : array(),
462
  'BankData' => $bank_data,
463
  ),
464
  'Receiver' => array(
@@ -544,25 +544,28 @@ class LabelSoap extends Soap {
544
  if ( ! empty( $shipper_reference ) ) {
545
  $dhl_label_body['ShipmentOrder']['Shipment']['ShipperReference'] = $shipper_reference;
546
  } else {
 
 
 
547
  $dhl_label_body['ShipmentOrder']['Shipment']['Shipper'] = array(
548
  'Name' => array(
549
- 'name1' => Package::get_setting( 'shipper_company' ) ? Package::get_setting( 'shipper_company' ) : Package::get_setting( 'shipper_name' ),
550
- 'name2' => Package::get_setting( 'shipper_company' ) ? Package::get_setting( 'shipper_name' ) : '',
551
  ),
552
  'Address' => array(
553
- 'streetName' => Package::get_setting( 'shipper_street' ),
554
- 'streetNumber' => Package::get_setting( 'shipper_street_no' ),
555
- 'zip' => Package::get_setting( 'shipper_postcode' ),
556
- 'city' => Package::get_setting( 'shipper_city' ),
557
  'Origin' => array(
558
- 'countryISOCode' => Package::get_setting( 'shipper_country' ),
559
- 'state' => wc_gzd_dhl_format_label_state( Package::get_setting( 'shipper_state' ), Package::get_setting( 'shipper_country' ) ),
560
  )
561
  ),
562
  'Communication' => array(
563
- 'phone' => Package::get_setting( 'shipper_phone' ),
564
- 'email' => Package::get_setting( 'shipper_email' ),
565
- 'contactPerson' => Package::get_setting( 'shipper_name' ),
566
  )
567
  );
568
  }
@@ -669,6 +672,18 @@ class LabelSoap extends Soap {
669
  * @package Vendidero/Germanized/DHL
670
  */
671
  $customs_data['exportType'] = strtoupper( apply_filters( 'woocommerce_gzd_dhl_label_api_export_type', 'COMMERCIAL_GOODS', $label ) );
 
 
 
 
 
 
 
 
 
 
 
 
672
  $dhl_label_body['ShipmentOrder']['Shipment']['ExportDocument'] = $customs_data;
673
  }
674
 
453
  'shipmentDate' => Package::get_date_de_timezone( 'Y-m-d' ),
454
  'ShipmentItem' => array(
455
  'weightInKG' => $label->get_weight(),
456
+ 'lengthInCM' => $label->has_dimensions() ? $label->get_length() : '',
457
+ 'widthInCM' => $label->has_dimensions() ? $label->get_width() : '',
458
+ 'heightInCM' => $label->has_dimensions() ? $label->get_height() : '',
459
  ),
460
  'Service' => $services,
461
+ 'Notification' => apply_filters( 'woocommerce_gzd_dhl_label_api_enable_notification', $label->has_email_notification(), $label ) ? array( 'recipientEmailAddress' => $shipment->get_email() ) : array(),
462
  'BankData' => $bank_data,
463
  ),
464
  'Receiver' => array(
544
  if ( ! empty( $shipper_reference ) ) {
545
  $dhl_label_body['ShipmentOrder']['Shipment']['ShipperReference'] = $shipper_reference;
546
  } else {
547
+ $name1 = apply_filters( 'woocommerce_gzd_dhl_label_api_shipper_name1', Package::get_setting( 'shipper_company' ) ? Package::get_setting( 'shipper_company' ) : Package::get_setting( 'shipper_name' ), $label );
548
+ $name2 = apply_filters( 'woocommerce_gzd_dhl_label_api_shipper_name2', Package::get_setting( 'shipper_company' ) ? Package::get_setting( 'shipper_name' ) : '', $label );
549
+
550
  $dhl_label_body['ShipmentOrder']['Shipment']['Shipper'] = array(
551
  'Name' => array(
552
+ 'name1' => $name1,
553
+ 'name2' => $name2,
554
  ),
555
  'Address' => array(
556
+ 'streetName' => apply_filters( 'woocommerce_gzd_dhl_label_api_shipper_street_name', Package::get_setting( 'shipper_street' ), $label ),
557
+ 'streetNumber' => apply_filters( 'woocommerce_gzd_dhl_label_api_shipper_street_number', Package::get_setting( 'shipper_street_no' ), $label ),
558
+ 'zip' => apply_filters( 'woocommerce_gzd_dhl_label_api_shipper_zip', Package::get_setting( 'shipper_postcode' ), $label ),
559
+ 'city' => apply_filters( 'woocommerce_gzd_dhl_label_api_shipper_city', Package::get_setting( 'shipper_city' ), $label ),
560
  'Origin' => array(
561
+ 'countryISOCode' => apply_filters( 'woocommerce_gzd_dhl_label_api_shipper_country', Package::get_setting( 'shipper_country' ), $label ),
562
+ 'state' => apply_filters( 'woocommerce_gzd_dhl_label_api_shipper_state', wc_gzd_dhl_format_label_state( Package::get_setting( 'shipper_state' ), Package::get_setting( 'shipper_country' ) ), $label ),
563
  )
564
  ),
565
  'Communication' => array(
566
+ 'phone' => apply_filters( 'woocommerce_gzd_dhl_label_api_shipper_phone', Package::get_setting( 'shipper_phone' ), $label ),
567
+ 'email' => apply_filters( 'woocommerce_gzd_dhl_label_api_shipper_email', Package::get_setting( 'shipper_email' ), $label ),
568
+ 'contactPerson' => apply_filters( 'woocommerce_gzd_dhl_label_api_shipper_contact_person', Package::get_setting( 'shipper_name' ), $label ),
569
  )
570
  );
571
  }
672
  * @package Vendidero/Germanized/DHL
673
  */
674
  $customs_data['exportType'] = strtoupper( apply_filters( 'woocommerce_gzd_dhl_label_api_export_type', 'COMMERCIAL_GOODS', $label ) );
675
+
676
+ /**
677
+ * Filter to allow adjusting the export invoice number.
678
+ *
679
+ * @param string $invoice_number The invoice number.
680
+ * @param Label $label The label instance.
681
+ *
682
+ * @since 3.3.4
683
+ * @package Vendidero/Germanized/DHL
684
+ */
685
+ $customs_data['invoiceNumber'] = apply_filters( 'woocommerce_gzd_dhl_label_api_export_invoice_number', $customs_data['invoiceNumber'], $label );
686
+
687
  $dhl_label_body['ShipmentOrder']['Shipment']['ExportDocument'] = $customs_data;
688
  }
689
 
packages/woocommerce-germanized-dhl/src/Automation.php CHANGED
@@ -24,13 +24,20 @@ class Automation {
24
 
25
  // After a label has been successfully created - maybe update shipment status
26
  add_action( 'woocommerce_gzd_shipment_created_dhl_label', array( __CLASS__, 'maybe_adjust_shipment_status' ), 10 );
 
27
  }
28
 
29
  /**
30
  * @param Shipment $shipment
31
  */
32
  public static function maybe_adjust_shipment_status( $shipment ) {
33
- if ( 'yes' === Package::get_setting( 'label_auto_shipment_status_shipped' ) ) {
 
 
 
 
 
 
34
  $shipment->set_status( 'shipped' );
35
  }
36
  }
24
 
25
  // After a label has been successfully created - maybe update shipment status
26
  add_action( 'woocommerce_gzd_shipment_created_dhl_label', array( __CLASS__, 'maybe_adjust_shipment_status' ), 10 );
27
+ add_action( 'woocommerce_gzd_shipment_created_deutsche_post_label', array( __CLASS__, 'maybe_adjust_shipment_status' ), 10 );
28
  }
29
 
30
  /**
31
  * @param Shipment $shipment
32
  */
33
  public static function maybe_adjust_shipment_status( $shipment ) {
34
+ $setting_name = 'label_auto_shipment_status_shipped';
35
+
36
+ if ( 'deutsche_post' === $shipment->get_shipping_provider() ) {
37
+ $setting_name = 'deutsche_post_' . $setting_name;
38
+ }
39
+
40
+ if ( 'yes' === Package::get_setting( $setting_name ) ) {
41
  $shipment->set_status( 'shipped' );
42
  }
43
  }
packages/woocommerce-germanized-dhl/src/DataStores/Label.php CHANGED
@@ -60,6 +60,9 @@ class Label extends WC_Data_Store_WP implements WC_Object_Data_Store_Interface {
60
  '_cod_total',
61
  '_cod_includes_additional_total',
62
  '_weight',
 
 
 
63
  '_created_via',
64
  '_receiver_slug',
65
  '_page_format',
60
  '_cod_total',
61
  '_cod_includes_additional_total',
62
  '_weight',
63
+ '_width',
64
+ '_length',
65
+ '_height',
66
  '_created_via',
67
  '_receiver_slug',
68
  '_page_format',
packages/woocommerce-germanized-dhl/src/Label.php CHANGED
@@ -55,6 +55,9 @@ abstract class Label extends WC_Data implements ShipmentLabel {
55
  'shipment_id' => 0,
56
  'number' => '',
57
  'weight' => '',
 
 
 
58
  'path' => '',
59
  'default_path' => '',
60
  'export_path' => '',
@@ -157,6 +160,26 @@ abstract class Label extends WC_Data implements ShipmentLabel {
157
  return $this->get_prop( 'weight', $context );
158
  }
159
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
160
  public function get_tracking_url() {
161
 
162
  if ( $shipment = $this->get_shipment() ) {
@@ -261,6 +284,18 @@ abstract class Label extends WC_Data implements ShipmentLabel {
261
  $this->set_prop( 'weight','' !== $weight ? wc_format_decimal( $weight ) : '' );
262
  }
263
 
 
 
 
 
 
 
 
 
 
 
 
 
264
  public function set_path( $path ) {
265
  $this->set_prop( 'path', $path );
266
  }
55
  'shipment_id' => 0,
56
  'number' => '',
57
  'weight' => '',
58
+ 'length' => '',
59
+ 'width' => '',
60
+ 'height' => '',
61
  'path' => '',
62
  'default_path' => '',
63
  'export_path' => '',
160
  return $this->get_prop( 'weight', $context );
161
  }
162
 
163
+ public function get_length( $context = 'view' ) {
164
+ return $this->get_prop( 'length', $context );
165
+ }
166
+
167
+ public function get_width( $context = 'view' ) {
168
+ return $this->get_prop( 'width', $context );
169
+ }
170
+
171
+ public function get_height( $context = 'view' ) {
172
+ return $this->get_prop( 'height', $context );
173
+ }
174
+
175
+ public function has_dimensions() {
176
+ $width = $this->get_width();
177
+ $length = $this->get_length();
178
+ $height = $this->get_height();
179
+
180
+ return ( ! empty( $width ) && ! empty( $length ) && ! empty( $height ) );
181
+ }
182
+
183
  public function get_tracking_url() {
184
 
185
  if ( $shipment = $this->get_shipment() ) {
284
  $this->set_prop( 'weight','' !== $weight ? wc_format_decimal( $weight ) : '' );
285
  }
286
 
287
+ public function set_width( $width ) {
288
+ $this->set_prop( 'width','' !== $width ? wc_format_decimal( $width ) : '' );
289
+ }
290
+
291
+ public function set_length( $length ) {
292
+ $this->set_prop( 'length','' !== $length ? wc_format_decimal( $length ) : '' );
293
+ }
294
+
295
+ public function set_height( $height ) {
296
+ $this->set_prop( 'height','' !== $height ? wc_format_decimal( $height ) : '' );
297
+ }
298
+
299
  public function set_path( $path ) {
300
  $this->set_prop( 'path', $path );
301
  }
packages/woocommerce-germanized-dhl/src/Order.php CHANGED
@@ -156,8 +156,6 @@ class Order {
156
  }
157
 
158
  /**
159
- * @TODO: Add setting to override checkbox check.
160
- *
161
  * @return bool
162
  */
163
  public function supports_email_notification() {
156
  }
157
 
158
  /**
 
 
159
  * @return bool
160
  */
161
  public function supports_email_notification() {
packages/woocommerce-germanized-dhl/src/Package.php CHANGED
@@ -23,7 +23,7 @@ class Package {
23
  *
24
  * @var string
25
  */
26
- const VERSION = '1.4.3';
27
 
28
  public static $upload_dir_suffix = '';
29
 
23
  *
24
  * @var string
25
  */
26
+ const VERSION = '1.4.4';
27
 
28
  public static $upload_dir_suffix = '';
29
 
packages/woocommerce-germanized-dhl/src/ParcelServices.php CHANGED
@@ -114,6 +114,9 @@ class ParcelServices {
114
  }
115
  }
116
 
 
 
 
117
  public static function add_fees( $cart ) {
118
  if ( ! $_POST || ( is_admin() && ! is_ajax() ) ) {
119
  return;
@@ -132,7 +135,7 @@ class ParcelServices {
132
  try {
133
  if ( ! empty( $data['preferred_day'] ) ) {
134
  if ( ! empty( $data['preferred_day_cost'] ) ) {
135
- $cart->add_fee( _x( 'DHL Preferred Day', 'dhl', 'woocommerce-germanized' ), $data['preferred_day_cost'] );
136
  }
137
  }
138
  } catch ( Exception $e ) {}
114
  }
115
  }
116
 
117
+ /**
118
+ * @param \WC_Cart $cart
119
+ */
120
  public static function add_fees( $cart ) {
121
  if ( ! $_POST || ( is_admin() && ! is_ajax() ) ) {
122
  return;
135
  try {
136
  if ( ! empty( $data['preferred_day'] ) ) {
137
  if ( ! empty( $data['preferred_day_cost'] ) ) {
138
+ $cart->add_fee( _x( 'DHL Preferred Day', 'dhl', 'woocommerce-germanized' ), $data['preferred_day_cost'], true );
139
  }
140
  }
141
  } catch ( Exception $e ) {}
packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php CHANGED
@@ -39,7 +39,7 @@ Please choose your preferred delivery option.', 'dhl', 'woocommerce-germanized'
39
 
40
  <?php if ( ! empty( $preferred_day_cost ) ) : ?>
41
  <div class="dhl-preferred-service-cost">
42
- <?php printf( _x( 'There is a surcharge of %s incl. VAT for this service.*', 'dhl', 'woocommerce-germanized' ), wc_price( $preferred_day_cost ) ); ?>
43
  </div>
44
  <?php endif; ?>
45
 
39
 
40
  <?php if ( ! empty( $preferred_day_cost ) ) : ?>
41
  <div class="dhl-preferred-service-cost">
42
+ <?php printf( _x( 'There is a surcharge of %1$s %2$s for this service.*', 'dhl', 'woocommerce-germanized' ), wc_price( $preferred_day_cost ), ( wc_gzd_additional_costs_include_tax() ? _x( 'incl. VAT', 'dhl', 'woocommerce-germanized' ) : _x( 'excl. VAT', 'dhl', 'woocommerce-germanized' ) ) ); ?>
43
  </div>
44
  <?php endif; ?>
45
 
packages/woocommerce-germanized-dhl/woocommerce-germanized-dhl.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: The Germanized DHL integration, installed as a feature plugin for development and testing purposes.
6
  * Author: vendidero
7
  * Author URI: https://vendidero.de
8
- * Version: 1.4.3
9
  * Requires PHP: 5.6
10
  * License: GPLv3
11
  *
5
  * Description: The Germanized DHL integration, installed as a feature plugin for development and testing purposes.
6
  * Author: vendidero
7
  * Author URI: https://vendidero.de
8
+ * Version: 1.4.4
9
  * Requires PHP: 5.6
10
  * License: GPLv3
11
  *
packages/woocommerce-germanized-shipments/assets/js/admin-shipping-provider-method.js CHANGED
@@ -14,6 +14,8 @@ window.germanized.admin = window.germanized.admin || {};
14
  init: function () {
15
  var self = germanized.admin.shipping_provider_method;
16
 
 
 
17
  $( document ).on( 'change', 'select[id$=shipping_provider]', self.showOrHideAll );
18
  $( document.body ).on( 'wc_backbone_modal_loaded', self.onShippingMethodOpen );
19
 
14
  init: function () {
15
  var self = germanized.admin.shipping_provider_method;
16
 
17
+ self.params = wc_gzd_admin_shipping_provider_method_params;
18
+
19
  $( document ).on( 'change', 'select[id$=shipping_provider]', self.showOrHideAll );
20
  $( document.body ).on( 'wc_backbone_modal_loaded', self.onShippingMethodOpen );
21
 
packages/woocommerce-germanized-shipments/assets/js/admin-shipping-provider-method.min.js CHANGED
@@ -1 +1 @@
1
- window.germanized=window.germanized||{},window.germanized.admin=window.germanized.admin||{},function(r){window.germanized.admin.shipping_provider_method={params:{},currentProvider:"",init:function(){var i=germanized.admin.shipping_provider_method;r(document).on("change","select[id$=shipping_provider]",i.showOrHideAll),r(document.body).on("wc_backbone_modal_loaded",i.onShippingMethodOpen),0<r("select[id$=shipping_provider]").length&&r("select[id$=shipping_provider]").trigger("change")},onShippingMethodOpen:function(i,e){"wc-modal-shipping-method-settings"===e&&0<r("select[id$=shipping_provider]").length&&r("select[id$=shipping_provider]").trigger("change")},showOrHideAll:function(){var e=germanized.admin.shipping_provider_method,i=r(this),n=i.find("option"),d=i.parents("form");e.currentProvider=i.val(),n.each(function(){var i=r(this).val();0<i.length&&d.find("table.form-table").each(function(){0<r(this).find(":input[id*=_"+i+"_]").length&&e.hideTable(r(this))})}),0<e.currentProvider.length&&d.find("table.form-table").each(function(){0<r(this).find(":input[id*=_"+e.currentProvider+"_]").length&&e.showTable(r(this))})},hideTable:function(i){if(0<i.find("select[id$=shipping_provider]").length)return!1;i.prevUntil("table.form-table").hide(),i.hide()},showTable:function(i){i.prevUntil("table.form-table").show(),i.show()}},r(document).ready(function(){germanized.admin.shipping_provider_method.init()})}(jQuery);
1
+ window.germanized=window.germanized||{},window.germanized.admin=window.germanized.admin||{},function(r){window.germanized.admin.shipping_provider_method={params:{},currentProvider:"",init:function(){var i=germanized.admin.shipping_provider_method;i.params=wc_gzd_admin_shipping_provider_method_params,r(document).on("change","select[id$=shipping_provider]",i.showOrHideAll),r(document.body).on("wc_backbone_modal_loaded",i.onShippingMethodOpen),0<r("select[id$=shipping_provider]").length&&r("select[id$=shipping_provider]").trigger("change")},onShippingMethodOpen:function(i,e){"wc-modal-shipping-method-settings"===e&&0<r("select[id$=shipping_provider]").length&&r("select[id$=shipping_provider]").trigger("change")},showOrHideAll:function(){var e=germanized.admin.shipping_provider_method,i=r(this),n=i.find("option"),d=i.parents("form");e.currentProvider=i.val(),n.each(function(){var i=r(this).val();0<i.length&&d.find("table.form-table").each(function(){0<r(this).find(":input[id*=_"+i+"_]").length&&e.hideTable(r(this))})}),0<e.currentProvider.length&&d.find("table.form-table").each(function(){0<r(this).find(":input[id*=_"+e.currentProvider+"_]").length&&e.showTable(r(this))})},hideTable:function(i){if(0<i.find("select[id$=shipping_provider]").length)return!1;i.prevUntil("table.form-table").hide(),i.hide()},showTable:function(i){i.prevUntil("table.form-table").show(),i.show()}},r(document).ready(function(){germanized.admin.shipping_provider_method.init()})}(jQuery);
packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php CHANGED
@@ -25,6 +25,17 @@ use Vendidero\Germanized\Shipments\ShippingProvider;
25
 
26
  defined( 'ABSPATH' ) || exit;
27
 
 
 
 
 
 
 
 
 
 
 
 
28
  function wc_gzd_get_shipment_order( $order ) {
29
  if ( is_numeric( $order ) ) {
30
  $order = wc_get_order( $order);
25
 
26
  defined( 'ABSPATH' ) || exit;
27
 
28
+ function wc_gzd_get_formatted_state( $country = '', $state = '' ) {
29
+ if ( empty( $country ) ) {
30
+ return '';
31
+ }
32
+
33
+ $states = WC()->countries ? WC()->countries->get_states( $country ) : array();
34
+ $formatted_state = ( $states && isset( $states[ $state ] ) ) ? $states[ $state ] : $state;
35
+
36
+ return $formatted_state;
37
+ }
38
+
39
  function wc_gzd_get_shipment_order( $order ) {
40
  if ( is_numeric( $order ) ) {
41
  $order = wc_get_order( $order);
packages/woocommerce-germanized-shipments/src/Admin/Admin.php CHANGED
@@ -778,6 +778,15 @@ class Admin {
778
  // Shipping provider method
779
  if ( 'woocommerce_page_wc-settings' === $screen_id && isset( $_GET['tab'] ) && 'shipping' === $_GET['tab'] && ( isset( $_GET['zone_id'] ) || isset( $_GET['instance_id'] ) ) ) {
780
  wp_enqueue_script( 'wc-gzd-admin-shipping-provider-method' );
 
 
 
 
 
 
 
 
 
781
  }
782
  }
783
 
778
  // Shipping provider method
779
  if ( 'woocommerce_page_wc-settings' === $screen_id && isset( $_GET['tab'] ) && 'shipping' === $_GET['tab'] && ( isset( $_GET['zone_id'] ) || isset( $_GET['instance_id'] ) ) ) {
780
  wp_enqueue_script( 'wc-gzd-admin-shipping-provider-method' );
781
+ $providers = array_filter( array_keys( wc_gzd_get_shipping_provider_select() ) );
782
+
783
+ wp_localize_script(
784
+ 'wc-gzd-admin-shipping-provider-method',
785
+ 'wc_gzd_admin_shipping_provider_method_params',
786
+ array(
787
+ 'shipping_providers' => $providers,
788
+ )
789
+ );
790
  }
791
  }
792
 
packages/woocommerce-germanized-shipments/src/Package.php CHANGED
@@ -17,7 +17,7 @@ class Package {
17
  *
18
  * @var string
19
  */
20
- const VERSION = '1.4.2';
21
 
22
  public static $upload_dir_suffix = '';
23
 
17
  *
18
  * @var string
19
  */
20
+ const VERSION = '1.4.3';
21
 
22
  public static $upload_dir_suffix = '';
23
 
packages/woocommerce-germanized-shipments/src/ReturnShipment.php CHANGED
@@ -386,6 +386,14 @@ class ReturnShipment extends Shipment {
386
  return $this->get_sender_address_prop( 'state', $context );
387
  }
388
 
 
 
 
 
 
 
 
 
389
  /**
390
  * Returns the sender address country.
391
  *
@@ -442,6 +450,18 @@ class ReturnShipment extends Shipment {
442
  'height' => $this->get_height( 'edit' ),
443
  ) );
444
 
 
 
 
 
 
 
 
 
 
 
 
 
445
  $this->set_props( $args );
446
 
447
  /**
386
  return $this->get_sender_address_prop( 'state', $context );
387
  }
388
 
389
+ public function get_formatted_sender_state() {
390
+ if ( '' === $this->get_sender_state() || '' === $this->get_sender_country() ) {
391
+ return '';
392
+ }
393
+
394
+ return wc_gzd_get_formatted_state( $this->get_sender_state(), $this->get_sender_country() );
395
+ }
396
+
397
  /**
398
  * Returns the sender address country.
399
  *
450
  'height' => $this->get_height( 'edit' ),
451
  ) );
452
 
453
+ /**
454
+ * Filter to allow adjusting the return shipment props synced from the corresponding order.
455
+ *
456
+ * @param mixed $args The properties in key => value pairs.
457
+ * @param ReturnShipment $shipment The shipment object.
458
+ * @param Order $order_shipment The shipment order object.
459
+ *
460
+ * @since 3.0.0
461
+ * @package Vendidero/Germanized/Shipments
462
+ */
463
+ $args = apply_filters( 'woocommerce_gzd_return_shipment_sync_props', $args, $this, $order_shipment );
464
+
465
  $this->set_props( $args );
466
 
467
  /**
packages/woocommerce-germanized-shipments/src/Shipment.php CHANGED
@@ -380,6 +380,16 @@ abstract class Shipment extends WC_Data {
380
  return $length;
381
  }
382
 
 
 
 
 
 
 
 
 
 
 
383
  /**
384
  * Returns the shipment width. In case view context was chosen and width is not yet set, returns the content width.
385
  *
@@ -396,6 +406,16 @@ abstract class Shipment extends WC_Data {
396
  return $width;
397
  }
398
 
 
 
 
 
 
 
 
 
 
 
399
  /**
400
  * Returns the shipment height. In case view context was chosen and height is not yet set, returns the content height.
401
  *
@@ -412,6 +432,16 @@ abstract class Shipment extends WC_Data {
412
  return $height;
413
  }
414
 
 
 
 
 
 
 
 
 
 
 
415
  public function has_dimensions() {
416
  $width = $this->get_width();
417
  $length = $this->get_length();
@@ -912,6 +942,14 @@ abstract class Shipment extends WC_Data {
912
  return $this->get_address_prop( 'state', $context );
913
  }
914
 
 
 
 
 
 
 
 
 
915
  /**
916
  * Returns the shipment address country.
917
  *
@@ -1005,6 +1043,19 @@ abstract class Shipment extends WC_Data {
1005
  );
1006
  }
1007
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1008
  public function get_formatted_dimensions() {
1009
  return wc_gzd_format_shipment_dimensions( $this->get_dimensions(), $this->get_dimension_unit() );
1010
  }
@@ -1274,10 +1325,20 @@ abstract class Shipment extends WC_Data {
1274
  * @param string $country The country in ISO format.
1275
  */
1276
  public function set_country( $country ) {
1277
- $address = $this->get_address();
1278
- $address['country'] = $country;
 
 
 
 
 
 
 
 
 
 
1279
 
1280
- $this->set_address( $address );
1281
  }
1282
 
1283
  /**
380
  return $length;
381
  }
382
 
383
+ public function get_package_length() {
384
+ if ( $packaging = $this->get_packaging() ) {
385
+ $length = wc_get_dimension( $packaging->get_length(), $this->get_dimension_unit(), 'cm' );
386
+ } else {
387
+ $length = $this->get_length();
388
+ }
389
+
390
+ return $length;
391
+ }
392
+
393
  /**
394
  * Returns the shipment width. In case view context was chosen and width is not yet set, returns the content width.
395
  *
406
  return $width;
407
  }
408
 
409
+ public function get_package_width() {
410
+ if ( $packaging = $this->get_packaging() ) {
411
+ $width = wc_get_dimension( $packaging->get_width(), $this->get_dimension_unit(), 'cm' );
412
+ } else {
413
+ $width = $this->get_width();
414
+ }
415
+
416
+ return $width;
417
+ }
418
+
419
  /**
420
  * Returns the shipment height. In case view context was chosen and height is not yet set, returns the content height.
421
  *
432
  return $height;
433
  }
434
 
435
+ public function get_package_height() {
436
+ if ( $packaging = $this->get_packaging() ) {
437
+ $height = wc_get_dimension( $packaging->get_height(), $this->get_dimension_unit(), 'cm' );
438
+ } else {
439
+ $height = $this->get_height();
440
+ }
441
+
442
+ return $height;
443
+ }
444
+
445
  public function has_dimensions() {
446
  $width = $this->get_width();
447
  $length = $this->get_length();
942
  return $this->get_address_prop( 'state', $context );
943
  }
944
 
945
+ public function get_formatted_state() {
946
+ if ( '' === $this->get_state() || '' === $this->get_country() ) {
947
+ return '';
948
+ }
949
+
950
+ return wc_gzd_get_formatted_state( $this->get_state(), $this->get_country() );
951
+ }
952
+
953
  /**
954
  * Returns the shipment address country.
955
  *
1043
  );
1044
  }
1045
 
1046
+ /**
1047
+ * Returns dimensions.
1048
+ *
1049
+ * @return string|array
1050
+ */
1051
+ public function get_package_dimensions() {
1052
+ return array(
1053
+ 'length' => $this->get_package_length(),
1054
+ 'width' => $this->get_package_width(),
1055
+ 'height' => $this->get_package_height(),
1056
+ );
1057
+ }
1058
+
1059
  public function get_formatted_dimensions() {
1060
  return wc_gzd_format_shipment_dimensions( $this->get_dimensions(), $this->get_dimension_unit() );
1061
  }
1325
  * @param string $country The country in ISO format.
1326
  */
1327
  public function set_country( $country ) {
1328
+ $this->set_address_prop( 'country', $country );
1329
+ }
1330
+
1331
+ /**
1332
+ * Update a specific address prop.
1333
+ *
1334
+ * @param $prop
1335
+ * @param $value
1336
+ */
1337
+ protected function set_address_prop( $prop, $value ) {
1338
+ $address = $this->get_address();
1339
+ $address[ $prop ] = $value;
1340
 
1341
+ $this->set_address( $address );
1342
  }
1343
 
1344
  /**
packages/woocommerce-germanized-shipments/src/SimpleShipment.php CHANGED
@@ -160,6 +160,18 @@ class SimpleShipment extends Shipment {
160
  'additional_total' => $this->calculate_additional_total( $order ),
161
  ) );
162
 
 
 
 
 
 
 
 
 
 
 
 
 
163
  $this->set_props( $args );
164
 
165
  /**
160
  'additional_total' => $this->calculate_additional_total( $order ),
161
  ) );
162
 
163
+ /**
164
+ * Filter to allow adjusting the shipment props synced from the corresponding order.
165
+ *
166
+ * @param mixed $args The properties in key => value pairs.
167
+ * @param SimpleShipment $shipment The shipment object.
168
+ * @param Order $order_shipment The shipment order object.
169
+ *
170
+ * @since 3.0.0
171
+ * @package Vendidero/Germanized/Shipments
172
+ */
173
+ $args = apply_filters( 'woocommerce_gzd_shipment_sync_props', $args, $this, $order_shipment );
174
+
175
  $this->set_props( $args );
176
 
177
  /**
packages/woocommerce-germanized-shipments/woocommerce-germanized-shipments.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: The Germanized Shipments integration, installed as a feature plugin for development and testing purposes.
6
  * Author: vendidero
7
  * Author URI: https://vendidero.de
8
- * Version: 1.4.2
9
  * Requires PHP: 5.6
10
  * License: GPLv3
11
  *
5
  * Description: The Germanized Shipments integration, installed as a feature plugin for development and testing purposes.
6
  * Author: vendidero
7
  * Author URI: https://vendidero.de
8
+ * Version: 1.4.3
9
  * Requires PHP: 5.6
10
  * License: GPLv3
11
  *
readme.txt CHANGED
@@ -4,8 +4,8 @@ Tags: woocommerce, woocommerce german, woocommerce DE, woocommerce germany, wooc
4
  Requires at least: 5.4
5
  Tested up to: 5.6
6
  WC requires at least: 3.9
7
- WC tested up to: 4.8
8
- Stable tag: 3.3.3
9
  Requires PHP: 5.6
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
@@ -186,6 +186,20 @@ Bug reports may be filed via our [GitHub repository](https://github.com/vendider
186
  6. Edit pdf documents (Pro)
187
 
188
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
189
  = 3.3.3 =
190
  * Fix: DHL WSDL download error
191
 
4
  Requires at least: 5.4
5
  Tested up to: 5.6
6
  WC requires at least: 3.9
7
+ WC tested up to: 4.9
8
+ Stable tag: 3.3.4
9
  Requires PHP: 5.6
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
186
  6. Edit pdf documents (Pro)
187
 
188
  == Changelog ==
189
+ = 3.3.4 =
190
+ * Feature: WC 4.9 compatibility
191
+ * Improvement: Use net prices for shipping costs and fees in case net option is enabled in Woo tax settings
192
+ * Improvement: Simplified split tax calculation options to use a global option (additional costs) instead of single options
193
+ * Improvement: Added notice before updating base version in case pro version is outdated
194
+ * Improvement: Allow adding multiple vouchers to one cart (but do not allow mixing vouchers with discounts)
195
+ * Improvement: Added new section (addresses) to Post & DHL
196
+ * Improvement: Internetmarke error reporting in case no matching product was found
197
+ * Improvement: Sync label dimensions with package (shipment) data if available
198
+ * Improvement: Make sure DOI activation notice is only added once
199
+ * Fix: Internetmarke Warenpost state formatting
200
+ * Fix: Internetmarke product code existence check
201
+ * Fix: Flexible Shipping compatibility
202
+
203
  = 3.3.3 =
204
  * Fix: DHL WSDL download error
205
 
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInitd13c1bee9bc21e22afd7af873416bd93::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit11a2348af64ff8817f711cc97b151bde::getLoader();
vendor/autoload_packages.php CHANGED
@@ -5,10 +5,9 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpd13c1bee9bc21e22afd7af873416bd93;
9
 
10
  // phpcs:ignore
11
 
12
- require_once trailingslashit( __DIR__ ) . 'jetpack-autoloader/autoload_functions.php';
13
-
14
- set_up_autoloader();
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp11a2348af64ff8817f711cc97b151bde;
9
 
10
  // phpcs:ignore
11
 
12
+ require_once __DIR__ . '/jetpack-autoloader/class-autoloader.php';
13
+ Autoloader::init();
 
vendor/automattic/jetpack-autoloader/src/AutoloadFileWriter.php ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php // phpcs:ignore WordPress.Files.FileName
2
+ /**
3
+ * Autoloader file writer.
4
+ *
5
+ * @package automattic/jetpack-autoloader
6
+ */
7
+
8
+ // phpcs:disable WordPress.Files.FileName.InvalidClassFileName
9
+ // phpcs:disable WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid
10
+ // phpcs:disable WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase
11
+ // phpcs:disable WordPress.NamingConventions.ValidVariableName.InterpolatedVariableNotSnakeCase
12
+ // phpcs:disable WordPress.NamingConventions.ValidVariableName.VariableNotSnakeCase
13
+ // phpcs:disable WordPress.NamingConventions.ValidVariableName.PropertyNotSnakeCase
14
+ // phpcs:disable WordPress.PHP.DevelopmentFunctions.error_log_var_export
15
+ // phpcs:disable WordPress.WP.AlternativeFunctions.file_system_read_file_put_contents
16
+ // phpcs:disable WordPress.WP.AlternativeFunctions.file_system_read_fopen
17
+ // phpcs:disable WordPress.WP.AlternativeFunctions.file_system_read_fwrite
18
+
19
+ namespace Automattic\Jetpack\Autoloader;
20
+
21
+ /**
22
+ * Class AutoloadFileWriter.
23
+ */
24
+ class AutoloadFileWriter {
25
+
26
+ /**
27
+ * The file comment to use.
28
+ */
29
+ const COMMENT = <<<AUTOLOADER_COMMENT
30
+ /**
31
+ * This file was automatically generated by automattic/jetpack-autoloader.
32
+ *
33
+ * @package automattic/jetpack-autoloader
34
+ */
35
+
36
+ AUTOLOADER_COMMENT;
37
+
38
+ /**
39
+ * Copies autoloader files and replaces any placeholders in them.
40
+ *
41
+ * @param IOInterface|null $io An IO for writing to.
42
+ * @param string $outDir The directory to place the autoloader files in.
43
+ * @param string $suffix The suffix to use in the autoloader's namespace.
44
+ */
45
+ public static function copyAutoloaderFiles( $io, $outDir, $suffix ) {
46
+ $renameList = array(
47
+ 'autoload.php' => '../autoload_packages.php',
48
+ );
49
+ $ignoreList = array(
50
+ 'AutoloadGenerator.php',
51
+ 'AutoloadProcessor.php',
52
+ 'CustomAutoloaderPlugin.php',
53
+ 'ManifestGenerator.php',
54
+ 'AutoloadFileWriter.php',
55
+ );
56
+
57
+ // Copy all of the autoloader files.
58
+ $files = scandir( __DIR__ );
59
+ foreach ( $files as $file ) {
60
+ // Only PHP files will be copied.
61
+ if ( substr( $file, -4 ) !== '.php' ) {
62
+ continue;
63
+ }
64
+
65
+ if ( in_array( $file, $ignoreList, true ) ) {
66
+ continue;
67
+ }
68
+
69
+ $newFile = isset( $renameList[ $file ] ) ? $renameList[ $file ] : $file;
70
+ $content = self::prepareAutoloaderFile( $file, $suffix );
71
+
72
+ $written = file_put_contents( $outDir . '/' . $newFile, $content );
73
+ if ( $io ) {
74
+ if ( $written ) {
75
+ $io->writeError( " <info>Generated: $newFile</info>" );
76
+ } else {
77
+ $io->writeError( " <error>Error: $newFile</error>" );
78
+ }
79
+ }
80
+ }
81
+ }
82
+
83
+ /**
84
+ * Prepares an autoloader file to be written to the destination.
85
+ *
86
+ * @param String $filename a file to prepare.
87
+ * @param String $suffix Unique suffix used in the namespace.
88
+ *
89
+ * @return string
90
+ */
91
+ private static function prepareAutoloaderFile( $filename, $suffix ) {
92
+ $header = self::COMMENT;
93
+ $header .= PHP_EOL;
94
+ $header .= 'namespace Automattic\Jetpack\Autoloader\jp' . $suffix . ';';
95
+ $header .= PHP_EOL . PHP_EOL;
96
+
97
+ $sourceLoader = fopen( __DIR__ . '/' . $filename, 'r' );
98
+ $file_contents = stream_get_contents( $sourceLoader );
99
+ return str_replace(
100
+ '/* HEADER */',
101
+ $header,
102
+ $file_contents
103
+ );
104
+ }
105
+ }
vendor/automattic/jetpack-autoloader/src/AutoloadGenerator.php CHANGED
@@ -38,15 +38,6 @@ use Composer\Util\PackageSorter;
38
  */
39
  class AutoloadGenerator {
40
 
41
- const COMMENT = <<<AUTOLOADER_COMMENT
42
- /**
43
- * This file was automatically generated by automattic/jetpack-autoloader.
44
- *
45
- * @package automattic/jetpack-autoloader
46
- */
47
-
48
- AUTOLOADER_COMMENT;
49
-
50
  /**
51
  * The filesystem utility.
52
  *
@@ -360,28 +351,8 @@ AUTOLOADER_COMMENT;
360
  // We will remove all autoloader files to generate this again.
361
  $this->filesystem->emptyDirectory( $outDir );
362
 
363
- $packageFiles = array(
364
- 'autoload.php' => '../autoload_packages.php',
365
- 'functions.php' => 'autoload_functions.php',
366
- 'class-autoloader-locator.php' => null,
367
- 'class-autoloader-handler.php' => null,
368
- 'class-manifest-handler.php' => null,
369
- 'class-plugins-handler.php' => null,
370
- 'class-version-selector.php' => null,
371
- 'class-version-loader.php' => null,
372
- );
373
-
374
- foreach ( $packageFiles as $file => $newFile ) {
375
- $newFile = isset( $newFile ) ? $newFile : $file;
376
-
377
- $content = $this->getAutoloadPackageFile( $file, $suffix );
378
-
379
- if ( file_put_contents( $outDir . '/' . $newFile, $content ) ) {
380
- $this->io->writeError( " <info>Generated: $newFile</info>" );
381
- } else {
382
- $this->io->writeError( " <error>Error: $newFile</error>" );
383
- }
384
- }
385
  }
386
 
387
  /**
@@ -418,27 +389,4 @@ AUTOLOADER_COMMENT;
418
  }
419
  }
420
  }
421
-
422
- /**
423
- * Generate the PHP that will be used in the autoload_packages.php files.
424
- *
425
- * @param String $filename a file to prepare.
426
- * @param String $suffix Unique suffix used in the namespace.
427
- *
428
- * @return string
429
- */
430
- private function getAutoloadPackageFile( $filename, $suffix ) {
431
- $header = self::COMMENT;
432
- $header .= PHP_EOL;
433
- $header .= 'namespace Automattic\Jetpack\Autoloader\jp' . $suffix . ';';
434
- $header .= PHP_EOL . PHP_EOL;
435
-
436
- $sourceLoader = fopen( __DIR__ . '/' . $filename, 'r' );
437
- $file_contents = stream_get_contents( $sourceLoader );
438
- return str_replace(
439
- '/* HEADER */',
440
- $header,
441
- $file_contents
442
- );
443
- }
444
  }
38
  */
39
  class AutoloadGenerator {
40
 
 
 
 
 
 
 
 
 
 
41
  /**
42
  * The filesystem utility.
43
  *
351
  // We will remove all autoloader files to generate this again.
352
  $this->filesystem->emptyDirectory( $outDir );
353
 
354
+ // Write the autoloader files.
355
+ AutoloadFileWriter::copyAutoloaderFiles( $this->io, $outDir, $suffix );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
356
  }
357
 
358
  /**
389
  }
390
  }
391
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
392
  }
vendor/automattic/jetpack-autoloader/src/autoload.php CHANGED
@@ -1,6 +1,5 @@
1
  <?php
2
  /* HEADER */ // phpcs:ignore
3
 
4
- require_once trailingslashit( __DIR__ ) . 'jetpack-autoloader/autoload_functions.php';
5
-
6
- set_up_autoloader();
1
  <?php
2
  /* HEADER */ // phpcs:ignore
3
 
4
+ require_once __DIR__ . '/jetpack-autoloader/class-autoloader.php';
5
+ Autoloader::init();
 
vendor/automattic/jetpack-autoloader/src/class-autoloader-handler.php CHANGED
@@ -6,39 +6,22 @@
6
  */
7
  class Autoloader_Handler {
8
 
9
- // The name of the autoloader function registered by v1.* autoloaders.
10
- const V1_AUTOLOADER_NAME = 'Automattic\Jetpack\Autoloader\autoloader';
11
-
12
- /*
13
- * The autoloader function for v2.* autoloaders is named __NAMESPACE__ . \autoloader.
14
- * The namespace is defined in AutoloadGenerator as
15
- * 'Automattic\Jetpack\Autoloader\jp' plus a unique suffix.
16
- */
17
- const V2_AUTOLOADER_BASE = 'Automattic\Jetpack\Autoloader\jp';
18
-
19
  /**
20
- * The current plugin path.
21
  *
22
- * @var string
23
  */
24
- private $current_plugin_path;
25
 
26
  /**
27
- * The paths for all of the active plugins.
28
  *
29
- * @var array
30
  */
31
- private $active_plugin_paths;
32
 
33
  /**
34
- * The Autoloader_Locator object.
35
- *
36
- * @var Autoloader_Locator
37
- */
38
- private $autoloader_locator;
39
-
40
- /**
41
- * The Version_Selector object.
42
  *
43
  * @var Version_Selector
44
  */
@@ -47,144 +30,54 @@ class Autoloader_Handler {
47
  /**
48
  * The constructor.
49
  *
50
- * @param string $current_plugin_path The current plugin path.
51
- * @param array $active_plugin_paths The active plugin paths.
52
- * @param Autoloader_Locator $autoloader_locator The Autoloader_Locator object.
53
- * @param Version_Selector $version_selector The Version_Selector object.
54
  */
55
- public function __construct( $current_plugin_path, $active_plugin_paths, $autoloader_locator, $version_selector ) {
56
- $this->current_plugin_path = $current_plugin_path;
57
- $this->active_plugin_paths = $active_plugin_paths;
58
- $this->autoloader_locator = $autoloader_locator;
59
- $this->version_selector = $version_selector;
60
  }
61
 
62
  /**
63
- * Finds the latest installed autoloader.
64
  *
65
- * @return bool True if this autoloader is the latest, false otherwise.
66
  */
67
- public function is_latest_autoloader() {
68
- global $jetpack_autoloader_latest_version;
69
-
70
- if ( isset( $jetpack_autoloader_latest_version ) ) {
71
- return $jetpack_autoloader_latest_version === $this->autoloader_locator->get_autoloader_version( $this->current_plugin_path );
72
- }
73
-
74
- $latest_plugin = $this->autoloader_locator->find_latest_autoloader( $this->active_plugin_paths, $jetpack_autoloader_latest_version );
75
- if ( ! isset( $latest_plugin ) ) {
76
- return true;
77
- }
78
-
79
- if ( $latest_plugin !== $this->current_plugin_path ) {
80
- require $this->autoloader_locator->get_autoloader_path( $latest_plugin );
81
- return false;
82
- }
83
-
84
- return true;
85
- }
86
-
87
- /**
88
- * Checks whether the autoloader should be reset. The autoloader should be reset:
89
- *
90
- * - When a plugin is activated via a method other than a request, for example using WP-CLI.
91
- * - When the active plugins list changes between autoloader checks, for example when filtered by a plugin.
92
- *
93
- * We perform this reset because the manifest files for the plugin will have been initially unknown when
94
- * selecting versions for classes and files.
95
- *
96
- * If the current plugin is not already known, this method will add it to the
97
- * $jetpack_autoloader_activating_plugins_paths global.
98
- * The $jetpack_autoloader_cached_plugin_paths global will store a cache of the
99
- * active plugin paths when last changed.
100
- *
101
- * @return boolean True if the autoloader must be reset, else false.
102
- */
103
- public function should_autoloader_reset() {
104
- global $jetpack_autoloader_activating_plugins_paths;
105
- global $jetpack_autoloader_cached_plugin_paths;
106
-
107
- $plugin_unknown = ! in_array( $this->current_plugin_path, $this->active_plugin_paths, true );
108
- if ( $plugin_unknown ) {
109
- if ( ! isset( $jetpack_autoloader_activating_plugins_paths ) ) {
110
- $jetpack_autoloader_activating_plugins_paths = array();
111
- }
112
-
113
- // If the current plugin isn't known, add it to the activating plugins list.
114
- $jetpack_autoloader_activating_plugins_paths[] = $this->current_plugin_path;
115
- $this->active_plugin_paths[] = $this->current_plugin_path;
116
- }
117
-
118
- $cache_invalidated = $jetpack_autoloader_cached_plugin_paths !== $this->active_plugin_paths;
119
- if ( $cache_invalidated ) {
120
- $jetpack_autoloader_cached_plugin_paths = $this->active_plugin_paths;
121
- }
122
-
123
- return $plugin_unknown || $cache_invalidated;
124
- }
125
-
126
- /**
127
- * Builds the Version_Autoloader class that is used for autoloading.
128
- *
129
- * @return Version_Loader
130
- */
131
- public function build_autoloader() {
132
- $manifest_handler = new Manifest_Handler( $this->active_plugin_paths, $this->version_selector );
133
-
134
  global $jetpack_packages_psr4;
135
  $jetpack_packages_psr4 = array();
136
- $manifest_handler->register_plugin_manifests( 'vendor/composer/jetpack_autoload_psr4.php', $jetpack_packages_psr4 );
137
 
138
  global $jetpack_packages_classmap;
139
  $jetpack_packages_classmap = array();
140
- $manifest_handler->register_plugin_manifests( 'vendor/composer/jetpack_autoload_classmap.php', $jetpack_packages_classmap );
141
 
142
  global $jetpack_packages_filemap;
143
  $jetpack_packages_filemap = array();
144
- $manifest_handler->register_plugin_manifests( 'vendor/composer/jetpack_autoload_filemap.php', $jetpack_packages_filemap );
145
 
146
- // Store the generated autoloader data in the loader so we can use it.
147
- return new Version_Loader(
148
  $this->version_selector,
149
  $jetpack_packages_classmap,
150
  $jetpack_packages_psr4,
151
  $jetpack_packages_filemap
152
  );
 
 
 
153
  }
154
 
155
  /**
156
- * Updates the spl autoloader chain:
157
- * - Registers this namespace's autoloader function.
158
- * - If a v1 autoloader function is registered, moves it to the end of the chain.
159
- * - Removes any other v2 autoloader functions that have already been registered. This
160
- * can occur when the autoloader is being reset by an activating plugin.
161
  */
162
- public function update_autoloader_chain() {
163
- spl_autoload_register( __NAMESPACE__ . '\autoloader' );
164
-
165
- $autoload_chain = spl_autoload_functions();
166
-
167
- foreach ( $autoload_chain as $autoloader ) {
168
- if ( ! is_string( $autoloader ) ) {
169
- /*
170
- * The Jetpack Autoloader functions are registered as strings, so
171
- * just continue if $autoloader isn't a string.
172
- */
173
- continue;
174
- }
175
-
176
- if ( self::V1_AUTOLOADER_NAME === $autoloader ) {
177
- // Move the v1.* autoloader function to the end of the spl autoloader chain.
178
- spl_autoload_unregister( $autoloader );
179
- spl_autoload_register( $autoloader );
180
 
181
- } elseif (
182
- self::V2_AUTOLOADER_BASE === substr( $autoloader, 0, strlen( self::V2_AUTOLOADER_BASE ) )
183
- && __NAMESPACE__ !== substr( $autoloader, 0, strlen( __NAMESPACE__ ) )
184
- ) {
185
- // Unregister any other v2.* autoloader functions if they're in the chain.
186
- spl_autoload_unregister( $autoloader );
187
- }
188
- }
189
  }
190
  }
6
  */
7
  class Autoloader_Handler {
8
 
 
 
 
 
 
 
 
 
 
 
9
  /**
10
+ * The Hook_Manager instance.
11
  *
12
+ * @var Hook_Manager
13
  */
14
+ private $hook_manager;
15
 
16
  /**
17
+ * The Manifest_Reader instance.
18
  *
19
+ * @var Manifest_Reader
20
  */
21
+ private $manifest_reader;
22
 
23
  /**
24
+ * The Version_Selector instance.
 
 
 
 
 
 
 
25
  *
26
  * @var Version_Selector
27
  */
30
  /**
31
  * The constructor.
32
  *
33
+ * @param Hook_Manager $hook_manager The Hook_Manager instance.
34
+ * @param Manifest_Reader $manifest_reader The Manifest_Reader instance.
35
+ * @param Version_Selector $version_selector The Version_Selector instance.
 
36
  */
37
+ public function __construct( $hook_manager, $manifest_reader, $version_selector ) {
38
+ $this->hook_manager = $hook_manager;
39
+ $this->manifest_reader = $manifest_reader;
40
+ $this->version_selector = $version_selector;
 
41
  }
42
 
43
  /**
44
+ * Creates an autoloader using the given plugins and activates it.
45
  *
46
+ * @param string[] $plugins The plugins to initialize the autoloader for.
47
  */
48
+ public function create_autoloader( $plugins ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  global $jetpack_packages_psr4;
50
  $jetpack_packages_psr4 = array();
51
+ $this->manifest_reader->read_manifests( $plugins, 'vendor/composer/jetpack_autoload_psr4.php', $jetpack_packages_psr4 );
52
 
53
  global $jetpack_packages_classmap;
54
  $jetpack_packages_classmap = array();
55
+ $this->manifest_reader->read_manifests( $plugins, 'vendor/composer/jetpack_autoload_classmap.php', $jetpack_packages_classmap );
56
 
57
  global $jetpack_packages_filemap;
58
  $jetpack_packages_filemap = array();
59
+ $this->manifest_reader->read_manifests( $plugins, 'vendor/composer/jetpack_autoload_filemap.php', $jetpack_packages_filemap );
60
 
61
+ $loader = new Version_Loader(
 
62
  $this->version_selector,
63
  $jetpack_packages_classmap,
64
  $jetpack_packages_psr4,
65
  $jetpack_packages_filemap
66
  );
67
+
68
+ // Activate the autoloader.
69
+ Autoloader::activate( $loader );
70
  }
71
 
72
  /**
73
+ * Resets the active autoloader and all related global state.
 
 
 
 
74
  */
75
+ public function reset_autoloader() {
76
+ global $jetpack_autoloader_loader;
77
+ global $jetpack_autoloader_latest_version;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
 
79
+ $this->hook_manager->reset();
80
+ $jetpack_autoloader_loader = null;
81
+ $jetpack_autoloader_latest_version = null;
 
 
 
 
 
82
  }
83
  }
vendor/automattic/jetpack-autoloader/src/class-autoloader.php ADDED
@@ -0,0 +1,151 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /* HEADER */ // phpcs:ignore
3
+
4
+ /**
5
+ * This class handles management of the actual PHP autoloader.
6
+ */
7
+ class Autoloader {
8
+
9
+ /**
10
+ * Checks to see whether or not the autoloader should be initialized and then initializes it if so.
11
+ *
12
+ * @param Container|null $container The container we want to use for autoloader initialization. If none is given
13
+ * then a container will be created automatically.
14
+ */
15
+ public static function init( $container = null ) {
16
+ // The container holds and manages the lifecycle of our dependencies
17
+ // to make them easier to work with and increase flexibility.
18
+ if ( ! isset( $container ) ) {
19
+ require_once __DIR__ . '/class-container.php';
20
+ $container = new Container();
21
+ }
22
+
23
+ // phpcs:disable Generic.Commenting.DocComment.MissingShort
24
+
25
+ /** @var Plugin_Locator $plugin_locator */
26
+ $plugin_locator = $container->get( Plugin_Locator::class );
27
+
28
+ /** @var Plugins_Handler $plugins_handler */
29
+ $plugins_handler = $container->get( Plugins_Handler::class );
30
+
31
+ // The current plugin is the one that we are attempting to initialize here.
32
+ $current_plugin = $plugin_locator->find_current_plugin();
33
+
34
+ // The cached plugins are all of those that were active or discovered by the autoloader during a previous request.
35
+ // Note that it's possible this list will include plugins that have since been deactivated, but after a request
36
+ // the cache should be updated and the deactivated plugins will be removed.
37
+ $cached_plugins = $plugins_handler->get_cached_plugins();
38
+
39
+ // The active plugins are those that we were able to discover in on the site. This list will not include
40
+ // mu-plugins, those activated by code, or those who are hidden by filtering.
41
+ // By combining these lists we can preemptively load classes for plugins that are activated via another method.
42
+ // While this may result in us considering packages in deactivated plugins the request after they're removed,
43
+ // there shouldn't be any problems as a result and the eventual consistency is reliable enough.
44
+ $all_plugins = array_values( array_unique( array_merge( $plugins_handler->get_active_plugins(), $cached_plugins ) ) );
45
+
46
+ /** @var Latest_Autoloader_Guard $guard */
47
+ $guard = $container->get( Latest_Autoloader_Guard::class );
48
+ if ( $guard->should_stop_init( $current_plugin, $all_plugins ) ) {
49
+ return;
50
+ }
51
+
52
+ /** @var Autoloader_Handler $autoloader_handler */
53
+ $autoloader_handler = $container->get( Autoloader_Handler::class );
54
+
55
+ // Initialize the autoloader using the handler now that we're ready.
56
+ $autoloader_handler->create_autoloader( $all_plugins );
57
+
58
+ /** @var Hook_Manager $hook_manager */
59
+ $hook_manager = $container->get( Hook_Manager::class );
60
+
61
+ // When the active and cached plugin lists do not match we should
62
+ // update the cache. This will prevent plugins that have been
63
+ // deactivated from being considered in other requests.
64
+ $hook_manager->add_action(
65
+ 'shutdown',
66
+ function () use ( $plugins_handler, $cached_plugins ) {
67
+ // Don't save a broken cache if an error happens during some plugin's initialization.
68
+ if ( ! did_action( 'plugins_loaded' ) ) {
69
+ // Ensure that the cache is emptied to prevent consecutive failures if the cache is to blame.
70
+ if ( ! empty( $cached_plugins ) ) {
71
+ $plugins_handler->cache_plugins( array() );
72
+ }
73
+
74
+ return;
75
+ }
76
+
77
+ // Load the active plugins fresh since the list we have above might not contain
78
+ // plugins that were activated but did not reset the autoloader. This happens
79
+ // because they were already included in the cache.
80
+ $active_plugins = $plugins_handler->get_active_plugins();
81
+
82
+ // The paths should be sorted for easy comparisons with those loaded from the cache.
83
+ // Note we don't need to sort the cached entries because they're already sorted.
84
+ sort( $active_plugins );
85
+
86
+ // We don't want to waste time saving a cache that hasn't changed.
87
+ if ( $cached_plugins === $active_plugins ) {
88
+ return;
89
+ }
90
+
91
+ $plugins_handler->cache_plugins( $active_plugins );
92
+ }
93
+ );
94
+
95
+ // phpcs:enable Generic.Commenting.DocComment.MissingShort
96
+ }
97
+
98
+ /**
99
+ * Loads a class file if one could be found.
100
+ *
101
+ * @param string $class_name The name of the class to autoload.
102
+ *
103
+ * @return bool Indicates whether or not a class file was loaded.
104
+ */
105
+ public static function load_class( $class_name ) {
106
+ global $jetpack_autoloader_loader;
107
+ if ( ! isset( $jetpack_autoloader_loader ) ) {
108
+ return;
109
+ }
110
+
111
+ $file = $jetpack_autoloader_loader->find_class_file( $class_name );
112
+ if ( ! isset( $file ) ) {
113
+ return false;
114
+ }
115
+
116
+ require $file;
117
+ return true;
118
+ }
119
+
120
+ /**
121
+ * Activates this autoloader and deactivates any other v2 autoloaders that may be present.
122
+ *
123
+ * @param Version_Loader $version_loader The version loader for our autoloader.
124
+ */
125
+ public static function activate( $version_loader ) {
126
+ // Set the global autoloader to indicate that we've activated this autoloader.
127
+ global $jetpack_autoloader_loader;
128
+ $jetpack_autoloader_loader = $version_loader;
129
+
130
+ // Remove any v2 autoloader that we've already registered.
131
+ $autoload_chain = spl_autoload_functions();
132
+ foreach ( $autoload_chain as $autoloader ) {
133
+ // Jetpack autoloaders are always strings.
134
+ if ( ! is_string( $autoloader ) ) {
135
+ continue;
136
+ }
137
+
138
+ // We can identify a v2 autoloader using the namespace prefix without the unique suffix.
139
+ if ( 'Automattic\\Jetpack\\Autoloader\\jp' === substr( $autoloader, 0, 32 ) ) {
140
+ spl_autoload_unregister( $autoloader );
141
+ continue;
142
+ }
143
+ }
144
+
145
+ // Ensure that the autoloader is first to avoid contention with others.
146
+ spl_autoload_register( self::class . '::load_class', true, true );
147
+
148
+ // Now that we've activated the autoloader we should load the filemap.
149
+ $jetpack_autoloader_loader->load_filemap();
150
+ }
151
+ }
vendor/automattic/jetpack-autoloader/src/class-container.php ADDED
@@ -0,0 +1,141 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /* HEADER */ // phpcs:ignore
3
+
4
+ /**
5
+ * This class manages the files and dependencies of the autoloader.
6
+ */
7
+ class Container {
8
+
9
+ /**
10
+ * Since each autoloader's class files exist within their own namespace we need a map to
11
+ * convert between the local class and a shared key. Note that no version checking is
12
+ * performed on these dependencies and the first autoloader to register will be the
13
+ * one that is utilized.
14
+ */
15
+ const SHARED_DEPENDENCY_KEYS = array(
16
+ Hook_Manager::class => 'Hook_Manager',
17
+ );
18
+
19
+ /**
20
+ * A map of all the dependencies we've registered with the container and created.
21
+ *
22
+ * @var array
23
+ */
24
+ protected $dependencies;
25
+
26
+ /**
27
+ * The constructor.
28
+ */
29
+ public function __construct() {
30
+ $this->dependencies = array();
31
+
32
+ $this->register_shared_dependencies();
33
+ $this->register_dependencies();
34
+ $this->initialize_globals();
35
+ }
36
+
37
+ /**
38
+ * Gets a dependency out of the container.
39
+ *
40
+ * @param string $class The class to fetch.
41
+ *
42
+ * @return mixed
43
+ * @throws \InvalidArgumentException When a class that isn't registered with the container is fetched.
44
+ */
45
+ public function get( $class ) {
46
+ if ( ! isset( $this->dependencies[ $class ] ) ) {
47
+ throw new \InvalidArgumentException( "Class '$class' is not registered with the container." );
48
+ }
49
+
50
+ return $this->dependencies[ $class ];
51
+ }
52
+
53
+ /**
54
+ * Registers all of the dependencies that are shared between all instances of the autoloader.
55
+ */
56
+ private function register_shared_dependencies() {
57
+ global $jetpack_autoloader_container_shared;
58
+ if ( ! isset( $jetpack_autoloader_container_shared ) ) {
59
+ $jetpack_autoloader_container_shared = array();
60
+ }
61
+
62
+ $key = self::SHARED_DEPENDENCY_KEYS[ Hook_Manager::class ];
63
+ if ( ! isset( $jetpack_autoloader_container_shared[ $key ] ) ) {
64
+ require_once __DIR__ . '/class-hook-manager.php';
65
+ $jetpack_autoloader_container_shared[ $key ] = new Hook_Manager();
66
+ }
67
+ $this->dependencies[ Hook_Manager::class ] = &$jetpack_autoloader_container_shared[ $key ];
68
+ }
69
+
70
+ /**
71
+ * Registers all of the dependencies with the container.
72
+ */
73
+ private function register_dependencies() {
74
+ require_once __DIR__ . '/class-path-processor.php';
75
+ $this->dependencies[ Path_Processor::class ] = new Path_Processor();
76
+
77
+ require_once __DIR__ . '/class-plugin-locator.php';
78
+ $this->dependencies[ Plugin_Locator::class ] = new Plugin_Locator(
79
+ $this->get( Path_Processor::class )
80
+ );
81
+
82
+ require_once __DIR__ . '/class-version-selector.php';
83
+ $this->dependencies[ Version_Selector::class ] = new Version_Selector();
84
+
85
+ require_once __DIR__ . '/class-autoloader-locator.php';
86
+ $this->dependencies[ Autoloader_Locator::class ] = new Autoloader_Locator(
87
+ $this->get( Version_Selector::class )
88
+ );
89
+
90
+ require_once __DIR__ . '/class-manifest-reader.php';
91
+ $this->dependencies[ Manifest_Reader::class ] = new Manifest_Reader(
92
+ $this->get( Version_Selector::class )
93
+ );
94
+
95
+ require_once __DIR__ . '/class-plugins-handler.php';
96
+ $this->dependencies[ Plugins_Handler::class ] = new Plugins_Handler(
97
+ $this->get( Plugin_Locator::class ),
98
+ $this->get( Path_Processor::class )
99
+ );
100
+
101
+ require_once __DIR__ . '/class-autoloader-handler.php';
102
+ $this->dependencies[ Autoloader_Handler::class ] = new Autoloader_Handler(
103
+ $this->get( Hook_Manager::class ),
104
+ $this->get( Manifest_Reader::class ),
105
+ $this->get( Version_Selector::class )
106
+ );
107
+
108
+ require_once __DIR__ . '/class-latest-autoloader-guard.php';
109
+ $this->dependencies[ Latest_Autoloader_Guard::class ] = new Latest_Autoloader_Guard(
110
+ $this->get( Plugins_Handler::class ),
111
+ $this->get( Autoloader_Handler::class ),
112
+ $this->get( Autoloader_Locator::class )
113
+ );
114
+
115
+ // Register any classes that we will use elsewhere.
116
+ require_once __DIR__ . '/class-version-loader.php';
117
+ }
118
+
119
+ /**
120
+ * Initializes any of the globals needed by the autoloader.
121
+ */
122
+ private function initialize_globals() {
123
+ // Not all plugins can be found using the locator. In cases where a plugin loads the autoloader
124
+ // but was not discoverable, we will record them in this array to track them as "active".
125
+ global $jetpack_autoloader_activating_plugins_paths;
126
+ if ( ! isset( $jetpack_autoloader_activating_plugins_paths ) ) {
127
+ $jetpack_autoloader_activating_plugins_paths = array();
128
+ }
129
+
130
+ // Since older autoloaders include newer ones, we need to be able to tell the difference between an
131
+ // inclusion via autoloader and an inclusion via plugin file. This allows the autoloader to
132
+ // perform special tasks for each kind of inclusion.
133
+ global $jetpack_autoloader_including_latest;
134
+ if ( ! isset( $jetpack_autoloader_including_latest ) ) {
135
+ // If the latest version global has been set but the including latest hasn't, it means that an
136
+ // older autoloader without support for the global is including us.
137
+ global $jetpack_autoloader_latest_version;
138
+ $jetpack_autoloader_including_latest = isset( $jetpack_autoloader_latest_version );
139
+ }
140
+ }
141
+ }
vendor/automattic/jetpack-autoloader/src/class-hook-manager.php ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /* HEADER */ // phpcs:ignore
3
+
4
+ /**
5
+ * Allows the latest autoloader to register hooks that can be removed when the autoloader is reset.
6
+ */
7
+ class Hook_Manager {
8
+
9
+ /**
10
+ * An array containing all of the hooks that we've registered.
11
+ *
12
+ * @var array
13
+ */
14
+ private $registered_hooks;
15
+
16
+ /**
17
+ * The constructor.
18
+ */
19
+ public function __construct() {
20
+ $this->registered_hooks = array();
21
+ }
22
+
23
+ /**
24
+ * Adds an action to WordPress and registers it internally.
25
+ *
26
+ * @param string $tag The name of the action which is hooked.
27
+ * @param callable $callable The function to call.
28
+ * @param int $priority Used to specify the priority of the action.
29
+ * @param int $accepted_args Used to specify the number of arguments the callable accepts.
30
+ */
31
+ public function add_action( $tag, $callable, $priority = 10, $accepted_args = 1 ) {
32
+ $this->registered_hooks[ $tag ][] = array(
33
+ 'priority' => $priority,
34
+ 'callable' => $callable,
35
+ );
36
+
37
+ add_action( $tag, $callable, $priority, $accepted_args );
38
+ }
39
+
40
+ /**
41
+ * Adds a filter to WordPress and registers it internally.
42
+ *
43
+ * @param string $tag The name of the filter which is hooked.
44
+ * @param callable $callable The function to call.
45
+ * @param int $priority Used to specify the priority of the filter.
46
+ * @param int $accepted_args Used to specify the number of arguments the callable accepts.
47
+ */
48
+ public function add_filter( $tag, $callable, $priority = 10, $accepted_args = 1 ) {
49
+ $this->registered_hooks[ $tag ][] = array(
50
+ 'priority' => $priority,
51
+ 'callable' => $callable,
52
+ );
53
+
54
+ add_filter( $tag, $callable, $priority, $accepted_args );
55
+ }
56
+
57
+ /**
58
+ * Removes all of the registered hooks.
59
+ */
60
+ public function reset() {
61
+ foreach ( $this->registered_hooks as $tag => $hooks ) {
62
+ foreach ( $hooks as $hook ) {
63
+ remove_filter( $tag, $hook['callable'], $hook['priority'] );
64
+ }
65
+ }
66
+ $this->registered_hooks = array();
67
+ }
68
+ }
vendor/automattic/jetpack-autoloader/src/class-latest-autoloader-guard.php ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /* HEADER */ // phpcs:ignore
3
+
4
+ /**
5
+ * This class ensures that we're only executing the latest autoloader.
6
+ */
7
+ class Latest_Autoloader_Guard {
8
+
9
+ /**
10
+ * The Plugins_Handler instance.
11
+ *
12
+ * @var Plugins_Handler
13
+ */
14
+ private $plugins_handler;
15
+
16
+ /**
17
+ * The Autoloader_Handler instance.
18
+ *
19
+ * @var Autoloader_Handler
20
+ */
21
+ private $autoloader_handler;
22
+
23
+ /**
24
+ * The Autoloader_locator instance.
25
+ *
26
+ * @var Autoloader_Locator
27
+ */
28
+ private $autoloader_locator;
29
+
30
+ /**
31
+ * The constructor.
32
+ *
33
+ * @param Plugins_Handler $plugins_handler The Plugins_Handler instance.
34
+ * @param Autoloader_Handler $autoloader_handler The Autoloader_Handler instance.
35
+ * @param Autoloader_Locator $autoloader_locator The Autoloader_Locator instance.
36
+ */
37
+ public function __construct( $plugins_handler, $autoloader_handler, $autoloader_locator ) {
38
+ $this->plugins_handler = $plugins_handler;
39
+ $this->autoloader_handler = $autoloader_handler;
40
+ $this->autoloader_locator = $autoloader_locator;
41
+ }
42
+
43
+ /**
44
+ * Indicates whether or not the autoloader should be initialized. Note that this function
45
+ * has the side-effect of actually loading the latest autoloader in the event that this
46
+ * is not it.
47
+ *
48
+ * @param string $current_plugin The current plugin we're checking.
49
+ * @param string[] $plugins The active plugins to check for autoloaders in.
50
+ *
51
+ * @return bool True if we should stop initialization, otherwise false.
52
+ */
53
+ public function should_stop_init( $current_plugin, $plugins ) {
54
+ global $jetpack_autoloader_including_latest;
55
+ global $jetpack_autoloader_latest_version;
56
+
57
+ // When we're being included from an older autoloader we need to
58
+ // reset the latest version so that the new autoloader can look
59
+ // for the latest autoloader again.
60
+ if ( $jetpack_autoloader_including_latest ) {
61
+ $jetpack_autoloader_latest_version = null;
62
+ }
63
+
64
+ // We need to reset the autoloader when the plugins change because
65
+ // that means the autoloader was generated with a different list.
66
+ if ( $this->plugins_handler->have_plugins_changed( $plugins ) ) {
67
+ $this->autoloader_handler->reset_autoloader();
68
+ }
69
+
70
+ // Don't bother initializing the autoloader if it already has been.
71
+ if ( isset( $jetpack_autoloader_latest_version ) ) {
72
+ return true;
73
+ }
74
+
75
+ $latest_plugin = $this->autoloader_locator->find_latest_autoloader( $plugins, $jetpack_autoloader_latest_version );
76
+ if ( isset( $latest_plugin ) && $latest_plugin !== $current_plugin ) {
77
+ $jetpack_autoloader_including_latest = true;
78
+ require $this->autoloader_locator->get_autoloader_path( $latest_plugin );
79
+ $jetpack_autoloader_including_latest = false;
80
+ return true;
81
+ }
82
+
83
+ return false;
84
+ }
85
+ }
vendor/automattic/jetpack-autoloader/src/{class-manifest-handler.php → class-manifest-reader.php} RENAMED
@@ -2,16 +2,9 @@
2
  /* HEADER */ // phpcs:ignore
3
 
4
  /**
5
- * This class selects the most recent version of a registered path.
6
  */
7
- class Manifest_Handler {
8
-
9
- /**
10
- * An array of the active plugin paths we want to search.
11
- *
12
- * @var array
13
- */
14
- private $active_plugin_paths;
15
 
16
  /**
17
  * The Version_Selector object.
@@ -23,28 +16,27 @@ class Manifest_Handler {
23
  /**
24
  * The constructor.
25
  *
26
- * @param array $active_plugin_paths An array of the active plugin paths we want to search.
27
  * @param Version_Selector $version_selector The Version_Selector object.
28
  */
29
- public function __construct( $active_plugin_paths, $version_selector ) {
30
- $this->active_plugin_paths = $active_plugin_paths;
31
- $this->version_selector = $version_selector;
32
  }
33
 
34
  /**
35
- * Registers all of the paths in a given manifest.
36
  *
 
37
  * @param string $manifest_path The path that we're loading the manifest from in each plugin.
38
  * @param array $path_map The path map to add the contents of the manifests to.
39
  *
40
  * @return array $path_map The path map we've built using the manifests in each plugin.
41
  */
42
- public function register_plugin_manifests( $manifest_path, &$path_map ) {
43
  $file_paths = array_map(
44
  function ( $path ) use ( $manifest_path ) {
45
  return trailingslashit( $path ) . $manifest_path;
46
  },
47
- $this->active_plugin_paths
48
  );
49
 
50
  foreach ( $file_paths as $path ) {
2
  /* HEADER */ // phpcs:ignore
3
 
4
  /**
5
+ * This class reads autoloader manifest files.
6
  */
7
+ class Manifest_Reader {
 
 
 
 
 
 
 
8
 
9
  /**
10
  * The Version_Selector object.
16
  /**
17
  * The constructor.
18
  *
 
19
  * @param Version_Selector $version_selector The Version_Selector object.
20
  */
21
+ public function __construct( $version_selector ) {
22
+ $this->version_selector = $version_selector;
 
23
  }
24
 
25
  /**
26
+ * Reads all of the manifests in the given plugin paths.
27
  *
28
+ * @param array $plugin_paths The paths to the plugins we're loading the manifest in.
29
  * @param string $manifest_path The path that we're loading the manifest from in each plugin.
30
  * @param array $path_map The path map to add the contents of the manifests to.
31
  *
32
  * @return array $path_map The path map we've built using the manifests in each plugin.
33
  */
34
+ public function read_manifests( $plugin_paths, $manifest_path, &$path_map ) {
35
  $file_paths = array_map(
36
  function ( $path ) use ( $manifest_path ) {
37
  return trailingslashit( $path ) . $manifest_path;
38
  },
39
+ $plugin_paths
40
  );
41
 
42
  foreach ( $file_paths as $path ) {
vendor/automattic/jetpack-autoloader/src/class-path-processor.php ADDED
@@ -0,0 +1,182 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /* HEADER */ // phpcs:ignore
3
+
4
+ /**
5
+ * This class handles dealing with paths for the autoloader.
6
+ */
7
+ class Path_Processor {
8
+ /**
9
+ * Given a path this will replace any of the path constants with a token to represent it.
10
+ *
11
+ * @param string $path The path we want to process.
12
+ * @return string The tokenized path.
13
+ */
14
+ public function tokenize_path_constants( $path ) {
15
+ $path = wp_normalize_path( $path );
16
+
17
+ $constants = $this->get_normalized_constants();
18
+ foreach ( $constants as $constant => $constant_path ) {
19
+ $len = strlen( $constant_path );
20
+ if ( substr( $path, 0, $len ) !== $constant_path ) {
21
+ continue;
22
+ }
23
+
24
+ return substr_replace( $path, '{{' . $constant . '}}', 0, $len );
25
+ }
26
+
27
+ return $path;
28
+ }
29
+
30
+ /**
31
+ * Given a path this will replace any of the path constant tokens with the expanded path.
32
+ *
33
+ * @param string $tokenized_path The path we want to process.
34
+ * @return string The expanded path.
35
+ */
36
+ public function untokenize_path_constants( $tokenized_path ) {
37
+ $tokenized_path = wp_normalize_path( $tokenized_path );
38
+
39
+ $constants = $this->get_normalized_constants();
40
+ foreach ( $constants as $constant => $constant_path ) {
41
+ $constant = '{{' . $constant . '}}';
42
+
43
+ $len = strlen( $constant );
44
+ if ( substr( $tokenized_path, 0, $len ) !== $constant ) {
45
+ continue;
46
+ }
47
+
48
+ return $this->get_real_path( substr_replace( $tokenized_path, $constant_path, 0, $len ) );
49
+ }
50
+
51
+ return $tokenized_path;
52
+ }
53
+
54
+ /**
55
+ * Given a file and an array of places it might be, this will find the absolute path and return it.
56
+ *
57
+ * @param string $file The plugin or theme file to resolve.
58
+ * @param array $directories_to_check The directories we should check for the file if it isn't an absolute path.
59
+ * @return string|false Returns the absolute path to the directory, otherwise false.
60
+ */
61
+ public function find_directory_with_autoloader( $file, $directories_to_check ) {
62
+ $file = wp_normalize_path( $file );
63
+
64
+ if ( ! $this->is_absolute_path( $file ) ) {
65
+ $file = $this->find_absolute_plugin_path( $file, $directories_to_check );
66
+ if ( ! isset( $file ) ) {
67
+ return false;
68
+ }
69
+ }
70
+
71
+ // We need the real path for consistency with __DIR__ paths.
72
+ $file = $this->get_real_path( $file );
73
+
74
+ // phpcs:disable WordPress.PHP.NoSilencedErrors.Discouraged
75
+ $directory = @is_file( $file ) ? dirname( $file ) : $file;
76
+ if ( ! @is_file( $directory . '/vendor/composer/jetpack_autoload_classmap.php' ) ) {
77
+ return false;
78
+ }
79
+ // phpcs:enable WordPress.PHP.NoSilencedErrors.Discouraged
80
+
81
+ return $directory;
82
+ }
83
+
84
+ /**
85
+ * Fetches an array of normalized paths keyed by the constant they came from.
86
+ *
87
+ * @return string[] The normalized paths keyed by the constant.
88
+ */
89
+ private function get_normalized_constants() {
90
+ $raw_constants = array(
91
+ // Order the constants from most-specific to least-specific.
92
+ 'WP_PLUGIN_DIR',
93
+ 'WPMU_PLUGIN_DIR',
94
+ 'WP_CONTENT_DIR',
95
+ 'ABSPATH',
96
+ );
97
+
98
+ $constants = array();
99
+ foreach ( $raw_constants as $raw ) {
100
+ if ( ! defined( $raw ) ) {
101
+ continue;
102
+ }
103
+
104
+ $path = wp_normalize_path( constant( $raw ) );
105
+ if ( isset( $path ) ) {
106
+ $constants[ $raw ] = $path;
107
+ }
108
+ }
109
+
110
+ return $constants;
111
+ }
112
+
113
+ /**
114
+ * Indicates whether or not a path is absolute.
115
+ *
116
+ * @param string $path The path to check.
117
+ * @return bool True if the path is absolute, otherwise false.
118
+ */
119
+ private function is_absolute_path( $path ) {
120
+ if ( 0 === strlen( $path ) || '.' === $path[0] ) {
121
+ return false;
122
+ }
123
+
124
+ // Absolute paths on Windows may begin with a drive letter.
125
+ if ( preg_match( '/^[a-zA-Z]:[\/\\\\]/', $path ) ) {
126
+ return true;
127
+ }
128
+
129
+ // A path starting with / or \ is absolute; anything else is relative.
130
+ return ( '/' === $path[0] || '\\' === $path[0] );
131
+ }
132
+
133
+ /**
134
+ * Given a file and a list of directories to check, this method will try to figure out
135
+ * the absolute path to the file in question.
136
+ *
137
+ * @param string $normalized_path The normalized path to the plugin or theme file to resolve.
138
+ * @param array $directories_to_check The directories we should check for the file if it isn't an absolute path.
139
+ *
140
+ * @return string|null The absolute path to the plugin file, otherwise null.
141
+ */
142
+ private function find_absolute_plugin_path( $normalized_path, $directories_to_check ) {
143
+ // We're only able to find the absolute path for plugin/theme PHP files.
144
+ if ( ! is_string( $normalized_path ) || '.php' !== substr( $normalized_path, -4 ) ) {
145
+ return null;
146
+ }
147
+
148
+ foreach ( $directories_to_check as $directory ) {
149
+ $normalized_check = wp_normalize_path( trailingslashit( $directory ) ) . $normalized_path;
150
+ // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged
151
+ if ( @is_file( $normalized_check ) ) {
152
+ return $normalized_check;
153
+ }
154
+ }
155
+
156
+ return null;
157
+ }
158
+
159
+ /**
160
+ * Given a path this will figure out the real path that we should be using.
161
+ *
162
+ * @param string $path The path to resolve.
163
+ *
164
+ * @return string The resolved path.
165
+ */
166
+ private function get_real_path( $path ) {
167
+ // We want to resolve symbolic links for consistency with __DIR__ paths.
168
+ // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged
169
+ $real_path = @realpath( $path );
170
+ if ( false === $real_path ) {
171
+ // Let the autoloader deal with paths that don't exist.
172
+ $real_path = $path;
173
+ }
174
+
175
+ // Using realpath will make it platform-specific so we must normalize it after.
176
+ if ( $path !== $real_path ) {
177
+ $real_path = wp_normalize_path( $real_path );
178
+ }
179
+
180
+ return $real_path;
181
+ }
182
+ }
vendor/automattic/jetpack-autoloader/src/class-plugin-locator.php ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /* HEADER */ // phpcs:ignore
3
+
4
+ /**
5
+ * This class scans the WordPress installation to find active plugins.
6
+ */
7
+ class Plugin_Locator {
8
+
9
+ /**
10
+ * The path processor for finding plugin paths.
11
+ *
12
+ * @var Path_Processor
13
+ */
14
+ private $path_processor;
15
+
16
+ /**
17
+ * The constructor.
18
+ *
19
+ * @param Path_Processor $path_processor The Path_Processor instance.
20
+ */
21
+ public function __construct( $path_processor ) {
22
+ $this->path_processor = $path_processor;
23
+ }
24
+
25
+ /**
26
+ * Finds the path to the current plugin.
27
+ *
28
+ * @return string $path The path to the current plugin.
29
+ * @throws \RuntimeException If the current plugin does not have an autoloader.
30
+ */
31
+ public function find_current_plugin() {
32
+ // Escape from `vendor/__DIR__` to root plugin directory.
33
+ $plugin_directory = dirname( dirname( __DIR__ ) );
34
+
35
+ // Use the path processor to ensure that this is an autoloader we're referencing.
36
+ $path = $this->path_processor->find_directory_with_autoloader( $plugin_directory, array() );
37
+ if ( false === $path ) {
38
+ throw new \RuntimeException( 'Failed to locate plugin ' . $plugin_directory );
39
+ }
40
+
41
+ return $path;
42
+ }
43
+
44
+ /**
45
+ * Checks a given option for plugin paths.
46
+ *
47
+ * @param string $option_name The option that we want to check for plugin information.
48
+ * @param bool $site_option Indicates whether or not we want to check the site option.
49
+ *
50
+ * @return array $plugin_paths The list of absolute paths we've found.
51
+ */
52
+ public function find_using_option( $option_name, $site_option = false ) {
53
+ $raw = $site_option ? get_site_option( $option_name, array() ) : get_option( $option_name, array() );
54
+ if ( empty( $raw ) ) {
55
+ return array();
56
+ }
57
+
58
+ return $this->convert_plugins_to_paths( $raw );
59
+ }
60
+
61
+ /**
62
+ * Checks for plugins that are being activated in this request and returns all that it finds.
63
+ *
64
+ * @return array $plugin_paths The list of absolute paths we've found.
65
+ */
66
+ public function find_activating_this_request() {
67
+ // phpcs:disable WordPress.Security.NonceVerification.Recommended
68
+
69
+ /**
70
+ * Note: we're not actually checking the nonce here because it's too early
71
+ * in the execution. The pluggable functions are not yet loaded to give
72
+ * plugins a chance to plug their versions. Therefore we're doing the bare
73
+ * minimum: checking whether the nonce exists and it's in the right place.
74
+ * The request will fail later if the nonce doesn't pass the check.
75
+ */
76
+ if ( empty( $_REQUEST['_wpnonce'] ) ) {
77
+ return array();
78
+ }
79
+
80
+ $plugin_slugs = array();
81
+
82
+ $action = isset( $_REQUEST['action'] ) ? wp_unslash( $_REQUEST['action'] ) : false;
83
+ switch ( $action ) {
84
+ case 'activate':
85
+ if ( empty( $_REQUEST['plugin'] ) ) {
86
+ break;
87
+ }
88
+
89
+ $plugin_slugs[] = wp_unslash( $_REQUEST['plugin'] );
90
+ break;
91
+
92
+ case 'activate-selected':
93
+ if ( empty( $_REQUEST['checked'] ) ) {
94
+ break;
95
+ }
96
+
97
+ $plugin_slugs = wp_unslash( $_REQUEST['checked'] );
98
+ break;
99
+ }
100
+
101
+ return $this->convert_plugins_to_paths( $plugin_slugs );
102
+ }
103
+
104
+ /**
105
+ * Given an array of plugin slugs or paths, this will convert them to absolute paths and filter
106
+ * out the plugins that are not directory plugins. Note that array keys will also be included
107
+ * if they are plugin paths!
108
+ *
109
+ * @param string[] $plugins Plugin paths or slugs to filter.
110
+ *
111
+ * @return string[]
112
+ */
113
+ private function convert_plugins_to_paths( $plugins ) {
114
+ // We're going to look for plugins in the standard directories.
115
+ $path_constants = array( WP_PLUGIN_DIR, WPMU_PLUGIN_DIR );
116
+
117
+ $plugin_paths = array();
118
+ foreach ( $plugins as $key => $value ) {
119
+ $path = $this->path_processor->find_directory_with_autoloader( $key, $path_constants );
120
+ if ( $path ) {
121
+ $plugin_paths[] = $path;
122
+ }
123
+
124
+ $path = $this->path_processor->find_directory_with_autoloader( $value, $path_constants );
125
+ if ( $path ) {
126
+ $plugin_paths[] = $path;
127
+ }
128
+ }
129
+
130
+ return $plugin_paths;
131
+ }
132
+ }
vendor/automattic/jetpack-autoloader/src/class-plugins-handler.php CHANGED
@@ -2,128 +2,149 @@
2
  /* HEADER */ // phpcs:ignore
3
 
4
  /**
5
- * This class provides information about the current plugin and the site's active plugins.
6
  */
7
  class Plugins_Handler {
8
-
9
  /**
10
- * Returns an array containing the paths of all active plugins and all known activating plugins.
11
- *
12
- * @return array An array of plugin paths as strings or an empty array.
13
  */
14
- public function get_all_active_plugins_paths() {
15
- global $jetpack_autoloader_activating_plugins_paths;
16
-
17
- $active_plugins_paths = $this->get_active_plugins_paths();
18
- $multisite_plugins_paths = $this->get_multisite_plugins_paths();
19
- $activating_plugins_paths = $this->get_plugins_activating_via_request();
20
-
21
- return array_unique(
22
- array_merge(
23
- $active_plugins_paths,
24
- $activating_plugins_paths,
25
- $multisite_plugins_paths,
26
- (array) $jetpack_autoloader_activating_plugins_paths
27
- )
28
- );
29
- }
30
 
31
  /**
32
- * Returns an array containing the paths of the active sitewide plugins in a multisite environment.
33
  *
34
- * @return array The paths of the active sitewide plugins or an empty array.
35
  */
36
- protected function get_multisite_plugins_paths() {
37
- $plugin_slugs = is_multisite()
38
- ? array_keys( get_site_option( 'active_sitewide_plugins', array() ) )
39
- : array();
40
-
41
- $plugin_slugs = array_filter( $plugin_slugs, array( $this, 'is_directory_plugin' ) );
42
- return array_map( array( $this, 'create_plugin_path' ), $plugin_slugs );
43
- }
44
 
45
  /**
46
- * Returns an array containing the paths of the currently active plugins.
47
  *
48
- * @return array The active plugins' paths or an empty array.
49
  */
50
- protected function get_active_plugins_paths() {
51
- $plugin_slugs = (array) get_option( 'active_plugins', array() );
52
- $plugin_slugs = array_filter( $plugin_slugs, array( $this, 'is_directory_plugin' ) );
53
- return array_map( array( $this, 'create_plugin_path' ), $plugin_slugs );
54
- }
55
 
56
  /**
57
- * Adds the plugin directory from the WP_PLUGIN_DIR constant to the plugin slug.
58
  *
59
- * @param string $plugin_slug The plugin slug.
 
60
  */
61
- private function create_plugin_path( $plugin_slug ) {
62
- $plugin_dir = str_replace( '\\', '/', WP_PLUGIN_DIR );
63
- return trailingslashit( $plugin_dir ) . substr( $plugin_slug, 0, strrpos( $plugin_slug, '/' ) );
64
  }
65
 
66
  /**
67
- * Ensure the plugin has its own directory and not a single-file plugin.
68
  *
69
- * @param string $plugin Plugin name, may be prefixed with "/".
70
- *
71
- * @return bool
72
  */
73
- public function is_directory_plugin( $plugin ) {
74
- return strlen( $plugin ) > 1 && false !== strpos( $plugin, '/', 1 );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  }
76
 
77
  /**
78
- * Returns an array containing the names of plugins that are activating via a request.
79
  *
80
- * @return array An array of names of the activating plugins or an empty array.
81
  */
82
- private function get_plugins_activating_via_request() {
83
-
84
- // phpcs:disable WordPress.Security.NonceVerification.Recommended
85
- // phpcs:disable WordPress.Security.ValidatedSanitizedInput.MissingUnslash
86
- // phpcs:disable WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
87
-
88
- $action = isset( $_REQUEST['action'] ) ? $_REQUEST['action'] : false;
89
- $plugin = isset( $_REQUEST['plugin'] ) ? $_REQUEST['plugin'] : false;
90
- $nonce = isset( $_REQUEST['_wpnonce'] ) ? $_REQUEST['_wpnonce'] : false;
91
-
92
- /**
93
- * Note: we're not actually checking the nonce here becase it's too early
94
- * in the execution. The pluggable functions are not yet loaded to give
95
- * plugins a chance to plug their versions. Therefore we're doing the bare
96
- * minimum: checking whether the nonce exists and it's in the right place.
97
- * The request will fail later if the nonce doesn't pass the check.
98
- */
99
-
100
- // In case of a single plugin activation there will be a plugin slug.
101
- if ( 'activate' === $action && ! empty( $nonce ) ) {
102
- return array( $this->create_plugin_path( wp_unslash( $plugin ) ) );
103
  }
104
 
105
- $plugins = isset( $_REQUEST['checked'] ) ? $_REQUEST['checked'] : array();
 
 
106
 
107
- // In case of bulk activation there will be an array of plugins.
108
- if ( 'activate-selected' === $action && ! empty( $nonce ) ) {
109
- $plugin_slugs = array_map( 'wp_unslash', $plugins );
110
- return array_map( array( $this, 'create_plugin_path' ), $plugin_slugs );
111
- }
 
 
 
112
 
113
- // phpcs:enable WordPress.Security.NonceVerification.Recommended
114
- // phpcs:enable WordPress.Security.ValidatedSanitizedInput.MissingUnslash
115
- // phpcs:enable WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
116
- return array();
117
  }
118
 
119
  /**
120
- * Returns the path of the current plugin.
 
 
 
 
121
  *
122
- * @return string The path of the current plugin.
123
  */
124
- public function get_current_plugin_path() {
125
- $vendor_path = str_replace( '\\', '/', dirname( __DIR__ ) );
126
- // Path to the plugin's folder (the parent of the vendor/jetpack-autoloader folder).
127
- return substr( $vendor_path, 0, strrpos( $vendor_path, '/' ) );
 
 
 
 
 
 
 
 
 
 
 
128
  }
129
  }
2
  /* HEADER */ // phpcs:ignore
3
 
4
  /**
5
+ * This class handles locating and caching all of the active plugins.
6
  */
7
  class Plugins_Handler {
 
8
  /**
9
+ * The transient key for plugin paths.
 
 
10
  */
11
+ const TRANSIENT_KEY = 'jetpack_autoloader_plugin_paths';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
 
13
  /**
14
+ * The locator for finding plugins in different locations.
15
  *
16
+ * @var Plugin_Locator
17
  */
18
+ private $plugin_locator;
 
 
 
 
 
 
 
19
 
20
  /**
21
+ * The processor for transforming cached paths.
22
  *
23
+ * @var Path_Processor
24
  */
25
+ private $path_processor;
 
 
 
 
26
 
27
  /**
28
+ * The constructor.
29
  *
30
+ * @param Plugin_Locator $plugin_locator The locator for finding active plugins.
31
+ * @param Path_Processor $path_processor The processor for transforming cached paths.
32
  */
33
+ public function __construct( $plugin_locator, $path_processor ) {
34
+ $this->plugin_locator = $plugin_locator;
35
+ $this->path_processor = $path_processor;
36
  }
37
 
38
  /**
39
+ * Gets all of the active plugins we can find.
40
  *
41
+ * @return string[]
 
 
42
  */
43
+ public function get_active_plugins() {
44
+ global $jetpack_autoloader_activating_plugins_paths;
45
+ global $jetpack_autoloader_including_latest;
46
+
47
+ // We're going to build a unique list of plugins from a few different sources
48
+ // to find all of our "active" plugins. While we need to return an integer
49
+ // array, we're going to use an associative array internally to reduce
50
+ // the amount of time that we're going to spend checking uniqueness
51
+ // and merging different arrays together to form the output.
52
+ $active_plugins = array();
53
+
54
+ // Make sure that plugins which have activated this request are considered as "active" even though
55
+ // they probably won't be present in any option.
56
+ if ( is_array( $jetpack_autoloader_activating_plugins_paths ) ) {
57
+ foreach ( $jetpack_autoloader_activating_plugins_paths as $path ) {
58
+ $active_plugins[ $path ] = $path;
59
+ }
60
+ }
61
+
62
+ // This option contains all of the plugins that have been activated.
63
+ $plugins = $this->plugin_locator->find_using_option( 'active_plugins' );
64
+ foreach ( $plugins as $path ) {
65
+ $active_plugins[ $path ] = $path;
66
+ }
67
+
68
+ // This option contains all of the multisite plugins that have been activated.
69
+ if ( is_multisite() ) {
70
+ $plugins = $this->plugin_locator->find_using_option( 'active_sitewide_plugins', true );
71
+ foreach ( $plugins as $path ) {
72
+ $active_plugins[ $path ] = $path;
73
+ }
74
+ }
75
+
76
+ $plugins = $this->plugin_locator->find_activating_this_request();
77
+ foreach ( $plugins as $path ) {
78
+ $active_plugins[ $path ] = $path;
79
+ }
80
+
81
+ // When the current plugin isn't considered "active" there's a problem.
82
+ // Since we're here, the plugin is active and currently being loaded.
83
+ // We can support this case (mu-plugins and non-standard activation)
84
+ // by adding the current plugin to the active list and marking it
85
+ // as an unknown (activating) plugin. This also has the benefit
86
+ // of causing a reset because the active plugins list has
87
+ // been changed since it was saved in the global.
88
+ $current_plugin = $this->plugin_locator->find_current_plugin();
89
+ if ( ! in_array( $current_plugin, $active_plugins, true ) && ! $jetpack_autoloader_including_latest ) {
90
+ $active_plugins[ $current_plugin ] = $current_plugin;
91
+ $jetpack_autoloader_activating_plugins_paths[] = $current_plugin;
92
+ }
93
+
94
+ // Transform the array so that we don't have to worry about the keys interacting with other array types later.
95
+ return array_values( $active_plugins );
96
  }
97
 
98
  /**
99
+ * Gets all of the cached plugins if there are any.
100
  *
101
+ * @return string[]
102
  */
103
+ public function get_cached_plugins() {
104
+ $cached = get_transient( self::TRANSIENT_KEY );
105
+ if ( false === $cached ) {
106
+ return array();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
107
  }
108
 
109
+ // We need to expand the tokens to an absolute path for this webserver.
110
+ return array_map( array( $this->path_processor, 'untokenize_path_constants' ), $cached );
111
+ }
112
 
113
+ /**
114
+ * Saves the plugin list to the cache.
115
+ *
116
+ * @param array $plugins The plugin list to save to the cache.
117
+ */
118
+ public function cache_plugins( $plugins ) {
119
+ // We store the paths in a tokenized form so that that webservers with different absolute paths don't break.
120
+ $plugins = array_map( array( $this->path_processor, 'tokenize_path_constants' ), $plugins );
121
 
122
+ set_transient( self::TRANSIENT_KEY, $plugins );
 
 
 
123
  }
124
 
125
  /**
126
+ * Checks to see whether or not the plugin list given has changed when compared to the
127
+ * shared `$jetpack_autoloader_cached_plugin_paths` global. This allows us to deal
128
+ * with cases where the active list may change due to filtering..
129
+ *
130
+ * @param string[] $plugins The plugins list to check against the global cache.
131
  *
132
+ * @return bool True if the plugins have changed, otherwise false.
133
  */
134
+ public function have_plugins_changed( $plugins ) {
135
+ global $jetpack_autoloader_cached_plugin_paths;
136
+
137
+ // When no autoloader has executed there is nothing to have changed.
138
+ if ( ! isset( $jetpack_autoloader_cached_plugin_paths ) ) {
139
+ $jetpack_autoloader_cached_plugin_paths = $plugins;
140
+ return false;
141
+ }
142
+
143
+ if ( $jetpack_autoloader_cached_plugin_paths !== $plugins ) {
144
+ $jetpack_autoloader_cached_plugin_paths = $plugins;
145
+ return true;
146
+ }
147
+
148
+ return false;
149
  }
150
  }
vendor/automattic/jetpack-autoloader/src/class-version-selector.php CHANGED
@@ -15,7 +15,7 @@ class Version_Selector {
15
  * @param String $compare_version The package version that is being evaluated to
16
  * determine if the version needs to be updated.
17
  *
18
- * @return Boolean Returns true if the selected package version should be updated,
19
  * else false.
20
  */
21
  public function is_version_update_required( $selected_version, $compare_version ) {
@@ -49,7 +49,7 @@ class Version_Selector {
49
  *
50
  * @param String $version The package version.
51
  *
52
- * @return Boolean True if the version is a dev version, else false.
53
  */
54
  private function is_package_version_dev( $version ) {
55
  if ( 'dev-' === substr( $version, 0, 4 ) || '9999999-dev' === $version ) {
15
  * @param String $compare_version The package version that is being evaluated to
16
  * determine if the version needs to be updated.
17
  *
18
+ * @return bool Returns true if the selected package version should be updated,
19
  * else false.
20
  */
21
  public function is_version_update_required( $selected_version, $compare_version ) {
49
  *
50
  * @param String $version The package version.
51
  *
52
+ * @return bool True if the version is a dev version, else false.
53
  */
54
  private function is_package_version_dev( $version ) {
55
  if ( 'dev-' === substr( $version, 0, 4 ) || '9999999-dev' === $version ) {
vendor/automattic/jetpack-autoloader/src/functions.php DELETED
@@ -1,66 +0,0 @@
1
- <?php
2
- /* HEADER */ // phpcs:ignore
3
-
4
- /**
5
- * Used for autoloading jetpack packages.
6
- *
7
- * @param string $class_name Class Name to load.
8
- *
9
- * @return Boolean Whether the class_name was found in the classmap.
10
- */
11
- function autoloader( $class_name ) {
12
- global $jetpack_autoloader_loader;
13
- if ( ! isset( $jetpack_autoloader_loader ) ) {
14
- return false;
15
- }
16
-
17
- $file = $jetpack_autoloader_loader->find_class_file( $class_name );
18
- if ( ! isset( $file ) ) {
19
- return false;
20
- }
21
-
22
- require_once $file;
23
- return true;
24
- }
25
-
26
- /**
27
- * Finds the latest installed autoloader. If this is the latest autoloader, sets
28
- * up the classmap and filemap.
29
- */
30
- function set_up_autoloader() {
31
- global $jetpack_autoloader_latest_version;
32
- global $jetpack_autoloader_loader;
33
-
34
- require_once __DIR__ . '/class-plugins-handler.php';
35
- require_once __DIR__ . '/class-version-selector.php';
36
- require_once __DIR__ . '/class-autoloader-locator.php';
37
- require_once __DIR__ . '/class-autoloader-handler.php';
38
-
39
- $plugins_handler = new Plugins_Handler();
40
- $version_selector = new Version_Selector();
41
- $autoloader_handler = new Autoloader_Handler(
42
- $plugins_handler->get_current_plugin_path(),
43
- $plugins_handler->get_all_active_plugins_paths(),
44
- new Autoloader_Locator( $version_selector ),
45
- $version_selector
46
- );
47
-
48
- // The autoloader must be reset when a plugin that was previously unknown is detected.
49
- if ( $autoloader_handler->should_autoloader_reset() ) {
50
- $jetpack_autoloader_latest_version = null;
51
- $jetpack_autoloader_loader = null;
52
- }
53
-
54
- if ( ! $autoloader_handler->is_latest_autoloader() || isset( $jetpack_autoloader_loader ) ) {
55
- return;
56
- }
57
-
58
- require_once __DIR__ . '/class-manifest-handler.php';
59
- require_once __DIR__ . '/class-version-loader.php';
60
-
61
- $jetpack_autoloader_loader = $autoloader_handler->build_autoloader();
62
- $autoloader_handler->update_autoloader_chain();
63
-
64
- // Now that the autoloader is ready we can load the files in the filemap safely.
65
- $jetpack_autoloader_loader->load_filemap();
66
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/composer/InstalledVersions.php CHANGED
@@ -19,19 +19,19 @@ private static $installed = array (
19
  'aliases' =>
20
  array (
21
  ),
22
- 'reference' => '6de8bda8bac5daced8e97eab2b9e333a3f3d38c8',
23
  'name' => 'vendidero/woocommerce-germanized',
24
  ),
25
  'versions' =>
26
  array (
27
  'automattic/jetpack-autoloader' =>
28
  array (
29
- 'pretty_version' => 'v2.6.0',
30
- 'version' => '2.6.0.0',
31
  'aliases' =>
32
  array (
33
  ),
34
- 'reference' => '47dde8dbca6b1e30f176725f2f748a9abefcaf58',
35
  ),
36
  'baltpeter/internetmarke-php' =>
37
  array (
@@ -103,25 +103,25 @@ private static $installed = array (
103
  'aliases' =>
104
  array (
105
  ),
106
- 'reference' => '6de8bda8bac5daced8e97eab2b9e333a3f3d38c8',
107
  ),
108
  'vendidero/woocommerce-germanized-dhl' =>
109
  array (
110
- 'pretty_version' => 'v1.4.3',
111
- 'version' => '1.4.3.0',
112
  'aliases' =>
113
  array (
114
  ),
115
- 'reference' => '4fc49fe886b2c0c7b9baa6e140047ce5f726fff8',
116
  ),
117
  'vendidero/woocommerce-germanized-shipments' =>
118
  array (
119
- 'pretty_version' => 'v1.4.2',
120
- 'version' => '1.4.2.0',
121
  'aliases' =>
122
  array (
123
  ),
124
- 'reference' => 'c9fd71a33b9731bcd7e7f674c0245c4c8ca67fc7',
125
  ),
126
  'vendidero/woocommerce-trusted-shops' =>
127
  array (
19
  'aliases' =>
20
  array (
21
  ),
22
+ 'reference' => '84e4400d2a91cfa883049ea2a8dedeb64cc1ead2',
23
  'name' => 'vendidero/woocommerce-germanized',
24
  ),
25
  'versions' =>
26
  array (
27
  'automattic/jetpack-autoloader' =>
28
  array (
29
+ 'pretty_version' => 'v2.7.1',
30
+ 'version' => '2.7.1.0',
31
  'aliases' =>
32
  array (
33
  ),
34
+ 'reference' => '5437697a56aefbdf707849b9833e1b36093d7a73',
35
  ),
36
  'baltpeter/internetmarke-php' =>
37
  array (
103
  'aliases' =>
104
  array (
105
  ),
106
+ 'reference' => '84e4400d2a91cfa883049ea2a8dedeb64cc1ead2',
107
  ),
108
  'vendidero/woocommerce-germanized-dhl' =>
109
  array (
110
+ 'pretty_version' => 'v1.4.4',
111
+ 'version' => '1.4.4.0',
112
  'aliases' =>
113
  array (
114
  ),
115
+ 'reference' => '26a5facb7abc4a5846264f76ec4cd863013e44c9',
116
  ),
117
  'vendidero/woocommerce-germanized-shipments' =>
118
  array (
119
+ 'pretty_version' => 'v1.4.3',
120
+ 'version' => '1.4.3.0',
121
  'aliases' =>
122
  array (
123
  ),
124
+ 'reference' => '7016b62ed7dc760a162cad19d572d081cdcb11cf',
125
  ),
126
  'vendidero/woocommerce-trusted-shops' =>
127
  array (
vendor/composer/autoload_classmap.php CHANGED
@@ -6,7 +6,296 @@ $vendorDir = dirname(dirname(__FILE__));
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
 
9
  'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php',
 
 
 
10
  'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  'FPDF' => $vendorDir . '/setasign/fpdf/fpdf.php',
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  );
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
+ 'Automattic\\Jetpack\\Autoloader\\AutoloadFileWriter' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadFileWriter.php',
10
  'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php',
11
+ 'Automattic\\Jetpack\\Autoloader\\AutoloadProcessor' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadProcessor.php',
12
+ 'Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin' => $vendorDir . '/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php',
13
+ 'Automattic\\Jetpack\\Autoloader\\ManifestGenerator' => $vendorDir . '/automattic/jetpack-autoloader/src/ManifestGenerator.php',
14
  'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
15
+ 'Composer\\Installers\\AglInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/AglInstaller.php',
16
+ 'Composer\\Installers\\AimeosInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/AimeosInstaller.php',
17
+ 'Composer\\Installers\\AnnotateCmsInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',
18
+ 'Composer\\Installers\\AsgardInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/AsgardInstaller.php',
19
+ 'Composer\\Installers\\AttogramInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/AttogramInstaller.php',
20
+ 'Composer\\Installers\\BaseInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/BaseInstaller.php',
21
+ 'Composer\\Installers\\BitrixInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/BitrixInstaller.php',
22
+ 'Composer\\Installers\\BonefishInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/BonefishInstaller.php',
23
+ 'Composer\\Installers\\CakePHPInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/CakePHPInstaller.php',
24
+ 'Composer\\Installers\\ChefInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/ChefInstaller.php',
25
+ 'Composer\\Installers\\CiviCrmInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/CiviCrmInstaller.php',
26
+ 'Composer\\Installers\\ClanCatsFrameworkInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php',
27
+ 'Composer\\Installers\\CockpitInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/CockpitInstaller.php',
28
+ 'Composer\\Installers\\CodeIgniterInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php',
29
+ 'Composer\\Installers\\Concrete5Installer' => $vendorDir . '/composer/installers/src/Composer/Installers/Concrete5Installer.php',
30
+ 'Composer\\Installers\\CraftInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/CraftInstaller.php',
31
+ 'Composer\\Installers\\CroogoInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/CroogoInstaller.php',
32
+ 'Composer\\Installers\\DecibelInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/DecibelInstaller.php',
33
+ 'Composer\\Installers\\DframeInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/DframeInstaller.php',
34
+ 'Composer\\Installers\\DokuWikiInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/DokuWikiInstaller.php',
35
+ 'Composer\\Installers\\DolibarrInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/DolibarrInstaller.php',
36
+ 'Composer\\Installers\\DrupalInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/DrupalInstaller.php',
37
+ 'Composer\\Installers\\ElggInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/ElggInstaller.php',
38
+ 'Composer\\Installers\\EliasisInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/EliasisInstaller.php',
39
+ 'Composer\\Installers\\ExpressionEngineInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php',
40
+ 'Composer\\Installers\\EzPlatformInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/EzPlatformInstaller.php',
41
+ 'Composer\\Installers\\FuelInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/FuelInstaller.php',
42
+ 'Composer\\Installers\\FuelphpInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/FuelphpInstaller.php',
43
+ 'Composer\\Installers\\GravInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/GravInstaller.php',
44
+ 'Composer\\Installers\\HuradInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/HuradInstaller.php',
45
+ 'Composer\\Installers\\ImageCMSInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/ImageCMSInstaller.php',
46
+ 'Composer\\Installers\\Installer' => $vendorDir . '/composer/installers/src/Composer/Installers/Installer.php',
47
+ 'Composer\\Installers\\ItopInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/ItopInstaller.php',
48
+ 'Composer\\Installers\\JoomlaInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/JoomlaInstaller.php',
49
+ 'Composer\\Installers\\KanboardInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/KanboardInstaller.php',
50
+ 'Composer\\Installers\\KirbyInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/KirbyInstaller.php',
51
+ 'Composer\\Installers\\KnownInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/KnownInstaller.php',
52
+ 'Composer\\Installers\\KodiCMSInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/KodiCMSInstaller.php',
53
+ 'Composer\\Installers\\KohanaInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/KohanaInstaller.php',
54
+ 'Composer\\Installers\\LanManagementSystemInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php',
55
+ 'Composer\\Installers\\LaravelInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/LaravelInstaller.php',
56
+ 'Composer\\Installers\\LavaLiteInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/LavaLiteInstaller.php',
57
+ 'Composer\\Installers\\LithiumInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/LithiumInstaller.php',
58
+ 'Composer\\Installers\\MODULEWorkInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php',
59
+ 'Composer\\Installers\\MODXEvoInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/MODXEvoInstaller.php',
60
+ 'Composer\\Installers\\MagentoInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/MagentoInstaller.php',
61
+ 'Composer\\Installers\\MajimaInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/MajimaInstaller.php',
62
+ 'Composer\\Installers\\MakoInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/MakoInstaller.php',
63
+ 'Composer\\Installers\\MantisBTInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/MantisBTInstaller.php',
64
+ 'Composer\\Installers\\MauticInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/MauticInstaller.php',
65
+ 'Composer\\Installers\\MayaInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/MayaInstaller.php',
66
+ 'Composer\\Installers\\MediaWikiInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/MediaWikiInstaller.php',
67
+ 'Composer\\Installers\\MicroweberInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/MicroweberInstaller.php',
68
+ 'Composer\\Installers\\ModxInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/ModxInstaller.php',
69
+ 'Composer\\Installers\\MoodleInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/MoodleInstaller.php',
70
+ 'Composer\\Installers\\OctoberInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/OctoberInstaller.php',
71
+ 'Composer\\Installers\\OntoWikiInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/OntoWikiInstaller.php',
72
+ 'Composer\\Installers\\OsclassInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/OsclassInstaller.php',
73
+ 'Composer\\Installers\\OxidInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/OxidInstaller.php',
74
+ 'Composer\\Installers\\PPIInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/PPIInstaller.php',
75
+ 'Composer\\Installers\\PhiftyInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/PhiftyInstaller.php',
76
+ 'Composer\\Installers\\PhpBBInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/PhpBBInstaller.php',
77
+ 'Composer\\Installers\\PimcoreInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/PimcoreInstaller.php',
78
+ 'Composer\\Installers\\PiwikInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/PiwikInstaller.php',
79
+ 'Composer\\Installers\\PlentymarketsInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php',
80
+ 'Composer\\Installers\\Plugin' => $vendorDir . '/composer/installers/src/Composer/Installers/Plugin.php',
81
+ 'Composer\\Installers\\PortoInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/PortoInstaller.php',
82
+ 'Composer\\Installers\\PrestashopInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/PrestashopInstaller.php',
83
+ 'Composer\\Installers\\PuppetInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/PuppetInstaller.php',
84
+ 'Composer\\Installers\\PxcmsInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/PxcmsInstaller.php',
85
+ 'Composer\\Installers\\RadPHPInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/RadPHPInstaller.php',
86
+ 'Composer\\Installers\\ReIndexInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/ReIndexInstaller.php',
87
+ 'Composer\\Installers\\Redaxo5Installer' => $vendorDir . '/composer/installers/src/Composer/Installers/Redaxo5Installer.php',
88
+ 'Composer\\Installers\\RedaxoInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/RedaxoInstaller.php',
89
+ 'Composer\\Installers\\RoundcubeInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/RoundcubeInstaller.php',
90
+ 'Composer\\Installers\\SMFInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/SMFInstaller.php',
91
+ 'Composer\\Installers\\ShopwareInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/ShopwareInstaller.php',
92
+ 'Composer\\Installers\\SilverStripeInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/SilverStripeInstaller.php',
93
+ 'Composer\\Installers\\SiteDirectInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/SiteDirectInstaller.php',
94
+ 'Composer\\Installers\\SyDESInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/SyDESInstaller.php',
95
+ 'Composer\\Installers\\SyliusInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/SyliusInstaller.php',
96
+ 'Composer\\Installers\\Symfony1Installer' => $vendorDir . '/composer/installers/src/Composer/Installers/Symfony1Installer.php',
97
+ 'Composer\\Installers\\TYPO3CmsInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php',
98
+ 'Composer\\Installers\\TYPO3FlowInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php',
99
+ 'Composer\\Installers\\TaoInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/TaoInstaller.php',
100
+ 'Composer\\Installers\\TheliaInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/TheliaInstaller.php',
101
+ 'Composer\\Installers\\TuskInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/TuskInstaller.php',
102
+ 'Composer\\Installers\\UserFrostingInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/UserFrostingInstaller.php',
103
+ 'Composer\\Installers\\VanillaInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/VanillaInstaller.php',
104
+ 'Composer\\Installers\\VgmcpInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/VgmcpInstaller.php',
105
+ 'Composer\\Installers\\WHMCSInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/WHMCSInstaller.php',
106
+ 'Composer\\Installers\\WolfCMSInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/WolfCMSInstaller.php',
107
+ 'Composer\\Installers\\WordPressInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/WordPressInstaller.php',
108
+ 'Composer\\Installers\\YawikInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/YawikInstaller.php',
109
+ 'Composer\\Installers\\ZendInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/ZendInstaller.php',
110
+ 'Composer\\Installers\\ZikulaInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/ZikulaInstaller.php',
111
+ 'DeepCopy\\DeepCopy' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/DeepCopy.php',
112
+ 'DeepCopy\\Exception\\CloneException' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Exception/CloneException.php',
113
+ 'DeepCopy\\Exception\\PropertyException' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Exception/PropertyException.php',
114
+ 'DeepCopy\\Filter\\Doctrine\\DoctrineCollectionFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineCollectionFilter.php',
115
+ 'DeepCopy\\Filter\\Doctrine\\DoctrineEmptyCollectionFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineEmptyCollectionFilter.php',
116
+ 'DeepCopy\\Filter\\Doctrine\\DoctrineProxyFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.php',
117
+ 'DeepCopy\\Filter\\Filter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Filter.php',
118
+ 'DeepCopy\\Filter\\KeepFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/KeepFilter.php',
119
+ 'DeepCopy\\Filter\\ReplaceFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/ReplaceFilter.php',
120
+ 'DeepCopy\\Filter\\SetNullFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/SetNullFilter.php',
121
+ 'DeepCopy\\Matcher\\Doctrine\\DoctrineProxyMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php',
122
+ 'DeepCopy\\Matcher\\Matcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/Matcher.php',
123
+ 'DeepCopy\\Matcher\\PropertyMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyMatcher.php',
124
+ 'DeepCopy\\Matcher\\PropertyNameMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyNameMatcher.php',
125
+ 'DeepCopy\\Matcher\\PropertyTypeMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyTypeMatcher.php',
126
+ 'DeepCopy\\Reflection\\ReflectionHelper' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Reflection/ReflectionHelper.php',
127
+ 'DeepCopy\\TypeFilter\\Date\\DateIntervalFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Date/DateIntervalFilter.php',
128
+ 'DeepCopy\\TypeFilter\\ReplaceFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ReplaceFilter.php',
129
+ 'DeepCopy\\TypeFilter\\ShallowCopyFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ShallowCopyFilter.php',
130
+ 'DeepCopy\\TypeFilter\\Spl\\ArrayObjectFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/ArrayObjectFilter.php',
131
+ 'DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedList' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php',
132
+ 'DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedListFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedListFilter.php',
133
+ 'DeepCopy\\TypeFilter\\TypeFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php',
134
+ 'DeepCopy\\TypeMatcher\\TypeMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeMatcher/TypeMatcher.php',
135
  'FPDF' => $vendorDir . '/setasign/fpdf/fpdf.php',
136
+ 'Vendidero\\Germanized\\Autoloader' => $baseDir . '/src/Autoloader.php',
137
+ 'Vendidero\\Germanized\\DHL\\Admin\\Admin' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Admin.php',
138
+ 'Vendidero\\Germanized\\DHL\\Admin\\Importer\\DHL' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Importer/DHL.php',
139
+ 'Vendidero\\Germanized\\DHL\\Admin\\Importer\\Internetmarke' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Importer/Internetmarke.php',
140
+ 'Vendidero\\Germanized\\DHL\\Admin\\Settings' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Settings.php',
141
+ 'Vendidero\\Germanized\\DHL\\Admin\\Status' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Status.php',
142
+ 'Vendidero\\Germanized\\DHL\\Ajax' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Ajax.php',
143
+ 'Vendidero\\Germanized\\DHL\\Api\\AuthSoap' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/AuthSoap.php',
144
+ 'Vendidero\\Germanized\\DHL\\Api\\FinderSoap' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php',
145
+ 'Vendidero\\Germanized\\DHL\\Api\\ImProductList' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImProductList.php',
146
+ 'Vendidero\\Germanized\\DHL\\Api\\ImProductsSoap' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImProductsSoap.php',
147
+ 'Vendidero\\Germanized\\DHL\\Api\\ImRefundSoap' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImRefundSoap.php',
148
+ 'Vendidero\\Germanized\\DHL\\Api\\ImWarenpostIntRest' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php',
149
+ 'Vendidero\\Germanized\\DHL\\Api\\Internetmarke' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php',
150
+ 'Vendidero\\Germanized\\DHL\\Api\\LabelSoap' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php',
151
+ 'Vendidero\\Germanized\\DHL\\Api\\Paket' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Paket.php',
152
+ 'Vendidero\\Germanized\\DHL\\Api\\ParcelRest' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ParcelRest.php',
153
+ 'Vendidero\\Germanized\\DHL\\Api\\Rest' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Rest.php',
154
+ 'Vendidero\\Germanized\\DHL\\Api\\ReturnRest' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ReturnRest.php',
155
+ 'Vendidero\\Germanized\\DHL\\Api\\Soap' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Soap.php',
156
+ 'Vendidero\\Germanized\\DHL\\Automation' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Automation.php',
157
+ 'Vendidero\\Germanized\\DHL\\DataStores\\Label' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DataStores/Label.php',
158
+ 'Vendidero\\Germanized\\DHL\\DeutschePostLabel' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DeutschePostLabel.php',
159
+ 'Vendidero\\Germanized\\DHL\\DeutschePostReturnLabel' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DeutschePostReturnLabel.php',
160
+ 'Vendidero\\Germanized\\DHL\\DownloadHandler' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DownloadHandler.php',
161
+ 'Vendidero\\Germanized\\DHL\\Install' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Install.php',
162
+ 'Vendidero\\Germanized\\DHL\\Label' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Label.php',
163
+ 'Vendidero\\Germanized\\DHL\\LabelFactory' => $baseDir . '/packages/woocommerce-germanized-dhl/src/LabelFactory.php',
164
+ 'Vendidero\\Germanized\\DHL\\LabelQuery' => $baseDir . '/packages/woocommerce-germanized-dhl/src/LabelQuery.php',
165
+ 'Vendidero\\Germanized\\DHL\\LabelWatcher' => $baseDir . '/packages/woocommerce-germanized-dhl/src/LabelWatcher.php',
166
+ 'Vendidero\\Germanized\\DHL\\Order' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Order.php',
167
+ 'Vendidero\\Germanized\\DHL\\Package' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Package.php',
168
+ 'Vendidero\\Germanized\\DHL\\ParcelLocator' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ParcelLocator.php',
169
+ 'Vendidero\\Germanized\\DHL\\ParcelServices' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ParcelServices.php',
170
+ 'Vendidero\\Germanized\\DHL\\Product' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Product.php',
171
+ 'Vendidero\\Germanized\\DHL\\ReturnLabel' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ReturnLabel.php',
172
+ 'Vendidero\\Germanized\\DHL\\ShipmentLabelWatcher' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShipmentLabelWatcher.php',
173
+ 'Vendidero\\Germanized\\DHL\\ShippingProvider\\DHL' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/DHL.php',
174
+ 'Vendidero\\Germanized\\DHL\\ShippingProvider\\DeutschePost' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php',
175
+ 'Vendidero\\Germanized\\DHL\\ShippingProvider\\MethodDHL' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/MethodDHL.php',
176
+ 'Vendidero\\Germanized\\DHL\\ShippingProvider\\MethodDeutschePost' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/MethodDeutschePost.php',
177
+ 'Vendidero\\Germanized\\DHL\\SimpleLabel' => $baseDir . '/packages/woocommerce-germanized-dhl/src/SimpleLabel.php',
178
+ 'Vendidero\\Germanized\\Packages' => $baseDir . '/src/Packages.php',
179
+ 'Vendidero\\Germanized\\Shipments\\AddressSplitter' => $baseDir . '/packages/woocommerce-germanized-shipments/src/AddressSplitter.php',
180
+ 'Vendidero\\Germanized\\Shipments\\Admin\\Admin' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Admin.php',
181
+ 'Vendidero\\Germanized\\Shipments\\Admin\\BulkActionHandler' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/BulkActionHandler.php',
182
+ 'Vendidero\\Germanized\\Shipments\\Admin\\BulkLabel' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php',
183
+ 'Vendidero\\Germanized\\Shipments\\Admin\\DownloadHandler' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/DownloadHandler.php',
184
+ 'Vendidero\\Germanized\\Shipments\\Admin\\MetaBox' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/MetaBox.php',
185
+ 'Vendidero\\Germanized\\Shipments\\Admin\\ReturnTable' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php',
186
+ 'Vendidero\\Germanized\\Shipments\\Admin\\Settings' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Settings.php',
187
+ 'Vendidero\\Germanized\\Shipments\\Admin\\Table' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Table.php',
188
+ 'Vendidero\\Germanized\\Shipments\\Ajax' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Ajax.php',
189
+ 'Vendidero\\Germanized\\Shipments\\Api' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Api.php',
190
+ 'Vendidero\\Germanized\\Shipments\\Automation' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Automation.php',
191
+ 'Vendidero\\Germanized\\Shipments\\DataStores\\Packaging' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/Packaging.php',
192
+ 'Vendidero\\Germanized\\Shipments\\DataStores\\Shipment' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/Shipment.php',
193
+ 'Vendidero\\Germanized\\Shipments\\DataStores\\ShipmentItem' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/ShipmentItem.php',
194
+ 'Vendidero\\Germanized\\Shipments\\DataStores\\ShippingProvider' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/ShippingProvider.php',
195
+ 'Vendidero\\Germanized\\Shipments\\Emails' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Emails.php',
196
+ 'Vendidero\\Germanized\\Shipments\\FormHandler' => $baseDir . '/packages/woocommerce-germanized-shipments/src/FormHandler.php',
197
+ 'Vendidero\\Germanized\\Shipments\\Install' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Install.php',
198
+ 'Vendidero\\Germanized\\Shipments\\Interfaces\\ShipmentLabel' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShipmentLabel.php',
199
+ 'Vendidero\\Germanized\\Shipments\\Interfaces\\ShipmentReturnLabel' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShipmentReturnLabel.php',
200
+ 'Vendidero\\Germanized\\Shipments\\Order' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Order.php',
201
+ 'Vendidero\\Germanized\\Shipments\\PDFMerger' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PDFMerger.php',
202
+ 'Vendidero\\Germanized\\Shipments\\PDFSplitter' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PDFSplitter.php',
203
+ 'Vendidero\\Germanized\\Shipments\\Package' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Package.php',
204
+ 'Vendidero\\Germanized\\Shipments\\Packaging' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Packaging.php',
205
+ 'Vendidero\\Germanized\\Shipments\\PackagingFactory' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PackagingFactory.php',
206
+ 'Vendidero\\Germanized\\Shipments\\ReturnReason' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ReturnReason.php',
207
+ 'Vendidero\\Germanized\\Shipments\\ReturnShipment' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ReturnShipment.php',
208
+ 'Vendidero\\Germanized\\Shipments\\Shipment' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Shipment.php',
209
+ 'Vendidero\\Germanized\\Shipments\\ShipmentFactory' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentFactory.php',
210
+ 'Vendidero\\Germanized\\Shipments\\ShipmentItem' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentItem.php',
211
+ 'Vendidero\\Germanized\\Shipments\\ShipmentQuery' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentQuery.php',
212
+ 'Vendidero\\Germanized\\Shipments\\ShipmentReturnItem' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentReturnItem.php',
213
+ 'Vendidero\\Germanized\\Shipments\\ShippingProvider' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProvider.php',
214
+ 'Vendidero\\Germanized\\Shipments\\ShippingProviderMethod' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviderMethod.php',
215
+ 'Vendidero\\Germanized\\Shipments\\ShippingProviderMethodPlaceholder' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviderMethodPlaceholder.php',
216
+ 'Vendidero\\Germanized\\Shipments\\ShippingProviders' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviders.php',
217
+ 'Vendidero\\Germanized\\Shipments\\SimpleShipment' => $baseDir . '/packages/woocommerce-germanized-shipments/src/SimpleShipment.php',
218
+ 'Vendidero\\Germanized\\Shipments\\Validation' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Validation.php',
219
+ 'Vendidero\\Germanized\\Shipments\\WPMLHelper' => $baseDir . '/packages/woocommerce-germanized-shipments/src/WPMLHelper.php',
220
+ 'Vendidero\\Germanized\\Shopmark' => $baseDir . '/src/Shopmark.php',
221
+ 'Vendidero\\Germanized\\Shopmarks' => $baseDir . '/src/Shopmarks.php',
222
+ 'Vendidero\\TrustedShops\\Package' => $baseDir . '/packages/woocommerce-trusted-shops/src/Package.php',
223
+ 'WsdlToPhp\\WsSecurity\\Created' => $vendorDir . '/wsdltophp/wssecurity/src/Created.php',
224
+ 'WsdlToPhp\\WsSecurity\\Element' => $vendorDir . '/wsdltophp/wssecurity/src/Element.php',
225
+ 'WsdlToPhp\\WsSecurity\\Expires' => $vendorDir . '/wsdltophp/wssecurity/src/Expires.php',
226
+ 'WsdlToPhp\\WsSecurity\\Nonce' => $vendorDir . '/wsdltophp/wssecurity/src/Nonce.php',
227
+ 'WsdlToPhp\\WsSecurity\\Password' => $vendorDir . '/wsdltophp/wssecurity/src/Password.php',
228
+ 'WsdlToPhp\\WsSecurity\\Security' => $vendorDir . '/wsdltophp/wssecurity/src/Security.php',
229
+ 'WsdlToPhp\\WsSecurity\\Timestamp' => $vendorDir . '/wsdltophp/wssecurity/src/Timestamp.php',
230
+ 'WsdlToPhp\\WsSecurity\\Username' => $vendorDir . '/wsdltophp/wssecurity/src/Username.php',
231
+ 'WsdlToPhp\\WsSecurity\\UsernameToken' => $vendorDir . '/wsdltophp/wssecurity/src/UsernameToken.php',
232
+ 'WsdlToPhp\\WsSecurity\\WsSecurity' => $vendorDir . '/wsdltophp/wssecurity/src/WsSecurity.php',
233
+ 'baltpeter\\Internetmarke\\Address' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/Address.php',
234
+ 'baltpeter\\Internetmarke\\AddressBinding' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/AddressBinding.php',
235
+ 'baltpeter\\Internetmarke\\ApiResult' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/ApiResult.php',
236
+ 'baltpeter\\Internetmarke\\CompanyName' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/CompanyName.php',
237
+ 'baltpeter\\Internetmarke\\LabelCount' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/LabelCount.php',
238
+ 'baltpeter\\Internetmarke\\LabelSpacing' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/LabelSpacing.php',
239
+ 'baltpeter\\Internetmarke\\Margin' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/Margin.php',
240
+ 'baltpeter\\Internetmarke\\Name' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/Name.php',
241
+ 'baltpeter\\Internetmarke\\NamedAddress' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/NamedAddress.php',
242
+ 'baltpeter\\Internetmarke\\OrderItem' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/OrderItem.php',
243
+ 'baltpeter\\Internetmarke\\PageFormat' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/PageFormat.php',
244
+ 'baltpeter\\Internetmarke\\PageLayout' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/PageLayout.php',
245
+ 'baltpeter\\Internetmarke\\PartnerInformation' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/PartnerInformation.php',
246
+ 'baltpeter\\Internetmarke\\PersonName' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/PersonName.php',
247
+ 'baltpeter\\Internetmarke\\PortokasseCharge' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/PortokasseCharge.php',
248
+ 'baltpeter\\Internetmarke\\Position' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/Position.php',
249
+ 'baltpeter\\Internetmarke\\PublicGalleryItem' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/PublicGalleryItem.php',
250
+ 'baltpeter\\Internetmarke\\Service' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/Service.php',
251
+ 'baltpeter\\Internetmarke\\Size' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/Size.php',
252
+ 'baltpeter\\Internetmarke\\StampPngResult' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/StampPngResult.php',
253
+ 'baltpeter\\Internetmarke\\User' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/User.php',
254
+ 'setasign\\Fpdi\\FpdfTpl' => $vendorDir . '/setasign/fpdi/src/FpdfTpl.php',
255
+ 'setasign\\Fpdi\\FpdfTplTrait' => $vendorDir . '/setasign/fpdi/src/FpdfTplTrait.php',
256
+ 'setasign\\Fpdi\\Fpdi' => $vendorDir . '/setasign/fpdi/src/Fpdi.php',
257
+ 'setasign\\Fpdi\\FpdiException' => $vendorDir . '/setasign/fpdi/src/FpdiException.php',
258
+ 'setasign\\Fpdi\\FpdiTrait' => $vendorDir . '/setasign/fpdi/src/FpdiTrait.php',
259
+ 'setasign\\Fpdi\\PdfParser\\CrossReference\\AbstractReader' => $vendorDir . '/setasign/fpdi/src/PdfParser/CrossReference/AbstractReader.php',
260
+ 'setasign\\Fpdi\\PdfParser\\CrossReference\\CrossReference' => $vendorDir . '/setasign/fpdi/src/PdfParser/CrossReference/CrossReference.php',
261
+ 'setasign\\Fpdi\\PdfParser\\CrossReference\\CrossReferenceException' => $vendorDir . '/setasign/fpdi/src/PdfParser/CrossReference/CrossReferenceException.php',
262
+ 'setasign\\Fpdi\\PdfParser\\CrossReference\\FixedReader' => $vendorDir . '/setasign/fpdi/src/PdfParser/CrossReference/FixedReader.php',
263
+ 'setasign\\Fpdi\\PdfParser\\CrossReference\\LineReader' => $vendorDir . '/setasign/fpdi/src/PdfParser/CrossReference/LineReader.php',
264
+ 'setasign\\Fpdi\\PdfParser\\CrossReference\\ReaderInterface' => $vendorDir . '/setasign/fpdi/src/PdfParser/CrossReference/ReaderInterface.php',
265
+ 'setasign\\Fpdi\\PdfParser\\Filter\\Ascii85' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/Ascii85.php',
266
+ 'setasign\\Fpdi\\PdfParser\\Filter\\Ascii85Exception' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/Ascii85Exception.php',
267
+ 'setasign\\Fpdi\\PdfParser\\Filter\\AsciiHex' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/AsciiHex.php',
268
+ 'setasign\\Fpdi\\PdfParser\\Filter\\FilterException' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/FilterException.php',
269
+ 'setasign\\Fpdi\\PdfParser\\Filter\\FilterInterface' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/FilterInterface.php',
270
+ 'setasign\\Fpdi\\PdfParser\\Filter\\Flate' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/Flate.php',
271
+ 'setasign\\Fpdi\\PdfParser\\Filter\\FlateException' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/FlateException.php',
272
+ 'setasign\\Fpdi\\PdfParser\\Filter\\Lzw' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/Lzw.php',
273
+ 'setasign\\Fpdi\\PdfParser\\Filter\\LzwException' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/LzwException.php',
274
+ 'setasign\\Fpdi\\PdfParser\\PdfParser' => $vendorDir . '/setasign/fpdi/src/PdfParser/PdfParser.php',
275
+ 'setasign\\Fpdi\\PdfParser\\PdfParserException' => $vendorDir . '/setasign/fpdi/src/PdfParser/PdfParserException.php',
276
+ 'setasign\\Fpdi\\PdfParser\\StreamReader' => $vendorDir . '/setasign/fpdi/src/PdfParser/StreamReader.php',
277
+ 'setasign\\Fpdi\\PdfParser\\Tokenizer' => $vendorDir . '/setasign/fpdi/src/PdfParser/Tokenizer.php',
278
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfArray' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfArray.php',
279
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfBoolean' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfBoolean.php',
280
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfDictionary' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfDictionary.php',
281
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfHexString' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfHexString.php',
282
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfIndirectObject' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfIndirectObject.php',
283
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfIndirectObjectReference' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfIndirectObjectReference.php',
284
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfName' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfName.php',
285
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfNull' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfNull.php',
286
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfNumeric' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfNumeric.php',
287
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfStream' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfStream.php',
288
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfString' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfString.php',
289
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfToken' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfToken.php',
290
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfType' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfType.php',
291
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfTypeException' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfTypeException.php',
292
+ 'setasign\\Fpdi\\PdfReader\\DataStructure\\Rectangle' => $vendorDir . '/setasign/fpdi/src/PdfReader/DataStructure/Rectangle.php',
293
+ 'setasign\\Fpdi\\PdfReader\\Page' => $vendorDir . '/setasign/fpdi/src/PdfReader/Page.php',
294
+ 'setasign\\Fpdi\\PdfReader\\PageBoundaries' => $vendorDir . '/setasign/fpdi/src/PdfReader/PageBoundaries.php',
295
+ 'setasign\\Fpdi\\PdfReader\\PdfReader' => $vendorDir . '/setasign/fpdi/src/PdfReader/PdfReader.php',
296
+ 'setasign\\Fpdi\\PdfReader\\PdfReaderException' => $vendorDir . '/setasign/fpdi/src/PdfReader/PdfReaderException.php',
297
+ 'setasign\\Fpdi\\TcpdfFpdi' => $vendorDir . '/setasign/fpdi/src/TcpdfFpdi.php',
298
+ 'setasign\\Fpdi\\Tcpdf\\Fpdi' => $vendorDir . '/setasign/fpdi/src/Tcpdf/Fpdi.php',
299
+ 'setasign\\Fpdi\\Tfpdf\\FpdfTpl' => $vendorDir . '/setasign/fpdi/src/Tfpdf/FpdfTpl.php',
300
+ 'setasign\\Fpdi\\Tfpdf\\Fpdi' => $vendorDir . '/setasign/fpdi/src/Tfpdf/Fpdi.php',
301
  );
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInitd13c1bee9bc21e22afd7af873416bd93
6
  {
7
  private static $loader;
8
 
@@ -24,15 +24,15 @@ class ComposerAutoloaderInitd13c1bee9bc21e22afd7af873416bd93
24
 
25
  require __DIR__ . '/platform_check.php';
26
 
27
- spl_autoload_register(array('ComposerAutoloaderInitd13c1bee9bc21e22afd7af873416bd93', 'loadClassLoader'), true, true);
28
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
29
- spl_autoload_unregister(array('ComposerAutoloaderInitd13c1bee9bc21e22afd7af873416bd93', 'loadClassLoader'));
30
 
31
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
32
  if ($useStaticLoader) {
33
  require __DIR__ . '/autoload_static.php';
34
 
35
- call_user_func(\Composer\Autoload\ComposerStaticInitd13c1bee9bc21e22afd7af873416bd93::getInitializer($loader));
36
  } else {
37
  $map = require __DIR__ . '/autoload_namespaces.php';
38
  foreach ($map as $namespace => $path) {
@@ -53,19 +53,19 @@ class ComposerAutoloaderInitd13c1bee9bc21e22afd7af873416bd93
53
  $loader->register(true);
54
 
55
  if ($useStaticLoader) {
56
- $includeFiles = Composer\Autoload\ComposerStaticInitd13c1bee9bc21e22afd7af873416bd93::$files;
57
  } else {
58
  $includeFiles = require __DIR__ . '/autoload_files.php';
59
  }
60
  foreach ($includeFiles as $fileIdentifier => $file) {
61
- composerRequired13c1bee9bc21e22afd7af873416bd93($fileIdentifier, $file);
62
  }
63
 
64
  return $loader;
65
  }
66
  }
67
 
68
- function composerRequired13c1bee9bc21e22afd7af873416bd93($fileIdentifier, $file)
69
  {
70
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
71
  require $file;
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit11a2348af64ff8817f711cc97b151bde
6
  {
7
  private static $loader;
8
 
24
 
25
  require __DIR__ . '/platform_check.php';
26
 
27
+ spl_autoload_register(array('ComposerAutoloaderInit11a2348af64ff8817f711cc97b151bde', 'loadClassLoader'), true, true);
28
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
29
+ spl_autoload_unregister(array('ComposerAutoloaderInit11a2348af64ff8817f711cc97b151bde', 'loadClassLoader'));
30
 
31
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
32
  if ($useStaticLoader) {
33
  require __DIR__ . '/autoload_static.php';
34
 
35
+ call_user_func(\Composer\Autoload\ComposerStaticInit11a2348af64ff8817f711cc97b151bde::getInitializer($loader));
36
  } else {
37
  $map = require __DIR__ . '/autoload_namespaces.php';
38
  foreach ($map as $namespace => $path) {
53
  $loader->register(true);
54
 
55
  if ($useStaticLoader) {
56
+ $includeFiles = Composer\Autoload\ComposerStaticInit11a2348af64ff8817f711cc97b151bde::$files;
57
  } else {
58
  $includeFiles = require __DIR__ . '/autoload_files.php';
59
  }
60
  foreach ($includeFiles as $fileIdentifier => $file) {
61
+ composerRequire11a2348af64ff8817f711cc97b151bde($fileIdentifier, $file);
62
  }
63
 
64
  return $loader;
65
  }
66
  }
67
 
68
+ function composerRequire11a2348af64ff8817f711cc97b151bde($fileIdentifier, $file)
69
  {
70
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
71
  require $file;
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInitd13c1bee9bc21e22afd7af873416bd93
8
  {
9
  public static $files = array (
10
  '6124b4c8570aa390c21fafd04a26c69f' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php',
@@ -88,17 +88,306 @@ class ComposerStaticInitd13c1bee9bc21e22afd7af873416bd93
88
  );
89
 
90
  public static $classMap = array (
 
91
  'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => __DIR__ . '/..' . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php',
 
 
 
92
  'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
93
  'FPDF' => __DIR__ . '/..' . '/setasign/fpdf/fpdf.php',
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
94
  );
95
 
96
  public static function getInitializer(ClassLoader $loader)
97
  {
98
  return \Closure::bind(function () use ($loader) {
99
- $loader->prefixLengthsPsr4 = ComposerStaticInitd13c1bee9bc21e22afd7af873416bd93::$prefixLengthsPsr4;
100
- $loader->prefixDirsPsr4 = ComposerStaticInitd13c1bee9bc21e22afd7af873416bd93::$prefixDirsPsr4;
101
- $loader->classMap = ComposerStaticInitd13c1bee9bc21e22afd7af873416bd93::$classMap;
102
 
103
  }, null, ClassLoader::class);
104
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit11a2348af64ff8817f711cc97b151bde
8
  {
9
  public static $files = array (
10
  '6124b4c8570aa390c21fafd04a26c69f' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php',
88
  );
89
 
90
  public static $classMap = array (
91
+ 'Automattic\\Jetpack\\Autoloader\\AutoloadFileWriter' => __DIR__ . '/..' . '/automattic/jetpack-autoloader/src/AutoloadFileWriter.php',
92
  'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => __DIR__ . '/..' . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php',
93
+ 'Automattic\\Jetpack\\Autoloader\\AutoloadProcessor' => __DIR__ . '/..' . '/automattic/jetpack-autoloader/src/AutoloadProcessor.php',
94
+ 'Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin' => __DIR__ . '/..' . '/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php',
95
+ 'Automattic\\Jetpack\\Autoloader\\ManifestGenerator' => __DIR__ . '/..' . '/automattic/jetpack-autoloader/src/ManifestGenerator.php',
96
  'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
97
+ 'Composer\\Installers\\AglInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/AglInstaller.php',
98
+ 'Composer\\Installers\\AimeosInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/AimeosInstaller.php',
99
+ 'Composer\\Installers\\AnnotateCmsInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',
100
+ 'Composer\\Installers\\AsgardInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/AsgardInstaller.php',
101
+ 'Composer\\Installers\\AttogramInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/AttogramInstaller.php',
102
+ 'Composer\\Installers\\BaseInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/BaseInstaller.php',
103
+ 'Composer\\Installers\\BitrixInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/BitrixInstaller.php',
104
+ 'Composer\\Installers\\BonefishInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/BonefishInstaller.php',
105
+ 'Composer\\Installers\\CakePHPInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/CakePHPInstaller.php',
106
+ 'Composer\\Installers\\ChefInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/ChefInstaller.php',
107
+ 'Composer\\Installers\\CiviCrmInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/CiviCrmInstaller.php',
108
+ 'Composer\\Installers\\ClanCatsFrameworkInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php',
109
+ 'Composer\\Installers\\CockpitInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/CockpitInstaller.php',
110
+ 'Composer\\Installers\\CodeIgniterInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php',
111
+ 'Composer\\Installers\\Concrete5Installer' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/Concrete5Installer.php',
112
+ 'Composer\\Installers\\CraftInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/CraftInstaller.php',
113
+ 'Composer\\Installers\\CroogoInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/CroogoInstaller.php',
114
+ 'Composer\\Installers\\DecibelInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/DecibelInstaller.php',
115
+ 'Composer\\Installers\\DframeInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/DframeInstaller.php',
116
+ 'Composer\\Installers\\DokuWikiInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/DokuWikiInstaller.php',
117
+ 'Composer\\Installers\\DolibarrInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/DolibarrInstaller.php',
118
+ 'Composer\\Installers\\DrupalInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/DrupalInstaller.php',
119
+ 'Composer\\Installers\\ElggInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/ElggInstaller.php',
120
+ 'Composer\\Installers\\EliasisInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/EliasisInstaller.php',
121
+ 'Composer\\Installers\\ExpressionEngineInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php',
122
+ 'Composer\\Installers\\EzPlatformInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/EzPlatformInstaller.php',
123
+ 'Composer\\Installers\\FuelInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/FuelInstaller.php',
124
+ 'Composer\\Installers\\FuelphpInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/FuelphpInstaller.php',
125
+ 'Composer\\Installers\\GravInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/GravInstaller.php',
126
+ 'Composer\\Installers\\HuradInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/HuradInstaller.php',
127
+ 'Composer\\Installers\\ImageCMSInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/ImageCMSInstaller.php',
128
+ 'Composer\\Installers\\Installer' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/Installer.php',
129
+ 'Composer\\Installers\\ItopInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/ItopInstaller.php',
130
+ 'Composer\\Installers\\JoomlaInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/JoomlaInstaller.php',
131
+ 'Composer\\Installers\\KanboardInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/KanboardInstaller.php',
132
+ 'Composer\\Installers\\KirbyInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/KirbyInstaller.php',
133
+ 'Composer\\Installers\\KnownInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/KnownInstaller.php',
134
+ 'Composer\\Installers\\KodiCMSInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/KodiCMSInstaller.php',
135
+ 'Composer\\Installers\\KohanaInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/KohanaInstaller.php',
136
+ 'Composer\\Installers\\LanManagementSystemInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php',
137
+ 'Composer\\Installers\\LaravelInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/LaravelInstaller.php',
138
+ 'Composer\\Installers\\LavaLiteInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/LavaLiteInstaller.php',
139
+ 'Composer\\Installers\\LithiumInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/LithiumInstaller.php',
140
+ 'Composer\\Installers\\MODULEWorkInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php',
141
+ 'Composer\\Installers\\MODXEvoInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/MODXEvoInstaller.php',
142
+ 'Composer\\Installers\\MagentoInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/MagentoInstaller.php',
143
+ 'Composer\\Installers\\MajimaInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/MajimaInstaller.php',
144
+ 'Composer\\Installers\\MakoInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/MakoInstaller.php',
145
+ 'Composer\\Installers\\MantisBTInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/MantisBTInstaller.php',
146
+ 'Composer\\Installers\\MauticInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/MauticInstaller.php',
147
+ 'Composer\\Installers\\MayaInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/MayaInstaller.php',
148
+ 'Composer\\Installers\\MediaWikiInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/MediaWikiInstaller.php',
149
+ 'Composer\\Installers\\MicroweberInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/MicroweberInstaller.php',
150
+ 'Composer\\Installers\\ModxInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/ModxInstaller.php',
151
+ 'Composer\\Installers\\MoodleInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/MoodleInstaller.php',
152
+ 'Composer\\Installers\\OctoberInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/OctoberInstaller.php',
153
+ 'Composer\\Installers\\OntoWikiInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/OntoWikiInstaller.php',
154
+ 'Composer\\Installers\\OsclassInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/OsclassInstaller.php',
155
+ 'Composer\\Installers\\OxidInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/OxidInstaller.php',
156
+ 'Composer\\Installers\\PPIInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/PPIInstaller.php',
157
+ 'Composer\\Installers\\PhiftyInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/PhiftyInstaller.php',
158
+ 'Composer\\Installers\\PhpBBInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/PhpBBInstaller.php',
159
+ 'Composer\\Installers\\PimcoreInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/PimcoreInstaller.php',
160
+ 'Composer\\Installers\\PiwikInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/PiwikInstaller.php',
161
+ 'Composer\\Installers\\PlentymarketsInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php',
162
+ 'Composer\\Installers\\Plugin' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/Plugin.php',
163
+ 'Composer\\Installers\\PortoInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/PortoInstaller.php',
164
+ 'Composer\\Installers\\PrestashopInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/PrestashopInstaller.php',
165
+ 'Composer\\Installers\\PuppetInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/PuppetInstaller.php',
166
+ 'Composer\\Installers\\PxcmsInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/PxcmsInstaller.php',
167
+ 'Composer\\Installers\\RadPHPInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/RadPHPInstaller.php',
168
+ 'Composer\\Installers\\ReIndexInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/ReIndexInstaller.php',
169
+ 'Composer\\Installers\\Redaxo5Installer' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/Redaxo5Installer.php',
170
+ 'Composer\\Installers\\RedaxoInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/RedaxoInstaller.php',
171
+ 'Composer\\Installers\\RoundcubeInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/RoundcubeInstaller.php',
172
+ 'Composer\\Installers\\SMFInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/SMFInstaller.php',
173
+ 'Composer\\Installers\\ShopwareInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/ShopwareInstaller.php',
174
+ 'Composer\\Installers\\SilverStripeInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/SilverStripeInstaller.php',
175
+ 'Composer\\Installers\\SiteDirectInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/SiteDirectInstaller.php',
176
+ 'Composer\\Installers\\SyDESInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/SyDESInstaller.php',
177
+ 'Composer\\Installers\\SyliusInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/SyliusInstaller.php',
178
+ 'Composer\\Installers\\Symfony1Installer' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/Symfony1Installer.php',
179
+ 'Composer\\Installers\\TYPO3CmsInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php',
180
+ 'Composer\\Installers\\TYPO3FlowInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php',
181
+ 'Composer\\Installers\\TaoInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/TaoInstaller.php',
182
+ 'Composer\\Installers\\TheliaInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/TheliaInstaller.php',
183
+ 'Composer\\Installers\\TuskInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/TuskInstaller.php',
184
+ 'Composer\\Installers\\UserFrostingInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/UserFrostingInstaller.php',
185
+ 'Composer\\Installers\\VanillaInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/VanillaInstaller.php',
186
+ 'Composer\\Installers\\VgmcpInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/VgmcpInstaller.php',
187
+ 'Composer\\Installers\\WHMCSInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/WHMCSInstaller.php',
188
+ 'Composer\\Installers\\WolfCMSInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/WolfCMSInstaller.php',
189
+ 'Composer\\Installers\\WordPressInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/WordPressInstaller.php',
190
+ 'Composer\\Installers\\YawikInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/YawikInstaller.php',
191
+ 'Composer\\Installers\\ZendInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/ZendInstaller.php',
192
+ 'Composer\\Installers\\ZikulaInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/ZikulaInstaller.php',
193
+ 'DeepCopy\\DeepCopy' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/DeepCopy.php',
194
+ 'DeepCopy\\Exception\\CloneException' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Exception/CloneException.php',
195
+ 'DeepCopy\\Exception\\PropertyException' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Exception/PropertyException.php',
196
+ 'DeepCopy\\Filter\\Doctrine\\DoctrineCollectionFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineCollectionFilter.php',
197
+ 'DeepCopy\\Filter\\Doctrine\\DoctrineEmptyCollectionFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineEmptyCollectionFilter.php',
198
+ 'DeepCopy\\Filter\\Doctrine\\DoctrineProxyFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.php',
199
+ 'DeepCopy\\Filter\\Filter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/Filter.php',
200
+ 'DeepCopy\\Filter\\KeepFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/KeepFilter.php',
201
+ 'DeepCopy\\Filter\\ReplaceFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/ReplaceFilter.php',
202
+ 'DeepCopy\\Filter\\SetNullFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Filter/SetNullFilter.php',
203
+ 'DeepCopy\\Matcher\\Doctrine\\DoctrineProxyMatcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php',
204
+ 'DeepCopy\\Matcher\\Matcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Matcher/Matcher.php',
205
+ 'DeepCopy\\Matcher\\PropertyMatcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyMatcher.php',
206
+ 'DeepCopy\\Matcher\\PropertyNameMatcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyNameMatcher.php',
207
+ 'DeepCopy\\Matcher\\PropertyTypeMatcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyTypeMatcher.php',
208
+ 'DeepCopy\\Reflection\\ReflectionHelper' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/Reflection/ReflectionHelper.php',
209
+ 'DeepCopy\\TypeFilter\\Date\\DateIntervalFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Date/DateIntervalFilter.php',
210
+ 'DeepCopy\\TypeFilter\\ReplaceFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ReplaceFilter.php',
211
+ 'DeepCopy\\TypeFilter\\ShallowCopyFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ShallowCopyFilter.php',
212
+ 'DeepCopy\\TypeFilter\\Spl\\ArrayObjectFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/ArrayObjectFilter.php',
213
+ 'DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedList' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php',
214
+ 'DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedListFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedListFilter.php',
215
+ 'DeepCopy\\TypeFilter\\TypeFilter' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php',
216
+ 'DeepCopy\\TypeMatcher\\TypeMatcher' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/TypeMatcher/TypeMatcher.php',
217
  'FPDF' => __DIR__ . '/..' . '/setasign/fpdf/fpdf.php',
218
+ 'Vendidero\\Germanized\\Autoloader' => __DIR__ . '/../..' . '/src/Autoloader.php',
219
+ 'Vendidero\\Germanized\\DHL\\Admin\\Admin' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Admin/Admin.php',
220
+ 'Vendidero\\Germanized\\DHL\\Admin\\Importer\\DHL' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Admin/Importer/DHL.php',
221
+ 'Vendidero\\Germanized\\DHL\\Admin\\Importer\\Internetmarke' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Admin/Importer/Internetmarke.php',
222
+ 'Vendidero\\Germanized\\DHL\\Admin\\Settings' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Admin/Settings.php',
223
+ 'Vendidero\\Germanized\\DHL\\Admin\\Status' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Admin/Status.php',
224
+ 'Vendidero\\Germanized\\DHL\\Ajax' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Ajax.php',
225
+ 'Vendidero\\Germanized\\DHL\\Api\\AuthSoap' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Api/AuthSoap.php',
226
+ 'Vendidero\\Germanized\\DHL\\Api\\FinderSoap' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php',
227
+ 'Vendidero\\Germanized\\DHL\\Api\\ImProductList' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Api/ImProductList.php',
228
+ 'Vendidero\\Germanized\\DHL\\Api\\ImProductsSoap' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Api/ImProductsSoap.php',
229
+ 'Vendidero\\Germanized\\DHL\\Api\\ImRefundSoap' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Api/ImRefundSoap.php',
230
+ 'Vendidero\\Germanized\\DHL\\Api\\ImWarenpostIntRest' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php',
231
+ 'Vendidero\\Germanized\\DHL\\Api\\Internetmarke' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php',
232
+ 'Vendidero\\Germanized\\DHL\\Api\\LabelSoap' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php',
233
+ 'Vendidero\\Germanized\\DHL\\Api\\Paket' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Api/Paket.php',
234
+ 'Vendidero\\Germanized\\DHL\\Api\\ParcelRest' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Api/ParcelRest.php',
235
+ 'Vendidero\\Germanized\\DHL\\Api\\Rest' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Api/Rest.php',
236
+ 'Vendidero\\Germanized\\DHL\\Api\\ReturnRest' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Api/ReturnRest.php',
237
+ 'Vendidero\\Germanized\\DHL\\Api\\Soap' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Api/Soap.php',
238
+ 'Vendidero\\Germanized\\DHL\\Automation' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Automation.php',
239
+ 'Vendidero\\Germanized\\DHL\\DataStores\\Label' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/DataStores/Label.php',
240
+ 'Vendidero\\Germanized\\DHL\\DeutschePostLabel' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/DeutschePostLabel.php',
241
+ 'Vendidero\\Germanized\\DHL\\DeutschePostReturnLabel' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/DeutschePostReturnLabel.php',
242
+ 'Vendidero\\Germanized\\DHL\\DownloadHandler' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/DownloadHandler.php',
243
+ 'Vendidero\\Germanized\\DHL\\Install' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Install.php',
244
+ 'Vendidero\\Germanized\\DHL\\Label' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Label.php',
245
+ 'Vendidero\\Germanized\\DHL\\LabelFactory' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/LabelFactory.php',
246
+ 'Vendidero\\Germanized\\DHL\\LabelQuery' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/LabelQuery.php',
247
+ 'Vendidero\\Germanized\\DHL\\LabelWatcher' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/LabelWatcher.php',
248
+ 'Vendidero\\Germanized\\DHL\\Order' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Order.php',
249
+ 'Vendidero\\Germanized\\DHL\\Package' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Package.php',
250
+ 'Vendidero\\Germanized\\DHL\\ParcelLocator' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/ParcelLocator.php',
251
+ 'Vendidero\\Germanized\\DHL\\ParcelServices' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/ParcelServices.php',
252
+ 'Vendidero\\Germanized\\DHL\\Product' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/Product.php',
253
+ 'Vendidero\\Germanized\\DHL\\ReturnLabel' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/ReturnLabel.php',
254
+ 'Vendidero\\Germanized\\DHL\\ShipmentLabelWatcher' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/ShipmentLabelWatcher.php',
255
+ 'Vendidero\\Germanized\\DHL\\ShippingProvider\\DHL' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/DHL.php',
256
+ 'Vendidero\\Germanized\\DHL\\ShippingProvider\\DeutschePost' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php',
257
+ 'Vendidero\\Germanized\\DHL\\ShippingProvider\\MethodDHL' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/MethodDHL.php',
258
+ 'Vendidero\\Germanized\\DHL\\ShippingProvider\\MethodDeutschePost' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/MethodDeutschePost.php',
259
+ 'Vendidero\\Germanized\\DHL\\SimpleLabel' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-dhl/src/SimpleLabel.php',
260
+ 'Vendidero\\Germanized\\Packages' => __DIR__ . '/../..' . '/src/Packages.php',
261
+ 'Vendidero\\Germanized\\Shipments\\AddressSplitter' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/AddressSplitter.php',
262
+ 'Vendidero\\Germanized\\Shipments\\Admin\\Admin' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/Admin/Admin.php',
263
+ 'Vendidero\\Germanized\\Shipments\\Admin\\BulkActionHandler' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/Admin/BulkActionHandler.php',
264
+ 'Vendidero\\Germanized\\Shipments\\Admin\\BulkLabel' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php',
265
+ 'Vendidero\\Germanized\\Shipments\\Admin\\DownloadHandler' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/Admin/DownloadHandler.php',
266
+ 'Vendidero\\Germanized\\Shipments\\Admin\\MetaBox' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/Admin/MetaBox.php',
267
+ 'Vendidero\\Germanized\\Shipments\\Admin\\ReturnTable' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php',
268
+ 'Vendidero\\Germanized\\Shipments\\Admin\\Settings' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/Admin/Settings.php',
269
+ 'Vendidero\\Germanized\\Shipments\\Admin\\Table' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/Admin/Table.php',
270
+ 'Vendidero\\Germanized\\Shipments\\Ajax' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/Ajax.php',
271
+ 'Vendidero\\Germanized\\Shipments\\Api' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/Api.php',
272
+ 'Vendidero\\Germanized\\Shipments\\Automation' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/Automation.php',
273
+ 'Vendidero\\Germanized\\Shipments\\DataStores\\Packaging' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/DataStores/Packaging.php',
274
+ 'Vendidero\\Germanized\\Shipments\\DataStores\\Shipment' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/DataStores/Shipment.php',
275
+ 'Vendidero\\Germanized\\Shipments\\DataStores\\ShipmentItem' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/DataStores/ShipmentItem.php',
276
+ 'Vendidero\\Germanized\\Shipments\\DataStores\\ShippingProvider' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/DataStores/ShippingProvider.php',
277
+ 'Vendidero\\Germanized\\Shipments\\Emails' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/Emails.php',
278
+ 'Vendidero\\Germanized\\Shipments\\FormHandler' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/FormHandler.php',
279
+ 'Vendidero\\Germanized\\Shipments\\Install' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/Install.php',
280
+ 'Vendidero\\Germanized\\Shipments\\Interfaces\\ShipmentLabel' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShipmentLabel.php',
281
+ 'Vendidero\\Germanized\\Shipments\\Interfaces\\ShipmentReturnLabel' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShipmentReturnLabel.php',
282
+ 'Vendidero\\Germanized\\Shipments\\Order' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/Order.php',
283
+ 'Vendidero\\Germanized\\Shipments\\PDFMerger' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/PDFMerger.php',
284
+ 'Vendidero\\Germanized\\Shipments\\PDFSplitter' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/PDFSplitter.php',
285
+ 'Vendidero\\Germanized\\Shipments\\Package' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/Package.php',
286
+ 'Vendidero\\Germanized\\Shipments\\Packaging' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/Packaging.php',
287
+ 'Vendidero\\Germanized\\Shipments\\PackagingFactory' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/PackagingFactory.php',
288
+ 'Vendidero\\Germanized\\Shipments\\ReturnReason' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/ReturnReason.php',
289
+ 'Vendidero\\Germanized\\Shipments\\ReturnShipment' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/ReturnShipment.php',
290
+ 'Vendidero\\Germanized\\Shipments\\Shipment' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/Shipment.php',
291
+ 'Vendidero\\Germanized\\Shipments\\ShipmentFactory' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/ShipmentFactory.php',
292
+ 'Vendidero\\Germanized\\Shipments\\ShipmentItem' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/ShipmentItem.php',
293
+ 'Vendidero\\Germanized\\Shipments\\ShipmentQuery' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/ShipmentQuery.php',
294
+ 'Vendidero\\Germanized\\Shipments\\ShipmentReturnItem' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/ShipmentReturnItem.php',
295
+ 'Vendidero\\Germanized\\Shipments\\ShippingProvider' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/ShippingProvider.php',
296
+ 'Vendidero\\Germanized\\Shipments\\ShippingProviderMethod' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/ShippingProviderMethod.php',
297
+ 'Vendidero\\Germanized\\Shipments\\ShippingProviderMethodPlaceholder' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/ShippingProviderMethodPlaceholder.php',
298
+ 'Vendidero\\Germanized\\Shipments\\ShippingProviders' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/ShippingProviders.php',
299
+ 'Vendidero\\Germanized\\Shipments\\SimpleShipment' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/SimpleShipment.php',
300
+ 'Vendidero\\Germanized\\Shipments\\Validation' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/Validation.php',
301
+ 'Vendidero\\Germanized\\Shipments\\WPMLHelper' => __DIR__ . '/../..' . '/packages/woocommerce-germanized-shipments/src/WPMLHelper.php',
302
+ 'Vendidero\\Germanized\\Shopmark' => __DIR__ . '/../..' . '/src/Shopmark.php',
303
+ 'Vendidero\\Germanized\\Shopmarks' => __DIR__ . '/../..' . '/src/Shopmarks.php',
304
+ 'Vendidero\\TrustedShops\\Package' => __DIR__ . '/../..' . '/packages/woocommerce-trusted-shops/src/Package.php',
305
+ 'WsdlToPhp\\WsSecurity\\Created' => __DIR__ . '/..' . '/wsdltophp/wssecurity/src/Created.php',
306
+ 'WsdlToPhp\\WsSecurity\\Element' => __DIR__ . '/..' . '/wsdltophp/wssecurity/src/Element.php',
307
+ 'WsdlToPhp\\WsSecurity\\Expires' => __DIR__ . '/..' . '/wsdltophp/wssecurity/src/Expires.php',
308
+ 'WsdlToPhp\\WsSecurity\\Nonce' => __DIR__ . '/..' . '/wsdltophp/wssecurity/src/Nonce.php',
309
+ 'WsdlToPhp\\WsSecurity\\Password' => __DIR__ . '/..' . '/wsdltophp/wssecurity/src/Password.php',
310
+ 'WsdlToPhp\\WsSecurity\\Security' => __DIR__ . '/..' . '/wsdltophp/wssecurity/src/Security.php',
311
+ 'WsdlToPhp\\WsSecurity\\Timestamp' => __DIR__ . '/..' . '/wsdltophp/wssecurity/src/Timestamp.php',
312
+ 'WsdlToPhp\\WsSecurity\\Username' => __DIR__ . '/..' . '/wsdltophp/wssecurity/src/Username.php',
313
+ 'WsdlToPhp\\WsSecurity\\UsernameToken' => __DIR__ . '/..' . '/wsdltophp/wssecurity/src/UsernameToken.php',
314
+ 'WsdlToPhp\\WsSecurity\\WsSecurity' => __DIR__ . '/..' . '/wsdltophp/wssecurity/src/WsSecurity.php',
315
+ 'baltpeter\\Internetmarke\\Address' => __DIR__ . '/..' . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/Address.php',
316
+ 'baltpeter\\Internetmarke\\AddressBinding' => __DIR__ . '/..' . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/AddressBinding.php',
317
+ 'baltpeter\\Internetmarke\\ApiResult' => __DIR__ . '/..' . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/ApiResult.php',
318
+ 'baltpeter\\Internetmarke\\CompanyName' => __DIR__ . '/..' . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/CompanyName.php',
319
+ 'baltpeter\\Internetmarke\\LabelCount' => __DIR__ . '/..' . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/LabelCount.php',
320
+ 'baltpeter\\Internetmarke\\LabelSpacing' => __DIR__ . '/..' . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/LabelSpacing.php',
321
+ 'baltpeter\\Internetmarke\\Margin' => __DIR__ . '/..' . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/Margin.php',
322
+ 'baltpeter\\Internetmarke\\Name' => __DIR__ . '/..' . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/Name.php',
323
+ 'baltpeter\\Internetmarke\\NamedAddress' => __DIR__ . '/..' . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/NamedAddress.php',
324
+ 'baltpeter\\Internetmarke\\OrderItem' => __DIR__ . '/..' . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/OrderItem.php',
325
+ 'baltpeter\\Internetmarke\\PageFormat' => __DIR__ . '/..' . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/PageFormat.php',
326
+ 'baltpeter\\Internetmarke\\PageLayout' => __DIR__ . '/..' . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/PageLayout.php',
327
+ 'baltpeter\\Internetmarke\\PartnerInformation' => __DIR__ . '/..' . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/PartnerInformation.php',
328
+ 'baltpeter\\Internetmarke\\PersonName' => __DIR__ . '/..' . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/PersonName.php',
329
+ 'baltpeter\\Internetmarke\\PortokasseCharge' => __DIR__ . '/..' . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/PortokasseCharge.php',
330
+ 'baltpeter\\Internetmarke\\Position' => __DIR__ . '/..' . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/Position.php',
331
+ 'baltpeter\\Internetmarke\\PublicGalleryItem' => __DIR__ . '/..' . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/PublicGalleryItem.php',
332
+ 'baltpeter\\Internetmarke\\Service' => __DIR__ . '/..' . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/Service.php',
333
+ 'baltpeter\\Internetmarke\\Size' => __DIR__ . '/..' . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/Size.php',
334
+ 'baltpeter\\Internetmarke\\StampPngResult' => __DIR__ . '/..' . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/StampPngResult.php',
335
+ 'baltpeter\\Internetmarke\\User' => __DIR__ . '/..' . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/User.php',
336
+ 'setasign\\Fpdi\\FpdfTpl' => __DIR__ . '/..' . '/setasign/fpdi/src/FpdfTpl.php',
337
+ 'setasign\\Fpdi\\FpdfTplTrait' => __DIR__ . '/..' . '/setasign/fpdi/src/FpdfTplTrait.php',
338
+ 'setasign\\Fpdi\\Fpdi' => __DIR__ . '/..' . '/setasign/fpdi/src/Fpdi.php',
339
+ 'setasign\\Fpdi\\FpdiException' => __DIR__ . '/..' . '/setasign/fpdi/src/FpdiException.php',
340
+ 'setasign\\Fpdi\\FpdiTrait' => __DIR__ . '/..' . '/setasign/fpdi/src/FpdiTrait.php',
341
+ 'setasign\\Fpdi\\PdfParser\\CrossReference\\AbstractReader' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/CrossReference/AbstractReader.php',
342
+ 'setasign\\Fpdi\\PdfParser\\CrossReference\\CrossReference' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/CrossReference/CrossReference.php',
343
+ 'setasign\\Fpdi\\PdfParser\\CrossReference\\CrossReferenceException' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/CrossReference/CrossReferenceException.php',
344
+ 'setasign\\Fpdi\\PdfParser\\CrossReference\\FixedReader' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/CrossReference/FixedReader.php',
345
+ 'setasign\\Fpdi\\PdfParser\\CrossReference\\LineReader' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/CrossReference/LineReader.php',
346
+ 'setasign\\Fpdi\\PdfParser\\CrossReference\\ReaderInterface' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/CrossReference/ReaderInterface.php',
347
+ 'setasign\\Fpdi\\PdfParser\\Filter\\Ascii85' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Filter/Ascii85.php',
348
+ 'setasign\\Fpdi\\PdfParser\\Filter\\Ascii85Exception' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Filter/Ascii85Exception.php',
349
+ 'setasign\\Fpdi\\PdfParser\\Filter\\AsciiHex' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Filter/AsciiHex.php',
350
+ 'setasign\\Fpdi\\PdfParser\\Filter\\FilterException' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Filter/FilterException.php',
351
+ 'setasign\\Fpdi\\PdfParser\\Filter\\FilterInterface' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Filter/FilterInterface.php',
352
+ 'setasign\\Fpdi\\PdfParser\\Filter\\Flate' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Filter/Flate.php',
353
+ 'setasign\\Fpdi\\PdfParser\\Filter\\FlateException' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Filter/FlateException.php',
354
+ 'setasign\\Fpdi\\PdfParser\\Filter\\Lzw' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Filter/Lzw.php',
355
+ 'setasign\\Fpdi\\PdfParser\\Filter\\LzwException' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Filter/LzwException.php',
356
+ 'setasign\\Fpdi\\PdfParser\\PdfParser' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/PdfParser.php',
357
+ 'setasign\\Fpdi\\PdfParser\\PdfParserException' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/PdfParserException.php',
358
+ 'setasign\\Fpdi\\PdfParser\\StreamReader' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/StreamReader.php',
359
+ 'setasign\\Fpdi\\PdfParser\\Tokenizer' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Tokenizer.php',
360
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfArray' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfArray.php',
361
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfBoolean' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfBoolean.php',
362
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfDictionary' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfDictionary.php',
363
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfHexString' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfHexString.php',
364
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfIndirectObject' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfIndirectObject.php',
365
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfIndirectObjectReference' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfIndirectObjectReference.php',
366
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfName' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfName.php',
367
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfNull' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfNull.php',
368
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfNumeric' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfNumeric.php',
369
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfStream' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfStream.php',
370
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfString' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfString.php',
371
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfToken' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfToken.php',
372
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfType' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfType.php',
373
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfTypeException' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfTypeException.php',
374
+ 'setasign\\Fpdi\\PdfReader\\DataStructure\\Rectangle' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfReader/DataStructure/Rectangle.php',
375
+ 'setasign\\Fpdi\\PdfReader\\Page' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfReader/Page.php',
376
+ 'setasign\\Fpdi\\PdfReader\\PageBoundaries' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfReader/PageBoundaries.php',
377
+ 'setasign\\Fpdi\\PdfReader\\PdfReader' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfReader/PdfReader.php',
378
+ 'setasign\\Fpdi\\PdfReader\\PdfReaderException' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfReader/PdfReaderException.php',
379
+ 'setasign\\Fpdi\\TcpdfFpdi' => __DIR__ . '/..' . '/setasign/fpdi/src/TcpdfFpdi.php',
380
+ 'setasign\\Fpdi\\Tcpdf\\Fpdi' => __DIR__ . '/..' . '/setasign/fpdi/src/Tcpdf/Fpdi.php',
381
+ 'setasign\\Fpdi\\Tfpdf\\FpdfTpl' => __DIR__ . '/..' . '/setasign/fpdi/src/Tfpdf/FpdfTpl.php',
382
+ 'setasign\\Fpdi\\Tfpdf\\Fpdi' => __DIR__ . '/..' . '/setasign/fpdi/src/Tfpdf/Fpdi.php',
383
  );
384
 
385
  public static function getInitializer(ClassLoader $loader)
386
  {
387
  return \Closure::bind(function () use ($loader) {
388
+ $loader->prefixLengthsPsr4 = ComposerStaticInit11a2348af64ff8817f711cc97b151bde::$prefixLengthsPsr4;
389
+ $loader->prefixDirsPsr4 = ComposerStaticInit11a2348af64ff8817f711cc97b151bde::$prefixDirsPsr4;
390
+ $loader->classMap = ComposerStaticInit11a2348af64ff8817f711cc97b151bde::$classMap;
391
 
392
  }, null, ClassLoader::class);
393
  }
vendor/composer/installed.json CHANGED
@@ -2,26 +2,26 @@
2
  "packages": [
3
  {
4
  "name": "automattic/jetpack-autoloader",
5
- "version": "v2.6.0",
6
- "version_normalized": "2.6.0.0",
7
  "source": {
8
  "type": "git",
9
  "url": "https://github.com/Automattic/jetpack-autoloader.git",
10
- "reference": "47dde8dbca6b1e30f176725f2f748a9abefcaf58"
11
  },
12
  "dist": {
13
  "type": "zip",
14
- "url": "https://api.github.com/repos/Automattic/jetpack-autoloader/zipball/47dde8dbca6b1e30f176725f2f748a9abefcaf58",
15
- "reference": "47dde8dbca6b1e30f176725f2f748a9abefcaf58",
16
  "shasum": ""
17
  },
18
  "require": {
19
  "composer-plugin-api": "^1.1 || ^2.0"
20
  },
21
  "require-dev": {
22
- "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5"
23
  },
24
- "time": "2020-11-19T21:20:12+00:00",
25
  "type": "composer-plugin",
26
  "extra": {
27
  "class": "Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin"
@@ -41,7 +41,7 @@
41
  ],
42
  "description": "Creates a custom autoloader for a plugin or theme.",
43
  "support": {
44
- "source": "https://github.com/Automattic/jetpack-autoloader/tree/v2.6.0"
45
  },
46
  "install-path": "../automattic/jetpack-autoloader"
47
  },
@@ -415,28 +415,28 @@
415
  },
416
  {
417
  "name": "vendidero/woocommerce-germanized-dhl",
418
- "version": "v1.4.3",
419
- "version_normalized": "1.4.3.0",
420
  "source": {
421
  "type": "git",
422
  "url": "https://github.com/vendidero/woocommerce-germanized-dhl.git",
423
- "reference": "4fc49fe886b2c0c7b9baa6e140047ce5f726fff8"
424
  },
425
  "dist": {
426
  "type": "zip",
427
- "url": "https://api.github.com/repos/vendidero/woocommerce-germanized-dhl/zipball/4fc49fe886b2c0c7b9baa6e140047ce5f726fff8",
428
- "reference": "4fc49fe886b2c0c7b9baa6e140047ce5f726fff8",
429
  "shasum": ""
430
  },
431
  "require": {
432
- "automattic/jetpack-autoloader": "2.6.0",
433
  "baltpeter/internetmarke-php": "^0.5.0",
434
  "wsdltophp/wssecurity": "^1.1"
435
  },
436
  "require-dev": {
437
  "phpunit/phpunit": "6.5.14"
438
  },
439
- "time": "2020-12-17T20:20:47+00:00",
440
  "type": "wordpress-plugin",
441
  "installation-source": "dist",
442
  "autoload": {
@@ -460,35 +460,35 @@
460
  "description": "The Germanized DHL implementation.",
461
  "homepage": "https://github.com/vendidero/woocommerce-germanized-dhl",
462
  "support": {
463
- "source": "https://github.com/vendidero/woocommerce-germanized-dhl/tree/v1.4.3",
464
  "issues": "https://github.com/vendidero/woocommerce-germanized-dhl/issues"
465
  },
466
  "install-path": "../../packages/woocommerce-germanized-dhl"
467
  },
468
  {
469
  "name": "vendidero/woocommerce-germanized-shipments",
470
- "version": "v1.4.2",
471
- "version_normalized": "1.4.2.0",
472
  "source": {
473
  "type": "git",
474
  "url": "https://github.com/vendidero/woocommerce-germanized-shipments.git",
475
- "reference": "c9fd71a33b9731bcd7e7f674c0245c4c8ca67fc7"
476
  },
477
  "dist": {
478
  "type": "zip",
479
- "url": "https://api.github.com/repos/vendidero/woocommerce-germanized-shipments/zipball/c9fd71a33b9731bcd7e7f674c0245c4c8ca67fc7",
480
- "reference": "c9fd71a33b9731bcd7e7f674c0245c4c8ca67fc7",
481
  "shasum": ""
482
  },
483
  "require": {
484
- "automattic/jetpack-autoloader": "2.6.0",
485
  "setasign/fpdf": "^1.8.2",
486
  "setasign/fpdi": "^2.3"
487
  },
488
  "require-dev": {
489
- "phpunit/phpunit": "6.5.14"
490
  },
491
- "time": "2020-12-17T11:50:43+00:00",
492
  "type": "wordpress-plugin",
493
  "installation-source": "dist",
494
  "autoload": {
@@ -510,7 +510,7 @@
510
  "description": "The Germanized Shipments implementation.",
511
  "homepage": "https://github.com/vendidero/woocommerce-germanized-shipments",
512
  "support": {
513
- "source": "https://github.com/vendidero/woocommerce-germanized-shipments/tree/v1.4.2",
514
  "issues": "https://github.com/vendidero/woocommerce-germanized-shipments/issues"
515
  },
516
  "install-path": "../../packages/woocommerce-germanized-shipments"
2
  "packages": [
3
  {
4
  "name": "automattic/jetpack-autoloader",
5
+ "version": "v2.7.1",
6
+ "version_normalized": "2.7.1.0",
7
  "source": {
8
  "type": "git",
9
  "url": "https://github.com/Automattic/jetpack-autoloader.git",
10
+ "reference": "5437697a56aefbdf707849b9833e1b36093d7a73"
11
  },
12
  "dist": {
13
  "type": "zip",
14
+ "url": "https://api.github.com/repos/Automattic/jetpack-autoloader/zipball/5437697a56aefbdf707849b9833e1b36093d7a73",
15
+ "reference": "5437697a56aefbdf707849b9833e1b36093d7a73",
16
  "shasum": ""
17
  },
18
  "require": {
19
  "composer-plugin-api": "^1.1 || ^2.0"
20
  },
21
  "require-dev": {
22
+ "yoast/phpunit-polyfills": "0.2.0"
23
  },
24
+ "time": "2020-12-18T22:33:59+00:00",
25
  "type": "composer-plugin",
26
  "extra": {
27
  "class": "Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin"
41
  ],
42
  "description": "Creates a custom autoloader for a plugin or theme.",
43
  "support": {
44
+ "source": "https://github.com/Automattic/jetpack-autoloader/tree/v2.7.1"
45
  },
46
  "install-path": "../automattic/jetpack-autoloader"
47
  },
415
  },
416
  {
417
  "name": "vendidero/woocommerce-germanized-dhl",
418
+ "version": "v1.4.4",
419
+ "version_normalized": "1.4.4.0",
420
  "source": {
421
  "type": "git",
422
  "url": "https://github.com/vendidero/woocommerce-germanized-dhl.git",
423
+ "reference": "26a5facb7abc4a5846264f76ec4cd863013e44c9"
424
  },
425
  "dist": {
426
  "type": "zip",
427
+ "url": "https://api.github.com/repos/vendidero/woocommerce-germanized-dhl/zipball/26a5facb7abc4a5846264f76ec4cd863013e44c9",
428
+ "reference": "26a5facb7abc4a5846264f76ec4cd863013e44c9",
429
  "shasum": ""
430
  },
431
  "require": {
432
+ "automattic/jetpack-autoloader": "^2.6.0",
433
  "baltpeter/internetmarke-php": "^0.5.0",
434
  "wsdltophp/wssecurity": "^1.1"
435
  },
436
  "require-dev": {
437
  "phpunit/phpunit": "6.5.14"
438
  },
439
+ "time": "2021-01-06T12:52:25+00:00",
440
  "type": "wordpress-plugin",
441
  "installation-source": "dist",
442
  "autoload": {
460
  "description": "The Germanized DHL implementation.",
461
  "homepage": "https://github.com/vendidero/woocommerce-germanized-dhl",
462
  "support": {
463
+ "source": "https://github.com/vendidero/woocommerce-germanized-dhl/tree/v1.4.4",
464
  "issues": "https://github.com/vendidero/woocommerce-germanized-dhl/issues"
465
  },
466
  "install-path": "../../packages/woocommerce-germanized-dhl"
467
  },
468
  {
469
  "name": "vendidero/woocommerce-germanized-shipments",
470
+ "version": "v1.4.3",
471
+ "version_normalized": "1.4.3.0",
472
  "source": {
473
  "type": "git",
474
  "url": "https://github.com/vendidero/woocommerce-germanized-shipments.git",
475
+ "reference": "7016b62ed7dc760a162cad19d572d081cdcb11cf"
476
  },
477
  "dist": {
478
  "type": "zip",
479
+ "url": "https://api.github.com/repos/vendidero/woocommerce-germanized-shipments/zipball/7016b62ed7dc760a162cad19d572d081cdcb11cf",
480
+ "reference": "7016b62ed7dc760a162cad19d572d081cdcb11cf",
481
  "shasum": ""
482
  },
483
  "require": {
484
+ "automattic/jetpack-autoloader": "^2.0.0",
485
  "setasign/fpdf": "^1.8.2",
486
  "setasign/fpdi": "^2.3"
487
  },
488
  "require-dev": {
489
+ "phpunit/phpunit": "^7.5.14"
490
  },
491
+ "time": "2021-01-06T12:53:32+00:00",
492
  "type": "wordpress-plugin",
493
  "installation-source": "dist",
494
  "autoload": {
510
  "description": "The Germanized Shipments implementation.",
511
  "homepage": "https://github.com/vendidero/woocommerce-germanized-shipments",
512
  "support": {
513
+ "source": "https://github.com/vendidero/woocommerce-germanized-shipments/tree/v1.4.3",
514
  "issues": "https://github.com/vendidero/woocommerce-germanized-shipments/issues"
515
  },
516
  "install-path": "../../packages/woocommerce-germanized-shipments"
vendor/composer/installed.php CHANGED
@@ -6,19 +6,19 @@
6
  'aliases' =>
7
  array (
8
  ),
9
- 'reference' => '6de8bda8bac5daced8e97eab2b9e333a3f3d38c8',
10
  'name' => 'vendidero/woocommerce-germanized',
11
  ),
12
  'versions' =>
13
  array (
14
  'automattic/jetpack-autoloader' =>
15
  array (
16
- 'pretty_version' => 'v2.6.0',
17
- 'version' => '2.6.0.0',
18
  'aliases' =>
19
  array (
20
  ),
21
- 'reference' => '47dde8dbca6b1e30f176725f2f748a9abefcaf58',
22
  ),
23
  'baltpeter/internetmarke-php' =>
24
  array (
@@ -90,25 +90,25 @@
90
  'aliases' =>
91
  array (
92
  ),
93
- 'reference' => '6de8bda8bac5daced8e97eab2b9e333a3f3d38c8',
94
  ),
95
  'vendidero/woocommerce-germanized-dhl' =>
96
  array (
97
- 'pretty_version' => 'v1.4.3',
98
- 'version' => '1.4.3.0',
99
  'aliases' =>
100
  array (
101
  ),
102
- 'reference' => '4fc49fe886b2c0c7b9baa6e140047ce5f726fff8',
103
  ),
104
  'vendidero/woocommerce-germanized-shipments' =>
105
  array (
106
- 'pretty_version' => 'v1.4.2',
107
- 'version' => '1.4.2.0',
108
  'aliases' =>
109
  array (
110
  ),
111
- 'reference' => 'c9fd71a33b9731bcd7e7f674c0245c4c8ca67fc7',
112
  ),
113
  'vendidero/woocommerce-trusted-shops' =>
114
  array (
6
  'aliases' =>
7
  array (
8
  ),
9
+ 'reference' => '84e4400d2a91cfa883049ea2a8dedeb64cc1ead2',
10
  'name' => 'vendidero/woocommerce-germanized',
11
  ),
12
  'versions' =>
13
  array (
14
  'automattic/jetpack-autoloader' =>
15
  array (
16
+ 'pretty_version' => 'v2.7.1',
17
+ 'version' => '2.7.1.0',
18
  'aliases' =>
19
  array (
20
  ),
21
+ 'reference' => '5437697a56aefbdf707849b9833e1b36093d7a73',
22
  ),
23
  'baltpeter/internetmarke-php' =>
24
  array (
90
  'aliases' =>
91
  array (
92
  ),
93
+ 'reference' => '84e4400d2a91cfa883049ea2a8dedeb64cc1ead2',
94
  ),
95
  'vendidero/woocommerce-germanized-dhl' =>
96
  array (
97
+ 'pretty_version' => 'v1.4.4',
98
+ 'version' => '1.4.4.0',
99
  'aliases' =>
100
  array (
101
  ),
102
+ 'reference' => '26a5facb7abc4a5846264f76ec4cd863013e44c9',
103
  ),
104
  'vendidero/woocommerce-germanized-shipments' =>
105
  array (
106
+ 'pretty_version' => 'v1.4.3',
107
+ 'version' => '1.4.3.0',
108
  'aliases' =>
109
  array (
110
  ),
111
+ 'reference' => '7016b62ed7dc760a162cad19d572d081cdcb11cf',
112
  ),
113
  'vendidero/woocommerce-trusted-shops' =>
114
  array (
vendor/composer/jetpack_autoload_classmap.php CHANGED
@@ -6,12 +6,1168 @@ $vendorDir = dirname(__DIR__);
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
- 'FPDF' => array(
10
- 'version' => '1.8.2.0',
11
- 'path' => $vendorDir . '/setasign/fpdf/fpdf.php'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  ),
13
  'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => array(
14
- 'version' => '2.6.0.0',
15
  'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php'
16
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  );
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
+ 'setasign\\Fpdi\\Tcpdf\\Fpdi' => array(
10
+ 'version' => '2.3.5.0',
11
+ 'path' => $vendorDir . '/setasign/fpdi/src/Tcpdf/Fpdi.php'
12
+ ),
13
+ 'setasign\\Fpdi\\Tfpdf\\Fpdi' => array(
14
+ 'version' => '2.3.5.0',
15
+ 'path' => $vendorDir . '/setasign/fpdi/src/Tfpdf/Fpdi.php'
16
+ ),
17
+ 'setasign\\Fpdi\\Tfpdf\\FpdfTpl' => array(
18
+ 'version' => '2.3.5.0',
19
+ 'path' => $vendorDir . '/setasign/fpdi/src/Tfpdf/FpdfTpl.php'
20
+ ),
21
+ 'setasign\\Fpdi\\Fpdi' => array(
22
+ 'version' => '2.3.5.0',
23
+ 'path' => $vendorDir . '/setasign/fpdi/src/Fpdi.php'
24
+ ),
25
+ 'setasign\\Fpdi\\FpdfTplTrait' => array(
26
+ 'version' => '2.3.5.0',
27
+ 'path' => $vendorDir . '/setasign/fpdi/src/FpdfTplTrait.php'
28
+ ),
29
+ 'setasign\\Fpdi\\FpdiTrait' => array(
30
+ 'version' => '2.3.5.0',
31
+ 'path' => $vendorDir . '/setasign/fpdi/src/FpdiTrait.php'
32
+ ),
33
+ 'setasign\\Fpdi\\TcpdfFpdi' => array(
34
+ 'version' => '2.3.5.0',
35
+ 'path' => $vendorDir . '/setasign/fpdi/src/TcpdfFpdi.php'
36
+ ),
37
+ 'setasign\\Fpdi\\PdfParser\\StreamReader' => array(
38
+ 'version' => '2.3.5.0',
39
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/StreamReader.php'
40
+ ),
41
+ 'setasign\\Fpdi\\PdfParser\\PdfParserException' => array(
42
+ 'version' => '2.3.5.0',
43
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/PdfParserException.php'
44
+ ),
45
+ 'setasign\\Fpdi\\PdfParser\\CrossReference\\ReaderInterface' => array(
46
+ 'version' => '2.3.5.0',
47
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/CrossReference/ReaderInterface.php'
48
+ ),
49
+ 'setasign\\Fpdi\\PdfParser\\CrossReference\\CrossReferenceException' => array(
50
+ 'version' => '2.3.5.0',
51
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/CrossReference/CrossReferenceException.php'
52
+ ),
53
+ 'setasign\\Fpdi\\PdfParser\\CrossReference\\LineReader' => array(
54
+ 'version' => '2.3.5.0',
55
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/CrossReference/LineReader.php'
56
+ ),
57
+ 'setasign\\Fpdi\\PdfParser\\CrossReference\\AbstractReader' => array(
58
+ 'version' => '2.3.5.0',
59
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/CrossReference/AbstractReader.php'
60
+ ),
61
+ 'setasign\\Fpdi\\PdfParser\\CrossReference\\CrossReference' => array(
62
+ 'version' => '2.3.5.0',
63
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/CrossReference/CrossReference.php'
64
+ ),
65
+ 'setasign\\Fpdi\\PdfParser\\CrossReference\\FixedReader' => array(
66
+ 'version' => '2.3.5.0',
67
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/CrossReference/FixedReader.php'
68
+ ),
69
+ 'setasign\\Fpdi\\PdfParser\\PdfParser' => array(
70
+ 'version' => '2.3.5.0',
71
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/PdfParser.php'
72
+ ),
73
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfStream' => array(
74
+ 'version' => '2.3.5.0',
75
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfStream.php'
76
+ ),
77
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfIndirectObjectReference' => array(
78
+ 'version' => '2.3.5.0',
79
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfIndirectObjectReference.php'
80
+ ),
81
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfHexString' => array(
82
+ 'version' => '2.3.5.0',
83
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfHexString.php'
84
+ ),
85
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfBoolean' => array(
86
+ 'version' => '2.3.5.0',
87
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfBoolean.php'
88
+ ),
89
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfType' => array(
90
+ 'version' => '2.3.5.0',
91
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfType.php'
92
+ ),
93
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfNumeric' => array(
94
+ 'version' => '2.3.5.0',
95
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfNumeric.php'
96
+ ),
97
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfArray' => array(
98
+ 'version' => '2.3.5.0',
99
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfArray.php'
100
+ ),
101
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfName' => array(
102
+ 'version' => '2.3.5.0',
103
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfName.php'
104
+ ),
105
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfTypeException' => array(
106
+ 'version' => '2.3.5.0',
107
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfTypeException.php'
108
+ ),
109
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfString' => array(
110
+ 'version' => '2.3.5.0',
111
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfString.php'
112
+ ),
113
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfNull' => array(
114
+ 'version' => '2.3.5.0',
115
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfNull.php'
116
+ ),
117
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfToken' => array(
118
+ 'version' => '2.3.5.0',
119
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfToken.php'
120
+ ),
121
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfDictionary' => array(
122
+ 'version' => '2.3.5.0',
123
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfDictionary.php'
124
+ ),
125
+ 'setasign\\Fpdi\\PdfParser\\Type\\PdfIndirectObject' => array(
126
+ 'version' => '2.3.5.0',
127
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfIndirectObject.php'
128
+ ),
129
+ 'setasign\\Fpdi\\PdfParser\\Tokenizer' => array(
130
+ 'version' => '2.3.5.0',
131
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Tokenizer.php'
132
+ ),
133
+ 'setasign\\Fpdi\\PdfParser\\Filter\\FilterInterface' => array(
134
+ 'version' => '2.3.5.0',
135
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/FilterInterface.php'
136
+ ),
137
+ 'setasign\\Fpdi\\PdfParser\\Filter\\Ascii85Exception' => array(
138
+ 'version' => '2.3.5.0',
139
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/Ascii85Exception.php'
140
+ ),
141
+ 'setasign\\Fpdi\\PdfParser\\Filter\\FlateException' => array(
142
+ 'version' => '2.3.5.0',
143
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/FlateException.php'
144
+ ),
145
+ 'setasign\\Fpdi\\PdfParser\\Filter\\Flate' => array(
146
+ 'version' => '2.3.5.0',
147
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/Flate.php'
148
+ ),
149
+ 'setasign\\Fpdi\\PdfParser\\Filter\\FilterException' => array(
150
+ 'version' => '2.3.5.0',
151
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/FilterException.php'
152
+ ),
153
+ 'setasign\\Fpdi\\PdfParser\\Filter\\Ascii85' => array(
154
+ 'version' => '2.3.5.0',
155
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/Ascii85.php'
156
+ ),
157
+ 'setasign\\Fpdi\\PdfParser\\Filter\\LzwException' => array(
158
+ 'version' => '2.3.5.0',
159
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/LzwException.php'
160
+ ),
161
+ 'setasign\\Fpdi\\PdfParser\\Filter\\AsciiHex' => array(
162
+ 'version' => '2.3.5.0',
163
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/AsciiHex.php'
164
+ ),
165
+ 'setasign\\Fpdi\\PdfParser\\Filter\\Lzw' => array(
166
+ 'version' => '2.3.5.0',
167
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/Lzw.php'
168
+ ),
169
+ 'setasign\\Fpdi\\FpdiException' => array(
170
+ 'version' => '2.3.5.0',
171
+ 'path' => $vendorDir . '/setasign/fpdi/src/FpdiException.php'
172
+ ),
173
+ 'setasign\\Fpdi\\PdfReader\\PdfReader' => array(
174
+ 'version' => '2.3.5.0',
175
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfReader/PdfReader.php'
176
+ ),
177
+ 'setasign\\Fpdi\\PdfReader\\PageBoundaries' => array(
178
+ 'version' => '2.3.5.0',
179
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfReader/PageBoundaries.php'
180
+ ),
181
+ 'setasign\\Fpdi\\PdfReader\\DataStructure\\Rectangle' => array(
182
+ 'version' => '2.3.5.0',
183
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfReader/DataStructure/Rectangle.php'
184
+ ),
185
+ 'setasign\\Fpdi\\PdfReader\\PdfReaderException' => array(
186
+ 'version' => '2.3.5.0',
187
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfReader/PdfReaderException.php'
188
+ ),
189
+ 'setasign\\Fpdi\\PdfReader\\Page' => array(
190
+ 'version' => '2.3.5.0',
191
+ 'path' => $vendorDir . '/setasign/fpdi/src/PdfReader/Page.php'
192
+ ),
193
+ 'setasign\\Fpdi\\FpdfTpl' => array(
194
+ 'version' => '2.3.5.0',
195
+ 'path' => $vendorDir . '/setasign/fpdi/src/FpdfTpl.php'
196
+ ),
197
+ 'baltpeter\\Internetmarke\\PageFormat' => array(
198
+ 'version' => '0.5.0.0',
199
+ 'path' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/PageFormat.php'
200
+ ),
201
+ 'baltpeter\\Internetmarke\\ApiResult' => array(
202
+ 'version' => '0.5.0.0',
203
+ 'path' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/ApiResult.php'
204
+ ),
205
+ 'baltpeter\\Internetmarke\\Size' => array(
206
+ 'version' => '0.5.0.0',
207
+ 'path' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/Size.php'
208
+ ),
209
+ 'baltpeter\\Internetmarke\\AddressBinding' => array(
210
+ 'version' => '0.5.0.0',
211
+ 'path' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/AddressBinding.php'
212
+ ),
213
+ 'baltpeter\\Internetmarke\\Position' => array(
214
+ 'version' => '0.5.0.0',
215
+ 'path' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/Position.php'
216
+ ),
217
+ 'baltpeter\\Internetmarke\\Service' => array(
218
+ 'version' => '0.5.0.0',
219
+ 'path' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/Service.php'
220
+ ),
221
+ 'baltpeter\\Internetmarke\\LabelCount' => array(
222
+ 'version' => '0.5.0.0',
223
+ 'path' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/LabelCount.php'
224
+ ),
225
+ 'baltpeter\\Internetmarke\\Address' => array(
226
+ 'version' => '0.5.0.0',
227
+ 'path' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/Address.php'
228
+ ),
229
+ 'baltpeter\\Internetmarke\\OrderItem' => array(
230
+ 'version' => '0.5.0.0',
231
+ 'path' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/OrderItem.php'
232
+ ),
233
+ 'baltpeter\\Internetmarke\\User' => array(
234
+ 'version' => '0.5.0.0',
235
+ 'path' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/User.php'
236
+ ),
237
+ 'baltpeter\\Internetmarke\\NamedAddress' => array(
238
+ 'version' => '0.5.0.0',
239
+ 'path' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/NamedAddress.php'
240
+ ),
241
+ 'baltpeter\\Internetmarke\\PageLayout' => array(
242
+ 'version' => '0.5.0.0',
243
+ 'path' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/PageLayout.php'
244
+ ),
245
+ 'baltpeter\\Internetmarke\\LabelSpacing' => array(
246
+ 'version' => '0.5.0.0',
247
+ 'path' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/LabelSpacing.php'
248
+ ),
249
+ 'baltpeter\\Internetmarke\\PartnerInformation' => array(
250
+ 'version' => '0.5.0.0',
251
+ 'path' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/PartnerInformation.php'
252
+ ),
253
+ 'baltpeter\\Internetmarke\\PersonName' => array(
254
+ 'version' => '0.5.0.0',
255
+ 'path' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/PersonName.php'
256
+ ),
257
+ 'baltpeter\\Internetmarke\\Margin' => array(
258
+ 'version' => '0.5.0.0',
259
+ 'path' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/Margin.php'
260
+ ),
261
+ 'baltpeter\\Internetmarke\\StampPngResult' => array(
262
+ 'version' => '0.5.0.0',
263
+ 'path' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/StampPngResult.php'
264
+ ),
265
+ 'baltpeter\\Internetmarke\\PortokasseCharge' => array(
266
+ 'version' => '0.5.0.0',
267
+ 'path' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/PortokasseCharge.php'
268
+ ),
269
+ 'baltpeter\\Internetmarke\\Name' => array(
270
+ 'version' => '0.5.0.0',
271
+ 'path' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/Name.php'
272
+ ),
273
+ 'baltpeter\\Internetmarke\\PublicGalleryItem' => array(
274
+ 'version' => '0.5.0.0',
275
+ 'path' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/PublicGalleryItem.php'
276
+ ),
277
+ 'baltpeter\\Internetmarke\\CompanyName' => array(
278
+ 'version' => '0.5.0.0',
279
+ 'path' => $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke/CompanyName.php'
280
+ ),
281
+ 'WsdlToPhp\\WsSecurity\\Element' => array(
282
+ 'version' => '1.2.2.0',
283
+ 'path' => $vendorDir . '/wsdltophp/wssecurity/src/Element.php'
284
+ ),
285
+ 'WsdlToPhp\\WsSecurity\\Timestamp' => array(
286
+ 'version' => '1.2.2.0',
287
+ 'path' => $vendorDir . '/wsdltophp/wssecurity/src/Timestamp.php'
288
+ ),
289
+ 'WsdlToPhp\\WsSecurity\\WsSecurity' => array(
290
+ 'version' => '1.2.2.0',
291
+ 'path' => $vendorDir . '/wsdltophp/wssecurity/src/WsSecurity.php'
292
+ ),
293
+ 'WsdlToPhp\\WsSecurity\\Username' => array(
294
+ 'version' => '1.2.2.0',
295
+ 'path' => $vendorDir . '/wsdltophp/wssecurity/src/Username.php'
296
+ ),
297
+ 'WsdlToPhp\\WsSecurity\\Nonce' => array(
298
+ 'version' => '1.2.2.0',
299
+ 'path' => $vendorDir . '/wsdltophp/wssecurity/src/Nonce.php'
300
+ ),
301
+ 'WsdlToPhp\\WsSecurity\\Created' => array(
302
+ 'version' => '1.2.2.0',
303
+ 'path' => $vendorDir . '/wsdltophp/wssecurity/src/Created.php'
304
+ ),
305
+ 'WsdlToPhp\\WsSecurity\\Password' => array(
306
+ 'version' => '1.2.2.0',
307
+ 'path' => $vendorDir . '/wsdltophp/wssecurity/src/Password.php'
308
+ ),
309
+ 'WsdlToPhp\\WsSecurity\\UsernameToken' => array(
310
+ 'version' => '1.2.2.0',
311
+ 'path' => $vendorDir . '/wsdltophp/wssecurity/src/UsernameToken.php'
312
+ ),
313
+ 'WsdlToPhp\\WsSecurity\\Security' => array(
314
+ 'version' => '1.2.2.0',
315
+ 'path' => $vendorDir . '/wsdltophp/wssecurity/src/Security.php'
316
+ ),
317
+ 'WsdlToPhp\\WsSecurity\\Expires' => array(
318
+ 'version' => '1.2.2.0',
319
+ 'path' => $vendorDir . '/wsdltophp/wssecurity/src/Expires.php'
320
+ ),
321
+ 'Vendidero\\TrustedShops\\Package' => array(
322
+ 'version' => '4.0.9.0',
323
+ 'path' => $baseDir . '/packages/woocommerce-trusted-shops/src/Package.php'
324
+ ),
325
+ 'Vendidero\\Germanized\\Shipments\\Shipment' => array(
326
+ 'version' => '1.4.3.0',
327
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Shipment.php'
328
+ ),
329
+ 'Vendidero\\Germanized\\Shipments\\Install' => array(
330
+ 'version' => '1.4.3.0',
331
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Install.php'
332
+ ),
333
+ 'Vendidero\\Germanized\\Shipments\\SimpleShipment' => array(
334
+ 'version' => '1.4.3.0',
335
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/SimpleShipment.php'
336
+ ),
337
+ 'Vendidero\\Germanized\\Shipments\\ShippingProviderMethod' => array(
338
+ 'version' => '1.4.3.0',
339
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviderMethod.php'
340
+ ),
341
+ 'Vendidero\\Germanized\\Shipments\\Package' => array(
342
+ 'version' => '1.4.3.0',
343
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Package.php'
344
+ ),
345
+ 'Vendidero\\Germanized\\Shipments\\Order' => array(
346
+ 'version' => '1.4.3.0',
347
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Order.php'
348
+ ),
349
+ 'Vendidero\\Germanized\\Shipments\\DataStores\\Shipment' => array(
350
+ 'version' => '1.4.3.0',
351
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/Shipment.php'
352
+ ),
353
+ 'Vendidero\\Germanized\\Shipments\\DataStores\\ShippingProvider' => array(
354
+ 'version' => '1.4.3.0',
355
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/ShippingProvider.php'
356
+ ),
357
+ 'Vendidero\\Germanized\\Shipments\\DataStores\\Packaging' => array(
358
+ 'version' => '1.4.3.0',
359
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/Packaging.php'
360
+ ),
361
+ 'Vendidero\\Germanized\\Shipments\\DataStores\\ShipmentItem' => array(
362
+ 'version' => '1.4.3.0',
363
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/ShipmentItem.php'
364
+ ),
365
+ 'Vendidero\\Germanized\\Shipments\\PackagingFactory' => array(
366
+ 'version' => '1.4.3.0',
367
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PackagingFactory.php'
368
+ ),
369
+ 'Vendidero\\Germanized\\Shipments\\Ajax' => array(
370
+ 'version' => '1.4.3.0',
371
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Ajax.php'
372
+ ),
373
+ 'Vendidero\\Germanized\\Shipments\\ReturnShipment' => array(
374
+ 'version' => '1.4.3.0',
375
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ReturnShipment.php'
376
+ ),
377
+ 'Vendidero\\Germanized\\Shipments\\ShippingProvider' => array(
378
+ 'version' => '1.4.3.0',
379
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProvider.php'
380
+ ),
381
+ 'Vendidero\\Germanized\\Shipments\\AddressSplitter' => array(
382
+ 'version' => '1.4.3.0',
383
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/AddressSplitter.php'
384
+ ),
385
+ 'Vendidero\\Germanized\\Shipments\\Admin\\BulkLabel' => array(
386
+ 'version' => '1.4.3.0',
387
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php'
388
+ ),
389
+ 'Vendidero\\Germanized\\Shipments\\Admin\\Settings' => array(
390
+ 'version' => '1.4.3.0',
391
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Settings.php'
392
+ ),
393
+ 'Vendidero\\Germanized\\Shipments\\Admin\\MetaBox' => array(
394
+ 'version' => '1.4.3.0',
395
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/MetaBox.php'
396
+ ),
397
+ 'Vendidero\\Germanized\\Shipments\\Admin\\DownloadHandler' => array(
398
+ 'version' => '1.4.3.0',
399
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/DownloadHandler.php'
400
+ ),
401
+ 'Vendidero\\Germanized\\Shipments\\Admin\\ReturnTable' => array(
402
+ 'version' => '1.4.3.0',
403
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php'
404
+ ),
405
+ 'Vendidero\\Germanized\\Shipments\\Admin\\BulkActionHandler' => array(
406
+ 'version' => '1.4.3.0',
407
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/BulkActionHandler.php'
408
+ ),
409
+ 'Vendidero\\Germanized\\Shipments\\Admin\\Admin' => array(
410
+ 'version' => '1.4.3.0',
411
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Admin.php'
412
+ ),
413
+ 'Vendidero\\Germanized\\Shipments\\Admin\\Table' => array(
414
+ 'version' => '1.4.3.0',
415
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Table.php'
416
+ ),
417
+ 'Vendidero\\Germanized\\Shipments\\ShipmentQuery' => array(
418
+ 'version' => '1.4.3.0',
419
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentQuery.php'
420
+ ),
421
+ 'Vendidero\\Germanized\\Shipments\\WPMLHelper' => array(
422
+ 'version' => '1.4.3.0',
423
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/WPMLHelper.php'
424
+ ),
425
+ 'Vendidero\\Germanized\\Shipments\\ShipmentReturnItem' => array(
426
+ 'version' => '1.4.3.0',
427
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentReturnItem.php'
428
+ ),
429
+ 'Vendidero\\Germanized\\Shipments\\FormHandler' => array(
430
+ 'version' => '1.4.3.0',
431
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/FormHandler.php'
432
+ ),
433
+ 'Vendidero\\Germanized\\Shipments\\PDFMerger' => array(
434
+ 'version' => '1.4.3.0',
435
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PDFMerger.php'
436
+ ),
437
+ 'Vendidero\\Germanized\\Shipments\\ShipmentFactory' => array(
438
+ 'version' => '1.4.3.0',
439
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentFactory.php'
440
+ ),
441
+ 'Vendidero\\Germanized\\Shipments\\ShippingProviderMethodPlaceholder' => array(
442
+ 'version' => '1.4.3.0',
443
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviderMethodPlaceholder.php'
444
+ ),
445
+ 'Vendidero\\Germanized\\Shipments\\Automation' => array(
446
+ 'version' => '1.4.3.0',
447
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Automation.php'
448
+ ),
449
+ 'Vendidero\\Germanized\\Shipments\\ShippingProviders' => array(
450
+ 'version' => '1.4.3.0',
451
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviders.php'
452
+ ),
453
+ 'Vendidero\\Germanized\\Shipments\\Packaging' => array(
454
+ 'version' => '1.4.3.0',
455
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Packaging.php'
456
+ ),
457
+ 'Vendidero\\Germanized\\Shipments\\Api' => array(
458
+ 'version' => '1.4.3.0',
459
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Api.php'
460
+ ),
461
+ 'Vendidero\\Germanized\\Shipments\\ShipmentItem' => array(
462
+ 'version' => '1.4.3.0',
463
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentItem.php'
464
+ ),
465
+ 'Vendidero\\Germanized\\Shipments\\Validation' => array(
466
+ 'version' => '1.4.3.0',
467
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Validation.php'
468
+ ),
469
+ 'Vendidero\\Germanized\\Shipments\\Emails' => array(
470
+ 'version' => '1.4.3.0',
471
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Emails.php'
472
+ ),
473
+ 'Vendidero\\Germanized\\Shipments\\PDFSplitter' => array(
474
+ 'version' => '1.4.3.0',
475
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PDFSplitter.php'
476
+ ),
477
+ 'Vendidero\\Germanized\\Shipments\\ReturnReason' => array(
478
+ 'version' => '1.4.3.0',
479
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ReturnReason.php'
480
+ ),
481
+ 'Vendidero\\Germanized\\Shipments\\Interfaces\\ShipmentReturnLabel' => array(
482
+ 'version' => '1.4.3.0',
483
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShipmentReturnLabel.php'
484
+ ),
485
+ 'Vendidero\\Germanized\\Shipments\\Interfaces\\ShipmentLabel' => array(
486
+ 'version' => '1.4.3.0',
487
+ 'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShipmentLabel.php'
488
+ ),
489
+ 'Vendidero\\Germanized\\DHL\\ShippingProvider\\DeutschePost' => array(
490
+ 'version' => '1.4.4.0',
491
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php'
492
+ ),
493
+ 'Vendidero\\Germanized\\DHL\\ShippingProvider\\MethodDHL' => array(
494
+ 'version' => '1.4.4.0',
495
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/MethodDHL.php'
496
+ ),
497
+ 'Vendidero\\Germanized\\DHL\\ShippingProvider\\DHL' => array(
498
+ 'version' => '1.4.4.0',
499
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/DHL.php'
500
+ ),
501
+ 'Vendidero\\Germanized\\DHL\\ShippingProvider\\MethodDeutschePost' => array(
502
+ 'version' => '1.4.4.0',
503
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/MethodDeutschePost.php'
504
+ ),
505
+ 'Vendidero\\Germanized\\DHL\\Install' => array(
506
+ 'version' => '1.4.4.0',
507
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Install.php'
508
+ ),
509
+ 'Vendidero\\Germanized\\DHL\\LabelQuery' => array(
510
+ 'version' => '1.4.4.0',
511
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/LabelQuery.php'
512
+ ),
513
+ 'Vendidero\\Germanized\\DHL\\ShipmentLabelWatcher' => array(
514
+ 'version' => '1.4.4.0',
515
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShipmentLabelWatcher.php'
516
+ ),
517
+ 'Vendidero\\Germanized\\DHL\\Package' => array(
518
+ 'version' => '1.4.4.0',
519
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Package.php'
520
+ ),
521
+ 'Vendidero\\Germanized\\DHL\\Product' => array(
522
+ 'version' => '1.4.4.0',
523
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Product.php'
524
+ ),
525
+ 'Vendidero\\Germanized\\DHL\\Order' => array(
526
+ 'version' => '1.4.4.0',
527
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Order.php'
528
+ ),
529
+ 'Vendidero\\Germanized\\DHL\\DataStores\\Label' => array(
530
+ 'version' => '1.4.4.0',
531
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DataStores/Label.php'
532
+ ),
533
+ 'Vendidero\\Germanized\\DHL\\Ajax' => array(
534
+ 'version' => '1.4.4.0',
535
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Ajax.php'
536
+ ),
537
+ 'Vendidero\\Germanized\\DHL\\Label' => array(
538
+ 'version' => '1.4.4.0',
539
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Label.php'
540
+ ),
541
+ 'Vendidero\\Germanized\\DHL\\ParcelServices' => array(
542
+ 'version' => '1.4.4.0',
543
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ParcelServices.php'
544
+ ),
545
+ 'Vendidero\\Germanized\\DHL\\Admin\\Importer\\Internetmarke' => array(
546
+ 'version' => '1.4.4.0',
547
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Importer/Internetmarke.php'
548
+ ),
549
+ 'Vendidero\\Germanized\\DHL\\Admin\\Importer\\DHL' => array(
550
+ 'version' => '1.4.4.0',
551
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Importer/DHL.php'
552
+ ),
553
+ 'Vendidero\\Germanized\\DHL\\Admin\\Settings' => array(
554
+ 'version' => '1.4.4.0',
555
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Settings.php'
556
+ ),
557
+ 'Vendidero\\Germanized\\DHL\\Admin\\Status' => array(
558
+ 'version' => '1.4.4.0',
559
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Status.php'
560
+ ),
561
+ 'Vendidero\\Germanized\\DHL\\Admin\\Admin' => array(
562
+ 'version' => '1.4.4.0',
563
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Admin.php'
564
+ ),
565
+ 'Vendidero\\Germanized\\DHL\\ReturnLabel' => array(
566
+ 'version' => '1.4.4.0',
567
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ReturnLabel.php'
568
+ ),
569
+ 'Vendidero\\Germanized\\DHL\\ParcelLocator' => array(
570
+ 'version' => '1.4.4.0',
571
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ParcelLocator.php'
572
+ ),
573
+ 'Vendidero\\Germanized\\DHL\\SimpleLabel' => array(
574
+ 'version' => '1.4.4.0',
575
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/SimpleLabel.php'
576
+ ),
577
+ 'Vendidero\\Germanized\\DHL\\DownloadHandler' => array(
578
+ 'version' => '1.4.4.0',
579
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DownloadHandler.php'
580
+ ),
581
+ 'Vendidero\\Germanized\\DHL\\Api\\ReturnRest' => array(
582
+ 'version' => '1.4.4.0',
583
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ReturnRest.php'
584
+ ),
585
+ 'Vendidero\\Germanized\\DHL\\Api\\Paket' => array(
586
+ 'version' => '1.4.4.0',
587
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Paket.php'
588
+ ),
589
+ 'Vendidero\\Germanized\\DHL\\Api\\LabelSoap' => array(
590
+ 'version' => '1.4.4.0',
591
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php'
592
+ ),
593
+ 'Vendidero\\Germanized\\DHL\\Api\\ImProductList' => array(
594
+ 'version' => '1.4.4.0',
595
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImProductList.php'
596
+ ),
597
+ 'Vendidero\\Germanized\\DHL\\Api\\AuthSoap' => array(
598
+ 'version' => '1.4.4.0',
599
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/AuthSoap.php'
600
+ ),
601
+ 'Vendidero\\Germanized\\DHL\\Api\\Internetmarke' => array(
602
+ 'version' => '1.4.4.0',
603
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php'
604
+ ),
605
+ 'Vendidero\\Germanized\\DHL\\Api\\ParcelRest' => array(
606
+ 'version' => '1.4.4.0',
607
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ParcelRest.php'
608
+ ),
609
+ 'Vendidero\\Germanized\\DHL\\Api\\Soap' => array(
610
+ 'version' => '1.4.4.0',
611
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Soap.php'
612
+ ),
613
+ 'Vendidero\\Germanized\\DHL\\Api\\Rest' => array(
614
+ 'version' => '1.4.4.0',
615
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Rest.php'
616
+ ),
617
+ 'Vendidero\\Germanized\\DHL\\Api\\ImProductsSoap' => array(
618
+ 'version' => '1.4.4.0',
619
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImProductsSoap.php'
620
+ ),
621
+ 'Vendidero\\Germanized\\DHL\\Api\\FinderSoap' => array(
622
+ 'version' => '1.4.4.0',
623
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php'
624
+ ),
625
+ 'Vendidero\\Germanized\\DHL\\Api\\ImRefundSoap' => array(
626
+ 'version' => '1.4.4.0',
627
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImRefundSoap.php'
628
+ ),
629
+ 'Vendidero\\Germanized\\DHL\\Api\\ImWarenpostIntRest' => array(
630
+ 'version' => '1.4.4.0',
631
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php'
632
+ ),
633
+ 'Vendidero\\Germanized\\DHL\\Automation' => array(
634
+ 'version' => '1.4.4.0',
635
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Automation.php'
636
+ ),
637
+ 'Vendidero\\Germanized\\DHL\\DeutschePostReturnLabel' => array(
638
+ 'version' => '1.4.4.0',
639
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DeutschePostReturnLabel.php'
640
+ ),
641
+ 'Vendidero\\Germanized\\DHL\\LabelFactory' => array(
642
+ 'version' => '1.4.4.0',
643
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/LabelFactory.php'
644
+ ),
645
+ 'Vendidero\\Germanized\\DHL\\LabelWatcher' => array(
646
+ 'version' => '1.4.4.0',
647
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/LabelWatcher.php'
648
+ ),
649
+ 'Vendidero\\Germanized\\DHL\\DeutschePostLabel' => array(
650
+ 'version' => '1.4.4.0',
651
+ 'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DeutschePostLabel.php'
652
+ ),
653
+ 'Vendidero\\Germanized\\Shopmark' => array(
654
+ 'version' => 'dev-master',
655
+ 'path' => $baseDir . '/src/Shopmark.php'
656
+ ),
657
+ 'Vendidero\\Germanized\\Packages' => array(
658
+ 'version' => 'dev-master',
659
+ 'path' => $baseDir . '/src/Packages.php'
660
+ ),
661
+ 'Vendidero\\Germanized\\Shopmarks' => array(
662
+ 'version' => 'dev-master',
663
+ 'path' => $baseDir . '/src/Shopmarks.php'
664
+ ),
665
+ 'Vendidero\\Germanized\\Autoloader' => array(
666
+ 'version' => 'dev-master',
667
+ 'path' => $baseDir . '/src/Autoloader.php'
668
+ ),
669
+ 'DeepCopy\\Matcher\\PropertyMatcher' => array(
670
+ 'version' => '1.10.2.0',
671
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyMatcher.php'
672
+ ),
673
+ 'DeepCopy\\Matcher\\Doctrine\\DoctrineProxyMatcher' => array(
674
+ 'version' => '1.10.2.0',
675
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php'
676
+ ),
677
+ 'DeepCopy\\Matcher\\Matcher' => array(
678
+ 'version' => '1.10.2.0',
679
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/Matcher.php'
680
+ ),
681
+ 'DeepCopy\\Matcher\\PropertyNameMatcher' => array(
682
+ 'version' => '1.10.2.0',
683
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyNameMatcher.php'
684
+ ),
685
+ 'DeepCopy\\Matcher\\PropertyTypeMatcher' => array(
686
+ 'version' => '1.10.2.0',
687
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyTypeMatcher.php'
688
+ ),
689
+ 'DeepCopy\\DeepCopy' => array(
690
+ 'version' => '1.10.2.0',
691
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/DeepCopy.php'
692
+ ),
693
+ 'DeepCopy\\Filter\\ReplaceFilter' => array(
694
+ 'version' => '1.10.2.0',
695
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/ReplaceFilter.php'
696
+ ),
697
+ 'DeepCopy\\Filter\\KeepFilter' => array(
698
+ 'version' => '1.10.2.0',
699
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/KeepFilter.php'
700
+ ),
701
+ 'DeepCopy\\Filter\\Doctrine\\DoctrineEmptyCollectionFilter' => array(
702
+ 'version' => '1.10.2.0',
703
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineEmptyCollectionFilter.php'
704
+ ),
705
+ 'DeepCopy\\Filter\\Doctrine\\DoctrineCollectionFilter' => array(
706
+ 'version' => '1.10.2.0',
707
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineCollectionFilter.php'
708
+ ),
709
+ 'DeepCopy\\Filter\\Doctrine\\DoctrineProxyFilter' => array(
710
+ 'version' => '1.10.2.0',
711
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.php'
712
+ ),
713
+ 'DeepCopy\\Filter\\Filter' => array(
714
+ 'version' => '1.10.2.0',
715
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Filter.php'
716
+ ),
717
+ 'DeepCopy\\Filter\\SetNullFilter' => array(
718
+ 'version' => '1.10.2.0',
719
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/SetNullFilter.php'
720
+ ),
721
+ 'DeepCopy\\TypeMatcher\\TypeMatcher' => array(
722
+ 'version' => '1.10.2.0',
723
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeMatcher/TypeMatcher.php'
724
+ ),
725
+ 'DeepCopy\\Exception\\CloneException' => array(
726
+ 'version' => '1.10.2.0',
727
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Exception/CloneException.php'
728
+ ),
729
+ 'DeepCopy\\Exception\\PropertyException' => array(
730
+ 'version' => '1.10.2.0',
731
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Exception/PropertyException.php'
732
+ ),
733
+ 'DeepCopy\\Reflection\\ReflectionHelper' => array(
734
+ 'version' => '1.10.2.0',
735
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Reflection/ReflectionHelper.php'
736
+ ),
737
+ 'DeepCopy\\TypeFilter\\ReplaceFilter' => array(
738
+ 'version' => '1.10.2.0',
739
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ReplaceFilter.php'
740
+ ),
741
+ 'DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedListFilter' => array(
742
+ 'version' => '1.10.2.0',
743
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedListFilter.php'
744
+ ),
745
+ 'DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedList' => array(
746
+ 'version' => '1.10.2.0',
747
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php'
748
+ ),
749
+ 'DeepCopy\\TypeFilter\\Spl\\ArrayObjectFilter' => array(
750
+ 'version' => '1.10.2.0',
751
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/ArrayObjectFilter.php'
752
+ ),
753
+ 'DeepCopy\\TypeFilter\\Date\\DateIntervalFilter' => array(
754
+ 'version' => '1.10.2.0',
755
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Date/DateIntervalFilter.php'
756
+ ),
757
+ 'DeepCopy\\TypeFilter\\ShallowCopyFilter' => array(
758
+ 'version' => '1.10.2.0',
759
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ShallowCopyFilter.php'
760
+ ),
761
+ 'DeepCopy\\TypeFilter\\TypeFilter' => array(
762
+ 'version' => '1.10.2.0',
763
+ 'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php'
764
+ ),
765
+ 'Composer\\Installers\\GravInstaller' => array(
766
+ 'version' => '1.9.0.0',
767
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/GravInstaller.php'
768
+ ),
769
+ 'Composer\\Installers\\AttogramInstaller' => array(
770
+ 'version' => '1.9.0.0',
771
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AttogramInstaller.php'
772
+ ),
773
+ 'Composer\\Installers\\DrupalInstaller' => array(
774
+ 'version' => '1.9.0.0',
775
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DrupalInstaller.php'
776
+ ),
777
+ 'Composer\\Installers\\CraftInstaller' => array(
778
+ 'version' => '1.9.0.0',
779
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CraftInstaller.php'
780
+ ),
781
+ 'Composer\\Installers\\CiviCrmInstaller' => array(
782
+ 'version' => '1.9.0.0',
783
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CiviCrmInstaller.php'
784
+ ),
785
+ 'Composer\\Installers\\ItopInstaller' => array(
786
+ 'version' => '1.9.0.0',
787
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ItopInstaller.php'
788
+ ),
789
+ 'Composer\\Installers\\ReIndexInstaller' => array(
790
+ 'version' => '1.9.0.0',
791
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ReIndexInstaller.php'
792
+ ),
793
+ 'Composer\\Installers\\TheliaInstaller' => array(
794
+ 'version' => '1.9.0.0',
795
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TheliaInstaller.php'
796
+ ),
797
+ 'Composer\\Installers\\SilverStripeInstaller' => array(
798
+ 'version' => '1.9.0.0',
799
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SilverStripeInstaller.php'
800
+ ),
801
+ 'Composer\\Installers\\ShopwareInstaller' => array(
802
+ 'version' => '1.9.0.0',
803
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ShopwareInstaller.php'
804
+ ),
805
+ 'Composer\\Installers\\DokuWikiInstaller' => array(
806
+ 'version' => '1.9.0.0',
807
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DokuWikiInstaller.php'
808
+ ),
809
+ 'Composer\\Installers\\SyliusInstaller' => array(
810
+ 'version' => '1.9.0.0',
811
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SyliusInstaller.php'
812
+ ),
813
+ 'Composer\\Installers\\PPIInstaller' => array(
814
+ 'version' => '1.9.0.0',
815
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PPIInstaller.php'
816
+ ),
817
+ 'Composer\\Installers\\KirbyInstaller' => array(
818
+ 'version' => '1.9.0.0',
819
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KirbyInstaller.php'
820
+ ),
821
+ 'Composer\\Installers\\LaravelInstaller' => array(
822
+ 'version' => '1.9.0.0',
823
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LaravelInstaller.php'
824
+ ),
825
+ 'Composer\\Installers\\ElggInstaller' => array(
826
+ 'version' => '1.9.0.0',
827
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ElggInstaller.php'
828
+ ),
829
+ 'Composer\\Installers\\VanillaInstaller' => array(
830
+ 'version' => '1.9.0.0',
831
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/VanillaInstaller.php'
832
+ ),
833
+ 'Composer\\Installers\\YawikInstaller' => array(
834
+ 'version' => '1.9.0.0',
835
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/YawikInstaller.php'
836
+ ),
837
+ 'Composer\\Installers\\RoundcubeInstaller' => array(
838
+ 'version' => '1.9.0.0',
839
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RoundcubeInstaller.php'
840
+ ),
841
+ 'Composer\\Installers\\VgmcpInstaller' => array(
842
+ 'version' => '1.9.0.0',
843
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/VgmcpInstaller.php'
844
+ ),
845
+ 'Composer\\Installers\\UserFrostingInstaller' => array(
846
+ 'version' => '1.9.0.0',
847
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/UserFrostingInstaller.php'
848
+ ),
849
+ 'Composer\\Installers\\RadPHPInstaller' => array(
850
+ 'version' => '1.9.0.0',
851
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RadPHPInstaller.php'
852
+ ),
853
+ 'Composer\\Installers\\KnownInstaller' => array(
854
+ 'version' => '1.9.0.0',
855
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KnownInstaller.php'
856
+ ),
857
+ 'Composer\\Installers\\SMFInstaller' => array(
858
+ 'version' => '1.9.0.0',
859
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SMFInstaller.php'
860
+ ),
861
+ 'Composer\\Installers\\PhiftyInstaller' => array(
862
+ 'version' => '1.9.0.0',
863
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PhiftyInstaller.php'
864
+ ),
865
+ 'Composer\\Installers\\MakoInstaller' => array(
866
+ 'version' => '1.9.0.0',
867
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MakoInstaller.php'
868
+ ),
869
+ 'Composer\\Installers\\TYPO3CmsInstaller' => array(
870
+ 'version' => '1.9.0.0',
871
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php'
872
+ ),
873
+ 'Composer\\Installers\\CockpitInstaller' => array(
874
+ 'version' => '1.9.0.0',
875
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CockpitInstaller.php'
876
+ ),
877
+ 'Composer\\Installers\\CodeIgniterInstaller' => array(
878
+ 'version' => '1.9.0.0',
879
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php'
880
+ ),
881
+ 'Composer\\Installers\\TaoInstaller' => array(
882
+ 'version' => '1.9.0.0',
883
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TaoInstaller.php'
884
+ ),
885
+ 'Composer\\Installers\\AimeosInstaller' => array(
886
+ 'version' => '1.9.0.0',
887
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AimeosInstaller.php'
888
+ ),
889
+ 'Composer\\Installers\\KohanaInstaller' => array(
890
+ 'version' => '1.9.0.0',
891
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KohanaInstaller.php'
892
+ ),
893
+ 'Composer\\Installers\\Plugin' => array(
894
+ 'version' => '1.9.0.0',
895
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Plugin.php'
896
+ ),
897
+ 'Composer\\Installers\\ExpressionEngineInstaller' => array(
898
+ 'version' => '1.9.0.0',
899
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php'
900
+ ),
901
+ 'Composer\\Installers\\OctoberInstaller' => array(
902
+ 'version' => '1.9.0.0',
903
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OctoberInstaller.php'
904
+ ),
905
+ 'Composer\\Installers\\WolfCMSInstaller' => array(
906
+ 'version' => '1.9.0.0',
907
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WolfCMSInstaller.php'
908
+ ),
909
+ 'Composer\\Installers\\LithiumInstaller' => array(
910
+ 'version' => '1.9.0.0',
911
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LithiumInstaller.php'
912
+ ),
913
+ 'Composer\\Installers\\ZendInstaller' => array(
914
+ 'version' => '1.9.0.0',
915
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ZendInstaller.php'
916
+ ),
917
+ 'Composer\\Installers\\Symfony1Installer' => array(
918
+ 'version' => '1.9.0.0',
919
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Symfony1Installer.php'
920
+ ),
921
+ 'Composer\\Installers\\LavaLiteInstaller' => array(
922
+ 'version' => '1.9.0.0',
923
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LavaLiteInstaller.php'
924
+ ),
925
+ 'Composer\\Installers\\MoodleInstaller' => array(
926
+ 'version' => '1.9.0.0',
927
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MoodleInstaller.php'
928
+ ),
929
+ 'Composer\\Installers\\HuradInstaller' => array(
930
+ 'version' => '1.9.0.0',
931
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/HuradInstaller.php'
932
+ ),
933
+ 'Composer\\Installers\\BaseInstaller' => array(
934
+ 'version' => '1.9.0.0',
935
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BaseInstaller.php'
936
+ ),
937
+ 'Composer\\Installers\\CakePHPInstaller' => array(
938
+ 'version' => '1.9.0.0',
939
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CakePHPInstaller.php'
940
+ ),
941
+ 'Composer\\Installers\\RedaxoInstaller' => array(
942
+ 'version' => '1.9.0.0',
943
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RedaxoInstaller.php'
944
+ ),
945
+ 'Composer\\Installers\\ModxInstaller' => array(
946
+ 'version' => '1.9.0.0',
947
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ModxInstaller.php'
948
+ ),
949
+ 'Composer\\Installers\\MauticInstaller' => array(
950
+ 'version' => '1.9.0.0',
951
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MauticInstaller.php'
952
+ ),
953
+ 'Composer\\Installers\\MagentoInstaller' => array(
954
+ 'version' => '1.9.0.0',
955
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MagentoInstaller.php'
956
+ ),
957
+ 'Composer\\Installers\\Concrete5Installer' => array(
958
+ 'version' => '1.9.0.0',
959
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Concrete5Installer.php'
960
+ ),
961
+ 'Composer\\Installers\\FuelphpInstaller' => array(
962
+ 'version' => '1.9.0.0',
963
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/FuelphpInstaller.php'
964
+ ),
965
+ 'Composer\\Installers\\FuelInstaller' => array(
966
+ 'version' => '1.9.0.0',
967
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/FuelInstaller.php'
968
+ ),
969
+ 'Composer\\Installers\\PrestashopInstaller' => array(
970
+ 'version' => '1.9.0.0',
971
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PrestashopInstaller.php'
972
+ ),
973
+ 'Composer\\Installers\\OxidInstaller' => array(
974
+ 'version' => '1.9.0.0',
975
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OxidInstaller.php'
976
+ ),
977
+ 'Composer\\Installers\\TuskInstaller' => array(
978
+ 'version' => '1.9.0.0',
979
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TuskInstaller.php'
980
+ ),
981
+ 'Composer\\Installers\\TYPO3FlowInstaller' => array(
982
+ 'version' => '1.9.0.0',
983
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php'
984
+ ),
985
+ 'Composer\\Installers\\PiwikInstaller' => array(
986
+ 'version' => '1.9.0.0',
987
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PiwikInstaller.php'
988
+ ),
989
+ 'Composer\\Installers\\PuppetInstaller' => array(
990
+ 'version' => '1.9.0.0',
991
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PuppetInstaller.php'
992
+ ),
993
+ 'Composer\\Installers\\AglInstaller' => array(
994
+ 'version' => '1.9.0.0',
995
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AglInstaller.php'
996
+ ),
997
+ 'Composer\\Installers\\PimcoreInstaller' => array(
998
+ 'version' => '1.9.0.0',
999
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PimcoreInstaller.php'
1000
+ ),
1001
+ 'Composer\\Installers\\EliasisInstaller' => array(
1002
+ 'version' => '1.9.0.0',
1003
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/EliasisInstaller.php'
1004
+ ),
1005
+ 'Composer\\Installers\\Redaxo5Installer' => array(
1006
+ 'version' => '1.9.0.0',
1007
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Redaxo5Installer.php'
1008
+ ),
1009
+ 'Composer\\Installers\\BitrixInstaller' => array(
1010
+ 'version' => '1.9.0.0',
1011
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BitrixInstaller.php'
1012
+ ),
1013
+ 'Composer\\Installers\\AsgardInstaller' => array(
1014
+ 'version' => '1.9.0.0',
1015
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AsgardInstaller.php'
1016
+ ),
1017
+ 'Composer\\Installers\\WHMCSInstaller' => array(
1018
+ 'version' => '1.9.0.0',
1019
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WHMCSInstaller.php'
1020
+ ),
1021
+ 'Composer\\Installers\\KanboardInstaller' => array(
1022
+ 'version' => '1.9.0.0',
1023
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KanboardInstaller.php'
1024
+ ),
1025
+ 'Composer\\Installers\\WordPressInstaller' => array(
1026
+ 'version' => '1.9.0.0',
1027
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WordPressInstaller.php'
1028
+ ),
1029
+ 'Composer\\Installers\\MajimaInstaller' => array(
1030
+ 'version' => '1.9.0.0',
1031
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MajimaInstaller.php'
1032
+ ),
1033
+ 'Composer\\Installers\\DframeInstaller' => array(
1034
+ 'version' => '1.9.0.0',
1035
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DframeInstaller.php'
1036
+ ),
1037
+ 'Composer\\Installers\\PlentymarketsInstaller' => array(
1038
+ 'version' => '1.9.0.0',
1039
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php'
1040
+ ),
1041
+ 'Composer\\Installers\\EzPlatformInstaller' => array(
1042
+ 'version' => '1.9.0.0',
1043
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/EzPlatformInstaller.php'
1044
+ ),
1045
+ 'Composer\\Installers\\MODXEvoInstaller' => array(
1046
+ 'version' => '1.9.0.0',
1047
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MODXEvoInstaller.php'
1048
+ ),
1049
+ 'Composer\\Installers\\OntoWikiInstaller' => array(
1050
+ 'version' => '1.9.0.0',
1051
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OntoWikiInstaller.php'
1052
+ ),
1053
+ 'Composer\\Installers\\AnnotateCmsInstaller' => array(
1054
+ 'version' => '1.9.0.0',
1055
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php'
1056
+ ),
1057
+ 'Composer\\Installers\\MODULEWorkInstaller' => array(
1058
+ 'version' => '1.9.0.0',
1059
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php'
1060
+ ),
1061
+ 'Composer\\Installers\\OsclassInstaller' => array(
1062
+ 'version' => '1.9.0.0',
1063
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OsclassInstaller.php'
1064
+ ),
1065
+ 'Composer\\Installers\\ChefInstaller' => array(
1066
+ 'version' => '1.9.0.0',
1067
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ChefInstaller.php'
1068
+ ),
1069
+ 'Composer\\Installers\\JoomlaInstaller' => array(
1070
+ 'version' => '1.9.0.0',
1071
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/JoomlaInstaller.php'
1072
+ ),
1073
+ 'Composer\\Installers\\Installer' => array(
1074
+ 'version' => '1.9.0.0',
1075
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Installer.php'
1076
+ ),
1077
+ 'Composer\\Installers\\KodiCMSInstaller' => array(
1078
+ 'version' => '1.9.0.0',
1079
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KodiCMSInstaller.php'
1080
+ ),
1081
+ 'Composer\\Installers\\PhpBBInstaller' => array(
1082
+ 'version' => '1.9.0.0',
1083
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PhpBBInstaller.php'
1084
+ ),
1085
+ 'Composer\\Installers\\MediaWikiInstaller' => array(
1086
+ 'version' => '1.9.0.0',
1087
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MediaWikiInstaller.php'
1088
+ ),
1089
+ 'Composer\\Installers\\ImageCMSInstaller' => array(
1090
+ 'version' => '1.9.0.0',
1091
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ImageCMSInstaller.php'
1092
+ ),
1093
+ 'Composer\\Installers\\PortoInstaller' => array(
1094
+ 'version' => '1.9.0.0',
1095
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PortoInstaller.php'
1096
+ ),
1097
+ 'Composer\\Installers\\DolibarrInstaller' => array(
1098
+ 'version' => '1.9.0.0',
1099
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DolibarrInstaller.php'
1100
+ ),
1101
+ 'Composer\\Installers\\BonefishInstaller' => array(
1102
+ 'version' => '1.9.0.0',
1103
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BonefishInstaller.php'
1104
+ ),
1105
+ 'Composer\\Installers\\MayaInstaller' => array(
1106
+ 'version' => '1.9.0.0',
1107
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MayaInstaller.php'
1108
+ ),
1109
+ 'Composer\\Installers\\CroogoInstaller' => array(
1110
+ 'version' => '1.9.0.0',
1111
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CroogoInstaller.php'
1112
+ ),
1113
+ 'Composer\\Installers\\PxcmsInstaller' => array(
1114
+ 'version' => '1.9.0.0',
1115
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PxcmsInstaller.php'
1116
+ ),
1117
+ 'Composer\\Installers\\DecibelInstaller' => array(
1118
+ 'version' => '1.9.0.0',
1119
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DecibelInstaller.php'
1120
+ ),
1121
+ 'Composer\\Installers\\SyDESInstaller' => array(
1122
+ 'version' => '1.9.0.0',
1123
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SyDESInstaller.php'
1124
+ ),
1125
+ 'Composer\\Installers\\LanManagementSystemInstaller' => array(
1126
+ 'version' => '1.9.0.0',
1127
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php'
1128
+ ),
1129
+ 'Composer\\Installers\\ClanCatsFrameworkInstaller' => array(
1130
+ 'version' => '1.9.0.0',
1131
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php'
1132
+ ),
1133
+ 'Composer\\Installers\\ZikulaInstaller' => array(
1134
+ 'version' => '1.9.0.0',
1135
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ZikulaInstaller.php'
1136
+ ),
1137
+ 'Composer\\Installers\\MantisBTInstaller' => array(
1138
+ 'version' => '1.9.0.0',
1139
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MantisBTInstaller.php'
1140
+ ),
1141
+ 'Composer\\Installers\\SiteDirectInstaller' => array(
1142
+ 'version' => '1.9.0.0',
1143
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SiteDirectInstaller.php'
1144
+ ),
1145
+ 'Composer\\Installers\\MicroweberInstaller' => array(
1146
+ 'version' => '1.9.0.0',
1147
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MicroweberInstaller.php'
1148
  ),
1149
  'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => array(
1150
+ 'version' => '2.7.1.0',
1151
  'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php'
1152
  ),
1153
+ 'Automattic\\Jetpack\\Autoloader\\AutoloadProcessor' => array(
1154
+ 'version' => '2.7.1.0',
1155
+ 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadProcessor.php'
1156
+ ),
1157
+ 'Automattic\\Jetpack\\Autoloader\\AutoloadFileWriter' => array(
1158
+ 'version' => '2.7.1.0',
1159
+ 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadFileWriter.php'
1160
+ ),
1161
+ 'Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin' => array(
1162
+ 'version' => '2.7.1.0',
1163
+ 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php'
1164
+ ),
1165
+ 'Automattic\\Jetpack\\Autoloader\\ManifestGenerator' => array(
1166
+ 'version' => '2.7.1.0',
1167
+ 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/ManifestGenerator.php'
1168
+ ),
1169
+ 'FPDF' => array(
1170
+ 'version' => '1.8.2.0',
1171
+ 'path' => $vendorDir . '/setasign/fpdf/fpdf.php'
1172
+ ),
1173
  );
vendor/composer/jetpack_autoload_psr4.php DELETED
@@ -1,49 +0,0 @@
1
- <?php
2
-
3
- // This file `jetpack_autoload_psr4.php` was auto generated by automattic/jetpack-autoloader.
4
-
5
- $vendorDir = dirname(__DIR__);
6
- $baseDir = dirname($vendorDir);
7
-
8
- return array(
9
- 'setasign\\Fpdi\\' => array(
10
- 'version' => '2.3.5.0',
11
- 'path' => array( $vendorDir . '/setasign/fpdi/src' )
12
- ),
13
- 'baltpeter\\Internetmarke\\' => array(
14
- 'version' => '0.5.0.0',
15
- 'path' => array( $vendorDir . '/baltpeter/internetmarke-php/src/baltpeter/Internetmarke' )
16
- ),
17
- 'WsdlToPhp\\WsSecurity\\' => array(
18
- 'version' => '1.2.2.0',
19
- 'path' => array( $vendorDir . '/wsdltophp/wssecurity/src' )
20
- ),
21
- 'Vendidero\\TrustedShops\\' => array(
22
- 'version' => '4.0.9.0',
23
- 'path' => array( $baseDir . '/packages/woocommerce-trusted-shops/src' )
24
- ),
25
- 'Vendidero\\Germanized\\Shipments\\' => array(
26
- 'version' => '1.4.2.0',
27
- 'path' => array( $baseDir . '/packages/woocommerce-germanized-shipments/src' )
28
- ),
29
- 'Vendidero\\Germanized\\DHL\\' => array(
30
- 'version' => '1.4.3.0',
31
- 'path' => array( $baseDir . '/packages/woocommerce-germanized-dhl/src' )
32
- ),
33
- 'Vendidero\\Germanized\\' => array(
34
- 'version' => 'dev-master',
35
- 'path' => array( $baseDir . '/src' )
36
- ),
37
- 'DeepCopy\\' => array(
38
- 'version' => '1.10.2.0',
39
- 'path' => array( $vendorDir . '/myclabs/deep-copy/src/DeepCopy' )
40
- ),
41
- 'Composer\\Installers\\' => array(
42
- 'version' => '1.9.0.0',
43
- 'path' => array( $vendorDir . '/composer/installers/src/Composer/Installers' )
44
- ),
45
- 'Automattic\\Jetpack\\Autoloader\\' => array(
46
- 'version' => '2.6.0.0',
47
- 'path' => array( $vendorDir . '/automattic/jetpack-autoloader/src' )
48
- ),
49
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/jetpack-autoloader/autoload_functions.php DELETED
@@ -1,74 +0,0 @@
1
- <?php
2
- /**
3
- * This file was automatically generated by automattic/jetpack-autoloader.
4
- *
5
- * @package automattic/jetpack-autoloader
6
- */
7
-
8
- namespace Automattic\Jetpack\Autoloader\jpd13c1bee9bc21e22afd7af873416bd93;
9
-
10
- // phpcs:ignore
11
-
12
- /**
13
- * Used for autoloading jetpack packages.
14
- *
15
- * @param string $class_name Class Name to load.
16
- *
17
- * @return Boolean Whether the class_name was found in the classmap.
18
- */
19
- function autoloader( $class_name ) {
20
- global $jetpack_autoloader_loader;
21
- if ( ! isset( $jetpack_autoloader_loader ) ) {
22
- return false;
23
- }
24
-
25
- $file = $jetpack_autoloader_loader->find_class_file( $class_name );
26
- if ( ! isset( $file ) ) {
27
- return false;
28
- }
29
-
30
- require_once $file;
31
- return true;
32
- }
33
-
34
- /**
35
- * Finds the latest installed autoloader. If this is the latest autoloader, sets
36
- * up the classmap and filemap.
37
- */
38
- function set_up_autoloader() {
39
- global $jetpack_autoloader_latest_version;
40
- global $jetpack_autoloader_loader;
41
-
42
- require_once __DIR__ . '/class-plugins-handler.php';
43
- require_once __DIR__ . '/class-version-selector.php';
44
- require_once __DIR__ . '/class-autoloader-locator.php';
45
- require_once __DIR__ . '/class-autoloader-handler.php';
46
-
47
- $plugins_handler = new Plugins_Handler();
48
- $version_selector = new Version_Selector();
49
- $autoloader_handler = new Autoloader_Handler(
50
- $plugins_handler->get_current_plugin_path(),
51
- $plugins_handler->get_all_active_plugins_paths(),
52
- new Autoloader_Locator( $version_selector ),
53
- $version_selector
54
- );
55
-
56
- // The autoloader must be reset when a plugin that was previously unknown is detected.
57
- if ( $autoloader_handler->should_autoloader_reset() ) {
58
- $jetpack_autoloader_latest_version = null;
59
- $jetpack_autoloader_loader = null;
60
- }
61
-
62
- if ( ! $autoloader_handler->is_latest_autoloader() || isset( $jetpack_autoloader_loader ) ) {
63
- return;
64
- }
65
-
66
- require_once __DIR__ . '/class-manifest-handler.php';
67
- require_once __DIR__ . '/class-version-loader.php';
68
-
69
- $jetpack_autoloader_loader = $autoloader_handler->build_autoloader();
70
- $autoloader_handler->update_autoloader_chain();
71
-
72
- // Now that the autoloader is ready we can load the files in the filemap safely.
73
- $jetpack_autoloader_loader->load_filemap();
74
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/jetpack-autoloader/class-autoloader-handler.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpd13c1bee9bc21e22afd7af873416bd93;
9
 
10
  // phpcs:ignore
11
 
@@ -14,39 +14,22 @@ namespace Automattic\Jetpack\Autoloader\jpd13c1bee9bc21e22afd7af873416bd93;
14
  */
15
  class Autoloader_Handler {
16
 
17
- // The name of the autoloader function registered by v1.* autoloaders.
18
- const V1_AUTOLOADER_NAME = 'Automattic\Jetpack\Autoloader\autoloader';
19
-
20
- /*
21
- * The autoloader function for v2.* autoloaders is named __NAMESPACE__ . \autoloader.
22
- * The namespace is defined in AutoloadGenerator as
23
- * 'Automattic\Jetpack\Autoloader\jp' plus a unique suffix.
24
- */
25
- const V2_AUTOLOADER_BASE = 'Automattic\Jetpack\Autoloader\jp';
26
-
27
  /**
28
- * The current plugin path.
29
  *
30
- * @var string
31
  */
32
- private $current_plugin_path;
33
 
34
  /**
35
- * The paths for all of the active plugins.
36
  *
37
- * @var array
38
  */
39
- private $active_plugin_paths;
40
 
41
  /**
42
- * The Autoloader_Locator object.
43
- *
44
- * @var Autoloader_Locator
45
- */
46
- private $autoloader_locator;
47
-
48
- /**
49
- * The Version_Selector object.
50
  *
51
  * @var Version_Selector
52
  */
@@ -55,144 +38,54 @@ class Autoloader_Handler {
55
  /**
56
  * The constructor.
57
  *
58
- * @param string $current_plugin_path The current plugin path.
59
- * @param array $active_plugin_paths The active plugin paths.
60
- * @param Autoloader_Locator $autoloader_locator The Autoloader_Locator object.
61
- * @param Version_Selector $version_selector The Version_Selector object.
62
  */
63
- public function __construct( $current_plugin_path, $active_plugin_paths, $autoloader_locator, $version_selector ) {
64
- $this->current_plugin_path = $current_plugin_path;
65
- $this->active_plugin_paths = $active_plugin_paths;
66
- $this->autoloader_locator = $autoloader_locator;
67
- $this->version_selector = $version_selector;
68
  }
69
 
70
  /**
71
- * Finds the latest installed autoloader.
72
  *
73
- * @return bool True if this autoloader is the latest, false otherwise.
74
  */
75
- public function is_latest_autoloader() {
76
- global $jetpack_autoloader_latest_version;
77
-
78
- if ( isset( $jetpack_autoloader_latest_version ) ) {
79
- return $jetpack_autoloader_latest_version === $this->autoloader_locator->get_autoloader_version( $this->current_plugin_path );
80
- }
81
-
82
- $latest_plugin = $this->autoloader_locator->find_latest_autoloader( $this->active_plugin_paths, $jetpack_autoloader_latest_version );
83
- if ( ! isset( $latest_plugin ) ) {
84
- return true;
85
- }
86
-
87
- if ( $latest_plugin !== $this->current_plugin_path ) {
88
- require $this->autoloader_locator->get_autoloader_path( $latest_plugin );
89
- return false;
90
- }
91
-
92
- return true;
93
- }
94
-
95
- /**
96
- * Checks whether the autoloader should be reset. The autoloader should be reset:
97
- *
98
- * - When a plugin is activated via a method other than a request, for example using WP-CLI.
99
- * - When the active plugins list changes between autoloader checks, for example when filtered by a plugin.
100
- *
101
- * We perform this reset because the manifest files for the plugin will have been initially unknown when
102
- * selecting versions for classes and files.
103
- *
104
- * If the current plugin is not already known, this method will add it to the
105
- * $jetpack_autoloader_activating_plugins_paths global.
106
- * The $jetpack_autoloader_cached_plugin_paths global will store a cache of the
107
- * active plugin paths when last changed.
108
- *
109
- * @return boolean True if the autoloader must be reset, else false.
110
- */
111
- public function should_autoloader_reset() {
112
- global $jetpack_autoloader_activating_plugins_paths;
113
- global $jetpack_autoloader_cached_plugin_paths;
114
-
115
- $plugin_unknown = ! in_array( $this->current_plugin_path, $this->active_plugin_paths, true );
116
- if ( $plugin_unknown ) {
117
- if ( ! isset( $jetpack_autoloader_activating_plugins_paths ) ) {
118
- $jetpack_autoloader_activating_plugins_paths = array();
119
- }
120
-
121
- // If the current plugin isn't known, add it to the activating plugins list.
122
- $jetpack_autoloader_activating_plugins_paths[] = $this->current_plugin_path;
123
- $this->active_plugin_paths[] = $this->current_plugin_path;
124
- }
125
-
126
- $cache_invalidated = $jetpack_autoloader_cached_plugin_paths !== $this->active_plugin_paths;
127
- if ( $cache_invalidated ) {
128
- $jetpack_autoloader_cached_plugin_paths = $this->active_plugin_paths;
129
- }
130
-
131
- return $plugin_unknown || $cache_invalidated;
132
- }
133
-
134
- /**
135
- * Builds the Version_Autoloader class that is used for autoloading.
136
- *
137
- * @return Version_Loader
138
- */
139
- public function build_autoloader() {
140
- $manifest_handler = new Manifest_Handler( $this->active_plugin_paths, $this->version_selector );
141
-
142
  global $jetpack_packages_psr4;
143
  $jetpack_packages_psr4 = array();
144
- $manifest_handler->register_plugin_manifests( 'vendor/composer/jetpack_autoload_psr4.php', $jetpack_packages_psr4 );
145
 
146
  global $jetpack_packages_classmap;
147
  $jetpack_packages_classmap = array();
148
- $manifest_handler->register_plugin_manifests( 'vendor/composer/jetpack_autoload_classmap.php', $jetpack_packages_classmap );
149
 
150
  global $jetpack_packages_filemap;
151
  $jetpack_packages_filemap = array();
152
- $manifest_handler->register_plugin_manifests( 'vendor/composer/jetpack_autoload_filemap.php', $jetpack_packages_filemap );
153
 
154
- // Store the generated autoloader data in the loader so we can use it.
155
- return new Version_Loader(
156
  $this->version_selector,
157
  $jetpack_packages_classmap,
158
  $jetpack_packages_psr4,
159
  $jetpack_packages_filemap
160
  );
 
 
 
161
  }
162
 
163
  /**
164
- * Updates the spl autoloader chain:
165
- * - Registers this namespace's autoloader function.
166
- * - If a v1 autoloader function is registered, moves it to the end of the chain.
167
- * - Removes any other v2 autoloader functions that have already been registered. This
168
- * can occur when the autoloader is being reset by an activating plugin.
169
  */
170
- public function update_autoloader_chain() {
171
- spl_autoload_register( __NAMESPACE__ . '\autoloader' );
172
-
173
- $autoload_chain = spl_autoload_functions();
174
-
175
- foreach ( $autoload_chain as $autoloader ) {
176
- if ( ! is_string( $autoloader ) ) {
177
- /*
178
- * The Jetpack Autoloader functions are registered as strings, so
179
- * just continue if $autoloader isn't a string.
180
- */
181
- continue;
182
- }
183
-
184
- if ( self::V1_AUTOLOADER_NAME === $autoloader ) {
185
- // Move the v1.* autoloader function to the end of the spl autoloader chain.
186
- spl_autoload_unregister( $autoloader );
187
- spl_autoload_register( $autoloader );
188
 
189
- } elseif (
190
- self::V2_AUTOLOADER_BASE === substr( $autoloader, 0, strlen( self::V2_AUTOLOADER_BASE ) )
191
- && __NAMESPACE__ !== substr( $autoloader, 0, strlen( __NAMESPACE__ ) )
192
- ) {
193
- // Unregister any other v2.* autoloader functions if they're in the chain.
194
- spl_autoload_unregister( $autoloader );
195
- }
196
- }
197
  }
198
  }
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp11a2348af64ff8817f711cc97b151bde;
9
 
10
  // phpcs:ignore
11
 
14
  */
15
  class Autoloader_Handler {
16
 
 
 
 
 
 
 
 
 
 
 
17
  /**
18
+ * The Hook_Manager instance.
19
  *
20
+ * @var Hook_Manager
21
  */
22
+ private $hook_manager;
23
 
24
  /**
25
+ * The Manifest_Reader instance.
26
  *
27
+ * @var Manifest_Reader
28
  */
29
+ private $manifest_reader;
30
 
31
  /**
32
+ * The Version_Selector instance.
 
 
 
 
 
 
 
33
  *
34
  * @var Version_Selector
35
  */
38
  /**
39
  * The constructor.
40
  *
41
+ * @param Hook_Manager $hook_manager The Hook_Manager instance.
42
+ * @param Manifest_Reader $manifest_reader The Manifest_Reader instance.
43
+ * @param Version_Selector $version_selector The Version_Selector instance.
 
44
  */
45
+ public function __construct( $hook_manager, $manifest_reader, $version_selector ) {
46
+ $this->hook_manager = $hook_manager;
47
+ $this->manifest_reader = $manifest_reader;
48
+ $this->version_selector = $version_selector;
 
49
  }
50
 
51
  /**
52
+ * Creates an autoloader using the given plugins and activates it.
53
  *
54
+ * @param string[] $plugins The plugins to initialize the autoloader for.
55
  */
56
+ public function create_autoloader( $plugins ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
  global $jetpack_packages_psr4;
58
  $jetpack_packages_psr4 = array();
59
+ $this->manifest_reader->read_manifests( $plugins, 'vendor/composer/jetpack_autoload_psr4.php', $jetpack_packages_psr4 );
60
 
61
  global $jetpack_packages_classmap;
62
  $jetpack_packages_classmap = array();
63
+ $this->manifest_reader->read_manifests( $plugins, 'vendor/composer/jetpack_autoload_classmap.php', $jetpack_packages_classmap );
64
 
65
  global $jetpack_packages_filemap;
66
  $jetpack_packages_filemap = array();
67
+ $this->manifest_reader->read_manifests( $plugins, 'vendor/composer/jetpack_autoload_filemap.php', $jetpack_packages_filemap );
68
 
69
+ $loader = new Version_Loader(
 
70
  $this->version_selector,
71
  $jetpack_packages_classmap,
72
  $jetpack_packages_psr4,
73
  $jetpack_packages_filemap
74
  );
75
+
76
+ // Activate the autoloader.
77
+ Autoloader::activate( $loader );
78
  }
79
 
80
  /**
81
+ * Resets the active autoloader and all related global state.
 
 
 
 
82
  */
83
+ public function reset_autoloader() {
84
+ global $jetpack_autoloader_loader;
85
+ global $jetpack_autoloader_latest_version;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
 
87
+ $this->hook_manager->reset();
88
+ $jetpack_autoloader_loader = null;
89
+ $jetpack_autoloader_latest_version = null;
 
 
 
 
 
90
  }
91
  }
vendor/jetpack-autoloader/class-autoloader-locator.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpd13c1bee9bc21e22afd7af873416bd93;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp11a2348af64ff8817f711cc97b151bde;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-autoloader.php ADDED
@@ -0,0 +1,159 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * This file was automatically generated by automattic/jetpack-autoloader.
4
+ *
5
+ * @package automattic/jetpack-autoloader
6
+ */
7
+
8
+ namespace Automattic\Jetpack\Autoloader\jp11a2348af64ff8817f711cc97b151bde;
9
+
10
+ // phpcs:ignore
11
+
12
+ /**
13
+ * This class handles management of the actual PHP autoloader.
14
+ */
15
+ class Autoloader {
16
+
17
+ /**
18
+ * Checks to see whether or not the autoloader should be initialized and then initializes it if so.
19
+ *
20
+ * @param Container|null $container The container we want to use for autoloader initialization. If none is given
21
+ * then a container will be created automatically.
22
+ */
23
+ public static function init( $container = null ) {
24
+ // The container holds and manages the lifecycle of our dependencies
25
+ // to make them easier to work with and increase flexibility.
26
+ if ( ! isset( $container ) ) {
27
+ require_once __DIR__ . '/class-container.php';
28
+ $container = new Container();
29
+ }
30
+
31
+ // phpcs:disable Generic.Commenting.DocComment.MissingShort
32
+
33
+ /** @var Plugin_Locator $plugin_locator */
34
+ $plugin_locator = $container->get( Plugin_Locator::class );
35
+
36
+ /** @var Plugins_Handler $plugins_handler */
37
+ $plugins_handler = $container->get( Plugins_Handler::class );
38
+
39
+ // The current plugin is the one that we are attempting to initialize here.
40
+ $current_plugin = $plugin_locator->find_current_plugin();
41
+
42
+ // The cached plugins are all of those that were active or discovered by the autoloader during a previous request.
43
+ // Note that it's possible this list will include plugins that have since been deactivated, but after a request
44
+ // the cache should be updated and the deactivated plugins will be removed.
45
+ $cached_plugins = $plugins_handler->get_cached_plugins();
46
+
47
+ // The active plugins are those that we were able to discover in on the site. This list will not include
48
+ // mu-plugins, those activated by code, or those who are hidden by filtering.
49
+ // By combining these lists we can preemptively load classes for plugins that are activated via another method.
50
+ // While this may result in us considering packages in deactivated plugins the request after they're removed,
51
+ // there shouldn't be any problems as a result and the eventual consistency is reliable enough.
52
+ $all_plugins = array_values( array_unique( array_merge( $plugins_handler->get_active_plugins(), $cached_plugins ) ) );
53
+
54
+ /** @var Latest_Autoloader_Guard $guard */
55
+ $guard = $container->get( Latest_Autoloader_Guard::class );
56
+ if ( $guard->should_stop_init( $current_plugin, $all_plugins ) ) {
57
+ return;
58
+ }
59
+
60
+ /** @var Autoloader_Handler $autoloader_handler */
61
+ $autoloader_handler = $container->get( Autoloader_Handler::class );
62
+
63
+ // Initialize the autoloader using the handler now that we're ready.
64
+ $autoloader_handler->create_autoloader( $all_plugins );
65
+
66
+ /** @var Hook_Manager $hook_manager */
67
+ $hook_manager = $container->get( Hook_Manager::class );
68
+
69
+ // When the active and cached plugin lists do not match we should
70
+ // update the cache. This will prevent plugins that have been
71
+ // deactivated from being considered in other requests.
72
+ $hook_manager->add_action(
73
+ 'shutdown',
74
+ function () use ( $plugins_handler, $cached_plugins ) {
75
+ // Don't save a broken cache if an error happens during some plugin's initialization.
76
+ if ( ! did_action( 'plugins_loaded' ) ) {
77
+ // Ensure that the cache is emptied to prevent consecutive failures if the cache is to blame.
78
+ if ( ! empty( $cached_plugins ) ) {
79
+ $plugins_handler->cache_plugins( array() );
80
+ }
81
+
82
+ return;
83
+ }
84
+
85
+ // Load the active plugins fresh since the list we have above might not contain
86
+ // plugins that were activated but did not reset the autoloader. This happens
87
+ // because they were already included in the cache.
88
+ $active_plugins = $plugins_handler->get_active_plugins();
89
+
90
+ // The paths should be sorted for easy comparisons with those loaded from the cache.
91
+ // Note we don't need to sort the cached entries because they're already sorted.
92
+ sort( $active_plugins );
93
+
94
+ // We don't want to waste time saving a cache that hasn't changed.
95
+ if ( $cached_plugins === $active_plugins ) {
96
+ return;
97
+ }
98
+
99
+ $plugins_handler->cache_plugins( $active_plugins );
100
+ }
101
+ );
102
+
103
+ // phpcs:enable Generic.Commenting.DocComment.MissingShort
104
+ }
105
+
106
+ /**
107
+ * Loads a class file if one could be found.
108
+ *
109
+ * @param string $class_name The name of the class to autoload.
110
+ *
111
+ * @return bool Indicates whether or not a class file was loaded.
112
+ */
113
+ public static function load_class( $class_name ) {
114
+ global $jetpack_autoloader_loader;
115
+ if ( ! isset( $jetpack_autoloader_loader ) ) {
116
+ return;
117
+ }
118
+
119
+ $file = $jetpack_autoloader_loader->find_class_file( $class_name );
120
+ if ( ! isset( $file ) ) {
121
+ return false;
122
+ }
123
+
124
+ require $file;
125
+ return true;
126
+ }
127
+
128
+ /**
129
+ * Activates this autoloader and deactivates any other v2 autoloaders that may be present.
130
+ *
131
+ * @param Version_Loader $version_loader The version loader for our autoloader.
132
+ */
133
+ public static function activate( $version_loader ) {
134
+ // Set the global autoloader to indicate that we've activated this autoloader.
135
+ global $jetpack_autoloader_loader;
136
+ $jetpack_autoloader_loader = $version_loader;
137
+
138
+ // Remove any v2 autoloader that we've already registered.
139
+ $autoload_chain = spl_autoload_functions();
140
+ foreach ( $autoload_chain as $autoloader ) {
141
+ // Jetpack autoloaders are always strings.
142
+ if ( ! is_string( $autoloader ) ) {
143
+ continue;
144
+ }
145
+
146
+ // We can identify a v2 autoloader using the namespace prefix without the unique suffix.
147
+ if ( 'Automattic\\Jetpack\\Autoloader\\jp' === substr( $autoloader, 0, 32 ) ) {
148
+ spl_autoload_unregister( $autoloader );
149
+ continue;
150
+ }
151
+ }
152
+
153
+ // Ensure that the autoloader is first to avoid contention with others.
154
+ spl_autoload_register( self::class . '::load_class', true, true );
155
+
156
+ // Now that we've activated the autoloader we should load the filemap.
157
+ $jetpack_autoloader_loader->load_filemap();
158
+ }
159
+ }
vendor/jetpack-autoloader/class-container.php ADDED
@@ -0,0 +1,149 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * This file was automatically generated by automattic/jetpack-autoloader.
4
+ *
5
+ * @package automattic/jetpack-autoloader
6
+ */
7
+
8
+ namespace Automattic\Jetpack\Autoloader\jp11a2348af64ff8817f711cc97b151bde;
9
+
10
+ // phpcs:ignore
11
+
12
+ /**
13
+ * This class manages the files and dependencies of the autoloader.
14
+ */
15
+ class Container {
16
+
17
+ /**
18
+ * Since each autoloader's class files exist within their own namespace we need a map to
19
+ * convert between the local class and a shared key. Note that no version checking is
20
+ * performed on these dependencies and the first autoloader to register will be the
21
+ * one that is utilized.
22
+ */
23
+ const SHARED_DEPENDENCY_KEYS = array(
24
+ Hook_Manager::class => 'Hook_Manager',
25
+ );
26
+
27
+ /**
28
+ * A map of all the dependencies we've registered with the container and created.
29
+ *
30
+ * @var array
31
+ */
32
+ protected $dependencies;
33
+
34
+ /**
35
+ * The constructor.
36
+ */
37
+ public function __construct() {
38
+ $this->dependencies = array();
39
+
40
+ $this->register_shared_dependencies();
41
+ $this->register_dependencies();
42
+ $this->initialize_globals();
43
+ }
44
+
45
+ /**
46
+ * Gets a dependency out of the container.
47
+ *
48
+ * @param string $class The class to fetch.
49
+ *
50
+ * @return mixed
51
+ * @throws \InvalidArgumentException When a class that isn't registered with the container is fetched.
52
+ */
53
+ public function get( $class ) {
54
+ if ( ! isset( $this->dependencies[ $class ] ) ) {
55
+ throw new \InvalidArgumentException( "Class '$class' is not registered with the container." );
56
+ }
57
+
58
+ return $this->dependencies[ $class ];
59
+ }
60
+
61
+ /**
62
+ * Registers all of the dependencies that are shared between all instances of the autoloader.
63
+ */
64
+ private function register_shared_dependencies() {
65
+ global $jetpack_autoloader_container_shared;
66
+ if ( ! isset( $jetpack_autoloader_container_shared ) ) {
67
+ $jetpack_autoloader_container_shared = array();
68
+ }
69
+
70
+ $key = self::SHARED_DEPENDENCY_KEYS[ Hook_Manager::class ];
71
+ if ( ! isset( $jetpack_autoloader_container_shared[ $key ] ) ) {
72
+ require_once __DIR__ . '/class-hook-manager.php';
73
+ $jetpack_autoloader_container_shared[ $key ] = new Hook_Manager();
74
+ }
75
+ $this->dependencies[ Hook_Manager::class ] = &$jetpack_autoloader_container_shared[ $key ];
76
+ }
77
+
78
+ /**
79
+ * Registers all of the dependencies with the container.
80
+ */
81
+ private function register_dependencies() {
82
+ require_once __DIR__ . '/class-path-processor.php';
83
+ $this->dependencies[ Path_Processor::class ] = new Path_Processor();
84
+
85
+ require_once __DIR__ . '/class-plugin-locator.php';
86
+ $this->dependencies[ Plugin_Locator::class ] = new Plugin_Locator(
87
+ $this->get( Path_Processor::class )
88
+ );
89
+
90
+ require_once __DIR__ . '/class-version-selector.php';
91
+ $this->dependencies[ Version_Selector::class ] = new Version_Selector();
92
+
93
+ require_once __DIR__ . '/class-autoloader-locator.php';
94
+ $this->dependencies[ Autoloader_Locator::class ] = new Autoloader_Locator(
95
+ $this->get( Version_Selector::class )
96
+ );
97
+
98
+ require_once __DIR__ . '/class-manifest-reader.php';
99
+ $this->dependencies[ Manifest_Reader::class ] = new Manifest_Reader(
100
+ $this->get( Version_Selector::class )
101
+ );
102
+
103
+ require_once __DIR__ . '/class-plugins-handler.php';
104
+ $this->dependencies[ Plugins_Handler::class ] = new Plugins_Handler(
105
+ $this->get( Plugin_Locator::class ),
106
+ $this->get( Path_Processor::class )
107
+ );
108
+
109
+ require_once __DIR__ . '/class-autoloader-handler.php';
110
+ $this->dependencies[ Autoloader_Handler::class ] = new Autoloader_Handler(
111
+ $this->get( Hook_Manager::class ),
112
+ $this->get( Manifest_Reader::class ),
113
+ $this->get( Version_Selector::class )
114
+ );
115
+
116
+ require_once __DIR__ . '/class-latest-autoloader-guard.php';
117
+ $this->dependencies[ Latest_Autoloader_Guard::class ] = new Latest_Autoloader_Guard(
118
+ $this->get( Plugins_Handler::class ),
119
+ $this->get( Autoloader_Handler::class ),
120
+ $this->get( Autoloader_Locator::class )
121
+ );
122
+
123
+ // Register any classes that we will use elsewhere.
124
+ require_once __DIR__ . '/class-version-loader.php';
125
+ }
126
+
127
+ /**
128
+ * Initializes any of the globals needed by the autoloader.
129
+ */
130
+ private function initialize_globals() {
131
+ // Not all plugins can be found using the locator. In cases where a plugin loads the autoloader
132
+ // but was not discoverable, we will record them in this array to track them as "active".
133
+ global $jetpack_autoloader_activating_plugins_paths;
134
+ if ( ! isset( $jetpack_autoloader_activating_plugins_paths ) ) {
135
+ $jetpack_autoloader_activating_plugins_paths = array();
136
+ }
137
+
138
+ // Since older autoloaders include newer ones, we need to be able to tell the difference between an
139
+ // inclusion via autoloader and an inclusion via plugin file. This allows the autoloader to
140
+ // perform special tasks for each kind of inclusion.
141
+ global $jetpack_autoloader_including_latest;
142
+ if ( ! isset( $jetpack_autoloader_including_latest ) ) {
143
+ // If the latest version global has been set but the including latest hasn't, it means that an
144
+ // older autoloader without support for the global is including us.
145
+ global $jetpack_autoloader_latest_version;
146
+ $jetpack_autoloader_including_latest = isset( $jetpack_autoloader_latest_version );
147
+ }
148
+ }
149
+ }
vendor/jetpack-autoloader/class-hook-manager.php ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * This file was automatically generated by automattic/jetpack-autoloader.
4
+ *
5
+ * @package automattic/jetpack-autoloader
6
+ */
7
+
8
+ namespace Automattic\Jetpack\Autoloader\jp11a2348af64ff8817f711cc97b151bde;
9
+
10
+ // phpcs:ignore
11
+
12
+ /**
13
+ * Allows the latest autoloader to register hooks that can be removed when the autoloader is reset.
14
+ */
15
+ class Hook_Manager {
16
+
17
+ /**
18
+ * An array containing all of the hooks that we've registered.
19
+ *
20
+ * @var array
21
+ */
22
+ private $registered_hooks;
23
+
24
+ /**
25
+ * The constructor.
26
+ */
27
+ public function __construct() {
28
+ $this->registered_hooks = array();
29
+ }
30
+
31
+ /**
32
+ * Adds an action to WordPress and registers it internally.
33
+ *
34
+ * @param string $tag The name of the action which is hooked.
35
+ * @param callable $callable The function to call.
36
+ * @param int $priority Used to specify the priority of the action.
37
+ * @param int $accepted_args Used to specify the number of arguments the callable accepts.
38
+ */
39
+ public function add_action( $tag, $callable, $priority = 10, $accepted_args = 1 ) {
40
+ $this->registered_hooks[ $tag ][] = array(
41
+ 'priority' => $priority,
42
+ 'callable' => $callable,
43
+ );
44
+
45
+ add_action( $tag, $callable, $priority, $accepted_args );
46
+ }
47
+
48
+ /**
49
+ * Adds a filter to WordPress and registers it internally.
50
+ *
51
+ * @param string $tag The name of the filter which is hooked.
52
+ * @param callable $callable The function to call.
53
+ * @param int $priority Used to specify the priority of the filter.
54
+ * @param int $accepted_args Used to specify the number of arguments the callable accepts.
55
+ */
56
+ public function add_filter( $tag, $callable, $priority = 10, $accepted_args = 1 ) {
57
+ $this->registered_hooks[ $tag ][] = array(
58
+ 'priority' => $priority,
59
+ 'callable' => $callable,
60
+ );
61
+
62
+ add_filter( $tag, $callable, $priority, $accepted_args );
63
+ }
64
+
65
+ /**
66
+ * Removes all of the registered hooks.
67
+ */
68
+ public function reset() {
69
+ foreach ( $this->registered_hooks as $tag => $hooks ) {
70
+ foreach ( $hooks as $hook ) {
71
+ remove_filter( $tag, $hook['callable'], $hook['priority'] );
72
+ }
73
+ }
74
+ $this->registered_hooks = array();
75
+ }
76
+ }
vendor/jetpack-autoloader/class-latest-autoloader-guard.php ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * This file was automatically generated by automattic/jetpack-autoloader.
4
+ *
5
+ * @package automattic/jetpack-autoloader
6
+ */
7
+
8
+ namespace Automattic\Jetpack\Autoloader\jp11a2348af64ff8817f711cc97b151bde;
9
+
10
+ // phpcs:ignore
11
+
12
+ /**
13
+ * This class ensures that we're only executing the latest autoloader.
14
+ */
15
+ class Latest_Autoloader_Guard {
16
+
17
+ /**
18
+ * The Plugins_Handler instance.
19
+ *
20
+ * @var Plugins_Handler
21
+ */
22
+ private $plugins_handler;
23
+
24
+ /**
25
+ * The Autoloader_Handler instance.
26
+ *
27
+ * @var Autoloader_Handler
28
+ */
29
+ private $autoloader_handler;
30
+
31
+ /**
32
+ * The Autoloader_locator instance.
33
+ *
34
+ * @var Autoloader_Locator
35
+ */
36
+ private $autoloader_locator;
37
+
38
+ /**
39
+ * The constructor.
40
+ *
41
+ * @param Plugins_Handler $plugins_handler The Plugins_Handler instance.
42
+ * @param Autoloader_Handler $autoloader_handler The Autoloader_Handler instance.
43
+ * @param Autoloader_Locator $autoloader_locator The Autoloader_Locator instance.
44
+ */
45
+ public function __construct( $plugins_handler, $autoloader_handler, $autoloader_locator ) {
46
+ $this->plugins_handler = $plugins_handler;
47
+ $this->autoloader_handler = $autoloader_handler;
48
+ $this->autoloader_locator = $autoloader_locator;
49
+ }
50
+
51
+ /**
52
+ * Indicates whether or not the autoloader should be initialized. Note that this function
53
+ * has the side-effect of actually loading the latest autoloader in the event that this
54
+ * is not it.
55
+ *
56
+ * @param string $current_plugin The current plugin we're checking.
57
+ * @param string[] $plugins The active plugins to check for autoloaders in.
58
+ *
59
+ * @return bool True if we should stop initialization, otherwise false.
60
+ */
61
+ public function should_stop_init( $current_plugin, $plugins ) {
62
+ global $jetpack_autoloader_including_latest;
63
+ global $jetpack_autoloader_latest_version;
64
+
65
+ // When we're being included from an older autoloader we need to
66
+ // reset the latest version so that the new autoloader can look
67
+ // for the latest autoloader again.
68
+ if ( $jetpack_autoloader_including_latest ) {
69
+ $jetpack_autoloader_latest_version = null;
70
+ }
71
+
72
+ // We need to reset the autoloader when the plugins change because
73
+ // that means the autoloader was generated with a different list.
74
+ if ( $this->plugins_handler->have_plugins_changed( $plugins ) ) {
75
+ $this->autoloader_handler->reset_autoloader();
76
+ }
77
+
78
+ // Don't bother initializing the autoloader if it already has been.
79
+ if ( isset( $jetpack_autoloader_latest_version ) ) {
80
+ return true;
81
+ }
82
+
83
+ $latest_plugin = $this->autoloader_locator->find_latest_autoloader( $plugins, $jetpack_autoloader_latest_version );
84
+ if ( isset( $latest_plugin ) && $latest_plugin !== $current_plugin ) {
85
+ $jetpack_autoloader_including_latest = true;
86
+ require $this->autoloader_locator->get_autoloader_path( $latest_plugin );
87
+ $jetpack_autoloader_including_latest = false;
88
+ return true;
89
+ }
90
+
91
+ return false;
92
+ }
93
+ }
vendor/jetpack-autoloader/{class-manifest-handler.php → class-manifest-reader.php} RENAMED
@@ -5,21 +5,14 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpd13c1bee9bc21e22afd7af873416bd93;
9
 
10
  // phpcs:ignore
11
 
12
  /**
13
- * This class selects the most recent version of a registered path.
14
  */
15
- class Manifest_Handler {
16
-
17
- /**
18
- * An array of the active plugin paths we want to search.
19
- *
20
- * @var array
21
- */
22
- private $active_plugin_paths;
23
 
24
  /**
25
  * The Version_Selector object.
@@ -31,28 +24,27 @@ class Manifest_Handler {
31
  /**
32
  * The constructor.
33
  *
34
- * @param array $active_plugin_paths An array of the active plugin paths we want to search.
35
  * @param Version_Selector $version_selector The Version_Selector object.
36
  */
37
- public function __construct( $active_plugin_paths, $version_selector ) {
38
- $this->active_plugin_paths = $active_plugin_paths;
39
- $this->version_selector = $version_selector;
40
  }
41
 
42
  /**
43
- * Registers all of the paths in a given manifest.
44
  *
 
45
  * @param string $manifest_path The path that we're loading the manifest from in each plugin.
46
  * @param array $path_map The path map to add the contents of the manifests to.
47
  *
48
  * @return array $path_map The path map we've built using the manifests in each plugin.
49
  */
50
- public function register_plugin_manifests( $manifest_path, &$path_map ) {
51
  $file_paths = array_map(
52
  function ( $path ) use ( $manifest_path ) {
53
  return trailingslashit( $path ) . $manifest_path;
54
  },
55
- $this->active_plugin_paths
56
  );
57
 
58
  foreach ( $file_paths as $path ) {
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp11a2348af64ff8817f711cc97b151bde;
9
 
10
  // phpcs:ignore
11
 
12
  /**
13
+ * This class reads autoloader manifest files.
14
  */
15
+ class Manifest_Reader {
 
 
 
 
 
 
 
16
 
17
  /**
18
  * The Version_Selector object.
24
  /**
25
  * The constructor.
26
  *
 
27
  * @param Version_Selector $version_selector The Version_Selector object.
28
  */
29
+ public function __construct( $version_selector ) {
30
+ $this->version_selector = $version_selector;
 
31
  }
32
 
33
  /**
34
+ * Reads all of the manifests in the given plugin paths.
35
  *
36
+ * @param array $plugin_paths The paths to the plugins we're loading the manifest in.
37
  * @param string $manifest_path The path that we're loading the manifest from in each plugin.
38
  * @param array $path_map The path map to add the contents of the manifests to.
39
  *
40
  * @return array $path_map The path map we've built using the manifests in each plugin.
41
  */
42
+ public function read_manifests( $plugin_paths, $manifest_path, &$path_map ) {
43
  $file_paths = array_map(
44
  function ( $path ) use ( $manifest_path ) {
45
  return trailingslashit( $path ) . $manifest_path;
46
  },
47
+ $plugin_paths
48
  );
49
 
50
  foreach ( $file_paths as $path ) {
vendor/jetpack-autoloader/class-path-processor.php ADDED
@@ -0,0 +1,190 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * This file was automatically generated by automattic/jetpack-autoloader.
4
+ *
5
+ * @package automattic/jetpack-autoloader
6
+ */
7
+
8
+ namespace Automattic\Jetpack\Autoloader\jp11a2348af64ff8817f711cc97b151bde;
9
+
10
+ // phpcs:ignore
11
+
12
+ /**
13
+ * This class handles dealing with paths for the autoloader.
14
+ */
15
+ class Path_Processor {
16
+ /**
17
+ * Given a path this will replace any of the path constants with a token to represent it.
18
+ *
19
+ * @param string $path The path we want to process.
20
+ * @return string The tokenized path.
21
+ */
22
+ public function tokenize_path_constants( $path ) {
23
+ $path = wp_normalize_path( $path );
24
+
25
+ $constants = $this->get_normalized_constants();
26
+ foreach ( $constants as $constant => $constant_path ) {
27
+ $len = strlen( $constant_path );
28
+ if ( substr( $path, 0, $len ) !== $constant_path ) {
29
+ continue;
30
+ }
31
+
32
+ return substr_replace( $path, '{{' . $constant . '}}', 0, $len );
33
+ }
34
+
35
+ return $path;
36
+ }
37
+
38
+ /**
39
+ * Given a path this will replace any of the path constant tokens with the expanded path.
40
+ *
41
+ * @param string $tokenized_path The path we want to process.
42
+ * @return string The expanded path.
43
+ */
44
+ public function untokenize_path_constants( $tokenized_path ) {
45
+ $tokenized_path = wp_normalize_path( $tokenized_path );
46
+
47
+ $constants = $this->get_normalized_constants();
48
+ foreach ( $constants as $constant => $constant_path ) {
49
+ $constant = '{{' . $constant . '}}';
50
+
51
+ $len = strlen( $constant );
52
+ if ( substr( $tokenized_path, 0, $len ) !== $constant ) {
53
+ continue;
54
+ }
55
+
56
+ return $this->get_real_path( substr_replace( $tokenized_path, $constant_path, 0, $len ) );
57
+ }
58
+
59
+ return $tokenized_path;
60
+ }
61
+
62
+ /**
63
+ * Given a file and an array of places it might be, this will find the absolute path and return it.
64
+ *
65
+ * @param string $file The plugin or theme file to resolve.
66
+ * @param array $directories_to_check The directories we should check for the file if it isn't an absolute path.
67
+ * @return string|false Returns the absolute path to the directory, otherwise false.
68
+ */
69
+ public function find_directory_with_autoloader( $file, $directories_to_check ) {
70
+ $file = wp_normalize_path( $file );
71
+
72
+ if ( ! $this->is_absolute_path( $file ) ) {
73
+ $file = $this->find_absolute_plugin_path( $file, $directories_to_check );
74
+ if ( ! isset( $file ) ) {
75
+ return false;
76
+ }
77
+ }
78
+
79
+ // We need the real path for consistency with __DIR__ paths.
80
+ $file = $this->get_real_path( $file );
81
+
82
+ // phpcs:disable WordPress.PHP.NoSilencedErrors.Discouraged
83
+ $directory = @is_file( $file ) ? dirname( $file ) : $file;
84
+ if ( ! @is_file( $directory . '/vendor/composer/jetpack_autoload_classmap.php' ) ) {
85
+ return false;
86
+ }
87
+ // phpcs:enable WordPress.PHP.NoSilencedErrors.Discouraged
88
+
89
+ return $directory;
90
+ }
91
+
92
+ /**
93
+ * Fetches an array of normalized paths keyed by the constant they came from.
94
+ *
95
+ * @return string[] The normalized paths keyed by the constant.
96
+ */
97
+ private function get_normalized_constants() {
98
+ $raw_constants = array(
99
+ // Order the constants from most-specific to least-specific.
100
+ 'WP_PLUGIN_DIR',
101
+ 'WPMU_PLUGIN_DIR',
102
+ 'WP_CONTENT_DIR',
103
+ 'ABSPATH',
104
+ );
105
+
106
+ $constants = array();
107
+ foreach ( $raw_constants as $raw ) {
108
+ if ( ! defined( $raw ) ) {
109
+ continue;
110
+ }
111
+
112
+ $path = wp_normalize_path( constant( $raw ) );
113
+ if ( isset( $path ) ) {
114
+ $constants[ $raw ] = $path;
115
+ }
116
+ }
117
+
118
+ return $constants;
119
+ }
120
+
121
+ /**
122
+ * Indicates whether or not a path is absolute.
123
+ *
124
+ * @param string $path The path to check.
125
+ * @return bool True if the path is absolute, otherwise false.
126
+ */
127
+ private function is_absolute_path( $path ) {
128
+ if ( 0 === strlen( $path ) || '.' === $path[0] ) {
129
+ return false;
130
+ }
131
+
132
+ // Absolute paths on Windows may begin with a drive letter.
133
+ if ( preg_match( '/^[a-zA-Z]:[\/\\\\]/', $path ) ) {
134
+ return true;
135
+ }
136
+
137
+ // A path starting with / or \ is absolute; anything else is relative.
138
+ return ( '/' === $path[0] || '\\' === $path[0] );
139
+ }
140
+
141
+ /**
142
+ * Given a file and a list of directories to check, this method will try to figure out
143
+ * the absolute path to the file in question.
144
+ *
145
+ * @param string $normalized_path The normalized path to the plugin or theme file to resolve.
146
+ * @param array $directories_to_check The directories we should check for the file if it isn't an absolute path.
147
+ *
148
+ * @return string|null The absolute path to the plugin file, otherwise null.
149
+ */
150
+ private function find_absolute_plugin_path( $normalized_path, $directories_to_check ) {
151
+ // We're only able to find the absolute path for plugin/theme PHP files.
152
+ if ( ! is_string( $normalized_path ) || '.php' !== substr( $normalized_path, -4 ) ) {
153
+ return null;
154
+ }
155
+
156
+ foreach ( $directories_to_check as $directory ) {
157
+ $normalized_check = wp_normalize_path( trailingslashit( $directory ) ) . $normalized_path;
158
+ // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged
159
+ if ( @is_file( $normalized_check ) ) {
160
+ return $normalized_check;
161
+ }
162
+ }
163
+
164
+ return null;
165
+ }
166
+
167
+ /**
168
+ * Given a path this will figure out the real path that we should be using.
169
+ *
170
+ * @param string $path The path to resolve.
171
+ *
172
+ * @return string The resolved path.
173
+ */
174
+ private function get_real_path( $path ) {
175
+ // We want to resolve symbolic links for consistency with __DIR__ paths.
176
+ // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged
177
+ $real_path = @realpath( $path );
178
+ if ( false === $real_path ) {
179
+ // Let the autoloader deal with paths that don't exist.
180
+ $real_path = $path;
181
+ }
182
+
183
+ // Using realpath will make it platform-specific so we must normalize it after.
184
+ if ( $path !== $real_path ) {
185
+ $real_path = wp_normalize_path( $real_path );
186
+ }
187
+
188
+ return $real_path;
189
+ }
190
+ }
vendor/jetpack-autoloader/class-plugin-locator.php ADDED
@@ -0,0 +1,140 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * This file was automatically generated by automattic/jetpack-autoloader.
4
+ *
5
+ * @package automattic/jetpack-autoloader
6
+ */
7
+
8
+ namespace Automattic\Jetpack\Autoloader\jp11a2348af64ff8817f711cc97b151bde;
9
+
10
+ // phpcs:ignore
11
+
12
+ /**
13
+ * This class scans the WordPress installation to find active plugins.
14
+ */
15
+ class Plugin_Locator {
16
+
17
+ /**
18
+ * The path processor for finding plugin paths.
19
+ *
20
+ * @var Path_Processor
21
+ */
22
+ private $path_processor;
23
+
24
+ /**
25
+ * The constructor.
26
+ *
27
+ * @param Path_Processor $path_processor The Path_Processor instance.
28
+ */
29
+ public function __construct( $path_processor ) {
30
+ $this->path_processor = $path_processor;
31
+ }
32
+
33
+ /**
34
+ * Finds the path to the current plugin.
35
+ *
36
+ * @return string $path The path to the current plugin.
37
+ * @throws \RuntimeException If the current plugin does not have an autoloader.
38
+ */
39
+ public function find_current_plugin() {
40
+ // Escape from `vendor/__DIR__` to root plugin directory.
41
+ $plugin_directory = dirname( dirname( __DIR__ ) );
42
+
43
+ // Use the path processor to ensure that this is an autoloader we're referencing.
44
+ $path = $this->path_processor->find_directory_with_autoloader( $plugin_directory, array() );
45
+ if ( false === $path ) {
46
+ throw new \RuntimeException( 'Failed to locate plugin ' . $plugin_directory );
47
+ }
48
+
49
+ return $path;
50
+ }
51
+
52
+ /**
53
+ * Checks a given option for plugin paths.
54
+ *
55
+ * @param string $option_name The option that we want to check for plugin information.
56
+ * @param bool $site_option Indicates whether or not we want to check the site option.
57
+ *
58
+ * @return array $plugin_paths The list of absolute paths we've found.
59
+ */
60
+ public function find_using_option( $option_name, $site_option = false ) {
61
+ $raw = $site_option ? get_site_option( $option_name, array() ) : get_option( $option_name, array() );
62
+ if ( empty( $raw ) ) {
63
+ return array();
64
+ }
65
+
66
+ return $this->convert_plugins_to_paths( $raw );
67
+ }
68
+
69
+ /**
70
+ * Checks for plugins that are being activated in this request and returns all that it finds.
71
+ *
72
+ * @return array $plugin_paths The list of absolute paths we've found.
73
+ */
74
+ public function find_activating_this_request() {
75
+ // phpcs:disable WordPress.Security.NonceVerification.Recommended
76
+
77
+ /**
78
+ * Note: we're not actually checking the nonce here because it's too early
79
+ * in the execution. The pluggable functions are not yet loaded to give
80
+ * plugins a chance to plug their versions. Therefore we're doing the bare
81
+ * minimum: checking whether the nonce exists and it's in the right place.
82
+ * The request will fail later if the nonce doesn't pass the check.
83
+ */
84
+ if ( empty( $_REQUEST['_wpnonce'] ) ) {
85
+ return array();
86
+ }
87
+
88
+ $plugin_slugs = array();
89
+
90
+ $action = isset( $_REQUEST['action'] ) ? wp_unslash( $_REQUEST['action'] ) : false;
91
+ switch ( $action ) {
92
+ case 'activate':
93
+ if ( empty( $_REQUEST['plugin'] ) ) {
94
+ break;
95
+ }
96
+
97
+ $plugin_slugs[] = wp_unslash( $_REQUEST['plugin'] );
98
+ break;
99
+
100
+ case 'activate-selected':
101
+ if ( empty( $_REQUEST['checked'] ) ) {
102
+ break;
103
+ }
104
+
105
+ $plugin_slugs = wp_unslash( $_REQUEST['checked'] );
106
+ break;
107
+ }
108
+
109
+ return $this->convert_plugins_to_paths( $plugin_slugs );
110
+ }
111
+
112
+ /**
113
+ * Given an array of plugin slugs or paths, this will convert them to absolute paths and filter
114
+ * out the plugins that are not directory plugins. Note that array keys will also be included
115
+ * if they are plugin paths!
116
+ *
117
+ * @param string[] $plugins Plugin paths or slugs to filter.
118
+ *
119
+ * @return string[]
120
+ */
121
+ private function convert_plugins_to_paths( $plugins ) {
122
+ // We're going to look for plugins in the standard directories.
123
+ $path_constants = array( WP_PLUGIN_DIR, WPMU_PLUGIN_DIR );
124
+
125
+ $plugin_paths = array();
126
+ foreach ( $plugins as $key => $value ) {
127
+ $path = $this->path_processor->find_directory_with_autoloader( $key, $path_constants );
128
+ if ( $path ) {
129
+ $plugin_paths[] = $path;
130
+ }
131
+
132
+ $path = $this->path_processor->find_directory_with_autoloader( $value, $path_constants );
133
+ if ( $path ) {
134
+ $plugin_paths[] = $path;
135
+ }
136
+ }
137
+
138
+ return $plugin_paths;
139
+ }
140
+ }
vendor/jetpack-autoloader/class-plugins-handler.php CHANGED
@@ -5,133 +5,154 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpd13c1bee9bc21e22afd7af873416bd93;
9
 
10
  // phpcs:ignore
11
 
12
  /**
13
- * This class provides information about the current plugin and the site's active plugins.
14
  */
15
  class Plugins_Handler {
16
-
17
  /**
18
- * Returns an array containing the paths of all active plugins and all known activating plugins.
19
- *
20
- * @return array An array of plugin paths as strings or an empty array.
21
  */
22
- public function get_all_active_plugins_paths() {
23
- global $jetpack_autoloader_activating_plugins_paths;
24
-
25
- $active_plugins_paths = $this->get_active_plugins_paths();
26
- $multisite_plugins_paths = $this->get_multisite_plugins_paths();
27
- $activating_plugins_paths = $this->get_plugins_activating_via_request();
28
-
29
- return array_unique(
30
- array_merge(
31
- $active_plugins_paths,
32
- $activating_plugins_paths,
33
- $multisite_plugins_paths,
34
- (array) $jetpack_autoloader_activating_plugins_paths
35
- )
36
- );
37
- }
38
 
39
  /**
40
- * Returns an array containing the paths of the active sitewide plugins in a multisite environment.
41
  *
42
- * @return array The paths of the active sitewide plugins or an empty array.
43
  */
44
- protected function get_multisite_plugins_paths() {
45
- $plugin_slugs = is_multisite()
46
- ? array_keys( get_site_option( 'active_sitewide_plugins', array() ) )
47
- : array();
48
-
49
- $plugin_slugs = array_filter( $plugin_slugs, array( $this, 'is_directory_plugin' ) );
50
- return array_map( array( $this, 'create_plugin_path' ), $plugin_slugs );
51
- }
52
 
53
  /**
54
- * Returns an array containing the paths of the currently active plugins.
55
  *
56
- * @return array The active plugins' paths or an empty array.
57
  */
58
- protected function get_active_plugins_paths() {
59
- $plugin_slugs = (array) get_option( 'active_plugins', array() );
60
- $plugin_slugs = array_filter( $plugin_slugs, array( $this, 'is_directory_plugin' ) );
61
- return array_map( array( $this, 'create_plugin_path' ), $plugin_slugs );
62
- }
63
 
64
  /**
65
- * Adds the plugin directory from the WP_PLUGIN_DIR constant to the plugin slug.
66
  *
67
- * @param string $plugin_slug The plugin slug.
 
68
  */
69
- private function create_plugin_path( $plugin_slug ) {
70
- $plugin_dir = str_replace( '\\', '/', WP_PLUGIN_DIR );
71
- return trailingslashit( $plugin_dir ) . substr( $plugin_slug, 0, strrpos( $plugin_slug, '/' ) );
72
  }
73
 
74
  /**
75
- * Ensure the plugin has its own directory and not a single-file plugin.
76
  *
77
- * @param string $plugin Plugin name, may be prefixed with "/".
78
- *
79
- * @return bool
80
  */
81
- public function is_directory_plugin( $plugin ) {
82
- return strlen( $plugin ) > 1 && false !== strpos( $plugin, '/', 1 );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83
  }
84
 
85
  /**
86
- * Returns an array containing the names of plugins that are activating via a request.
87
  *
88
- * @return array An array of names of the activating plugins or an empty array.
89
  */
90
- private function get_plugins_activating_via_request() {
91
-
92
- // phpcs:disable WordPress.Security.NonceVerification.Recommended
93
- // phpcs:disable WordPress.Security.ValidatedSanitizedInput.MissingUnslash
94
- // phpcs:disable WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
95
-
96
- $action = isset( $_REQUEST['action'] ) ? $_REQUEST['action'] : false;
97
- $plugin = isset( $_REQUEST['plugin'] ) ? $_REQUEST['plugin'] : false;
98
- $nonce = isset( $_REQUEST['_wpnonce'] ) ? $_REQUEST['_wpnonce'] : false;
99
-
100
- /**
101
- * Note: we're not actually checking the nonce here becase it's too early
102
- * in the execution. The pluggable functions are not yet loaded to give
103
- * plugins a chance to plug their versions. Therefore we're doing the bare
104
- * minimum: checking whether the nonce exists and it's in the right place.
105
- * The request will fail later if the nonce doesn't pass the check.
106
- */
107
-
108
- // In case of a single plugin activation there will be a plugin slug.
109
- if ( 'activate' === $action && ! empty( $nonce ) ) {
110
- return array( $this->create_plugin_path( wp_unslash( $plugin ) ) );
111
  }
112
 
113
- $plugins = isset( $_REQUEST['checked'] ) ? $_REQUEST['checked'] : array();
 
 
114
 
115
- // In case of bulk activation there will be an array of plugins.
116
- if ( 'activate-selected' === $action && ! empty( $nonce ) ) {
117
- $plugin_slugs = array_map( 'wp_unslash', $plugins );
118
- return array_map( array( $this, 'create_plugin_path' ), $plugin_slugs );
119
- }
 
 
 
120
 
121
- // phpcs:enable WordPress.Security.NonceVerification.Recommended
122
- // phpcs:enable WordPress.Security.ValidatedSanitizedInput.MissingUnslash
123
- // phpcs:enable WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
124
- return array();
125
  }
126
 
127
  /**
128
- * Returns the path of the current plugin.
 
 
 
 
129
  *
130
- * @return string The path of the current plugin.
131
  */
132
- public function get_current_plugin_path() {
133
- $vendor_path = str_replace( '\\', '/', dirname( __DIR__ ) );
134
- // Path to the plugin's folder (the parent of the vendor/jetpack-autoloader folder).
135
- return substr( $vendor_path, 0, strrpos( $vendor_path, '/' ) );
 
 
 
 
 
 
 
 
 
 
 
136
  }
137
  }
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp11a2348af64ff8817f711cc97b151bde;
9
 
10
  // phpcs:ignore
11
 
12
  /**
13
+ * This class handles locating and caching all of the active plugins.
14
  */
15
  class Plugins_Handler {
 
16
  /**
17
+ * The transient key for plugin paths.
 
 
18
  */
19
+ const TRANSIENT_KEY = 'jetpack_autoloader_plugin_paths';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
  /**
22
+ * The locator for finding plugins in different locations.
23
  *
24
+ * @var Plugin_Locator
25
  */
26
+ private $plugin_locator;
 
 
 
 
 
 
 
27
 
28
  /**
29
+ * The processor for transforming cached paths.
30
  *
31
+ * @var Path_Processor
32
  */
33
+ private $path_processor;
 
 
 
 
34
 
35
  /**
36
+ * The constructor.
37
  *
38
+ * @param Plugin_Locator $plugin_locator The locator for finding active plugins.
39
+ * @param Path_Processor $path_processor The processor for transforming cached paths.
40
  */
41
+ public function __construct( $plugin_locator, $path_processor ) {
42
+ $this->plugin_locator = $plugin_locator;
43
+ $this->path_processor = $path_processor;
44
  }
45
 
46
  /**
47
+ * Gets all of the active plugins we can find.
48
  *
49
+ * @return string[]
 
 
50
  */
51
+ public function get_active_plugins() {
52
+ global $jetpack_autoloader_activating_plugins_paths;
53
+ global $jetpack_autoloader_including_latest;
54
+
55
+ // We're going to build a unique list of plugins from a few different sources
56
+ // to find all of our "active" plugins. While we need to return an integer
57
+ // array, we're going to use an associative array internally to reduce
58
+ // the amount of time that we're going to spend checking uniqueness
59
+ // and merging different arrays together to form the output.
60
+ $active_plugins = array();
61
+
62
+ // Make sure that plugins which have activated this request are considered as "active" even though
63
+ // they probably won't be present in any option.
64
+ if ( is_array( $jetpack_autoloader_activating_plugins_paths ) ) {
65
+ foreach ( $jetpack_autoloader_activating_plugins_paths as $path ) {
66
+ $active_plugins[ $path ] = $path;
67
+ }
68
+ }
69
+
70
+ // This option contains all of the plugins that have been activated.
71
+ $plugins = $this->plugin_locator->find_using_option( 'active_plugins' );
72
+ foreach ( $plugins as $path ) {
73
+ $active_plugins[ $path ] = $path;
74
+ }
75
+
76
+ // This option contains all of the multisite plugins that have been activated.
77
+ if ( is_multisite() ) {
78
+ $plugins = $this->plugin_locator->find_using_option( 'active_sitewide_plugins', true );
79
+ foreach ( $plugins as $path ) {
80
+ $active_plugins[ $path ] = $path;
81
+ }
82
+ }
83
+
84
+ $plugins = $this->plugin_locator->find_activating_this_request();
85
+ foreach ( $plugins as $path ) {
86
+ $active_plugins[ $path ] = $path;
87
+ }
88
+
89
+ // When the current plugin isn't considered "active" there's a problem.
90
+ // Since we're here, the plugin is active and currently being loaded.
91
+ // We can support this case (mu-plugins and non-standard activation)
92
+ // by adding the current plugin to the active list and marking it
93
+ // as an unknown (activating) plugin. This also has the benefit
94
+ // of causing a reset because the active plugins list has
95
+ // been changed since it was saved in the global.
96
+ $current_plugin = $this->plugin_locator->find_current_plugin();
97
+ if ( ! in_array( $current_plugin, $active_plugins, true ) && ! $jetpack_autoloader_including_latest ) {
98
+ $active_plugins[ $current_plugin ] = $current_plugin;
99
+ $jetpack_autoloader_activating_plugins_paths[] = $current_plugin;
100
+ }
101
+
102
+ // Transform the array so that we don't have to worry about the keys interacting with other array types later.
103
+ return array_values( $active_plugins );
104
  }
105
 
106
  /**
107
+ * Gets all of the cached plugins if there are any.
108
  *
109
+ * @return string[]
110
  */
111
+ public function get_cached_plugins() {
112
+ $cached = get_transient( self::TRANSIENT_KEY );
113
+ if ( false === $cached ) {
114
+ return array();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
115
  }
116
 
117
+ // We need to expand the tokens to an absolute path for this webserver.
118
+ return array_map( array( $this->path_processor, 'untokenize_path_constants' ), $cached );
119
+ }
120
 
121
+ /**
122
+ * Saves the plugin list to the cache.
123
+ *
124
+ * @param array $plugins The plugin list to save to the cache.
125
+ */
126
+ public function cache_plugins( $plugins ) {
127
+ // We store the paths in a tokenized form so that that webservers with different absolute paths don't break.
128
+ $plugins = array_map( array( $this->path_processor, 'tokenize_path_constants' ), $plugins );
129
 
130
+ set_transient( self::TRANSIENT_KEY, $plugins );
 
 
 
131
  }
132
 
133
  /**
134
+ * Checks to see whether or not the plugin list given has changed when compared to the
135
+ * shared `$jetpack_autoloader_cached_plugin_paths` global. This allows us to deal
136
+ * with cases where the active list may change due to filtering..
137
+ *
138
+ * @param string[] $plugins The plugins list to check against the global cache.
139
  *
140
+ * @return bool True if the plugins have changed, otherwise false.
141
  */
142
+ public function have_plugins_changed( $plugins ) {
143
+ global $jetpack_autoloader_cached_plugin_paths;
144
+
145
+ // When no autoloader has executed there is nothing to have changed.
146
+ if ( ! isset( $jetpack_autoloader_cached_plugin_paths ) ) {
147
+ $jetpack_autoloader_cached_plugin_paths = $plugins;
148
+ return false;
149
+ }
150
+
151
+ if ( $jetpack_autoloader_cached_plugin_paths !== $plugins ) {
152
+ $jetpack_autoloader_cached_plugin_paths = $plugins;
153
+ return true;
154
+ }
155
+
156
+ return false;
157
  }
158
  }
vendor/jetpack-autoloader/class-version-loader.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpd13c1bee9bc21e22afd7af873416bd93;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp11a2348af64ff8817f711cc97b151bde;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-version-selector.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpd13c1bee9bc21e22afd7af873416bd93;
9
 
10
  // phpcs:ignore
11
 
@@ -23,7 +23,7 @@ class Version_Selector {
23
  * @param String $compare_version The package version that is being evaluated to
24
  * determine if the version needs to be updated.
25
  *
26
- * @return Boolean Returns true if the selected package version should be updated,
27
  * else false.
28
  */
29
  public function is_version_update_required( $selected_version, $compare_version ) {
@@ -57,7 +57,7 @@ class Version_Selector {
57
  *
58
  * @param String $version The package version.
59
  *
60
- * @return Boolean True if the version is a dev version, else false.
61
  */
62
  private function is_package_version_dev( $version ) {
63
  if ( 'dev-' === substr( $version, 0, 4 ) || '9999999-dev' === $version ) {
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp11a2348af64ff8817f711cc97b151bde;
9
 
10
  // phpcs:ignore
11
 
23
  * @param String $compare_version The package version that is being evaluated to
24
  * determine if the version needs to be updated.
25
  *
26
+ * @return bool Returns true if the selected package version should be updated,
27
  * else false.
28
  */
29
  public function is_version_update_required( $selected_version, $compare_version ) {
57
  *
58
  * @param String $version The package version.
59
  *
60
+ * @return bool True if the version is a dev version, else false.
61
  */
62
  private function is_package_version_dev( $version ) {
63
  if ( 'dev-' === substr( $version, 0, 4 ) || '9999999-dev' === $version ) {
woocommerce-germanized.php CHANGED
@@ -3,13 +3,13 @@
3
  * Plugin Name: Germanized for WooCommerce
4
  * Plugin URI: https://www.vendidero.de/woocommerce-germanized
5
  * Description: Germanized for WooCommerce extends WooCommerce to become a legally compliant store in the german market.
6
- * Version: 3.3.3
7
  * Author: vendidero
8
  * Author URI: https://vendidero.de
9
  * Requires at least: 4.9
10
  * Tested up to: 5.6
11
  * WC requires at least: 3.9
12
- * WC tested up to: 4.8
13
  *
14
  * Text Domain: woocommerce-germanized
15
  * Domain Path: /i18n/languages/
@@ -69,7 +69,7 @@ if ( ! class_exists( 'WooCommerce_Germanized' ) ) :
69
  *
70
  * @var string
71
  */
72
- public $version = '3.3.3';
73
 
74
  /**
75
  * @var WooCommerce_Germanized $instance of the plugin
@@ -209,7 +209,7 @@ if ( ! class_exists( 'WooCommerce_Germanized' ) ) :
209
  add_action( 'plugins_loaded', array( $this, 'setup_compatibility' ), 0 );
210
 
211
  // Set template filter directly after load to ensure wc_get_template finds templates
212
- add_filter( 'woocommerce_locate_template', array( $this, 'filter_templates' ), PHP_INT_MAX, 3 );
213
 
214
  $this->units = new WC_GZD_Units();
215
  $this->price_labels = new WC_GZD_Price_Labels();
@@ -274,9 +274,6 @@ if ( ! class_exists( 'WooCommerce_Germanized' ) ) :
274
 
275
  add_filter( 'woocommerce_locate_core_template', array( $this, 'email_templates' ), 0, 3 );
276
 
277
- // Add better WooCommerce shipping taxation
278
- add_filter( 'woocommerce_package_rates', array( $this, 'replace_shipping_rate_class' ), 0, 2 );
279
-
280
  // Payment gateways
281
  add_filter( 'woocommerce_payment_gateways', array( $this, 'register_gateways' ) );
282
 
@@ -731,40 +728,6 @@ if ( ! class_exists( 'WooCommerce_Germanized' ) ) :
731
  return $template;
732
  }
733
 
734
- /**
735
- * Replace default WC_Shipping_Rate to enable exact taxation for shipping costs
736
- *
737
- * @param array $rates containing WC_Shipping_Rate objects
738
- * @param WC_Shipping_Rate $rate current object
739
- *
740
- * @return array
741
- */
742
- public function replace_shipping_rate_class( $rates, $rate ) {
743
-
744
- if ( get_option( 'woocommerce_gzd_shipping_tax' ) !== 'yes' ) {
745
- return $rates;
746
- }
747
-
748
- foreach ( $rates as $key => $rate ) {
749
-
750
- // Check for instance to make sure calculation is not done for multiple times
751
- if ( ! $rate instanceof WC_GZD_Shipping_Rate ) {
752
-
753
- // Replace rate with germanized placeholder
754
- $rates[ $key ] = new WC_GZD_Shipping_Rate( $rate );
755
-
756
- // Copy meta data if available
757
- if ( is_callable( array( $rate, 'get_meta_data' ) ) ) {
758
- foreach ( $rate->get_meta_data() as $meta_key => $meta_val ) {
759
- $rates[ $key ]->add_meta_data( $meta_key, $meta_val );
760
- }
761
- }
762
- }
763
- }
764
-
765
- return $rates;
766
- }
767
-
768
  /**
769
  * Load WooCommerce Germanized Product Classes instead of WooCommerce builtin Product Classes
770
  *
3
  * Plugin Name: Germanized for WooCommerce
4
  * Plugin URI: https://www.vendidero.de/woocommerce-germanized
5
  * Description: Germanized for WooCommerce extends WooCommerce to become a legally compliant store in the german market.
6
+ * Version: 3.3.4
7
  * Author: vendidero
8
  * Author URI: https://vendidero.de
9
  * Requires at least: 4.9
10
  * Tested up to: 5.6
11
  * WC requires at least: 3.9
12
+ * WC tested up to: 4.9
13
  *
14
  * Text Domain: woocommerce-germanized
15
  * Domain Path: /i18n/languages/
69
  *
70
  * @var string
71
  */
72
+ public $version = '3.3.4';
73
 
74
  /**
75
  * @var WooCommerce_Germanized $instance of the plugin
209
  add_action( 'plugins_loaded', array( $this, 'setup_compatibility' ), 0 );
210
 
211
  // Set template filter directly after load to ensure wc_get_template finds templates
212
+ add_filter( 'woocommerce_locate_template', array( $this, 'filter_templates' ), 1500, 3 );
213
 
214
  $this->units = new WC_GZD_Units();
215
  $this->price_labels = new WC_GZD_Price_Labels();
274
 
275
  add_filter( 'woocommerce_locate_core_template', array( $this, 'email_templates' ), 0, 3 );
276
 
 
 
 
277
  // Payment gateways
278
  add_filter( 'woocommerce_payment_gateways', array( $this, 'register_gateways' ) );
279
 
728
  return $template;
729
  }
730
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
731
  /**
732
  * Load WooCommerce Germanized Product Classes instead of WooCommerce builtin Product Classes
733
  *