Version Description
- Feature: WC 5.0 compatibility
- Improvement: Unit price ranges reflecting the matching unit price per min max price (not using the unit min max price)
- Improvement: Consisting wording for cancellation policy and withdrawal
- Improvement: Better Jetpack Builder compatibility
- Improvement: Shipping costs tax calculation compatibility improvements
- Improvement: Removed legacy checkout phone option in favor of Woo's customizer option
- Improvement: Allow Packstation delivery and choosing for Internetmarke
- Improvement: Internetmarke label print XY position options
- Improvement: Internetmarke address 2 field
- Improvement: Internetmarke default product selection
- Improvement: Cache shipping method instances during frontend requests
- Improvement: Maybe cancel shipments for refunded orders
- Fix: Firefox packaging table dimensions display
- Fix: DHL customs net weight calculation
Download this release
Release Info
Developer | vendidero |
Plugin | WooCommerce Germanized |
Version | 3.3.5 |
Comparing to | |
See all releases |
Code changes from version 3.3.4 to 3.3.5
- assets/css/layout.css +5 -0
- assets/css/layout.min.css +1 -1
- assets/css/layout.scss +5 -0
- i18n/languages/woocommerce-germanized-de_DE.mo +0 -0
- i18n/languages/woocommerce-germanized-de_DE.po +503 -366
- i18n/languages/woocommerce-germanized-de_DE_formal.mo +0 -0
- i18n/languages/woocommerce-germanized-de_DE_formal.po +483 -365
- includes/admin/class-wc-gzd-admin-legal-checkboxes.php +3 -3
- includes/admin/class-wc-gzd-admin-status.php +1 -1
- includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php +1 -1
- includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php +5 -5
- includes/admin/notes/class-wc-gzd-admin-note-pro.php +1 -1
- includes/admin/settings/class-wc-gzd-settings-tab-general.php +4 -20
- includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php +27 -10
- includes/class-wc-gzd-checkout.php +19 -16
- includes/class-wc-gzd-emails.php +2 -2
- includes/class-wc-gzd-install.php +3 -2
- includes/class-wc-gzd-legal-checkbox-manager.php +2 -2
- includes/class-wc-gzd-product-grouped.php +116 -88
- includes/class-wc-gzd-product-variable.php +40 -31
- includes/class-wc-gzd-revocation.php +1 -1
- includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php +19 -0
- includes/emails/class-wc-gzd-email-customer-revocation.php +3 -3
- includes/updates/woocommerce-gzd-update-3.3.5.php +14 -0
- includes/wc-gzd-core-functions.php +38 -2
- includes/wc-gzd-template-functions.php +68 -0
- includes/wc-gzd-template-hooks.php +8 -0
- packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php +11 -20
- packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php +76 -13
- packages/woocommerce-germanized-dhl/src/Admin/Settings.php +18 -0
- packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php +1 -1
- packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php +52 -2
- packages/woocommerce-germanized-dhl/src/Api/Paket.php +3 -0
- packages/woocommerce-germanized-dhl/src/DataStores/Label.php +1 -0
- packages/woocommerce-germanized-dhl/src/Label.php +15 -0
- packages/woocommerce-germanized-dhl/src/Package.php +18 -5
- packages/woocommerce-germanized-dhl/src/ParcelLocator.php +17 -3
- packages/woocommerce-germanized-dhl/src/ShippingProvider/MethodDHL.php +6 -1
- packages/woocommerce-germanized-dhl/woocommerce-germanized-dhl.php +1 -1
- packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php +17 -2
- packages/woocommerce-germanized-shipments/src/Admin/Admin.php +69 -3
- packages/woocommerce-germanized-shipments/src/Package.php +32 -4
- packages/woocommerce-germanized-shipments/src/Shipment.php +16 -8
- packages/woocommerce-germanized-shipments/src/Validation.php +3 -2
- packages/woocommerce-germanized-shipments/woocommerce-germanized-shipments.php +1 -1
- readme.txt +18 -2
- templates/emails/customer-revocation.php +2 -2
- templates/forms/revocation-form.php +3 -3
- vendor/autoload.php +1 -1
- vendor/autoload_packages.php +1 -1
- vendor/composer/InstalledVersions.php +11 -11
- vendor/composer/autoload_classmap.php +2 -0
- vendor/composer/autoload_real.php +7 -7
- vendor/composer/autoload_static.php +6 -4
- vendor/composer/installed.json +33 -26
- vendor/composer/installed.php +11 -11
- vendor/composer/installers/phpstan.neon.dist +10 -0
- vendor/composer/installers/src/Composer/Installers/BaseInstaller.php +6 -6
- vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php +2 -9
- vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php +1 -3
- vendor/composer/installers/src/Composer/Installers/Installer.php +23 -9
- vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php +1 -0
- vendor/composer/installers/src/Composer/Installers/OxidInstaller.php +1 -1
- vendor/composer/installers/src/Composer/Installers/ProcessWireInstaller.php +22 -0
- vendor/composer/installers/src/Composer/Installers/StarbugInstaller.php +12 -0
- vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php +1 -3
- vendor/composer/installers/src/Composer/Installers/TaoInstaller.php +18 -0
- vendor/composer/jetpack_autoload_classmap.php +186 -178
- vendor/jetpack-autoloader/class-autoloader-handler.php +1 -1
- vendor/jetpack-autoloader/class-autoloader-locator.php +1 -1
- vendor/jetpack-autoloader/class-autoloader.php +1 -1
- vendor/jetpack-autoloader/class-container.php +1 -1
- vendor/jetpack-autoloader/class-hook-manager.php +1 -1
- vendor/jetpack-autoloader/class-latest-autoloader-guard.php +1 -1
- vendor/jetpack-autoloader/class-manifest-reader.php +1 -1
- vendor/jetpack-autoloader/class-path-processor.php +1 -1
- vendor/jetpack-autoloader/class-plugin-locator.php +1 -1
- vendor/jetpack-autoloader/class-plugins-handler.php +1 -1
- vendor/jetpack-autoloader/class-version-loader.php +1 -1
- vendor/jetpack-autoloader/class-version-selector.php +1 -1
- woocommerce-germanized.php +3 -3
assets/css/layout.css
CHANGED
@@ -26,6 +26,11 @@
|
|
26 |
.woocommerce-checkout .shop_table td, .woocommerce-checkout .shop_table th {
|
27 |
line-height: 1.5; }
|
28 |
|
|
|
|
|
|
|
|
|
|
|
29 |
.shop_table .product-name-inner, .shop_table .product-name-inner tr td {
|
30 |
border: none;
|
31 |
padding: 0;
|
26 |
.woocommerce-checkout .shop_table td, .woocommerce-checkout .shop_table th {
|
27 |
line-height: 1.5; }
|
28 |
|
29 |
+
.more-variants-available-info {
|
30 |
+
font-size: 11px;
|
31 |
+
display: block;
|
32 |
+
font-weight: normal; }
|
33 |
+
|
34 |
.shop_table .product-name-inner, .shop_table .product-name-inner tr td {
|
35 |
border: none;
|
36 |
padding: 0;
|
assets/css/layout.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#order_review .legal{text-align:left;padding:0 1em 0 0;float:left}#order_review .legal label{display:inline}.woocommerce-checkout .shop_table{background-color:#eee}.includes_tax,.tax_label{display:none!important}.wc-gzd-small-business-includes-tax{display:inline!important;font-size:.9em;padding-left:3px}#order_review_heading{display:none}.woocommerce-checkout .shop_table tr td p{margin-bottom:0}.woocommerce-checkout .shop_table td,.woocommerce-checkout .shop_table th{line-height:1.5}.shop_table .product-name-inner,.shop_table .product-name-inner tr td{border:none;padding:0;margin:0}.shop_table .product-name-inner tr td:last-child{text-align:right}.cart_totals .wc-gzd-additional-wrapper{text-align:right}.cart_totals p.wc-gzd-additional-info{font-size:.8em;width:60%;border-top:1px solid #ccc;padding-top:.5rem;display:inline-block}.entry-content .woocommerce #payment{margin-bottom:1em}.woocommerce #payment .wc-terms-and-conditions{display:none!important}.entry-content .woocommerce .checkout-btn-wrap{text-align:right}.woocommerce-checkout p.direct-debit-checkbox{display:none}.unit-price-cart{font-size:.9em;display:block;margin-top:5px}.product_list_widget .wc-gzd-additional-info,.products .wc-gzd-additional-info{font-size:.8em;margin:.7rem 0 .7rem 0;padding:0}.product_list_widget .wc-gzd-additional-info,.product_list_widget p.price-unit{margin:.2rem 0;line-height:1.8em}.product_list_widget .wc-gzd-additional-info a{display:inline!important}.product_list_widget .price-unit,.products .product .price-unit{font-size:.8em}.product_list_widget .price-unit{margin-bottom:.7em}.product p.wc-gzd-additional-info{margin-bottom:.5rem;font-size:.9em;clear:left}.product .product_meta{margin-top:1rem}p.footer-info{text-align:center;font-size:.9em;padding-bottom:.5rem}.wc-gzd-item-desc p{font-size:.9em}.wc-gzd-edit-data-notice{background:#eee;display:inline-block;padding:1em}.wc-gzd-edit-data-notice p.wc-gzd-info{margin:0;padding:0}table.product-details-inner{table-layout:fixed;margin:0;padding:0}table.product-details-inner,table.product-details-inner td,table.product-details-inner tr{padding-top:0;padding-bottom:0;margin-top:0;margin-bottom:0;border:none;background:0 0}table.product-details-inner tr td:last-child{text-align:right}.wc-gzd-product-name-left,.wc-gzd-product-name-right{float:left}.wc-gzd-product-name-left{max-width:15%;margin-right:1em}#eKomiSeal_default img{width:100%!important;height:100%!important}.wc-gzd-parcel-finder-open-button{display:inline;margin-left:5px}#order_review .blockMsg{line-height:1.5em}#shipping_parcelshop_post_number_field .optional{display:none!important}.theme-twentytwenty form.woocommerce-checkout #order_review_heading{width:100%;padding-left:0}
|
1 |
+
#order_review .legal{text-align:left;padding:0 1em 0 0;float:left}#order_review .legal label{display:inline}.woocommerce-checkout .shop_table{background-color:#eee}.includes_tax,.tax_label{display:none!important}.wc-gzd-small-business-includes-tax{display:inline!important;font-size:.9em;padding-left:3px}#order_review_heading{display:none}.woocommerce-checkout .shop_table tr td p{margin-bottom:0}.woocommerce-checkout .shop_table td,.woocommerce-checkout .shop_table th{line-height:1.5}.more-variants-available-info{font-size:11px;display:block;font-weight:400}.shop_table .product-name-inner,.shop_table .product-name-inner tr td{border:none;padding:0;margin:0}.shop_table .product-name-inner tr td:last-child{text-align:right}.cart_totals .wc-gzd-additional-wrapper{text-align:right}.cart_totals p.wc-gzd-additional-info{font-size:.8em;width:60%;border-top:1px solid #ccc;padding-top:.5rem;display:inline-block}.entry-content .woocommerce #payment{margin-bottom:1em}.woocommerce #payment .wc-terms-and-conditions{display:none!important}.entry-content .woocommerce .checkout-btn-wrap{text-align:right}.woocommerce-checkout p.direct-debit-checkbox{display:none}.unit-price-cart{font-size:.9em;display:block;margin-top:5px}.product_list_widget .wc-gzd-additional-info,.products .wc-gzd-additional-info{font-size:.8em;margin:.7rem 0 .7rem 0;padding:0}.product_list_widget .wc-gzd-additional-info,.product_list_widget p.price-unit{margin:.2rem 0;line-height:1.8em}.product_list_widget .wc-gzd-additional-info a{display:inline!important}.product_list_widget .price-unit,.products .product .price-unit{font-size:.8em}.product_list_widget .price-unit{margin-bottom:.7em}.product p.wc-gzd-additional-info{margin-bottom:.5rem;font-size:.9em;clear:left}.product .product_meta{margin-top:1rem}p.footer-info{text-align:center;font-size:.9em;padding-bottom:.5rem}.wc-gzd-item-desc p{font-size:.9em}.wc-gzd-edit-data-notice{background:#eee;display:inline-block;padding:1em}.wc-gzd-edit-data-notice p.wc-gzd-info{margin:0;padding:0}table.product-details-inner{table-layout:fixed;margin:0;padding:0}table.product-details-inner,table.product-details-inner td,table.product-details-inner tr{padding-top:0;padding-bottom:0;margin-top:0;margin-bottom:0;border:none;background:0 0}table.product-details-inner tr td:last-child{text-align:right}.wc-gzd-product-name-left,.wc-gzd-product-name-right{float:left}.wc-gzd-product-name-left{max-width:15%;margin-right:1em}#eKomiSeal_default img{width:100%!important;height:100%!important}.wc-gzd-parcel-finder-open-button{display:inline;margin-left:5px}#order_review .blockMsg{line-height:1.5em}#shipping_parcelshop_post_number_field .optional{display:none!important}.theme-twentytwenty form.woocommerce-checkout #order_review_heading{width:100%;padding-left:0}
|
assets/css/layout.scss
CHANGED
@@ -26,6 +26,11 @@
|
|
26 |
.woocommerce-checkout .shop_table td, .woocommerce-checkout .shop_table th {
|
27 |
line-height: 1.5;
|
28 |
}
|
|
|
|
|
|
|
|
|
|
|
29 |
.shop_table .product-name-inner, .shop_table .product-name-inner tr td {
|
30 |
border: none;
|
31 |
padding: 0;
|
26 |
.woocommerce-checkout .shop_table td, .woocommerce-checkout .shop_table th {
|
27 |
line-height: 1.5;
|
28 |
}
|
29 |
+
.more-variants-available-info {
|
30 |
+
font-size: 11px;
|
31 |
+
display: block;
|
32 |
+
font-weight: normal;
|
33 |
+
}
|
34 |
.shop_table .product-name-inner, .shop_table .product-name-inner tr td {
|
35 |
border: none;
|
36 |
padding: 0;
|
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: 2021-01-
|
6 |
-
"PO-Revision-Date: 2021-01-
|
7 |
"Last-Translator: holzhannes <holzhannes@posteo.de>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE\n"
|
@@ -45,7 +45,7 @@ msgctxt "dhl"
|
|
45 |
msgid "Additional Services"
|
46 |
msgstr "Zusätzliche Leistungen"
|
47 |
|
48 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:
|
49 |
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:514
|
50 |
#, php-format
|
51 |
msgid ""
|
@@ -58,13 +58,13 @@ msgstr ""
|
|
58 |
"B. Gewicht) und versuche es erneut."
|
59 |
|
60 |
# @ woocommerce-germanized
|
61 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:
|
62 |
msgctxt "dhl"
|
63 |
msgid "Product"
|
64 |
msgstr "Produkt"
|
65 |
|
66 |
# @ woocommerce-germanized
|
67 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:
|
68 |
msgctxt "dhl"
|
69 |
msgid "Page Format"
|
70 |
msgstr "Seitenformat"
|
@@ -362,7 +362,7 @@ msgstr ""
|
|
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:
|
366 |
msgctxt "dhl"
|
367 |
msgid "Printing"
|
368 |
msgstr "Druck"
|
@@ -385,7 +385,7 @@ msgstr "Keine"
|
|
385 |
|
386 |
# @ woocommerce-germanized
|
387 |
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:181
|
388 |
-
#: woocommerce-germanized-dhl/src/Api/Paket.php:
|
389 |
msgctxt "dhl day context"
|
390 |
msgid "None"
|
391 |
msgstr "Keiner"
|
@@ -447,7 +447,7 @@ msgstr "Retourensendung #{shipment_id} zur Bestellung #{order_id}"
|
|
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:
|
451 |
#: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:38
|
452 |
msgctxt "dhl"
|
453 |
msgid "Packstation"
|
@@ -536,83 +536,83 @@ 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:
|
540 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
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:
|
547 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
596 |
msgctxt "dhl"
|
597 |
msgid "DHL Paket"
|
598 |
msgstr "DHL Paket"
|
599 |
|
600 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
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:
|
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:
|
611 |
msgctxt "dhl"
|
612 |
msgid "DHL Warenpost"
|
613 |
msgstr "DHL Warenpost"
|
614 |
|
615 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
616 |
msgctxt "dhl"
|
617 |
msgid "Error while uploading label."
|
618 |
msgstr "Fehler beim Hochladen des Labels."
|
@@ -716,7 +716,7 @@ msgstr ""
|
|
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:
|
720 |
#: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:39
|
721 |
msgctxt "dhl"
|
722 |
msgid "DHL"
|
@@ -839,7 +839,7 @@ msgstr ""
|
|
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:
|
843 |
msgctxt "dhl"
|
844 |
msgid "Automation"
|
845 |
msgstr "Automatisierung"
|
@@ -1391,7 +1391,7 @@ 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:
|
1395 |
msgctxt "dhl"
|
1396 |
msgid "Labels"
|
1397 |
msgstr "Labels"
|
@@ -1909,34 +1909,54 @@ 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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1913 |
msgctxt "dhl"
|
1914 |
msgid "Portokasse"
|
1915 |
msgstr "Portokasse"
|
1916 |
|
1917 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
1918 |
msgctxt "dhl"
|
1919 |
msgid "Balance"
|
1920 |
msgstr "Guthaben"
|
1921 |
|
1922 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
1923 |
msgctxt "dhl"
|
1924 |
msgid "Charge (€)"
|
1925 |
msgstr "Aufladen (€)"
|
1926 |
|
1927 |
# @ woocommerce-germanized
|
1928 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
1929 |
msgctxt "dhl"
|
1930 |
msgid "Products"
|
1931 |
msgstr "Produkte"
|
1932 |
|
1933 |
# @ woocommerce-germanized
|
1934 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
1935 |
msgctxt "dhl"
|
1936 |
msgid "Available Products"
|
1937 |
msgstr "Verfügbare Produkte"
|
1938 |
|
1939 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
1940 |
#, php-format
|
1941 |
msgctxt "dhl"
|
1942 |
msgid ""
|
@@ -1948,44 +1968,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:
|
1952 |
msgctxt "dhl"
|
1953 |
msgid "API Error"
|
1954 |
msgstr "API Fehler"
|
1955 |
|
1956 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
1957 |
msgctxt "dhl"
|
1958 |
msgid "Charge Portokasse"
|
1959 |
msgstr "Portokasse aufladen"
|
1960 |
|
1961 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
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:
|
1968 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
1969 |
msgctxt "dhl"
|
1970 |
msgid "Not yet a customer?"
|
1971 |
msgstr "Noch kein Kunde?"
|
1972 |
|
1973 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
1974 |
msgctxt "dhl"
|
1975 |
msgid "Internetmarke"
|
1976 |
msgstr "Internetmarke"
|
1977 |
|
1978 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
1979 |
msgctxt "dhl"
|
1980 |
msgid "Addresses"
|
1981 |
msgstr "Adressen"
|
1982 |
|
1983 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
1984 |
msgctxt "dhl"
|
1985 |
msgid "Preferred Services"
|
1986 |
msgstr "Wunschpaket"
|
1987 |
|
1988 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
1989 |
msgctxt "dhl"
|
1990 |
msgid "Parcel Pickup"
|
1991 |
msgstr "Standorte"
|
@@ -2075,7 +2095,7 @@ msgstr "Tracked"
|
|
2075 |
|
2076 |
#: woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:43
|
2077 |
#: woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:52
|
2078 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2079 |
msgctxt "dhl"
|
2080 |
msgid "Error while fetching label PDF"
|
2081 |
msgstr "Fehler beim Download des PDF Labels"
|
@@ -2108,7 +2128,7 @@ msgctxt "dhl"
|
|
2108 |
msgid "Error during request: %s"
|
2109 |
msgstr "Fehler beim API Zugriff: %s"
|
2110 |
|
2111 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2112 |
#: woocommerce-germanized-dhl/src/Api/Soap.php:54
|
2113 |
#: woocommerce-germanized-dhl/src/Package.php:84
|
2114 |
#, php-format
|
@@ -2123,69 +2143,69 @@ msgstr ""
|
|
2123 |
"Zweifel deinen Hoster und stelle sicher, dass der SOAPClient <a href=\"%s"
|
2124 |
"\">installiert</a> ist."
|
2125 |
|
2126 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2127 |
#, php-format
|
2128 |
msgctxt "dhl"
|
2129 |
msgid "Error while instantiating main Internetmarke API: %s"
|
2130 |
msgstr "Fehler beim Aufruf der Internetmarke API: %s"
|
2131 |
|
2132 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2133 |
msgctxt "dhl"
|
2134 |
msgid "Internetmarke is disabled. Please enable Internetmarke."
|
2135 |
msgstr "Internetmarke ist deaktiviert. Bitte aktiviere die Internetmarke."
|
2136 |
|
2137 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2138 |
msgctxt "dhl"
|
2139 |
msgid "Wrong username or password"
|
2140 |
msgstr "Falscher Benutzername oder Passwort"
|
2141 |
|
2142 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2143 |
#, php-format
|
2144 |
msgctxt "dhl"
|
2145 |
msgid "until %s"
|
2146 |
msgstr "bis %s"
|
2147 |
|
2148 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2149 |
#, php-format
|
2150 |
msgctxt "dhl"
|
2151 |
msgid "Length: %s"
|
2152 |
msgstr "Länge: %s"
|
2153 |
|
2154 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2155 |
#, php-format
|
2156 |
msgctxt "dhl"
|
2157 |
msgid "Width: %s"
|
2158 |
msgstr "Breite: %s"
|
2159 |
|
2160 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2161 |
#, php-format
|
2162 |
msgctxt "dhl"
|
2163 |
msgid "Height: %s"
|
2164 |
msgstr "Höhe: %s"
|
2165 |
|
2166 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2167 |
#, php-format
|
2168 |
msgctxt "dhl"
|
2169 |
msgid "Weight: %s"
|
2170 |
msgstr "Gewicht: %s"
|
2171 |
|
2172 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2173 |
msgctxt "dhl"
|
2174 |
msgid "Total"
|
2175 |
msgstr "Gesamt"
|
2176 |
|
2177 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2178 |
#, php-format
|
2179 |
msgctxt "dhl"
|
2180 |
msgid "Could not refund post label: %s"
|
2181 |
msgstr "Deutsche Post Label konnte nicht rückerstattet werden: %s"
|
2182 |
|
2183 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2184 |
msgctxt "dhl"
|
2185 |
msgid "Refund API could not be instantiated"
|
2186 |
msgstr "Die API für Rückerstattungen konnte nicht initialisiert werden"
|
2187 |
|
2188 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2189 |
#: woocommerce-germanized-dhl/src/Api/LabelSoap.php:379
|
2190 |
#: woocommerce-germanized-dhl/src/Api/ReturnRest.php:34
|
2191 |
#, php-format
|
@@ -2193,12 +2213,12 @@ msgctxt "dhl"
|
|
2193 |
msgid "Could not fetch shipment %d."
|
2194 |
msgstr "Sendung %d konnte nicht gefunden werden."
|
2195 |
|
2196 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2197 |
msgctxt "dhl"
|
2198 |
msgid "Error while generating shop order id."
|
2199 |
msgstr "Fehler beim Erzeugen der Shop Order Id."
|
2200 |
|
2201 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2202 |
#, php-format
|
2203 |
msgctxt "dhl"
|
2204 |
msgid ""
|
@@ -2208,14 +2228,14 @@ msgstr ""
|
|
2208 |
"Fehler beim Kauf des Labels. Bitte <a href=\"%s\">aktualisiere</a>die "
|
2209 |
"Produktliste manuell und versuche es erneut."
|
2210 |
|
2211 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2212 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2213 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2214 |
msgctxt "dhl"
|
2215 |
msgid "Error while downloading the PDF stamp."
|
2216 |
msgstr "Fehler beim Download des PDF Labels."
|
2217 |
|
2218 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2219 |
msgctxt "dhl"
|
2220 |
msgid "Invalid stamp response."
|
2221 |
msgstr "Fehlerhafte Label Rückmeldung."
|
@@ -2319,38 +2339,38 @@ msgctxt "dhl"
|
|
2319 |
msgid "Parcel API not available"
|
2320 |
msgstr "Paket API ist nicht erreichbar"
|
2321 |
|
2322 |
-
#: woocommerce-germanized-dhl/src/Api/Paket.php:
|
2323 |
msgctxt "dhl"
|
2324 |
msgid "Mon"
|
2325 |
msgstr "Mo"
|
2326 |
|
2327 |
-
#: woocommerce-germanized-dhl/src/Api/Paket.php:
|
2328 |
msgctxt "dhl"
|
2329 |
msgid "Tue"
|
2330 |
msgstr "Di"
|
2331 |
|
2332 |
-
#: woocommerce-germanized-dhl/src/Api/Paket.php:
|
2333 |
msgctxt "dhl"
|
2334 |
msgid "Wed"
|
2335 |
msgstr "Mi"
|
2336 |
|
2337 |
-
#: woocommerce-germanized-dhl/src/Api/Paket.php:
|
2338 |
msgctxt "dhl"
|
2339 |
msgid "Thu"
|
2340 |
msgstr "Do"
|
2341 |
|
2342 |
-
#: woocommerce-germanized-dhl/src/Api/Paket.php:
|
2343 |
msgctxt "dhl"
|
2344 |
msgid "Fri"
|
2345 |
msgstr "Fr"
|
2346 |
|
2347 |
# @ woocommerce-germanized
|
2348 |
-
#: woocommerce-germanized-dhl/src/Api/Paket.php:
|
2349 |
msgctxt "dhl"
|
2350 |
msgid "Sat"
|
2351 |
msgstr "Sa"
|
2352 |
|
2353 |
-
#: woocommerce-germanized-dhl/src/Api/Paket.php:
|
2354 |
msgctxt "dhl"
|
2355 |
msgid "Sun"
|
2356 |
msgstr "So"
|
@@ -2408,7 +2428,7 @@ msgctxt "dhl"
|
|
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:
|
2412 |
msgctxt "dhl"
|
2413 |
msgid "Invalid label."
|
2414 |
msgstr "Ungültiges Label."
|
@@ -2420,7 +2440,7 @@ msgctxt "dhl time-span"
|
|
2420 |
msgid "%s-%s"
|
2421 |
msgstr "%s-%s"
|
2422 |
|
2423 |
-
#: woocommerce-germanized-dhl/src/Package.php:
|
2424 |
msgctxt "dhl"
|
2425 |
msgid ""
|
2426 |
"Please check the street field and make sure to provide a valid street number."
|
@@ -2429,15 +2449,15 @@ msgstr ""
|
|
2429 |
"angibst."
|
2430 |
|
2431 |
# @ woocommerce-germanized
|
2432 |
-
#: woocommerce-germanized-dhl/src/Package.php:
|
2433 |
msgctxt "dhl"
|
2434 |
msgid "Germany"
|
2435 |
msgstr "Deutschland"
|
2436 |
|
2437 |
# @ woocommerce-germanized
|
2438 |
#: woocommerce-germanized-dhl/src/ParcelLocator.php:92
|
2439 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2440 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2441 |
msgctxt "dhl"
|
2442 |
msgid "Address Type"
|
2443 |
msgstr "Adresstyp"
|
@@ -2462,30 +2482,30 @@ msgstr ""
|
|
2462 |
"eintragen."
|
2463 |
|
2464 |
#: woocommerce-germanized-dhl/src/ParcelLocator.php:188
|
2465 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2466 |
msgctxt "dhl"
|
2467 |
msgid "Invalid address type."
|
2468 |
msgstr "Ungültiger Adresstyp."
|
2469 |
|
2470 |
# @ woocommerce-germanized
|
2471 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2472 |
msgctxt "dhl"
|
2473 |
msgid "Sorry, but delivery to packstation is not available."
|
2474 |
msgstr ""
|
2475 |
"Entschuldigung, die Lieferung an eine Packstation steht nicht zur Verfügung."
|
2476 |
|
2477 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2478 |
msgctxt "dhl"
|
2479 |
msgid "Sorry, but delivery to parcel shops is not available."
|
2480 |
msgstr ""
|
2481 |
"Entschuldigung, die Lieferung an einen Paketshop steht nicht zur Verfügung."
|
2482 |
|
2483 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2484 |
msgctxt "dhl"
|
2485 |
msgid "Sorry, but delivery to post offices is not available."
|
2486 |
msgstr "Entschuldigung, die Lieferung an Postfilialen ist nicht verfügbar."
|
2487 |
|
2488 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2489 |
#, php-format
|
2490 |
msgctxt "dhl"
|
2491 |
msgid "Please indicate shipment to %s by one of the following values: %s."
|
@@ -2493,7 +2513,7 @@ msgstr ""
|
|
2493 |
"Bitte identifiziere die Lieferung an %s durch die Eingabe einer der "
|
2494 |
"folgenden Werte: %s."
|
2495 |
|
2496 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2497 |
msgctxt "dhl"
|
2498 |
msgid ""
|
2499 |
"Your DHL customer number (Post number) is not valid. Please check your "
|
@@ -2502,7 +2522,7 @@ msgstr ""
|
|
2502 |
"Deine DHL Kundennummer (Postnummer) ist nicht gültig. Bitte überprüfe deine "
|
2503 |
"Eingabe."
|
2504 |
|
2505 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2506 |
msgctxt "dhl"
|
2507 |
msgid ""
|
2508 |
"Your DHL customer number (Post number) is needed to ship to a packstation."
|
@@ -2510,64 +2530,64 @@ msgstr ""
|
|
2510 |
"Deine DHL Kundennummer (Postnummer) wird für den Versand an eine Packstation "
|
2511 |
"benötigt."
|
2512 |
|
2513 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2514 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2515 |
msgctxt "dhl"
|
2516 |
msgid "Branch"
|
2517 |
msgstr "Filiale"
|
2518 |
|
2519 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2520 |
msgctxt "dhl"
|
2521 |
msgid "Postnumber "
|
2522 |
msgstr "Postnummer "
|
2523 |
|
2524 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2525 |
#, php-format
|
2526 |
msgctxt "dhl"
|
2527 |
msgid "e.g. %s 456"
|
2528 |
msgstr "z.B. %s 456"
|
2529 |
|
2530 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2531 |
msgctxt "dhl"
|
2532 |
msgid "Branches"
|
2533 |
msgstr "Filialen"
|
2534 |
|
2535 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2536 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2537 |
msgctxt "dhl"
|
2538 |
msgid "DHL customer number (Post number)"
|
2539 |
msgstr "DHL Kundennummer (Postnummer)"
|
2540 |
|
2541 |
# @ woocommerce-germanized
|
2542 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2543 |
msgctxt "dhl"
|
2544 |
msgid "Regular Address"
|
2545 |
msgstr "Normale Adresse"
|
2546 |
|
2547 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2548 |
msgctxt "dhl"
|
2549 |
msgid "Not yet a DHL customer?"
|
2550 |
msgstr "Noch kein DHL Kunde?"
|
2551 |
|
2552 |
# @ woocommerce-germanized
|
2553 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2554 |
msgctxt "dhl"
|
2555 |
msgid "Register now"
|
2556 |
msgstr "Jetzt registrieren"
|
2557 |
|
2558 |
# @ woocommerce-germanized
|
2559 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2560 |
#, php-format
|
2561 |
msgctxt "dhl"
|
2562 |
msgid "Search %s"
|
2563 |
msgstr "%s suchen"
|
2564 |
|
2565 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2566 |
msgctxt "dhl"
|
2567 |
msgid "No DHL locations found"
|
2568 |
msgstr "Keine DHL Standorte gefunden"
|
2569 |
|
2570 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2571 |
#, php-format
|
2572 |
msgctxt "dhl"
|
2573 |
msgid ""
|
@@ -2578,12 +2598,12 @@ msgstr ""
|
|
2578 |
"%s oder %s."
|
2579 |
|
2580 |
# @ woocommerce-germanized
|
2581 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2582 |
msgctxt "dhl"
|
2583 |
msgid "DHL location"
|
2584 |
msgstr "DHL Standort"
|
2585 |
|
2586 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2587 |
msgctxt "dhl"
|
2588 |
msgid "retry"
|
2589 |
msgstr "Erneut versuchen"
|
@@ -2846,7 +2866,7 @@ msgstr "Verpackung"
|
|
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:
|
2850 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:24
|
2851 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:688
|
2852 |
msgctxt "shipments"
|
@@ -2892,14 +2912,14 @@ msgstr "Position hinzufügen"
|
|
2892 |
|
2893 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:189
|
2894 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:45
|
2895 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2896 |
msgctxt "shipments"
|
2897 |
msgid "Item"
|
2898 |
msgstr "Position"
|
2899 |
|
2900 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:190
|
2901 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:46
|
2902 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2903 |
#: woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:55
|
2904 |
#: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:37
|
2905 |
#: woocommerce-germanized-shipments/templates/shipment/shipment-details.php:60
|
@@ -2979,9 +2999,9 @@ 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:
|
2983 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2984 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2985 |
#: woocommerce-germanized-shipments/src/Admin/Settings.php:80
|
2986 |
#: woocommerce-germanized-shipments/src/Admin/Settings.php:177
|
2987 |
#: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:36
|
@@ -3011,10 +3031,10 @@ msgstr "%s #%s"
|
|
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:
|
3015 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3016 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3017 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3018 |
#: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:20
|
3019 |
msgctxt "shipments"
|
3020 |
msgid "Shipments"
|
@@ -3052,7 +3072,7 @@ msgstr "Titel"
|
|
3052 |
|
3053 |
# @ woocommerce-germanized
|
3054 |
#: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:12
|
3055 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3056 |
#: woocommerce-germanized-shipments/src/ShippingProvider.php:564
|
3057 |
msgctxt "shipments"
|
3058 |
msgid "Description"
|
@@ -3109,7 +3129,7 @@ msgid "Download"
|
|
3109 |
msgstr "Download"
|
3110 |
|
3111 |
#: woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:39
|
3112 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3113 |
msgctxt "shipments"
|
3114 |
msgid "Create new label"
|
3115 |
msgstr "Neues Label erstellen"
|
@@ -3277,8 +3297,8 @@ msgid "Text to appear below the main email content."
|
|
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:
|
3281 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
3282 |
#: woocommerce-germanized-shipments/templates/shipment/shipment-details-address.php:28
|
3283 |
msgctxt "shipments"
|
3284 |
msgid "N/A"
|
@@ -3340,7 +3360,7 @@ 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:
|
3344 |
msgctxt "shipments"
|
3345 |
msgid "Shipment"
|
3346 |
msgstr "Sendung"
|
@@ -3363,7 +3383,7 @@ 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:
|
3367 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:854
|
3368 |
msgctxt "shipments"
|
3369 |
msgid "Shipped"
|
@@ -3384,49 +3404,49 @@ msgctxt "shipments"
|
|
3384 |
msgid "Returned"
|
3385 |
msgstr "Retourniert"
|
3386 |
|
3387 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
3388 |
msgctxt "shipments"
|
3389 |
msgid "Draft"
|
3390 |
msgstr "Entwurf"
|
3391 |
|
3392 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
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:
|
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:
|
3406 |
msgctxt "shipments"
|
3407 |
msgid "Requested"
|
3408 |
msgstr "Beantragt"
|
3409 |
|
3410 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
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:
|
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:
|
3423 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
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:
|
3429 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
3430 |
#: woocommerce-germanized-shipments/src/ReturnShipment.php:428
|
3431 |
#: woocommerce-germanized-shipments/src/ReturnShipment.php:499
|
3432 |
#: woocommerce-germanized-shipments/src/SimpleShipment.php:118
|
@@ -3435,57 +3455,57 @@ 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:
|
3439 |
msgctxt "shipments"
|
3440 |
msgid "Invalid order item"
|
3441 |
msgstr "Ungültige Bestellposition"
|
3442 |
|
3443 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
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:
|
3450 |
msgctxt "shipments"
|
3451 |
msgid "None"
|
3452 |
msgstr "Keiner"
|
3453 |
|
3454 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
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:
|
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:
|
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:
|
3475 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3476 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:30
|
3477 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:694
|
3478 |
msgctxt "shipments"
|
3479 |
msgid "Actions"
|
3480 |
msgstr "Aktionen"
|
3481 |
|
3482 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
3483 |
msgctxt "shipments"
|
3484 |
msgid "View"
|
3485 |
msgstr "Anzeigen"
|
3486 |
|
3487 |
# @ woocommerce-germanized
|
3488 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
3489 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:865
|
3490 |
#: woocommerce-germanized-shipments/src/Ajax.php:337
|
3491 |
msgctxt "shipments"
|
@@ -3524,25 +3544,57 @@ msgid "View order"
|
|
3524 |
msgstr "Bestellung ansehen"
|
3525 |
|
3526 |
# @ woocommerce-germanized
|
3527 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3528 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3529 |
#: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:36
|
3530 |
msgctxt "shipments"
|
3531 |
msgid "Reason"
|
3532 |
msgstr "Rücksendegrund"
|
3533 |
|
3534 |
# @ woocommerce-germanized
|
3535 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3536 |
msgctxt "shipments"
|
3537 |
msgid "Return reasons"
|
3538 |
msgstr "Rücksendegründe"
|
3539 |
|
3540 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3541 |
msgctxt "shipments"
|
3542 |
msgid "Reason code"
|
3543 |
msgstr "Rücksendegrund (Code)"
|
3544 |
|
3545 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3546 |
msgctxt "shipments"
|
3547 |
msgid "The reason code is used to identify the reason."
|
3548 |
msgstr ""
|
@@ -3550,61 +3602,61 @@ msgstr ""
|
|
3550 |
"identifizieren zu können."
|
3551 |
|
3552 |
# @ woocommerce-germanized
|
3553 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3554 |
msgctxt "shipments"
|
3555 |
msgid "Choose a reason text."
|
3556 |
msgstr "Beschreibung für den Grund."
|
3557 |
|
3558 |
# @ woocommerce-germanized
|
3559 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3560 |
msgctxt "shipments"
|
3561 |
msgid "+ Add reason"
|
3562 |
msgstr "+ Grund hinzufügen"
|
3563 |
|
3564 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3565 |
msgctxt "shipments"
|
3566 |
msgid "Remove selected reason(s)"
|
3567 |
msgstr "Ausgewählte Gründe löschen"
|
3568 |
|
3569 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3570 |
msgctxt "shipments"
|
3571 |
msgid "Available Packaging"
|
3572 |
msgstr "Verfügbare Verpackungen"
|
3573 |
|
3574 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3575 |
msgctxt "shipments"
|
3576 |
msgid "A description to help you identify the packaging."
|
3577 |
msgstr "Eine Beschreibung die dir dabei hilft Verpackungen zu identifizieren."
|
3578 |
|
3579 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3580 |
msgctxt "shipments"
|
3581 |
msgid "Type"
|
3582 |
msgstr "Typ"
|
3583 |
|
3584 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3585 |
#, php-format
|
3586 |
msgctxt "shipments"
|
3587 |
msgid "Weight (%s)"
|
3588 |
msgstr "Gewicht (%s)"
|
3589 |
|
3590 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3591 |
msgctxt "shipments"
|
3592 |
msgid "The weight of the packaging."
|
3593 |
msgstr "Das Gewicht der Verpackung."
|
3594 |
|
3595 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3596 |
#, php-format
|
3597 |
msgctxt "shipments"
|
3598 |
msgid "Dimensions (LxWxH, %s)"
|
3599 |
msgstr "Abmessungen (LxBxH, %s)"
|
3600 |
|
3601 |
# @ woocommerce-germanized
|
3602 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3603 |
msgctxt "shipments"
|
3604 |
msgid "Max weight (kg)"
|
3605 |
msgstr "Max. Gewicht (kg)"
|
3606 |
|
3607 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3608 |
msgctxt "shipments"
|
3609 |
msgid ""
|
3610 |
"The maximum weight this packaging can hold. Leave empty to not restrict "
|
@@ -3613,68 +3665,68 @@ msgstr ""
|
|
3613 |
"Das maximale Gewicht, das diese Verpackung tragen kann. Leer lassen um das "
|
3614 |
"Gewicht nicht zu begrenzen."
|
3615 |
|
3616 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3617 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3618 |
msgctxt "shipments"
|
3619 |
msgid "Length"
|
3620 |
msgstr "Länge"
|
3621 |
|
3622 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3623 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3624 |
msgctxt "shipments"
|
3625 |
msgid "Width"
|
3626 |
msgstr "Breite"
|
3627 |
|
3628 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3629 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3630 |
msgctxt "shipments"
|
3631 |
msgid "Height"
|
3632 |
msgstr "Höhe"
|
3633 |
|
3634 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3635 |
msgctxt "shipments"
|
3636 |
msgid "+ Add packaging"
|
3637 |
msgstr "+ Verpackung hinzufügen"
|
3638 |
|
3639 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3640 |
msgctxt "shipments"
|
3641 |
msgid "Remove selected packaging"
|
3642 |
msgstr "Ausgewählte Verpackung löschen"
|
3643 |
|
3644 |
# @ woocommerce-germanized
|
3645 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3646 |
msgctxt "shipments"
|
3647 |
msgid "Create shipments"
|
3648 |
msgstr "Sendungen erstellen"
|
3649 |
|
3650 |
# @ woocommerce-germanized
|
3651 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3652 |
msgctxt "shipments"
|
3653 |
msgid "Search shipments"
|
3654 |
msgstr "Sendungen suchen"
|
3655 |
|
3656 |
# @ woocommerce-germanized
|
3657 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3658 |
msgctxt "shipments"
|
3659 |
msgid "Search returns"
|
3660 |
msgstr "Retouren suchen"
|
3661 |
|
3662 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3663 |
msgctxt "shipments"
|
3664 |
msgid "Do you really want to delete the shipment?"
|
3665 |
msgstr "Möchtest du die Sendung wirklich löschen?"
|
3666 |
|
3667 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3668 |
msgctxt "shipments"
|
3669 |
msgid "Do you really want to delete the label?"
|
3670 |
msgstr "Möchtest du das Label wirklich löschen?"
|
3671 |
|
3672 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3673 |
msgctxt "shipments"
|
3674 |
msgid "Please save the shipment before creating a new label"
|
3675 |
msgstr "Bitte speichere die Sendung bevor du ein neues Label erzeugst"
|
3676 |
|
3677 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3678 |
msgctxt "shipments"
|
3679 |
msgid ""
|
3680 |
"Do you really want to delete the shipping provider? Some of your existing "
|
@@ -4703,7 +4755,7 @@ msgid "Letter C4"
|
|
4703 |
msgstr "Brief C4"
|
4704 |
|
4705 |
# @ woocommerce-germanized
|
4706 |
-
#: woocommerce-germanized-shipments/src/Package.php:
|
4707 |
msgctxt "shipments"
|
4708 |
msgid "Sorry, this order is invalid and cannot be returned."
|
4709 |
msgstr "Sorry, diese Bestellung existiert nicht."
|
@@ -4715,7 +4767,7 @@ msgid "%1$s (%2$s, %3$s)"
|
|
4715 |
msgstr "%1$s (%2$s, %3$s)"
|
4716 |
|
4717 |
#: woocommerce-germanized-shipments/src/ReturnShipment.php:356
|
4718 |
-
#: woocommerce-germanized-shipments/src/Shipment.php:
|
4719 |
#, php-format
|
4720 |
msgctxt "full name"
|
4721 |
msgid "%1$s %2$s"
|
@@ -5268,8 +5320,8 @@ msgstr "l"
|
|
5268 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:549
|
5269 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:559
|
5270 |
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:449
|
5271 |
-
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:
|
5272 |
-
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:
|
5273 |
msgid "incl. VAT"
|
5274 |
msgstr "inkl. MwSt."
|
5275 |
|
@@ -5377,7 +5429,8 @@ msgstr ""
|
|
5377 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:134
|
5378 |
#, php-format
|
5379 |
msgid ""
|
5380 |
-
"To insert a link to your
|
|
|
5381 |
msgstr ""
|
5382 |
"Um einen Link zu deiner Widerrufsbelehrung einzufügen, verwende den "
|
5383 |
"folgenden Platzhalter: %s"
|
@@ -5399,20 +5452,20 @@ msgstr ""
|
|
5399 |
|
5400 |
# @ woocommerce-germanized
|
5401 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:122
|
5402 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
5403 |
msgid "Downloadable Product"
|
5404 |
msgstr "Herunterladbares Produkt"
|
5405 |
|
5406 |
# @ woocommerce-germanized
|
5407 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:123
|
5408 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
5409 |
msgid "Virtual Product"
|
5410 |
msgstr "Virtuelles Produkt"
|
5411 |
|
5412 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:124
|
5413 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:46
|
5414 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:168
|
5415 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
5416 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:146
|
5417 |
msgid "Service"
|
5418 |
msgstr "Dienstleistung"
|
@@ -5449,9 +5502,9 @@ msgstr "Digitale Produkttypen"
|
|
5449 |
# @ woocommerce-germanized
|
5450 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:139
|
5451 |
msgid ""
|
5452 |
-
"Select product types for which the loss of
|
5453 |
-
"Product types like \"simple product\" may be
|
5454 |
-
"virtual and downloadable products."
|
5455 |
msgstr ""
|
5456 |
"Wähle die Produkttypen aus, für die ein Hinweis für den Verlust des "
|
5457 |
"Widerrufsrechts angezeigt werden soll. Produkttypen wie \"einfaches Produkt"
|
@@ -5520,8 +5573,8 @@ msgstr "Gleiche wie übergeordnet"
|
|
5520 |
|
5521 |
# @ woocommerce-germanized
|
5522 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-product-categories.php:82
|
5523 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
5524 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
5525 |
msgid "None"
|
5526 |
msgstr "Keine"
|
5527 |
|
@@ -5686,7 +5739,8 @@ msgstr "AGB"
|
|
5686 |
# @ woocommerce-germanized
|
5687 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:46
|
5688 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:63
|
5689 |
-
|
|
|
5690 |
msgstr "Widerrufsbelehrung"
|
5691 |
|
5692 |
# @ woocommerce-germanized
|
@@ -5893,18 +5947,20 @@ msgstr "Grundpreis automatisch berechnen"
|
|
5893 |
|
5894 |
# @ woocommerce-germanized
|
5895 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:107
|
|
|
5896 |
msgid "Regular Unit Price"
|
5897 |
msgstr "Regulärer Grundpreis"
|
5898 |
|
5899 |
# @ woocommerce-germanized
|
5900 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:114
|
|
|
5901 |
msgid "Sale Unit Price"
|
5902 |
msgstr "Angebotsgrundpreis"
|
5903 |
|
5904 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:121
|
5905 |
#, php-format
|
5906 |
msgid ""
|
5907 |
-
"To enable unit prices on variation level please choose a unit and
|
5908 |
"units within %s."
|
5909 |
msgstr ""
|
5910 |
"Um Grundpreise auf Variationen-Ebene zu aktivieren, bitte Einheit und "
|
@@ -5991,13 +6047,13 @@ msgstr ""
|
|
5991 |
|
5992 |
# @ woocommerce-germanized
|
5993 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:224
|
5994 |
-
msgid "
|
5995 |
msgstr "Grundpreiseinheiten"
|
5996 |
|
5997 |
# @ woocommerce-germanized
|
5998 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:227
|
5999 |
msgid ""
|
6000 |
-
"
|
6001 |
"price unit amount."
|
6002 |
msgstr ""
|
6003 |
"Anzahl der Grundpreiseinheiten. Beispiel Grundpreis: 0,99 / 100 ml. Füge "
|
@@ -6005,18 +6061,8 @@ msgstr ""
|
|
6005 |
|
6006 |
# @ woocommerce-germanized
|
6007 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:250
|
6008 |
-
msgid "Calculate
|
6009 |
-
msgstr "Grundpreis automatisch berechnen
|
6010 |
-
|
6011 |
-
# @ woocommerce-germanized
|
6012 |
-
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:254
|
6013 |
-
msgid "Regular Base Price"
|
6014 |
-
msgstr "Regulärer Grundpreis"
|
6015 |
-
|
6016 |
-
# @ woocommerce-germanized
|
6017 |
-
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:259
|
6018 |
-
msgid "Sale Base Price"
|
6019 |
-
msgstr "Angebotsgrundpreis"
|
6020 |
|
6021 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:271
|
6022 |
msgid "Adds an age verification checkbox while purchasing this product."
|
@@ -6158,7 +6204,7 @@ msgstr "PDF Rechnungen & Lieferscheine"
|
|
6158 |
|
6159 |
# @ woocommerce-germanized
|
6160 |
#: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-pro.php:30
|
6161 |
-
msgid "Generator for terms & conditions and
|
6162 |
msgstr "Schnittstelle für Mustertexte-Generatoren für AGB & Widerrufsbelehrung"
|
6163 |
|
6164 |
# @ woocommerce-germanized
|
@@ -6890,7 +6936,7 @@ msgstr ""
|
|
6890 |
# @ woocommerce-germanized
|
6891 |
# @ woocommerce
|
6892 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:163
|
6893 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6894 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:137
|
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
|
@@ -6996,7 +7042,7 @@ msgstr "Passe allgemeine Optionen z.B. deine rechtlich relevanten Seiten an."
|
|
6996 |
|
6997 |
# @ woocommerce-germanized
|
6998 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:30
|
6999 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7000 |
#: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:174
|
7001 |
msgid "Legal Pages"
|
7002 |
msgstr "Rechtlich relevante Seiten"
|
@@ -7055,7 +7101,7 @@ msgstr "Du hast noch keine AGB? <a href=\"%s\">Jetzt generieren</a>!"
|
|
7055 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:64
|
7056 |
msgid ""
|
7057 |
"This page should contain information regarding your customer's Right of "
|
7058 |
-
"
|
7059 |
msgstr ""
|
7060 |
"Diese Seite sollte deine Widerrufsbelehrung enthalten. Nutze folgenden "
|
7061 |
"Shortcode um ein Widerrufsformular in die Seite einzubinden: "
|
@@ -7068,16 +7114,15 @@ msgid "Don't have a revocation page yet? <a href=\"%s\">Generate now</a>!"
|
|
7068 |
msgstr ""
|
7069 |
"Du hast noch keine Widerrufsbelehrung? <a href=\"%s\">Jetzt generieren</a>!"
|
7070 |
|
7071 |
-
# @ woocommerce-germanized
|
7072 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:74
|
7073 |
-
msgid "
|
7074 |
msgstr "Widerruf richten an"
|
7075 |
|
7076 |
# @ woocommerce-germanized
|
7077 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:75
|
7078 |
msgid ""
|
7079 |
"Type in an address, telephone/telefax number, email address which is to be "
|
7080 |
-
"used as
|
7081 |
msgstr ""
|
7082 |
"Gib hier deine Adresse, Telefon- und Faxnummer, E-Mail Adresse usw. an, an "
|
7083 |
"die deine Kunden ihren Widerruf richten sollen"
|
@@ -7233,7 +7278,7 @@ msgstr "Jetzt hinzufügen"
|
|
7233 |
|
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:
|
7237 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:131
|
7238 |
msgid "Notice Text"
|
7239 |
msgstr "Hinweistext"
|
@@ -7250,32 +7295,23 @@ msgid ""
|
|
7250 |
"UStG."
|
7251 |
msgstr "Kein Mehrwertsteuerausweis, da Kleinunternehmer nach §19 (1) UStG."
|
7252 |
|
7253 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:232
|
7254 |
-
msgid "Phone"
|
7255 |
-
msgstr "Telefon"
|
7256 |
-
|
7257 |
# @ woocommerce-germanized
|
7258 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:233
|
7259 |
-
msgid "Mark phone number as non-required within checkout."
|
7260 |
-
msgstr "Telefonnummer in der Kasse nicht als Pflichtfeld abfragen."
|
7261 |
-
|
7262 |
-
# @ woocommerce-germanized
|
7263 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:240
|
7264 |
msgid "Add a title field to the address within checkout."
|
7265 |
msgstr "Lasse Kunden eine Anrede auswählen."
|
7266 |
|
7267 |
# @ woocommerce-germanized
|
7268 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7269 |
msgid "Disallow cancellations"
|
7270 |
msgstr "Stornierungen verhindern"
|
7271 |
|
7272 |
# @ woocommerce-germanized
|
7273 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7274 |
msgid "Don't allow customers to manually cancel orders."
|
7275 |
msgstr "Stornierung von Bestellungen durch den Kunden verhindern."
|
7276 |
|
7277 |
# @ woocommerce-germanized
|
7278 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7279 |
msgid ""
|
7280 |
"By default payment methods like PayPal allow order cancellation by clicking "
|
7281 |
"the abort link. This option will stop customers from manually cancel orders."
|
@@ -7284,17 +7320,17 @@ msgstr ""
|
|
7284 |
"Kunden den Abbrechen-Link verwendet. Diese Option verhindert den manuellen "
|
7285 |
"Abbruch einer Bestellung durch den Kunden."
|
7286 |
|
7287 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7288 |
msgid "Disallow gateway choosing"
|
7289 |
msgstr "Wechsel der Zahlungsart"
|
7290 |
|
7291 |
# @ woocommerce-germanized
|
7292 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7293 |
msgid "Don't allow customers to change the payment gateway after ordering."
|
7294 |
msgstr ""
|
7295 |
"Wechsel der Zahlungsart nach der Bestellung durch den Kunden verhindern."
|
7296 |
|
7297 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7298 |
msgid ""
|
7299 |
"Customers paying through a gateway which allows later payment (e.g. PayPal) "
|
7300 |
"will find a link within their customer account which redirects them to a pay "
|
@@ -7313,17 +7349,17 @@ msgstr ""
|
|
7313 |
"PayPal weiter."
|
7314 |
|
7315 |
# @ woocommerce-germanized
|
7316 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7317 |
msgid "Free shipping"
|
7318 |
msgstr "Kostenloser Versand"
|
7319 |
|
7320 |
# @ woocommerce-germanized
|
7321 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7322 |
msgid "Force free shipping method if available."
|
7323 |
msgstr "Erzwinge kostenlosen Versand wenn die Methode zur Verfügung steht."
|
7324 |
|
7325 |
# @ woocommerce-germanized
|
7326 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7327 |
msgid ""
|
7328 |
"By default WooCommerce will let customers choose other shipping methods than "
|
7329 |
"free shipping (if available). This option will force free shipping if "
|
@@ -7334,11 +7370,11 @@ msgstr ""
|
|
7334 |
"Versand, sobald dieser verfügbar ist."
|
7335 |
|
7336 |
# @ woocommerce-germanized
|
7337 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7338 |
msgid "Exclude Methods"
|
7339 |
msgstr "Deaktivierte Methoden"
|
7340 |
|
7341 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7342 |
msgid ""
|
7343 |
"Optionally choose methods which should be excluded from hiding when free "
|
7344 |
"shipping is available (e.g. express shipping options)."
|
@@ -7347,37 +7383,17 @@ msgstr ""
|
|
7347 |
"kostenloser Versand verfügbar ist (z.B. Express-Versandmethoden)."
|
7348 |
|
7349 |
# @ woocommerce-germanized
|
7350 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7351 |
-
msgid "Price Range Format"
|
7352 |
-
msgstr "Preisspannen-Format"
|
7353 |
-
|
7354 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:290
|
7355 |
-
msgid ""
|
7356 |
-
"Adjust the price range format e.g. for variable products. Use {min_price} as "
|
7357 |
-
"placeholder for the minimum price. Use {max_price} as placeholder for the "
|
7358 |
-
"maximum price."
|
7359 |
-
msgstr ""
|
7360 |
-
"Passe das Format von Preisspannen z.B. für variable Produkte an. Verwende "
|
7361 |
-
"{min_price} als Platzhalter für den minimalen Preis und {max_price} als "
|
7362 |
-
"Platzhalter für den höchsten Preis."
|
7363 |
-
|
7364 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:294
|
7365 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:861
|
7366 |
-
msgid "{min_price} – {max_price}"
|
7367 |
-
msgstr "{min_price} – {max_price}"
|
7368 |
-
|
7369 |
-
# @ woocommerce-germanized
|
7370 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:298
|
7371 |
msgid "Add to Cart"
|
7372 |
msgstr "Zum Warenkorb Button"
|
7373 |
|
7374 |
# @ woocommerce-germanized
|
7375 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7376 |
msgid "Show add to cart button on listings."
|
7377 |
msgstr "Zeige den „zum Warenkorb“ Button in Produktlisten an."
|
7378 |
|
7379 |
# @ woocommerce-germanized
|
7380 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7381 |
msgid ""
|
7382 |
"unset this option if you don't want to show the add to cart button within "
|
7383 |
"the product listings"
|
@@ -7385,19 +7401,19 @@ msgstr ""
|
|
7385 |
"Deaktiviere diese Option, wenn du den zum Warenkorb Button nicht innerhalb "
|
7386 |
"von Produktauflistungen darstellen möchten"
|
7387 |
|
7388 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7389 |
msgid "Link"
|
7390 |
msgstr "Verlinkung"
|
7391 |
|
7392 |
# @ woocommerce-germanized
|
7393 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7394 |
msgid "Link to product details page instead of add to cart within listings."
|
7395 |
msgstr ""
|
7396 |
"Ersetze den zum-Warenkorb-Link durch einen Link zur Produktdetailseite in "
|
7397 |
"Produktlisten."
|
7398 |
|
7399 |
# @ woocommerce-germanized
|
7400 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7401 |
msgid ""
|
7402 |
"Decide whether you like to link to your product's details page instead of "
|
7403 |
"displaying an add to cart button within product listings."
|
@@ -7407,17 +7423,17 @@ msgstr ""
|
|
7407 |
"diese Option."
|
7408 |
|
7409 |
# @ woocommerce-germanized
|
7410 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7411 |
msgid "Product Details Text"
|
7412 |
msgstr "Produktdetails Text"
|
7413 |
|
7414 |
# @ woocommerce-germanized
|
7415 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7416 |
msgid "Details"
|
7417 |
msgstr "Details"
|
7418 |
|
7419 |
# @ woocommerce-germanized
|
7420 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7421 |
msgid ""
|
7422 |
"If you have chosen to link to product details page instead of add to cart "
|
7423 |
"URL you may want to change the button text."
|
@@ -7427,11 +7443,11 @@ msgstr ""
|
|
7427 |
"einen Button-Text vergeben."
|
7428 |
|
7429 |
# @ woocommerce-germanized
|
7430 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7431 |
msgid "Overview"
|
7432 |
msgstr "Übersicht"
|
7433 |
|
7434 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7435 |
msgid ""
|
7436 |
"You can always return to the settings overview by navigating through the "
|
7437 |
"breadcrumb navigation."
|
@@ -7440,17 +7456,17 @@ msgstr ""
|
|
7440 |
"indem du die Breadcrumb-Navigation nutzt."
|
7441 |
|
7442 |
# @ woocommerce-germanized
|
7443 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7444 |
msgid "Sections"
|
7445 |
msgstr "Rubriken"
|
7446 |
|
7447 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7448 |
msgid ""
|
7449 |
"Each setting tab might have sub sections containing more specific options."
|
7450 |
msgstr ""
|
7451 |
"Jeder Tab kann weitere Unterbereiche mit spezifischen Optionen beinhalten."
|
7452 |
|
7453 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7454 |
msgid ""
|
7455 |
"Adjust legal pages e.g. terms and conditions. These pages are used to add "
|
7456 |
"links within checkboxes and text attachments to emails."
|
@@ -7613,8 +7629,8 @@ msgstr ""
|
|
7613 |
"Lieferzeit zugeordnet wurde."
|
7614 |
|
7615 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:134
|
7616 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7617 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7618 |
msgid "Format"
|
7619 |
msgstr "Format"
|
7620 |
|
@@ -7668,7 +7684,10 @@ msgstr "MwSt. Hinweis"
|
|
7668 |
# @ woocommerce-germanized
|
7669 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:225
|
7670 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:256
|
7671 |
-
|
|
|
|
|
|
|
7672 |
msgstr "Grundpreis"
|
7673 |
|
7674 |
# @ woocommerce-germanized
|
@@ -7699,7 +7718,7 @@ msgstr "Preisauszeichnung „Steuer“ anzeigen"
|
|
7699 |
|
7700 |
# @ woocommerce-germanized
|
7701 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:320
|
7702 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7703 |
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:248
|
7704 |
msgid "Shipping Costs"
|
7705 |
msgstr "Versandkosten"
|
@@ -7728,9 +7747,34 @@ msgstr ""
|
|
7728 |
"werden soll. Je höher die Priorität ist, desto später wird die "
|
7729 |
"Preisauszeichnung hinzugefügt. Standard ist %d."
|
7730 |
|
|
|
|
|
|
|
|
|
7731 |
# @ woocommerce-germanized
|
|
|
|
|
|
|
|
|
7732 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:372
|
7733 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7734 |
"This text will be used to inform the customer about shipping costs. Use "
|
7735 |
"{link}{/link} to insert link to shipping costs page."
|
7736 |
msgstr ""
|
@@ -7739,17 +7783,17 @@ msgstr ""
|
|
7739 |
"zur Versandkosten-Seite einzufügen."
|
7740 |
|
7741 |
# @ woocommerce-germanized
|
7742 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7743 |
msgid "plus {link}Shipping Costs{/link}"
|
7744 |
msgstr "zzgl. {link}Versandkosten{/link}"
|
7745 |
|
7746 |
# @ woocommerce-germanized
|
7747 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7748 |
msgid "Free Shipping Text"
|
7749 |
msgstr "Kostenloser Versand Text"
|
7750 |
|
7751 |
# @ woocommerce-germanized
|
7752 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7753 |
msgid ""
|
7754 |
"This text will be used to inform the customer about free shipping. Leave "
|
7755 |
"empty to disable notice. Use {link}{/link} to insert link to shipping costs "
|
@@ -7760,13 +7804,13 @@ msgstr ""
|
|
7760 |
"Versandkosten-Seite einzufügen."
|
7761 |
|
7762 |
# @ woocommerce-germanized
|
7763 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7764 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7765 |
msgid "Hide Notice"
|
7766 |
msgstr "Hinweis ausblenden"
|
7767 |
|
7768 |
# @ woocommerce-germanized
|
7769 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7770 |
msgid ""
|
7771 |
"Select product types for which you might want to disable the shipping costs "
|
7772 |
"notice."
|
@@ -7775,33 +7819,33 @@ msgstr ""
|
|
7775 |
"möchtest."
|
7776 |
|
7777 |
# @ woocommerce-germanized
|
7778 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7779 |
msgid "Footer"
|
7780 |
msgstr "Footer"
|
7781 |
|
7782 |
# @ woocommerce-germanized
|
7783 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7784 |
msgid "Notice"
|
7785 |
msgstr "Hinweis"
|
7786 |
|
7787 |
# @ woocommerce-germanized
|
7788 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7789 |
msgid "Attach a global VAT notice to your footer."
|
7790 |
msgstr "Einen seitenübergreifenden MwSt.-Hinweis im Footer einfügen."
|
7791 |
|
7792 |
# @ woocommerce-germanized
|
7793 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7794 |
msgid "Attach a global sale price notice to your footer."
|
7795 |
msgstr ""
|
7796 |
"Einen seitenübergreifenden Hinweis zu reduzierten Preisen im Footer einfügen."
|
7797 |
|
7798 |
# @ woocommerce-germanized
|
7799 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7800 |
msgid "Fallback"
|
7801 |
msgstr "Fallback"
|
7802 |
|
7803 |
# @ woocommerce-germanized
|
7804 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7805 |
msgid ""
|
7806 |
"This delivery time will be added to every product if no delivery time has "
|
7807 |
"been chosen individually"
|
@@ -7810,12 +7854,12 @@ msgstr ""
|
|
7810 |
"zugeordnet wurde"
|
7811 |
|
7812 |
# @ woocommerce-germanized
|
7813 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7814 |
msgid "Manage Delivery Times"
|
7815 |
msgstr "Lieferzeiten verwalten"
|
7816 |
|
7817 |
# @ woocommerce-germanized
|
7818 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7819 |
msgid ""
|
7820 |
"This text will be used to indicate delivery time for products. Use "
|
7821 |
"{delivery_time} as placeholder."
|
@@ -7824,15 +7868,15 @@ msgstr ""
|
|
7824 |
"{delivery_time} als Platzhalter verwenden."
|
7825 |
|
7826 |
# @ woocommerce-germanized
|
7827 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7828 |
msgid "Delivery time: {delivery_time}"
|
7829 |
msgstr "Lieferzeit: {delivery_time}"
|
7830 |
|
7831 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7832 |
msgid "Digital text"
|
7833 |
msgstr "Digitaler Text"
|
7834 |
|
7835 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7836 |
msgid ""
|
7837 |
"Enter a text which will be shown as digital delivery time text (replacement "
|
7838 |
"for default digital time on digital products)."
|
@@ -7842,24 +7886,24 @@ msgstr ""
|
|
7842 |
"lassen."
|
7843 |
|
7844 |
# @ woocommerce
|
7845 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7846 |
msgid "Backorder"
|
7847 |
msgstr "Lieferrückstand"
|
7848 |
|
7849 |
# @ woocommerce-germanized
|
7850 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7851 |
msgid "Hide delivery time if a product is on backorder."
|
7852 |
msgstr "Lieferzeit ausblenden falls das Produkt im Lieferrückstand ist."
|
7853 |
|
7854 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7855 |
msgid "Not in Stock"
|
7856 |
msgstr "Nicht auf Lager"
|
7857 |
|
7858 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7859 |
msgid "Hide delivery time if a product is not in stock."
|
7860 |
msgstr "Lieferzeit ausblenden falls das Produkt nicht auf Lager ist."
|
7861 |
|
7862 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7863 |
msgid ""
|
7864 |
"Select product types for which you might want to disable the delivery time "
|
7865 |
"notice."
|
@@ -7868,11 +7912,11 @@ msgstr ""
|
|
7868 |
"möchtest."
|
7869 |
|
7870 |
# @ woocommerce-germanized
|
7871 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7872 |
msgid ""
|
7873 |
-
"This text will be used to display the
|
7874 |
-
"price. If you want to specifically format
|
7875 |
-
"{unit} and {
|
7876 |
msgstr ""
|
7877 |
"Dieser Text wird für die Anzeige des Grundpreises verwendet. Nutze {price} "
|
7878 |
"als Platzhalter für den formatierten Grundpreis. Wenn du die Ausgabe "
|
@@ -7880,26 +7924,17 @@ msgstr ""
|
|
7880 |
"{base_price} für die einzelnen Elemente."
|
7881 |
|
7882 |
# @ woocommerce-germanized
|
7883 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7884 |
msgid "{price}"
|
7885 |
msgstr "{price}"
|
7886 |
|
7887 |
# @ woocommerce-germanized
|
7888 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7889 |
-
msgid "Variable Price"
|
7890 |
-
msgstr "Variabler Preis"
|
7891 |
-
|
7892 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:514
|
7893 |
-
msgid "Enable price range base prices for variable products."
|
7894 |
-
msgstr "Aktiviere von-bis-Grundpreise für variable Produkte."
|
7895 |
-
|
7896 |
-
# @ woocommerce-germanized
|
7897 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:520
|
7898 |
msgid "Product units format"
|
7899 |
msgstr "Produkteinheiten Format"
|
7900 |
|
7901 |
# @ woocommerce-germanized
|
7902 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7903 |
msgid ""
|
7904 |
"This text will be used to display the product units. Use {product_units} to "
|
7905 |
"insert the amount of product units. Use {unit} to insert the unit. "
|
@@ -7911,21 +7946,30 @@ msgstr ""
|
|
7911 |
"Grundpreis."
|
7912 |
|
7913 |
# @ woocommerce-germanized
|
7914 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7915 |
msgid "Product contains: {product_units} {unit}"
|
7916 |
msgstr "Produkt enthält: {product_units} {unit}"
|
7917 |
|
7918 |
# @ woocommerce-germanized
|
7919 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7920 |
msgid "Fallback Sale Label"
|
7921 |
msgstr "Standard-Streichpreis"
|
7922 |
|
7923 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7924 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7925 |
msgid "Manage Price Labels"
|
7926 |
msgstr "Preishinweise verwalten"
|
7927 |
|
7928 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7929 |
msgid ""
|
7930 |
"Choose whether you would like to have a default sale price label to inform "
|
7931 |
"the customer about the regular price (e.g. Recommended Retail Price)."
|
@@ -7934,11 +7978,11 @@ msgstr ""
|
|
7934 |
"den Kunden auf den alten Preis (bei reduzierten Produkten, sog. "
|
7935 |
"Streichpreis) hinweist (z.B. UVP)."
|
7936 |
|
7937 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7938 |
msgid "Fallback Regular Label"
|
7939 |
msgstr "Standard-Angebotspreis"
|
7940 |
|
7941 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7942 |
msgid ""
|
7943 |
"Choose whether you would like to have a default sale price regular label to "
|
7944 |
"inform the customer about the sale price (e.g. New Price)."
|
@@ -7948,21 +7992,21 @@ msgstr ""
|
|
7948 |
"hinweist (z.B. Unser neuer Preis)."
|
7949 |
|
7950 |
# @ woocommerce-germanized
|
7951 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7952 |
#: woocommerce-germanized/src/Shopmarks.php:294
|
7953 |
msgid "Single Product"
|
7954 |
msgstr "Produktdetailseite"
|
7955 |
|
7956 |
# @ woocommerce-germanized
|
7957 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7958 |
msgid "Show price labels on single product page."
|
7959 |
msgstr "Zeige Preishinweise auf der Produktdetailseite."
|
7960 |
|
7961 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7962 |
msgid "Loop"
|
7963 |
msgstr "Produktlisten"
|
7964 |
|
7965 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7966 |
msgid "Show price labels in product loops."
|
7967 |
msgstr "Zeige Preishinweise in Produktlisten."
|
7968 |
|
@@ -8785,13 +8829,6 @@ msgstr "Einheit Name"
|
|
8785 |
msgid "Unit Slug"
|
8786 |
msgstr "Einheit Slug"
|
8787 |
|
8788 |
-
# @ woocommerce-germanized
|
8789 |
-
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:130
|
8790 |
-
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:296
|
8791 |
-
#: woocommerce-germanized/includes/compatibility/elementor/widgets/class-wc-gzd-elementor-widget-product-unit-price.php:10
|
8792 |
-
msgid "Unit Price"
|
8793 |
-
msgstr "Grundpreis"
|
8794 |
-
|
8795 |
# @ woocommerce-germanized
|
8796 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:135
|
8797 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:301
|
@@ -8939,14 +8976,14 @@ msgstr ""
|
|
8939 |
"differenzbesteuerten Produkten gekauft werden."
|
8940 |
|
8941 |
# @ woocommerce-germanized
|
8942 |
-
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:
|
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:
|
8950 |
msgctxt "customer-title-male-address"
|
8951 |
msgid "Mr."
|
8952 |
msgstr "Herrn"
|
@@ -9096,11 +9133,11 @@ msgstr "Danke, dass du ein Konto bei %s erstellt hast."
|
|
9096 |
# @ woocommerce-germanized
|
9097 |
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:1130
|
9098 |
msgctxt "revocation-form"
|
9099 |
-
msgid "Forward your
|
9100 |
msgstr "Deinen Widerruf online erklären"
|
9101 |
|
9102 |
# @ woocommerce-germanized
|
9103 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
9104 |
#, php-format
|
9105 |
msgid ""
|
9106 |
"Please install <a href=\"%s\" target=\"_blank\">WooCommerce</a> before "
|
@@ -9109,95 +9146,94 @@ msgstr ""
|
|
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:
|
9113 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
9114 |
msgid "Reduced rate"
|
9115 |
msgstr "Ermäßigter Steuersatz"
|
9116 |
|
9117 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
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:
|
9125 |
msgctxt "Page slug"
|
9126 |
msgid "data-security"
|
9127 |
msgstr "datenschutzerklaerung"
|
9128 |
|
9129 |
# @ woocommerce-germanized
|
9130 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
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:
|
9137 |
msgctxt "Page slug"
|
9138 |
msgid "imprint"
|
9139 |
msgstr "impressum"
|
9140 |
|
9141 |
# @ woocommerce-germanized
|
9142 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
9143 |
msgctxt "Page title"
|
9144 |
msgid "Imprint"
|
9145 |
msgstr "Impressum"
|
9146 |
|
9147 |
# @ woocommerce-germanized
|
9148 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
9149 |
msgctxt "Page slug"
|
9150 |
msgid "terms"
|
9151 |
msgstr "agb"
|
9152 |
|
9153 |
# @ woocommerce-germanized
|
9154 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
9155 |
msgctxt "Page title"
|
9156 |
msgid "Terms & Conditions"
|
9157 |
msgstr "AGB"
|
9158 |
|
9159 |
# @ woocommerce-germanized
|
9160 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
9161 |
msgctxt "Page slug"
|
9162 |
msgid "revocation"
|
9163 |
msgstr "widerrufsbelehrung"
|
9164 |
|
9165 |
# @ woocommerce-germanized
|
9166 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
9167 |
msgctxt "Page title"
|
9168 |
-
msgid "
|
9169 |
msgstr "Widerrufsbelehrung"
|
9170 |
|
9171 |
# @ woocommerce-germanized
|
9172 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
9173 |
msgctxt "Page slug"
|
9174 |
msgid "shipping-methods"
|
9175 |
msgstr "versandarten"
|
9176 |
|
9177 |
# @ woocommerce-germanized
|
9178 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
9179 |
msgctxt "Page title"
|
9180 |
msgid "Shipping Methods"
|
9181 |
msgstr "Versandarten"
|
9182 |
|
9183 |
# @ woocommerce-germanized
|
9184 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
9185 |
msgctxt "Page slug"
|
9186 |
msgid "payment-methods"
|
9187 |
msgstr "bezahlmoeglichkeiten"
|
9188 |
|
9189 |
# @ woocommerce-germanized
|
9190 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
9191 |
msgctxt "Page title"
|
9192 |
msgid "Payment Methods"
|
9193 |
msgstr "Zahlungsarten"
|
9194 |
|
9195 |
# @ woocommerce-germanized
|
9196 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:104
|
9197 |
-
#: woocommerce-germanized/includes/updates/woocommerce-gzd-update-2.0.1.php:18
|
9198 |
msgid ""
|
9199 |
"With your order, you agree to have read and understood our {term_link}Terms "
|
9200 |
-
"and Conditions{/term_link}
|
9201 |
"revocation_link} and our {data_security_link}Privacy Policy{/"
|
9202 |
"data_security_link}."
|
9203 |
msgstr ""
|
@@ -9208,10 +9244,9 @@ msgstr ""
|
|
9208 |
|
9209 |
# @ woocommerce-germanized
|
9210 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:105
|
9211 |
-
#: woocommerce-germanized/includes/updates/woocommerce-gzd-update-2.0.1.php:19
|
9212 |
msgid ""
|
9213 |
-
"To
|
9214 |
-
"Conditions{/term_link}, {revocation_link}
|
9215 |
"revocation_link} and our {data_security_link}Privacy Policy{/"
|
9216 |
"data_security_link}."
|
9217 |
msgstr ""
|
@@ -9496,7 +9531,7 @@ msgstr "%s Zahlungsgebühr"
|
|
9496 |
# @ woocommerce-germanized
|
9497 |
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:153
|
9498 |
#: woocommerce-germanized/includes/wc-gzd-order-functions.php:35
|
9499 |
-
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:
|
9500 |
#, php-format
|
9501 |
msgid "Plus %s forwarding fee (charged by the transport agent)"
|
9502 |
msgstr "Zzgl. %s Übermittlungsentgelt (direkt an den Zusteller)"
|
@@ -9711,10 +9746,9 @@ msgstr "Mandat E-Mail"
|
|
9711 |
msgid "Visible during checkout"
|
9712 |
msgstr "Im Checkout anzeigen"
|
9713 |
|
9714 |
-
# @ woocommerce-germanized
|
9715 |
#: woocommerce-germanized/includes/class-wc-gzd-revocation.php:33
|
9716 |
msgctxt "revocation-form"
|
9717 |
-
msgid "
|
9718 |
msgstr "Widerruf"
|
9719 |
|
9720 |
# @ woocommerce-germanized
|
@@ -9923,14 +9957,13 @@ msgstr "Bestätigung deiner Bestellung {order_number}"
|
|
9923 |
msgid "Thank you for your order"
|
9924 |
msgstr "Vielen Dank für deine Bestellung"
|
9925 |
|
9926 |
-
# @ woocommerce-germanized
|
9927 |
#: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-revocation.php:33
|
9928 |
-
msgid "
|
9929 |
msgstr "Widerruf"
|
9930 |
|
9931 |
# @ woocommerce-germanized
|
9932 |
#: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-revocation.php:34
|
9933 |
-
msgid "Email being sent if a customer fills out the
|
9934 |
msgstr ""
|
9935 |
"Diese E-Mail wird als Bestätigung an den Kunden weitergeleitet, sobald er "
|
9936 |
"das Widerrufsformular ausgefüllt hat."
|
@@ -9947,8 +9980,8 @@ msgstr "Admin E-Mail"
|
|
9947 |
|
9948 |
#: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-revocation.php:177
|
9949 |
msgid ""
|
9950 |
-
"Insert the email address of your shop manager here. A copy of the
|
9951 |
-
"email is being sent to this address."
|
9952 |
msgstr ""
|
9953 |
"Füge hier die E-Mail Adresse des Shop-Managers ein. Eine Kopie des Widerrufs "
|
9954 |
"wird an diese E-Mail Adresse versendet."
|
@@ -10583,6 +10616,31 @@ msgstr ""
|
|
10583 |
"Aktiviere die Zahlungsart nur dann, wenn der Kunde bereits eine Bestellung "
|
10584 |
"erfolgreich abgeschlossen hat."
|
10585 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10586 |
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:195
|
10587 |
msgid ">= 12 years"
|
10588 |
msgstr ">= 12 Jahre"
|
@@ -10609,11 +10667,6 @@ msgctxt "age"
|
|
10609 |
msgid "None"
|
10610 |
msgstr "Keines"
|
10611 |
|
10612 |
-
# @ woocommerce-germanized
|
10613 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:241
|
10614 |
-
msgid "Right of Recission"
|
10615 |
-
msgstr "Widerrufsrecht"
|
10616 |
-
|
10617 |
# @ woocommerce-germanized
|
10618 |
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:243
|
10619 |
msgid "Data Security"
|
@@ -10638,18 +10691,23 @@ msgid "Mx"
|
|
10638 |
msgstr "Divers"
|
10639 |
|
10640 |
# @ woocommerce-germanized
|
10641 |
-
#: woocommerce-germanized/includes/wc-gzd-
|
|
|
|
|
|
|
|
|
|
|
10642 |
#: woocommerce-germanized/templates/checkout/edit-data-notice.php:25
|
10643 |
msgid "Edit Order"
|
10644 |
msgstr "Bestellung bearbeiten"
|
10645 |
|
10646 |
# @ woocommerce-germanized
|
10647 |
-
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:
|
10648 |
msgid "Choose a Payment Gateway"
|
10649 |
msgstr "Zahlungsart auswählen"
|
10650 |
|
10651 |
# @ woocommerce
|
10652 |
-
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:
|
10653 |
msgid "Place order"
|
10654 |
msgstr "Jetzt kaufen"
|
10655 |
|
@@ -10935,11 +10993,10 @@ msgstr ""
|
|
10935 |
|
10936 |
# @ woocommerce-germanized
|
10937 |
#: woocommerce-germanized/templates/emails/customer-revocation.php:26
|
10938 |
-
#: woocommerce-germanized/templates/emails/plain/customer-revocation.php:27
|
10939 |
msgctxt "revocation-form"
|
10940 |
msgid ""
|
10941 |
-
"By sending you this email we confirm your
|
10942 |
-
"data."
|
10943 |
msgstr ""
|
10944 |
"Mit der Zustellung dieser E-Mail bestätigen wir den Eingang deines "
|
10945 |
"Widerrufs. Bitte prüfe deine Daten."
|
@@ -10958,6 +11015,16 @@ msgstr ""
|
|
10958 |
msgid "SEPA Data"
|
10959 |
msgstr "SEPA Daten"
|
10960 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10961 |
# @ woocommerce-germanized
|
10962 |
#: woocommerce-germanized/templates/footer/sale-info.php:22
|
10963 |
msgid "All striked out prices refer to prices used to be charged at this shop."
|
@@ -10981,11 +11048,10 @@ msgctxt "revocation-form"
|
|
10981 |
msgid "To"
|
10982 |
msgstr "An"
|
10983 |
|
10984 |
-
# @ woocommerce-germanized
|
10985 |
#: woocommerce-germanized/templates/forms/revocation-form.php:49
|
10986 |
#: woocommerce-germanized/templates/forms/revocation-form.php:50
|
10987 |
msgctxt "revocation-form"
|
10988 |
-
msgid "Forward
|
10989 |
msgstr "Widerruf erklären"
|
10990 |
|
10991 |
#: woocommerce-germanized/templates/global/complaints.php:22
|
@@ -12258,6 +12324,82 @@ msgstr "vendidero"
|
|
12258 |
msgid "https://vendidero.de"
|
12259 |
msgstr "https://vendidero.de"
|
12260 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12261 |
# @ woocommerce-germanized
|
12262 |
#~ msgid "Shipping costs"
|
12263 |
#~ msgstr "Versandkosten"
|
@@ -12606,11 +12748,6 @@ msgstr "https://vendidero.de"
|
|
12606 |
#~ "Passe die Instruktionen an um Kunden über die DHL Sendungsverfolgung zu "
|
12607 |
#~ "informieren. Du kannst einen der folgenden Platzhalter verwenden: %s"
|
12608 |
|
12609 |
-
# @ woocommerce-germanized
|
12610 |
-
#~ msgctxt "shipments"
|
12611 |
-
#~ msgid "View shipment"
|
12612 |
-
#~ msgstr "Sendung anzeigen"
|
12613 |
-
|
12614 |
#~ msgctxt "dhl"
|
12615 |
#~ msgid "Delete"
|
12616 |
#~ msgstr "Löschen"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce Germanized\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2021-01-26 14:28+0100\n"
|
6 |
+
"PO-Revision-Date: 2021-01-26 14:32+0100\n"
|
7 |
"Last-Translator: holzhannes <holzhannes@posteo.de>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE\n"
|
45 |
msgid "Additional Services"
|
46 |
msgstr "Zusätzliche Leistungen"
|
47 |
|
48 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:30
|
49 |
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:514
|
50 |
#, php-format
|
51 |
msgid ""
|
58 |
"B. Gewicht) und versuche es erneut."
|
59 |
|
60 |
# @ woocommerce-germanized
|
61 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:37
|
62 |
msgctxt "dhl"
|
63 |
msgid "Product"
|
64 |
msgstr "Produkt"
|
65 |
|
66 |
# @ woocommerce-germanized
|
67 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:50
|
68 |
msgctxt "dhl"
|
69 |
msgid "Page Format"
|
70 |
msgstr "Seitenformat"
|
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:1403
|
366 |
msgctxt "dhl"
|
367 |
msgid "Printing"
|
368 |
msgstr "Druck"
|
385 |
|
386 |
# @ woocommerce-germanized
|
387 |
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:181
|
388 |
+
#: woocommerce-germanized-dhl/src/Api/Paket.php:283
|
389 |
msgctxt "dhl day context"
|
390 |
msgid "None"
|
391 |
msgstr "Keiner"
|
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:864
|
451 |
#: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:38
|
452 |
msgctxt "dhl"
|
453 |
msgid "Packstation"
|
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:1453
|
540 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1537
|
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:1457
|
547 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1541
|
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:1489
|
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:1612
|
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:1700
|
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:1701
|
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:1710
|
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:1727
|
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:1728
|
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:1729
|
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:1804
|
596 |
msgctxt "dhl"
|
597 |
msgid "DHL Paket"
|
598 |
msgstr "DHL Paket"
|
599 |
|
600 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1805
|
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:1806
|
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:1807
|
611 |
msgctxt "dhl"
|
612 |
msgid "DHL Warenpost"
|
613 |
msgstr "DHL Warenpost"
|
614 |
|
615 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1894
|
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:1495
|
720 |
#: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:39
|
721 |
msgctxt "dhl"
|
722 |
msgid "DHL"
|
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:1420
|
843 |
msgctxt "dhl"
|
844 |
msgid "Automation"
|
845 |
msgstr "Automatisierung"
|
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:1496
|
1395 |
msgctxt "dhl"
|
1396 |
msgid "Labels"
|
1397 |
msgstr "Labels"
|
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:1323
|
1913 |
+
msgctxt "dhl"
|
1914 |
+
msgid "Print Y-axis Position"
|
1915 |
+
msgstr "Druck-Position Y-Achse"
|
1916 |
+
|
1917 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1325
|
1918 |
+
msgctxt "dhl"
|
1919 |
+
msgid "Adjust the print X-axis start position for the label."
|
1920 |
+
msgstr "Passe die Start-Druckposition auf der X-Axis für das Label an."
|
1921 |
+
|
1922 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1332
|
1923 |
+
msgctxt "dhl"
|
1924 |
+
msgid "Print X-axis Position"
|
1925 |
+
msgstr "Druck-Position X-Achse"
|
1926 |
+
|
1927 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1334
|
1928 |
+
msgctxt "dhl"
|
1929 |
+
msgid "Adjust the print Y-axis start position for the label."
|
1930 |
+
msgstr "Passe die Start-Druckposition auf der Y-Axis für das Label an."
|
1931 |
+
|
1932 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1362
|
1933 |
msgctxt "dhl"
|
1934 |
msgid "Portokasse"
|
1935 |
msgstr "Portokasse"
|
1936 |
|
1937 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1365
|
1938 |
msgctxt "dhl"
|
1939 |
msgid "Balance"
|
1940 |
msgstr "Guthaben"
|
1941 |
|
1942 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1372
|
1943 |
msgctxt "dhl"
|
1944 |
msgid "Charge (€)"
|
1945 |
msgstr "Aufladen (€)"
|
1946 |
|
1947 |
# @ woocommerce-germanized
|
1948 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1382
|
1949 |
msgctxt "dhl"
|
1950 |
msgid "Products"
|
1951 |
msgstr "Produkte"
|
1952 |
|
1953 |
# @ woocommerce-germanized
|
1954 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1385
|
1955 |
msgctxt "dhl"
|
1956 |
msgid "Available Products"
|
1957 |
msgstr "Verfügbare Produkte"
|
1958 |
|
1959 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1388
|
1960 |
#, php-format
|
1961 |
msgctxt "dhl"
|
1962 |
msgid ""
|
1968 |
"sollen. Du kannst die Produktliste auch manuell <a href=\"%s"
|
1969 |
"\">aktualisieren</a>, falls notwendig."
|
1970 |
|
1971 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1413
|
1972 |
msgctxt "dhl"
|
1973 |
msgid "API Error"
|
1974 |
msgstr "API Fehler"
|
1975 |
|
1976 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1454
|
1977 |
msgctxt "dhl"
|
1978 |
msgid "Charge Portokasse"
|
1979 |
msgstr "Portokasse aufladen"
|
1980 |
|
1981 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1455
|
1982 |
#, php-format
|
1983 |
msgctxt "dhl"
|
1984 |
msgid "The minimum amount is %s"
|
1985 |
msgstr "Der Minimalbetrag beträgt %s"
|
1986 |
|
1987 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1465
|
1988 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1467
|
1989 |
msgctxt "dhl"
|
1990 |
msgid "Not yet a customer?"
|
1991 |
msgstr "Noch kein Kunde?"
|
1992 |
|
1993 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1497
|
1994 |
msgctxt "dhl"
|
1995 |
msgid "Internetmarke"
|
1996 |
msgstr "Internetmarke"
|
1997 |
|
1998 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1498
|
1999 |
msgctxt "dhl"
|
2000 |
msgid "Addresses"
|
2001 |
msgstr "Adressen"
|
2002 |
|
2003 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1499
|
2004 |
msgctxt "dhl"
|
2005 |
msgid "Preferred Services"
|
2006 |
msgstr "Wunschpaket"
|
2007 |
|
2008 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1500
|
2009 |
msgctxt "dhl"
|
2010 |
msgid "Parcel Pickup"
|
2011 |
msgstr "Standorte"
|
2095 |
|
2096 |
#: woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:43
|
2097 |
#: woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:52
|
2098 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:508
|
2099 |
msgctxt "dhl"
|
2100 |
msgid "Error while fetching label PDF"
|
2101 |
msgstr "Fehler beim Download des PDF Labels"
|
2128 |
msgid "Error during request: %s"
|
2129 |
msgstr "Fehler beim API Zugriff: %s"
|
2130 |
|
2131 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:66
|
2132 |
#: woocommerce-germanized-dhl/src/Api/Soap.php:54
|
2133 |
#: woocommerce-germanized-dhl/src/Package.php:84
|
2134 |
#, php-format
|
2143 |
"Zweifel deinen Hoster und stelle sicher, dass der SOAPClient <a href=\"%s"
|
2144 |
"\">installiert</a> ist."
|
2145 |
|
2146 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:71
|
2147 |
#, php-format
|
2148 |
msgctxt "dhl"
|
2149 |
msgid "Error while instantiating main Internetmarke API: %s"
|
2150 |
msgstr "Fehler beim Aufruf der Internetmarke API: %s"
|
2151 |
|
2152 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:75
|
2153 |
msgctxt "dhl"
|
2154 |
msgid "Internetmarke is disabled. Please enable Internetmarke."
|
2155 |
msgstr "Internetmarke ist deaktiviert. Bitte aktiviere die Internetmarke."
|
2156 |
|
2157 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:86
|
2158 |
msgctxt "dhl"
|
2159 |
msgid "Wrong username or password"
|
2160 |
msgstr "Falscher Benutzername oder Passwort"
|
2161 |
|
2162 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:254
|
2163 |
#, php-format
|
2164 |
msgctxt "dhl"
|
2165 |
msgid "until %s"
|
2166 |
msgstr "bis %s"
|
2167 |
|
2168 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:355
|
2169 |
#, php-format
|
2170 |
msgctxt "dhl"
|
2171 |
msgid "Length: %s"
|
2172 |
msgstr "Länge: %s"
|
2173 |
|
2174 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:359
|
2175 |
#, php-format
|
2176 |
msgctxt "dhl"
|
2177 |
msgid "Width: %s"
|
2178 |
msgstr "Breite: %s"
|
2179 |
|
2180 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:363
|
2181 |
#, php-format
|
2182 |
msgctxt "dhl"
|
2183 |
msgid "Height: %s"
|
2184 |
msgstr "Höhe: %s"
|
2185 |
|
2186 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:367
|
2187 |
#, php-format
|
2188 |
msgctxt "dhl"
|
2189 |
msgid "Weight: %s"
|
2190 |
msgstr "Gewicht: %s"
|
2191 |
|
2192 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:372
|
2193 |
msgctxt "dhl"
|
2194 |
msgid "Total"
|
2195 |
msgstr "Gesamt"
|
2196 |
|
2197 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:562
|
2198 |
#, php-format
|
2199 |
msgctxt "dhl"
|
2200 |
msgid "Could not refund post label: %s"
|
2201 |
msgstr "Deutsche Post Label konnte nicht rückerstattet werden: %s"
|
2202 |
|
2203 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:576
|
2204 |
msgctxt "dhl"
|
2205 |
msgid "Refund API could not be instantiated"
|
2206 |
msgstr "Die API für Rückerstattungen konnte nicht initialisiert werden"
|
2207 |
|
2208 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:665
|
2209 |
#: woocommerce-germanized-dhl/src/Api/LabelSoap.php:379
|
2210 |
#: woocommerce-germanized-dhl/src/Api/ReturnRest.php:34
|
2211 |
#, php-format
|
2213 |
msgid "Could not fetch shipment %d."
|
2214 |
msgstr "Sendung %d konnte nicht gefunden werden."
|
2215 |
|
2216 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:711
|
2217 |
msgctxt "dhl"
|
2218 |
msgid "Error while generating shop order id."
|
2219 |
msgstr "Fehler beim Erzeugen der Shop Order Id."
|
2220 |
|
2221 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:747
|
2222 |
#, php-format
|
2223 |
msgctxt "dhl"
|
2224 |
msgid ""
|
2228 |
"Fehler beim Kauf des Labels. Bitte <a href=\"%s\">aktualisiere</a>die "
|
2229 |
"Produktliste manuell und versuche es erneut."
|
2230 |
|
2231 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:790
|
2232 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:797
|
2233 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:825
|
2234 |
msgctxt "dhl"
|
2235 |
msgid "Error while downloading the PDF stamp."
|
2236 |
msgstr "Fehler beim Download des PDF Labels."
|
2237 |
|
2238 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:832
|
2239 |
msgctxt "dhl"
|
2240 |
msgid "Invalid stamp response."
|
2241 |
msgstr "Fehlerhafte Label Rückmeldung."
|
2339 |
msgid "Parcel API not available"
|
2340 |
msgstr "Paket API ist nicht erreichbar"
|
2341 |
|
2342 |
+
#: woocommerce-germanized-dhl/src/Api/Paket.php:261
|
2343 |
msgctxt "dhl"
|
2344 |
msgid "Mon"
|
2345 |
msgstr "Mo"
|
2346 |
|
2347 |
+
#: woocommerce-germanized-dhl/src/Api/Paket.php:262
|
2348 |
msgctxt "dhl"
|
2349 |
msgid "Tue"
|
2350 |
msgstr "Di"
|
2351 |
|
2352 |
+
#: woocommerce-germanized-dhl/src/Api/Paket.php:263
|
2353 |
msgctxt "dhl"
|
2354 |
msgid "Wed"
|
2355 |
msgstr "Mi"
|
2356 |
|
2357 |
+
#: woocommerce-germanized-dhl/src/Api/Paket.php:264
|
2358 |
msgctxt "dhl"
|
2359 |
msgid "Thu"
|
2360 |
msgstr "Do"
|
2361 |
|
2362 |
+
#: woocommerce-germanized-dhl/src/Api/Paket.php:265
|
2363 |
msgctxt "dhl"
|
2364 |
msgid "Fri"
|
2365 |
msgstr "Fr"
|
2366 |
|
2367 |
# @ woocommerce-germanized
|
2368 |
+
#: woocommerce-germanized-dhl/src/Api/Paket.php:266
|
2369 |
msgctxt "dhl"
|
2370 |
msgid "Sat"
|
2371 |
msgstr "Sa"
|
2372 |
|
2373 |
+
#: woocommerce-germanized-dhl/src/Api/Paket.php:267
|
2374 |
msgctxt "dhl"
|
2375 |
msgid "Sun"
|
2376 |
msgstr "So"
|
2428 |
msgid "POST error or timeout occured. Please try again later."
|
2429 |
msgstr "POST Fehler oder Zeitüberschreitung. Bitte später erneut versuchen."
|
2430 |
|
2431 |
+
#: woocommerce-germanized-dhl/src/DataStores/Label.php:320
|
2432 |
msgctxt "dhl"
|
2433 |
msgid "Invalid label."
|
2434 |
msgstr "Ungültiges Label."
|
2440 |
msgid "%s-%s"
|
2441 |
msgstr "%s-%s"
|
2442 |
|
2443 |
+
#: woocommerce-germanized-dhl/src/Package.php:277
|
2444 |
msgctxt "dhl"
|
2445 |
msgid ""
|
2446 |
"Please check the street field and make sure to provide a valid street number."
|
2449 |
"angibst."
|
2450 |
|
2451 |
# @ woocommerce-germanized
|
2452 |
+
#: woocommerce-germanized-dhl/src/Package.php:997
|
2453 |
msgctxt "dhl"
|
2454 |
msgid "Germany"
|
2455 |
msgstr "Deutschland"
|
2456 |
|
2457 |
# @ woocommerce-germanized
|
2458 |
#: woocommerce-germanized-dhl/src/ParcelLocator.php:92
|
2459 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:877
|
2460 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:906
|
2461 |
msgctxt "dhl"
|
2462 |
msgid "Address Type"
|
2463 |
msgstr "Adresstyp"
|
2482 |
"eintragen."
|
2483 |
|
2484 |
#: woocommerce-germanized-dhl/src/ParcelLocator.php:188
|
2485 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:581
|
2486 |
msgctxt "dhl"
|
2487 |
msgid "Invalid address type."
|
2488 |
msgstr "Ungültiger Adresstyp."
|
2489 |
|
2490 |
# @ woocommerce-germanized
|
2491 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:653
|
2492 |
msgctxt "dhl"
|
2493 |
msgid "Sorry, but delivery to packstation is not available."
|
2494 |
msgstr ""
|
2495 |
"Entschuldigung, die Lieferung an eine Packstation steht nicht zur Verfügung."
|
2496 |
|
2497 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:658
|
2498 |
msgctxt "dhl"
|
2499 |
msgid "Sorry, but delivery to parcel shops is not available."
|
2500 |
msgstr ""
|
2501 |
"Entschuldigung, die Lieferung an einen Paketshop steht nicht zur Verfügung."
|
2502 |
|
2503 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:662
|
2504 |
msgctxt "dhl"
|
2505 |
msgid "Sorry, but delivery to post offices is not available."
|
2506 |
msgstr "Entschuldigung, die Lieferung an Postfilialen ist nicht verfügbar."
|
2507 |
|
2508 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:669
|
2509 |
#, php-format
|
2510 |
msgctxt "dhl"
|
2511 |
msgid "Please indicate shipment to %s by one of the following values: %s."
|
2513 |
"Bitte identifiziere die Lieferung an %s durch die Eingabe einer der "
|
2514 |
"folgenden Werte: %s."
|
2515 |
|
2516 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:677
|
2517 |
msgctxt "dhl"
|
2518 |
msgid ""
|
2519 |
"Your DHL customer number (Post number) is not valid. Please check your "
|
2522 |
"Deine DHL Kundennummer (Postnummer) ist nicht gültig. Bitte überprüfe deine "
|
2523 |
"Eingabe."
|
2524 |
|
2525 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:680
|
2526 |
msgctxt "dhl"
|
2527 |
msgid ""
|
2528 |
"Your DHL customer number (Post number) is needed to ship to a packstation."
|
2530 |
"Deine DHL Kundennummer (Postnummer) wird für den Versand an eine Packstation "
|
2531 |
"benötigt."
|
2532 |
|
2533 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:729
|
2534 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:868
|
2535 |
msgctxt "dhl"
|
2536 |
msgid "Branch"
|
2537 |
msgstr "Filiale"
|
2538 |
|
2539 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:730
|
2540 |
msgctxt "dhl"
|
2541 |
msgid "Postnumber "
|
2542 |
msgstr "Postnummer "
|
2543 |
|
2544 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:843
|
2545 |
#, php-format
|
2546 |
msgctxt "dhl"
|
2547 |
msgid "e.g. %s 456"
|
2548 |
msgstr "z.B. %s 456"
|
2549 |
|
2550 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:868
|
2551 |
msgctxt "dhl"
|
2552 |
msgid "Branches"
|
2553 |
msgstr "Filialen"
|
2554 |
|
2555 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:884
|
2556 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:917
|
2557 |
msgctxt "dhl"
|
2558 |
msgid "DHL customer number (Post number)"
|
2559 |
msgstr "DHL Kundennummer (Postnummer)"
|
2560 |
|
2561 |
# @ woocommerce-germanized
|
2562 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:894
|
2563 |
msgctxt "dhl"
|
2564 |
msgid "Regular Address"
|
2565 |
msgstr "Normale Adresse"
|
2566 |
|
2567 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:921
|
2568 |
msgctxt "dhl"
|
2569 |
msgid "Not yet a DHL customer?"
|
2570 |
msgstr "Noch kein DHL Kunde?"
|
2571 |
|
2572 |
# @ woocommerce-germanized
|
2573 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:921
|
2574 |
msgctxt "dhl"
|
2575 |
msgid "Register now"
|
2576 |
msgstr "Jetzt registrieren"
|
2577 |
|
2578 |
# @ woocommerce-germanized
|
2579 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:970
|
2580 |
#, php-format
|
2581 |
msgctxt "dhl"
|
2582 |
msgid "Search %s"
|
2583 |
msgstr "%s suchen"
|
2584 |
|
2585 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:1075
|
2586 |
msgctxt "dhl"
|
2587 |
msgid "No DHL locations found"
|
2588 |
msgstr "Keine DHL Standorte gefunden"
|
2589 |
|
2590 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:1090
|
2591 |
#, php-format
|
2592 |
msgctxt "dhl"
|
2593 |
msgid ""
|
2598 |
"%s oder %s."
|
2599 |
|
2600 |
# @ woocommerce-germanized
|
2601 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:1090
|
2602 |
msgctxt "dhl"
|
2603 |
msgid "DHL location"
|
2604 |
msgstr "DHL Standort"
|
2605 |
|
2606 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:1090
|
2607 |
msgctxt "dhl"
|
2608 |
msgid "retry"
|
2609 |
msgstr "Erneut versuchen"
|
2866 |
|
2867 |
# @ woocommerce-germanized
|
2868 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:58
|
2869 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1053
|
2870 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:24
|
2871 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:688
|
2872 |
msgctxt "shipments"
|
2912 |
|
2913 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:189
|
2914 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:45
|
2915 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:154
|
2916 |
msgctxt "shipments"
|
2917 |
msgid "Item"
|
2918 |
msgstr "Position"
|
2919 |
|
2920 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:190
|
2921 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:46
|
2922 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:159
|
2923 |
#: woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:55
|
2924 |
#: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:37
|
2925 |
#: woocommerce-germanized-shipments/templates/shipment/shipment-details.php:60
|
2999 |
|
3000 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-list.php:22
|
3001 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:87
|
3002 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:141
|
3003 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:575
|
3004 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:696
|
3005 |
#: woocommerce-germanized-shipments/src/Admin/Settings.php:80
|
3006 |
#: woocommerce-germanized-shipments/src/Admin/Settings.php:177
|
3007 |
#: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:36
|
3031 |
# @ woocommerce-germanized
|
3032 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:19
|
3033 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:80
|
3034 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:505
|
3035 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:574
|
3036 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:662
|
3037 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:729
|
3038 |
#: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:20
|
3039 |
msgctxt "shipments"
|
3040 |
msgid "Shipments"
|
3072 |
|
3073 |
# @ woocommerce-germanized
|
3074 |
#: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:12
|
3075 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:382
|
3076 |
#: woocommerce-germanized-shipments/src/ShippingProvider.php:564
|
3077 |
msgctxt "shipments"
|
3078 |
msgid "Description"
|
3129 |
msgstr "Download"
|
3130 |
|
3131 |
#: woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:39
|
3132 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:788
|
3133 |
msgctxt "shipments"
|
3134 |
msgid "Create new label"
|
3135 |
msgstr "Neues Label erstellen"
|
3297 |
msgstr "Text der unterhalb des Inhalts der E-Mail angezeigt werden soll."
|
3298 |
|
3299 |
#: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:356
|
3300 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:985
|
3301 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1015
|
3302 |
#: woocommerce-germanized-shipments/templates/shipment/shipment-details-address.php:28
|
3303 |
msgctxt "shipments"
|
3304 |
msgid "N/A"
|
3360 |
msgstr "Brief"
|
3361 |
|
3362 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:79
|
3363 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1051
|
3364 |
msgctxt "shipments"
|
3365 |
msgid "Shipment"
|
3366 |
msgstr "Sendung"
|
3383 |
|
3384 |
# @ woocommerce-germanized
|
3385 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:115
|
3386 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:347
|
3387 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:854
|
3388 |
msgctxt "shipments"
|
3389 |
msgid "Shipped"
|
3404 |
msgid "Returned"
|
3405 |
msgstr "Retourniert"
|
3406 |
|
3407 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:345
|
3408 |
msgctxt "shipments"
|
3409 |
msgid "Draft"
|
3410 |
msgstr "Entwurf"
|
3411 |
|
3412 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:346
|
3413 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:846
|
3414 |
msgctxt "shipments"
|
3415 |
msgid "Processing"
|
3416 |
msgstr "In Bearbeitung"
|
3417 |
|
3418 |
# @ woocommerce-germanized
|
3419 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:348
|
3420 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:50
|
3421 |
msgctxt "shipments"
|
3422 |
msgid "Delivered"
|
3423 |
msgstr "Geliefert"
|
3424 |
|
3425 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:349
|
3426 |
msgctxt "shipments"
|
3427 |
msgid "Requested"
|
3428 |
msgstr "Beantragt"
|
3429 |
|
3430 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:398
|
3431 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:81
|
3432 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:135
|
3433 |
msgctxt "shipments"
|
3434 |
msgid "Invalid order."
|
3435 |
msgstr "Ungültige Bestellung."
|
3436 |
|
3437 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:402
|
3438 |
msgctxt "shipments"
|
3439 |
msgid "This order is already fully returned."
|
3440 |
msgstr "Diese Bestellung wurde bereits vollständig zurückgesendet."
|
3441 |
|
3442 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:413
|
3443 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:454
|
3444 |
msgctxt "shipments"
|
3445 |
msgid "Error while creating the shipment instance"
|
3446 |
msgstr "Fehler beim Erstellen der Sendungsinstanz"
|
3447 |
|
3448 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:439
|
3449 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:443
|
3450 |
#: woocommerce-germanized-shipments/src/ReturnShipment.php:428
|
3451 |
#: woocommerce-germanized-shipments/src/ReturnShipment.php:499
|
3452 |
#: woocommerce-germanized-shipments/src/SimpleShipment.php:118
|
3455 |
msgid "Invalid shipment order"
|
3456 |
msgstr "Ungültige Bestellung zur Sendung"
|
3457 |
|
3458 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:473
|
3459 |
msgctxt "shipments"
|
3460 |
msgid "Invalid order item"
|
3461 |
msgstr "Ungültige Bestellposition"
|
3462 |
|
3463 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:595
|
3464 |
msgctxt "shipments"
|
3465 |
msgid "Invalid shipment item"
|
3466 |
msgstr "Ungültige Sendungsposition"
|
3467 |
|
3468 |
# @ woocommerce-germanized
|
3469 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:668
|
3470 |
msgctxt "shipments"
|
3471 |
msgid "None"
|
3472 |
msgstr "Keiner"
|
3473 |
|
3474 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:741
|
3475 |
msgctxt "shipments"
|
3476 |
msgid "Error while uploading file."
|
3477 |
msgstr "Fehler beim Hochladen der Datei."
|
3478 |
|
3479 |
# @ woocommerce-germanized
|
3480 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1052
|
3481 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:23
|
3482 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:687
|
3483 |
msgctxt "shipments"
|
3484 |
msgid "Date"
|
3485 |
msgstr "Datum"
|
3486 |
|
3487 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1054
|
3488 |
#: woocommerce-germanized-shipments/templates/shipment/shipment-details-tracking.php:23
|
3489 |
msgctxt "shipments"
|
3490 |
msgid "Tracking"
|
3491 |
msgstr "Sendungsverfolgung"
|
3492 |
|
3493 |
# @ woocommerce-germanized
|
3494 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1055
|
3495 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:164
|
3496 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:30
|
3497 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:694
|
3498 |
msgctxt "shipments"
|
3499 |
msgid "Actions"
|
3500 |
msgstr "Aktionen"
|
3501 |
|
3502 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1291
|
3503 |
msgctxt "shipments"
|
3504 |
msgid "View"
|
3505 |
msgstr "Anzeigen"
|
3506 |
|
3507 |
# @ woocommerce-germanized
|
3508 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1298
|
3509 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:865
|
3510 |
#: woocommerce-germanized-shipments/src/Ajax.php:337
|
3511 |
msgctxt "shipments"
|
3544 |
msgstr "Bestellung ansehen"
|
3545 |
|
3546 |
# @ woocommerce-germanized
|
3547 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:92
|
3548 |
+
msgctxt "shipments"
|
3549 |
+
msgid "View Shipments"
|
3550 |
+
msgstr "Sendung anzeigen"
|
3551 |
+
|
3552 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:93
|
3553 |
+
msgctxt "shipments"
|
3554 |
+
msgid "Endpoint for the \"My account → View shipments\" page."
|
3555 |
+
msgstr "Endpunkt für die „Mein Konto → Sendungen“ Seite."
|
3556 |
+
|
3557 |
+
# @ woocommerce-germanized
|
3558 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:100
|
3559 |
+
msgctxt "shipments"
|
3560 |
+
msgid "View shipment"
|
3561 |
+
msgstr "Sendung anzeigen"
|
3562 |
+
|
3563 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:101
|
3564 |
+
msgctxt "shipments"
|
3565 |
+
msgid "Endpoint for the \"My account → View shipment\" page."
|
3566 |
+
msgstr "Endpunkt für die „Mein Konto → Sendung“ Seite."
|
3567 |
+
|
3568 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:108
|
3569 |
+
msgctxt "shipments"
|
3570 |
+
msgid "Add Return Shipment"
|
3571 |
+
msgstr "Rücksendung"
|
3572 |
+
|
3573 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:109
|
3574 |
+
msgctxt "shipments"
|
3575 |
+
msgid "Endpoint for the \"My account → Add return shipment\" page."
|
3576 |
+
msgstr "Endpunkt für die „Mein Konto → Rücksendung“ Seite."
|
3577 |
+
|
3578 |
+
# @ woocommerce-germanized
|
3579 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:172
|
3580 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:307
|
3581 |
#: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:36
|
3582 |
msgctxt "shipments"
|
3583 |
msgid "Reason"
|
3584 |
msgstr "Rücksendegrund"
|
3585 |
|
3586 |
# @ woocommerce-germanized
|
3587 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:299
|
3588 |
msgctxt "shipments"
|
3589 |
msgid "Return reasons"
|
3590 |
msgstr "Rücksendegründe"
|
3591 |
|
3592 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:306
|
3593 |
msgctxt "shipments"
|
3594 |
msgid "Reason code"
|
3595 |
msgstr "Rücksendegrund (Code)"
|
3596 |
|
3597 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:306
|
3598 |
msgctxt "shipments"
|
3599 |
msgid "The reason code is used to identify the reason."
|
3600 |
msgstr ""
|
3602 |
"identifizieren zu können."
|
3603 |
|
3604 |
# @ woocommerce-germanized
|
3605 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:307
|
3606 |
msgctxt "shipments"
|
3607 |
msgid "Choose a reason text."
|
3608 |
msgstr "Beschreibung für den Grund."
|
3609 |
|
3610 |
# @ woocommerce-germanized
|
3611 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:326
|
3612 |
msgctxt "shipments"
|
3613 |
msgid "+ Add reason"
|
3614 |
msgstr "+ Grund hinzufügen"
|
3615 |
|
3616 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:326
|
3617 |
msgctxt "shipments"
|
3618 |
msgid "Remove selected reason(s)"
|
3619 |
msgstr "Ausgewählte Gründe löschen"
|
3620 |
|
3621 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:359
|
3622 |
msgctxt "shipments"
|
3623 |
msgid "Available Packaging"
|
3624 |
msgstr "Verfügbare Verpackungen"
|
3625 |
|
3626 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:382
|
3627 |
msgctxt "shipments"
|
3628 |
msgid "A description to help you identify the packaging."
|
3629 |
msgstr "Eine Beschreibung die dir dabei hilft Verpackungen zu identifizieren."
|
3630 |
|
3631 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:383
|
3632 |
msgctxt "shipments"
|
3633 |
msgid "Type"
|
3634 |
msgstr "Typ"
|
3635 |
|
3636 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:384
|
3637 |
#, php-format
|
3638 |
msgctxt "shipments"
|
3639 |
msgid "Weight (%s)"
|
3640 |
msgstr "Gewicht (%s)"
|
3641 |
|
3642 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:384
|
3643 |
msgctxt "shipments"
|
3644 |
msgid "The weight of the packaging."
|
3645 |
msgstr "Das Gewicht der Verpackung."
|
3646 |
|
3647 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:385
|
3648 |
#, php-format
|
3649 |
msgctxt "shipments"
|
3650 |
msgid "Dimensions (LxWxH, %s)"
|
3651 |
msgstr "Abmessungen (LxBxH, %s)"
|
3652 |
|
3653 |
# @ woocommerce-germanized
|
3654 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:386
|
3655 |
msgctxt "shipments"
|
3656 |
msgid "Max weight (kg)"
|
3657 |
msgstr "Max. Gewicht (kg)"
|
3658 |
|
3659 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:386
|
3660 |
msgctxt "shipments"
|
3661 |
msgid ""
|
3662 |
"The maximum weight this packaging can hold. Leave empty to not restrict "
|
3665 |
"Das maximale Gewicht, das diese Verpackung tragen kann. Leer lassen um das "
|
3666 |
"Gewicht nicht zu begrenzen."
|
3667 |
|
3668 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:411
|
3669 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:452
|
3670 |
msgctxt "shipments"
|
3671 |
msgid "Length"
|
3672 |
msgstr "Länge"
|
3673 |
|
3674 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:412
|
3675 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:453
|
3676 |
msgctxt "shipments"
|
3677 |
msgid "Width"
|
3678 |
msgstr "Breite"
|
3679 |
|
3680 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:413
|
3681 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:454
|
3682 |
msgctxt "shipments"
|
3683 |
msgid "Height"
|
3684 |
msgstr "Höhe"
|
3685 |
|
3686 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:426
|
3687 |
msgctxt "shipments"
|
3688 |
msgid "+ Add packaging"
|
3689 |
msgstr "+ Verpackung hinzufügen"
|
3690 |
|
3691 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:426
|
3692 |
msgctxt "shipments"
|
3693 |
msgid "Remove selected packaging"
|
3694 |
msgstr "Ausgewählte Verpackung löschen"
|
3695 |
|
3696 |
# @ woocommerce-germanized
|
3697 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:559
|
3698 |
msgctxt "shipments"
|
3699 |
msgid "Create shipments"
|
3700 |
msgstr "Sendungen erstellen"
|
3701 |
|
3702 |
# @ woocommerce-germanized
|
3703 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:674
|
3704 |
msgctxt "shipments"
|
3705 |
msgid "Search shipments"
|
3706 |
msgstr "Sendungen suchen"
|
3707 |
|
3708 |
# @ woocommerce-germanized
|
3709 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:708
|
3710 |
msgctxt "shipments"
|
3711 |
msgid "Search returns"
|
3712 |
msgstr "Retouren suchen"
|
3713 |
|
3714 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:781
|
3715 |
msgctxt "shipments"
|
3716 |
msgid "Do you really want to delete the shipment?"
|
3717 |
msgstr "Möchtest du die Sendung wirklich löschen?"
|
3718 |
|
3719 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:787
|
3720 |
msgctxt "shipments"
|
3721 |
msgid "Do you really want to delete the label?"
|
3722 |
msgstr "Möchtest du das Label wirklich löschen?"
|
3723 |
|
3724 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:789
|
3725 |
msgctxt "shipments"
|
3726 |
msgid "Please save the shipment before creating a new label"
|
3727 |
msgstr "Bitte speichere die Sendung bevor du ein neues Label erzeugst"
|
3728 |
|
3729 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:839
|
3730 |
msgctxt "shipments"
|
3731 |
msgid ""
|
3732 |
"Do you really want to delete the shipping provider? Some of your existing "
|
4755 |
msgstr "Brief C4"
|
4756 |
|
4757 |
# @ woocommerce-germanized
|
4758 |
+
#: woocommerce-germanized-shipments/src/Package.php:103
|
4759 |
msgctxt "shipments"
|
4760 |
msgid "Sorry, this order is invalid and cannot be returned."
|
4761 |
msgstr "Sorry, diese Bestellung existiert nicht."
|
4767 |
msgstr "%1$s (%2$s, %3$s)"
|
4768 |
|
4769 |
#: woocommerce-germanized-shipments/src/ReturnShipment.php:356
|
4770 |
+
#: woocommerce-germanized-shipments/src/Shipment.php:920
|
4771 |
#, php-format
|
4772 |
msgctxt "full name"
|
4773 |
msgid "%1$s %2$s"
|
5320 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:549
|
5321 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:559
|
5322 |
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:449
|
5323 |
+
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:614
|
5324 |
+
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:622
|
5325 |
msgid "incl. VAT"
|
5326 |
msgstr "inkl. MwSt."
|
5327 |
|
5429 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:134
|
5430 |
#, php-format
|
5431 |
msgid ""
|
5432 |
+
"To insert a link to your cancellation policy use the following placeholder: "
|
5433 |
+
"%s"
|
5434 |
msgstr ""
|
5435 |
"Um einen Link zu deiner Widerrufsbelehrung einzufügen, verwende den "
|
5436 |
"folgenden Platzhalter: %s"
|
5452 |
|
5453 |
# @ woocommerce-germanized
|
5454 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:122
|
5455 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:444
|
5456 |
msgid "Downloadable Product"
|
5457 |
msgstr "Herunterladbares Produkt"
|
5458 |
|
5459 |
# @ woocommerce-germanized
|
5460 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:123
|
5461 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:445
|
5462 |
msgid "Virtual Product"
|
5463 |
msgstr "Virtuelles Produkt"
|
5464 |
|
5465 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:124
|
5466 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:46
|
5467 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:168
|
5468 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:446
|
5469 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:146
|
5470 |
msgid "Service"
|
5471 |
msgstr "Dienstleistung"
|
5502 |
# @ woocommerce-germanized
|
5503 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:139
|
5504 |
msgid ""
|
5505 |
+
"Select product types for which the loss of the right of withdrawal notice is "
|
5506 |
+
"shown. Product types like \"simple product\" may be redundant because they "
|
5507 |
+
"include virtual and downloadable products."
|
5508 |
msgstr ""
|
5509 |
"Wähle die Produkttypen aus, für die ein Hinweis für den Verlust des "
|
5510 |
"Widerrufsrechts angezeigt werden soll. Produkttypen wie \"einfaches Produkt"
|
5573 |
|
5574 |
# @ woocommerce-germanized
|
5575 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-product-categories.php:82
|
5576 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:453
|
5577 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:549
|
5578 |
msgid "None"
|
5579 |
msgstr "Keine"
|
5580 |
|
5739 |
# @ woocommerce-germanized
|
5740 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:46
|
5741 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:63
|
5742 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:241
|
5743 |
+
msgid "Cancellation Policy"
|
5744 |
msgstr "Widerrufsbelehrung"
|
5745 |
|
5746 |
# @ woocommerce-germanized
|
5947 |
|
5948 |
# @ woocommerce-germanized
|
5949 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:107
|
5950 |
+
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:254
|
5951 |
msgid "Regular Unit Price"
|
5952 |
msgstr "Regulärer Grundpreis"
|
5953 |
|
5954 |
# @ woocommerce-germanized
|
5955 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:114
|
5956 |
+
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:259
|
5957 |
msgid "Sale Unit Price"
|
5958 |
msgstr "Angebotsgrundpreis"
|
5959 |
|
5960 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:121
|
5961 |
#, php-format
|
5962 |
msgid ""
|
5963 |
+
"To enable unit prices on variation level please choose a unit and unit price "
|
5964 |
"units within %s."
|
5965 |
msgstr ""
|
5966 |
"Um Grundpreise auf Variationen-Ebene zu aktivieren, bitte Einheit und "
|
6047 |
|
6048 |
# @ woocommerce-germanized
|
6049 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:224
|
6050 |
+
msgid "Unit Price Units"
|
6051 |
msgstr "Grundpreiseinheiten"
|
6052 |
|
6053 |
# @ woocommerce-germanized
|
6054 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:227
|
6055 |
msgid ""
|
6056 |
+
"Unit price units. Example unit price: 0,99 € / 100 ml. Insert 100 as unit "
|
6057 |
"price unit amount."
|
6058 |
msgstr ""
|
6059 |
"Anzahl der Grundpreiseinheiten. Beispiel Grundpreis: 0,99 / 100 ml. Füge "
|
6061 |
|
6062 |
# @ woocommerce-germanized
|
6063 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:250
|
6064 |
+
msgid "Calculate unit prices automatically."
|
6065 |
+
msgstr "Grundpreis automatisch berechnen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6066 |
|
6067 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:271
|
6068 |
msgid "Adds an age verification checkbox while purchasing this product."
|
6204 |
|
6205 |
# @ woocommerce-germanized
|
6206 |
#: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-pro.php:30
|
6207 |
+
msgid "Generator for terms & conditions and cancellation policy"
|
6208 |
msgstr "Schnittstelle für Mustertexte-Generatoren für AGB & Widerrufsbelehrung"
|
6209 |
|
6210 |
# @ woocommerce-germanized
|
6936 |
# @ woocommerce-germanized
|
6937 |
# @ woocommerce
|
6938 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:163
|
6939 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:232
|
6940 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:137
|
6941 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:144
|
6942 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:138
|
7042 |
|
7043 |
# @ woocommerce-germanized
|
7044 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:30
|
7045 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:354
|
7046 |
#: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:174
|
7047 |
msgid "Legal Pages"
|
7048 |
msgstr "Rechtlich relevante Seiten"
|
7101 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:64
|
7102 |
msgid ""
|
7103 |
"This page should contain information regarding your customer's Right of "
|
7104 |
+
"Withdrawal."
|
7105 |
msgstr ""
|
7106 |
"Diese Seite sollte deine Widerrufsbelehrung enthalten. Nutze folgenden "
|
7107 |
"Shortcode um ein Widerrufsformular in die Seite einzubinden: "
|
7114 |
msgstr ""
|
7115 |
"Du hast noch keine Widerrufsbelehrung? <a href=\"%s\">Jetzt generieren</a>!"
|
7116 |
|
|
|
7117 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:74
|
7118 |
+
msgid "Send withdrawal to"
|
7119 |
msgstr "Widerruf richten an"
|
7120 |
|
7121 |
# @ woocommerce-germanized
|
7122 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:75
|
7123 |
msgid ""
|
7124 |
"Type in an address, telephone/telefax number, email address which is to be "
|
7125 |
+
"used as the recipient address of the withdrawal."
|
7126 |
msgstr ""
|
7127 |
"Gib hier deine Adresse, Telefon- und Faxnummer, E-Mail Adresse usw. an, an "
|
7128 |
"die deine Kunden ihren Widerruf richten sollen"
|
7278 |
|
7279 |
# @ woocommerce-germanized
|
7280 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:209
|
7281 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:388
|
7282 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:131
|
7283 |
msgid "Notice Text"
|
7284 |
msgstr "Hinweistext"
|
7295 |
"UStG."
|
7296 |
msgstr "Kein Mehrwertsteuerausweis, da Kleinunternehmer nach §19 (1) UStG."
|
7297 |
|
|
|
|
|
|
|
|
|
7298 |
# @ woocommerce-germanized
|
7299 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:233
|
|
|
|
|
|
|
|
|
|
|
7300 |
msgid "Add a title field to the address within checkout."
|
7301 |
msgstr "Lasse Kunden eine Anrede auswählen."
|
7302 |
|
7303 |
# @ woocommerce-germanized
|
7304 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:239
|
7305 |
msgid "Disallow cancellations"
|
7306 |
msgstr "Stornierungen verhindern"
|
7307 |
|
7308 |
# @ woocommerce-germanized
|
7309 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:240
|
7310 |
msgid "Don't allow customers to manually cancel orders."
|
7311 |
msgstr "Stornierung von Bestellungen durch den Kunden verhindern."
|
7312 |
|
7313 |
# @ woocommerce-germanized
|
7314 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:240
|
7315 |
msgid ""
|
7316 |
"By default payment methods like PayPal allow order cancellation by clicking "
|
7317 |
"the abort link. This option will stop customers from manually cancel orders."
|
7320 |
"Kunden den Abbrechen-Link verwendet. Diese Option verhindert den manuellen "
|
7321 |
"Abbruch einer Bestellung durch den Kunden."
|
7322 |
|
7323 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:246
|
7324 |
msgid "Disallow gateway choosing"
|
7325 |
msgstr "Wechsel der Zahlungsart"
|
7326 |
|
7327 |
# @ woocommerce-germanized
|
7328 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:247
|
7329 |
msgid "Don't allow customers to change the payment gateway after ordering."
|
7330 |
msgstr ""
|
7331 |
"Wechsel der Zahlungsart nach der Bestellung durch den Kunden verhindern."
|
7332 |
|
7333 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:247
|
7334 |
msgid ""
|
7335 |
"Customers paying through a gateway which allows later payment (e.g. PayPal) "
|
7336 |
"will find a link within their customer account which redirects them to a pay "
|
7349 |
"PayPal weiter."
|
7350 |
|
7351 |
# @ woocommerce-germanized
|
7352 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:253
|
7353 |
msgid "Free shipping"
|
7354 |
msgstr "Kostenloser Versand"
|
7355 |
|
7356 |
# @ woocommerce-germanized
|
7357 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:254
|
7358 |
msgid "Force free shipping method if available."
|
7359 |
msgstr "Erzwinge kostenlosen Versand wenn die Methode zur Verfügung steht."
|
7360 |
|
7361 |
# @ woocommerce-germanized
|
7362 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:254
|
7363 |
msgid ""
|
7364 |
"By default WooCommerce will let customers choose other shipping methods than "
|
7365 |
"free shipping (if available). This option will force free shipping if "
|
7370 |
"Versand, sobald dieser verfügbar ist."
|
7371 |
|
7372 |
# @ woocommerce-germanized
|
7373 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:261
|
7374 |
msgid "Exclude Methods"
|
7375 |
msgstr "Deaktivierte Methoden"
|
7376 |
|
7377 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:270
|
7378 |
msgid ""
|
7379 |
"Optionally choose methods which should be excluded from hiding when free "
|
7380 |
"shipping is available (e.g. express shipping options)."
|
7383 |
"kostenloser Versand verfügbar ist (z.B. Express-Versandmethoden)."
|
7384 |
|
7385 |
# @ woocommerce-germanized
|
7386 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:282
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7387 |
msgid "Add to Cart"
|
7388 |
msgstr "Zum Warenkorb Button"
|
7389 |
|
7390 |
# @ woocommerce-germanized
|
7391 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:283
|
7392 |
msgid "Show add to cart button on listings."
|
7393 |
msgstr "Zeige den „zum Warenkorb“ Button in Produktlisten an."
|
7394 |
|
7395 |
# @ woocommerce-germanized
|
7396 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:287
|
7397 |
msgid ""
|
7398 |
"unset this option if you don't want to show the add to cart button within "
|
7399 |
"the product listings"
|
7401 |
"Deaktiviere diese Option, wenn du den zum Warenkorb Button nicht innerhalb "
|
7402 |
"von Produktauflistungen darstellen möchten"
|
7403 |
|
7404 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:290
|
7405 |
msgid "Link"
|
7406 |
msgstr "Verlinkung"
|
7407 |
|
7408 |
# @ woocommerce-germanized
|
7409 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:291
|
7410 |
msgid "Link to product details page instead of add to cart within listings."
|
7411 |
msgstr ""
|
7412 |
"Ersetze den zum-Warenkorb-Link durch einen Link zur Produktdetailseite in "
|
7413 |
"Produktlisten."
|
7414 |
|
7415 |
# @ woocommerce-germanized
|
7416 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:295
|
7417 |
msgid ""
|
7418 |
"Decide whether you like to link to your product's details page instead of "
|
7419 |
"displaying an add to cart button within product listings."
|
7423 |
"diese Option."
|
7424 |
|
7425 |
# @ woocommerce-germanized
|
7426 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:298
|
7427 |
msgid "Product Details Text"
|
7428 |
msgstr "Produktdetails Text"
|
7429 |
|
7430 |
# @ woocommerce-germanized
|
7431 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:300
|
7432 |
msgid "Details"
|
7433 |
msgstr "Details"
|
7434 |
|
7435 |
# @ woocommerce-germanized
|
7436 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:305
|
7437 |
msgid ""
|
7438 |
"If you have chosen to link to product details page instead of add to cart "
|
7439 |
"URL you may want to change the button text."
|
7443 |
"einen Button-Text vergeben."
|
7444 |
|
7445 |
# @ woocommerce-germanized
|
7446 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:326
|
7447 |
msgid "Overview"
|
7448 |
msgstr "Übersicht"
|
7449 |
|
7450 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:327
|
7451 |
msgid ""
|
7452 |
"You can always return to the settings overview by navigating through the "
|
7453 |
"breadcrumb navigation."
|
7456 |
"indem du die Breadcrumb-Navigation nutzt."
|
7457 |
|
7458 |
# @ woocommerce-germanized
|
7459 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:340
|
7460 |
msgid "Sections"
|
7461 |
msgstr "Rubriken"
|
7462 |
|
7463 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:341
|
7464 |
msgid ""
|
7465 |
"Each setting tab might have sub sections containing more specific options."
|
7466 |
msgstr ""
|
7467 |
"Jeder Tab kann weitere Unterbereiche mit spezifischen Optionen beinhalten."
|
7468 |
|
7469 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:355
|
7470 |
msgid ""
|
7471 |
"Adjust legal pages e.g. terms and conditions. These pages are used to add "
|
7472 |
"links within checkboxes and text attachments to emails."
|
7629 |
"Lieferzeit zugeordnet wurde."
|
7630 |
|
7631 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:134
|
7632 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:475
|
7633 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:522
|
7634 |
msgid "Format"
|
7635 |
msgstr "Format"
|
7636 |
|
7684 |
# @ woocommerce-germanized
|
7685 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:225
|
7686 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:256
|
7687 |
+
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:130
|
7688 |
+
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:296
|
7689 |
+
#: woocommerce-germanized/includes/compatibility/elementor/widgets/class-wc-gzd-elementor-widget-product-unit-price.php:10
|
7690 |
+
msgid "Unit Price"
|
7691 |
msgstr "Grundpreis"
|
7692 |
|
7693 |
# @ woocommerce-germanized
|
7718 |
|
7719 |
# @ woocommerce-germanized
|
7720 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:320
|
7721 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:382
|
7722 |
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:248
|
7723 |
msgid "Shipping Costs"
|
7724 |
msgstr "Versandkosten"
|
7747 |
"werden soll. Je höher die Priorität ist, desto später wird die "
|
7748 |
"Preisauszeichnung hinzugefügt. Standard ist %d."
|
7749 |
|
7750 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:365
|
7751 |
+
msgid "Price Ranges"
|
7752 |
+
msgstr "Preisspannen"
|
7753 |
+
|
7754 |
# @ woocommerce-germanized
|
7755 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:371
|
7756 |
+
msgid "Price Range Format"
|
7757 |
+
msgstr "Preisspannen-Format"
|
7758 |
+
|
7759 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:372
|
7760 |
msgid ""
|
7761 |
+
"Adjust the price range format e.g. for variable products. Use {min_price} as "
|
7762 |
+
"placeholder for the minimum price. Use {max_price} as placeholder for the "
|
7763 |
+
"maximum price."
|
7764 |
+
msgstr ""
|
7765 |
+
"Passe das Format von Preisspannen z.B. für variable Produkte an. Verwende "
|
7766 |
+
"{min_price} als Platzhalter für den minimalen Preis und {max_price} als "
|
7767 |
+
"Platzhalter für den höchsten Preis."
|
7768 |
+
|
7769 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:376
|
7770 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:890
|
7771 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:894
|
7772 |
+
msgid "{min_price} – {max_price}"
|
7773 |
+
msgstr "{min_price} – {max_price}"
|
7774 |
+
|
7775 |
+
# @ woocommerce-germanized
|
7776 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:389
|
7777 |
+
msgid ""
|
7778 |
"This text will be used to inform the customer about shipping costs. Use "
|
7779 |
"{link}{/link} to insert link to shipping costs page."
|
7780 |
msgstr ""
|
7783 |
"zur Versandkosten-Seite einzufügen."
|
7784 |
|
7785 |
# @ woocommerce-germanized
|
7786 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:394
|
7787 |
msgid "plus {link}Shipping Costs{/link}"
|
7788 |
msgstr "zzgl. {link}Versandkosten{/link}"
|
7789 |
|
7790 |
# @ woocommerce-germanized
|
7791 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:397
|
7792 |
msgid "Free Shipping Text"
|
7793 |
msgstr "Kostenloser Versand Text"
|
7794 |
|
7795 |
# @ woocommerce-germanized
|
7796 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:398
|
7797 |
msgid ""
|
7798 |
"This text will be used to inform the customer about free shipping. Leave "
|
7799 |
"empty to disable notice. Use {link}{/link} to insert link to shipping costs "
|
7804 |
"Versandkosten-Seite einzufügen."
|
7805 |
|
7806 |
# @ woocommerce-germanized
|
7807 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:406
|
7808 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:504
|
7809 |
msgid "Hide Notice"
|
7810 |
msgstr "Hinweis ausblenden"
|
7811 |
|
7812 |
# @ woocommerce-germanized
|
7813 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:407
|
7814 |
msgid ""
|
7815 |
"Select product types for which you might want to disable the shipping costs "
|
7816 |
"notice."
|
7819 |
"möchtest."
|
7820 |
|
7821 |
# @ woocommerce-germanized
|
7822 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:417
|
7823 |
msgid "Footer"
|
7824 |
msgstr "Footer"
|
7825 |
|
7826 |
# @ woocommerce-germanized
|
7827 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:420
|
7828 |
msgid "Notice"
|
7829 |
msgstr "Hinweis"
|
7830 |
|
7831 |
# @ woocommerce-germanized
|
7832 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:421
|
7833 |
msgid "Attach a global VAT notice to your footer."
|
7834 |
msgstr "Einen seitenübergreifenden MwSt.-Hinweis im Footer einfügen."
|
7835 |
|
7836 |
# @ woocommerce-germanized
|
7837 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:428
|
7838 |
msgid "Attach a global sale price notice to your footer."
|
7839 |
msgstr ""
|
7840 |
"Einen seitenübergreifenden Hinweis zu reduzierten Preisen im Footer einfügen."
|
7841 |
|
7842 |
# @ woocommerce-germanized
|
7843 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:464
|
7844 |
msgid "Fallback"
|
7845 |
msgstr "Fallback"
|
7846 |
|
7847 |
# @ woocommerce-germanized
|
7848 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:465
|
7849 |
msgid ""
|
7850 |
"This delivery time will be added to every product if no delivery time has "
|
7851 |
"been chosen individually"
|
7854 |
"zugeordnet wurde"
|
7855 |
|
7856 |
# @ woocommerce-germanized
|
7857 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:472
|
7858 |
msgid "Manage Delivery Times"
|
7859 |
msgstr "Lieferzeiten verwalten"
|
7860 |
|
7861 |
# @ woocommerce-germanized
|
7862 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:476
|
7863 |
msgid ""
|
7864 |
"This text will be used to indicate delivery time for products. Use "
|
7865 |
"{delivery_time} as placeholder."
|
7868 |
"{delivery_time} als Platzhalter verwenden."
|
7869 |
|
7870 |
# @ woocommerce-germanized
|
7871 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:480
|
7872 |
msgid "Delivery time: {delivery_time}"
|
7873 |
msgstr "Lieferzeit: {delivery_time}"
|
7874 |
|
7875 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:483
|
7876 |
msgid "Digital text"
|
7877 |
msgstr "Digitaler Text"
|
7878 |
|
7879 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:487
|
7880 |
msgid ""
|
7881 |
"Enter a text which will be shown as digital delivery time text (replacement "
|
7882 |
"for default digital time on digital products)."
|
7886 |
"lassen."
|
7887 |
|
7888 |
# @ woocommerce
|
7889 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:490
|
7890 |
msgid "Backorder"
|
7891 |
msgstr "Lieferrückstand"
|
7892 |
|
7893 |
# @ woocommerce-germanized
|
7894 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:491
|
7895 |
msgid "Hide delivery time if a product is on backorder."
|
7896 |
msgstr "Lieferzeit ausblenden falls das Produkt im Lieferrückstand ist."
|
7897 |
|
7898 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:497
|
7899 |
msgid "Not in Stock"
|
7900 |
msgstr "Nicht auf Lager"
|
7901 |
|
7902 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:498
|
7903 |
msgid "Hide delivery time if a product is not in stock."
|
7904 |
msgstr "Lieferzeit ausblenden falls das Produkt nicht auf Lager ist."
|
7905 |
|
7906 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:505
|
7907 |
msgid ""
|
7908 |
"Select product types for which you might want to disable the delivery time "
|
7909 |
"notice."
|
7912 |
"möchtest."
|
7913 |
|
7914 |
# @ woocommerce-germanized
|
7915 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:523
|
7916 |
msgid ""
|
7917 |
+
"This text will be used to display the unit price. Use {price} to insert the "
|
7918 |
+
"price. If you want to specifically format unit price output use {base}, "
|
7919 |
+
"{unit} and {unit_price} as placeholders."
|
7920 |
msgstr ""
|
7921 |
"Dieser Text wird für die Anzeige des Grundpreises verwendet. Nutze {price} "
|
7922 |
"als Platzhalter für den formatierten Grundpreis. Wenn du die Ausgabe "
|
7924 |
"{base_price} für die einzelnen Elemente."
|
7925 |
|
7926 |
# @ woocommerce-germanized
|
7927 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:527
|
7928 |
msgid "{price}"
|
7929 |
msgstr "{price}"
|
7930 |
|
7931 |
# @ woocommerce-germanized
|
7932 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:530
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7933 |
msgid "Product units format"
|
7934 |
msgstr "Produkteinheiten Format"
|
7935 |
|
7936 |
# @ woocommerce-germanized
|
7937 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:531
|
7938 |
msgid ""
|
7939 |
"This text will be used to display the product units. Use {product_units} to "
|
7940 |
"insert the amount of product units. Use {unit} to insert the unit. "
|
7946 |
"Grundpreis."
|
7947 |
|
7948 |
# @ woocommerce-germanized
|
7949 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:535
|
7950 |
msgid "Product contains: {product_units} {unit}"
|
7951 |
msgstr "Produkt enthält: {product_units} {unit}"
|
7952 |
|
7953 |
# @ woocommerce-germanized
|
7954 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:538
|
7955 |
+
msgid "Variable Unit Price"
|
7956 |
+
msgstr "Variabler Grundpreis"
|
7957 |
+
|
7958 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:539
|
7959 |
+
msgid "Enable price range unit prices for variable products."
|
7960 |
+
msgstr "Aktiviere von-bis-Grundpreise für variable Produkte."
|
7961 |
+
|
7962 |
+
# @ woocommerce-germanized
|
7963 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:554
|
7964 |
msgid "Fallback Sale Label"
|
7965 |
msgstr "Standard-Streichpreis"
|
7966 |
|
7967 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:561
|
7968 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:571
|
7969 |
msgid "Manage Price Labels"
|
7970 |
msgstr "Preishinweise verwalten"
|
7971 |
|
7972 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:561
|
7973 |
msgid ""
|
7974 |
"Choose whether you would like to have a default sale price label to inform "
|
7975 |
"the customer about the regular price (e.g. Recommended Retail Price)."
|
7978 |
"den Kunden auf den alten Preis (bei reduzierten Produkten, sog. "
|
7979 |
"Streichpreis) hinweist (z.B. UVP)."
|
7980 |
|
7981 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:564
|
7982 |
msgid "Fallback Regular Label"
|
7983 |
msgstr "Standard-Angebotspreis"
|
7984 |
|
7985 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:571
|
7986 |
msgid ""
|
7987 |
"Choose whether you would like to have a default sale price regular label to "
|
7988 |
"inform the customer about the sale price (e.g. New Price)."
|
7992 |
"hinweist (z.B. Unser neuer Preis)."
|
7993 |
|
7994 |
# @ woocommerce-germanized
|
7995 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:575
|
7996 |
#: woocommerce-germanized/src/Shopmarks.php:294
|
7997 |
msgid "Single Product"
|
7998 |
msgstr "Produktdetailseite"
|
7999 |
|
8000 |
# @ woocommerce-germanized
|
8001 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:576
|
8002 |
msgid "Show price labels on single product page."
|
8003 |
msgstr "Zeige Preishinweise auf der Produktdetailseite."
|
8004 |
|
8005 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:583
|
8006 |
msgid "Loop"
|
8007 |
msgstr "Produktlisten"
|
8008 |
|
8009 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:584
|
8010 |
msgid "Show price labels in product loops."
|
8011 |
msgstr "Zeige Preishinweise in Produktlisten."
|
8012 |
|
8829 |
msgid "Unit Slug"
|
8830 |
msgstr "Einheit Slug"
|
8831 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8832 |
# @ woocommerce-germanized
|
8833 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:135
|
8834 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:301
|
8976 |
"differenzbesteuerten Produkten gekauft werden."
|
8977 |
|
8978 |
# @ woocommerce-germanized
|
8979 |
+
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:905
|
8980 |
#: woocommerce-germanized/includes/class-wc-gzd-revocation.php:52
|
8981 |
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:604
|
8982 |
msgid "Mr."
|
8983 |
msgstr "Herr"
|
8984 |
|
8985 |
# @ woocommerce-germanized
|
8986 |
+
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:906
|
8987 |
msgctxt "customer-title-male-address"
|
8988 |
msgid "Mr."
|
8989 |
msgstr "Herrn"
|
9133 |
# @ woocommerce-germanized
|
9134 |
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:1130
|
9135 |
msgctxt "revocation-form"
|
9136 |
+
msgid "Forward your withdrawal online"
|
9137 |
msgstr "Deinen Widerruf online erklären"
|
9138 |
|
9139 |
# @ woocommerce-germanized
|
9140 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:168
|
9141 |
#, php-format
|
9142 |
msgid ""
|
9143 |
"Please install <a href=\"%s\" target=\"_blank\">WooCommerce</a> before "
|
9146 |
"Bitte installiere <a href=\"%s\" target=\"_blank\">WooCommerce</a> bevor du "
|
9147 |
"WooCommerce Germanized installierst. Vielen Dank!"
|
9148 |
|
9149 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:488
|
9150 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:502
|
9151 |
msgid "Reduced rate"
|
9152 |
msgstr "Ermäßigter Steuersatz"
|
9153 |
|
9154 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:544
|
9155 |
#, php-format
|
9156 |
msgctxt "vat-rate-import"
|
9157 |
msgid "VAT %s"
|
9158 |
msgstr "MwSt. %s"
|
9159 |
|
9160 |
# @ woocommerce-germanized
|
9161 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:659
|
9162 |
msgctxt "Page slug"
|
9163 |
msgid "data-security"
|
9164 |
msgstr "datenschutzerklaerung"
|
9165 |
|
9166 |
# @ woocommerce-germanized
|
9167 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:660
|
9168 |
msgctxt "Page title"
|
9169 |
msgid "Data Security Statement"
|
9170 |
msgstr "Datenschutzerklärung"
|
9171 |
|
9172 |
# @ woocommerce-germanized
|
9173 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:664
|
9174 |
msgctxt "Page slug"
|
9175 |
msgid "imprint"
|
9176 |
msgstr "impressum"
|
9177 |
|
9178 |
# @ woocommerce-germanized
|
9179 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:665
|
9180 |
msgctxt "Page title"
|
9181 |
msgid "Imprint"
|
9182 |
msgstr "Impressum"
|
9183 |
|
9184 |
# @ woocommerce-germanized
|
9185 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:669
|
9186 |
msgctxt "Page slug"
|
9187 |
msgid "terms"
|
9188 |
msgstr "agb"
|
9189 |
|
9190 |
# @ woocommerce-germanized
|
9191 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:670
|
9192 |
msgctxt "Page title"
|
9193 |
msgid "Terms & Conditions"
|
9194 |
msgstr "AGB"
|
9195 |
|
9196 |
# @ woocommerce-germanized
|
9197 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:674
|
9198 |
msgctxt "Page slug"
|
9199 |
msgid "revocation"
|
9200 |
msgstr "widerrufsbelehrung"
|
9201 |
|
9202 |
# @ woocommerce-germanized
|
9203 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:675
|
9204 |
msgctxt "Page title"
|
9205 |
+
msgid "Cancellation Policy"
|
9206 |
msgstr "Widerrufsbelehrung"
|
9207 |
|
9208 |
# @ woocommerce-germanized
|
9209 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:679
|
9210 |
msgctxt "Page slug"
|
9211 |
msgid "shipping-methods"
|
9212 |
msgstr "versandarten"
|
9213 |
|
9214 |
# @ woocommerce-germanized
|
9215 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:680
|
9216 |
msgctxt "Page title"
|
9217 |
msgid "Shipping Methods"
|
9218 |
msgstr "Versandarten"
|
9219 |
|
9220 |
# @ woocommerce-germanized
|
9221 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:684
|
9222 |
msgctxt "Page slug"
|
9223 |
msgid "payment-methods"
|
9224 |
msgstr "bezahlmoeglichkeiten"
|
9225 |
|
9226 |
# @ woocommerce-germanized
|
9227 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:685
|
9228 |
msgctxt "Page title"
|
9229 |
msgid "Payment Methods"
|
9230 |
msgstr "Zahlungsarten"
|
9231 |
|
9232 |
# @ woocommerce-germanized
|
9233 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:104
|
|
|
9234 |
msgid ""
|
9235 |
"With your order, you agree to have read and understood our {term_link}Terms "
|
9236 |
+
"and Conditions{/term_link}, {revocation_link}Cancellation Policy{/"
|
9237 |
"revocation_link} and our {data_security_link}Privacy Policy{/"
|
9238 |
"data_security_link}."
|
9239 |
msgstr ""
|
9244 |
|
9245 |
# @ woocommerce-germanized
|
9246 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:105
|
|
|
9247 |
msgid ""
|
9248 |
+
"To complete the order you have to accept to our {term_link}Terms and "
|
9249 |
+
"Conditions{/term_link}, {revocation_link}Cancellation Policy{/"
|
9250 |
"revocation_link} and our {data_security_link}Privacy Policy{/"
|
9251 |
"data_security_link}."
|
9252 |
msgstr ""
|
9531 |
# @ woocommerce-germanized
|
9532 |
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:153
|
9533 |
#: woocommerce-germanized/includes/wc-gzd-order-functions.php:35
|
9534 |
+
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:540
|
9535 |
#, php-format
|
9536 |
msgid "Plus %s forwarding fee (charged by the transport agent)"
|
9537 |
msgstr "Zzgl. %s Übermittlungsentgelt (direkt an den Zusteller)"
|
9746 |
msgid "Visible during checkout"
|
9747 |
msgstr "Im Checkout anzeigen"
|
9748 |
|
|
|
9749 |
#: woocommerce-germanized/includes/class-wc-gzd-revocation.php:33
|
9750 |
msgctxt "revocation-form"
|
9751 |
+
msgid "Withdrawal"
|
9752 |
msgstr "Widerruf"
|
9753 |
|
9754 |
# @ woocommerce-germanized
|
9957 |
msgid "Thank you for your order"
|
9958 |
msgstr "Vielen Dank für deine Bestellung"
|
9959 |
|
|
|
9960 |
#: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-revocation.php:33
|
9961 |
+
msgid "Withdrawal"
|
9962 |
msgstr "Widerruf"
|
9963 |
|
9964 |
# @ woocommerce-germanized
|
9965 |
#: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-revocation.php:34
|
9966 |
+
msgid "Email being sent if a customer fills out the form of withdrawal."
|
9967 |
msgstr ""
|
9968 |
"Diese E-Mail wird als Bestätigung an den Kunden weitergeleitet, sobald er "
|
9969 |
"das Widerrufsformular ausgefüllt hat."
|
9980 |
|
9981 |
#: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-revocation.php:177
|
9982 |
msgid ""
|
9983 |
+
"Insert the email address of your shop manager here. A copy of the withdrawal "
|
9984 |
+
"confirmation email is being sent to this address."
|
9985 |
msgstr ""
|
9986 |
"Füge hier die E-Mail Adresse des Shop-Managers ein. Eine Kopie des Widerrufs "
|
9987 |
"wird an diese E-Mail Adresse versendet."
|
10616 |
"Aktiviere die Zahlungsart nur dann, wenn der Kunde bereits eine Bestellung "
|
10617 |
"erfolgreich abgeschlossen hat."
|
10618 |
|
10619 |
+
# @ woocommerce-germanized
|
10620 |
+
#: woocommerce-germanized/includes/updates/woocommerce-gzd-update-2.0.1.php:18
|
10621 |
+
msgid ""
|
10622 |
+
"With your order, you agree to have read and understood our {term_link}Terms "
|
10623 |
+
"and Conditions{/term_link} your {revocation_link}Right of Recission{/"
|
10624 |
+
"revocation_link} and our {data_security_link}Privacy Policy{/"
|
10625 |
+
"data_security_link}."
|
10626 |
+
msgstr ""
|
10627 |
+
"Mit deiner Bestellung erklärst du dich mit unseren {term_link}Allgemeinen "
|
10628 |
+
"Geschäftsbedingungen{/term_link}, {revocation_link}Widerrufsbestimmungen{/"
|
10629 |
+
"revocation_link} und {data_security_link}Datenschutzbestimmungen{/"
|
10630 |
+
"data_security_link} einverstanden."
|
10631 |
+
|
10632 |
+
# @ woocommerce-germanized
|
10633 |
+
#: woocommerce-germanized/includes/updates/woocommerce-gzd-update-2.0.1.php:19
|
10634 |
+
msgid ""
|
10635 |
+
"To finish the order you have to accept to our {term_link}Terms and "
|
10636 |
+
"Conditions{/term_link}, {revocation_link}Right of Recission{/"
|
10637 |
+
"revocation_link} and our {data_security_link}Privacy Policy{/"
|
10638 |
+
"data_security_link}."
|
10639 |
+
msgstr ""
|
10640 |
+
"Bitte akzeptiere unsere {term_link}Allgemeinen Geschäftsbedingungen{/"
|
10641 |
+
"term_link}, {revocation_link}Widerrufsbestimmungen{/revocation_link} und "
|
10642 |
+
"{data_security_link}Datenschutzbestimmungen{/data_security_link}."
|
10643 |
+
|
10644 |
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:195
|
10645 |
msgid ">= 12 years"
|
10646 |
msgstr ">= 12 Jahre"
|
10667 |
msgid "None"
|
10668 |
msgstr "Keines"
|
10669 |
|
|
|
|
|
|
|
|
|
|
|
10670 |
# @ woocommerce-germanized
|
10671 |
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:243
|
10672 |
msgid "Data Security"
|
10691 |
msgstr "Divers"
|
10692 |
|
10693 |
# @ woocommerce-germanized
|
10694 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:851
|
10695 |
+
msgid "More variants available"
|
10696 |
+
msgstr "Weitere Varianten verfügbar"
|
10697 |
+
|
10698 |
+
# @ woocommerce-germanized
|
10699 |
+
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:284
|
10700 |
#: woocommerce-germanized/templates/checkout/edit-data-notice.php:25
|
10701 |
msgid "Edit Order"
|
10702 |
msgstr "Bestellung bearbeiten"
|
10703 |
|
10704 |
# @ woocommerce-germanized
|
10705 |
+
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:295
|
10706 |
msgid "Choose a Payment Gateway"
|
10707 |
msgstr "Zahlungsart auswählen"
|
10708 |
|
10709 |
# @ woocommerce
|
10710 |
+
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:435
|
10711 |
msgid "Place order"
|
10712 |
msgstr "Jetzt kaufen"
|
10713 |
|
10993 |
|
10994 |
# @ woocommerce-germanized
|
10995 |
#: woocommerce-germanized/templates/emails/customer-revocation.php:26
|
|
|
10996 |
msgctxt "revocation-form"
|
10997 |
msgid ""
|
10998 |
+
"By sending you this email we confirm receiving your withdrawal. Please "
|
10999 |
+
"review your data."
|
11000 |
msgstr ""
|
11001 |
"Mit der Zustellung dieser E-Mail bestätigen wir den Eingang deines "
|
11002 |
"Widerrufs. Bitte prüfe deine Daten."
|
11015 |
msgid "SEPA Data"
|
11016 |
msgstr "SEPA Daten"
|
11017 |
|
11018 |
+
# @ woocommerce-germanized
|
11019 |
+
#: woocommerce-germanized/templates/emails/plain/customer-revocation.php:27
|
11020 |
+
msgctxt "revocation-form"
|
11021 |
+
msgid ""
|
11022 |
+
"By sending you this email we confirm your Revocation. Please review your "
|
11023 |
+
"data."
|
11024 |
+
msgstr ""
|
11025 |
+
"Mit der Zustellung dieser E-Mail bestätigen wir den Eingang deines "
|
11026 |
+
"Widerrufs. Bitte prüfe deine Daten."
|
11027 |
+
|
11028 |
# @ woocommerce-germanized
|
11029 |
#: woocommerce-germanized/templates/footer/sale-info.php:22
|
11030 |
msgid "All striked out prices refer to prices used to be charged at this shop."
|
11048 |
msgid "To"
|
11049 |
msgstr "An"
|
11050 |
|
|
|
11051 |
#: woocommerce-germanized/templates/forms/revocation-form.php:49
|
11052 |
#: woocommerce-germanized/templates/forms/revocation-form.php:50
|
11053 |
msgctxt "revocation-form"
|
11054 |
+
msgid "Forward Withdrawal"
|
11055 |
msgstr "Widerruf erklären"
|
11056 |
|
11057 |
#: woocommerce-germanized/templates/global/complaints.php:22
|
12324 |
msgid "https://vendidero.de"
|
12325 |
msgstr "https://vendidero.de"
|
12326 |
|
12327 |
+
#~ msgid "Phone"
|
12328 |
+
#~ msgstr "Telefon"
|
12329 |
+
|
12330 |
+
# @ woocommerce-germanized
|
12331 |
+
#~ msgid "Mark phone number as non-required within checkout."
|
12332 |
+
#~ msgstr "Telefonnummer in der Kasse nicht als Pflichtfeld abfragen."
|
12333 |
+
|
12334 |
+
# @ woocommerce-germanized
|
12335 |
+
#~ msgid "Base Price Units"
|
12336 |
+
#~ msgstr "Grundpreiseinheiten"
|
12337 |
+
|
12338 |
+
# @ woocommerce-germanized
|
12339 |
+
#~ msgid "Calculate base prices automatically."
|
12340 |
+
#~ msgstr "Grundpreis automatisch berechnen."
|
12341 |
+
|
12342 |
+
# @ woocommerce-germanized
|
12343 |
+
#~ msgid "Regular Base Price"
|
12344 |
+
#~ msgstr "Regulärer Grundpreis"
|
12345 |
+
|
12346 |
+
# @ woocommerce-germanized
|
12347 |
+
#~ msgid "Sale Base Price"
|
12348 |
+
#~ msgstr "Angebotsgrundpreis"
|
12349 |
+
|
12350 |
+
# @ woocommerce-germanized
|
12351 |
+
#~ msgid "Base Price"
|
12352 |
+
#~ msgstr "Grundpreis"
|
12353 |
+
|
12354 |
+
# @ woocommerce-germanized
|
12355 |
+
#, fuzzy
|
12356 |
+
#~| msgid ""
|
12357 |
+
#~| "With your order, you agree to have read and understood our {term_link}"
|
12358 |
+
#~| "Terms and Conditions{/term_link} your {revocation_link}Right of "
|
12359 |
+
#~| "Recission{/revocation_link} and our {data_security_link}Privacy Policy{/"
|
12360 |
+
#~| "data_security_link}."
|
12361 |
+
#~ msgid ""
|
12362 |
+
#~ "With your order, you agree to have read and understood our {term_link}"
|
12363 |
+
#~ "Terms and Conditions{/term_link} your {revocation_link}Right of "
|
12364 |
+
#~ "Withdrawal{/revocation_link} and our {data_security_link}Privacy Policy{/"
|
12365 |
+
#~ "data_security_link}."
|
12366 |
+
#~ msgstr ""
|
12367 |
+
#~ "Mit deiner Bestellung erklärst du dich mit unseren {term_link}Allgemeinen "
|
12368 |
+
#~ "Geschäftsbedingungen{/term_link}, {revocation_link}Widerrufsbestimmungen{/"
|
12369 |
+
#~ "revocation_link} und {data_security_link}Datenschutzbestimmungen{/"
|
12370 |
+
#~ "data_security_link} einverstanden."
|
12371 |
+
|
12372 |
+
# @ woocommerce-germanized
|
12373 |
+
#~ msgid "Power of Revocation"
|
12374 |
+
#~ msgstr "Widerrufsbelehrung"
|
12375 |
+
|
12376 |
+
# @ woocommerce-germanized
|
12377 |
+
#~ msgid "Revocation Address"
|
12378 |
+
#~ msgstr "Widerruf richten an"
|
12379 |
+
|
12380 |
+
# @ woocommerce-germanized
|
12381 |
+
#~ msgctxt "Page title"
|
12382 |
+
#~ msgid "Power of Revocation"
|
12383 |
+
#~ msgstr "Widerrufsbelehrung"
|
12384 |
+
|
12385 |
+
# @ woocommerce-germanized
|
12386 |
+
#~ msgctxt "revocation-form"
|
12387 |
+
#~ msgid "Revocation"
|
12388 |
+
#~ msgstr "Widerruf"
|
12389 |
+
|
12390 |
+
# @ woocommerce-germanized
|
12391 |
+
#~ msgid "Revocation"
|
12392 |
+
#~ msgstr "Widerruf"
|
12393 |
+
|
12394 |
+
# @ woocommerce-germanized
|
12395 |
+
#~ msgctxt "revocation-form"
|
12396 |
+
#~ msgid "Forward Revocation"
|
12397 |
+
#~ msgstr "Widerruf erklären"
|
12398 |
+
|
12399 |
+
# @ woocommerce-germanized
|
12400 |
+
#~ msgid "Right of Recission"
|
12401 |
+
#~ msgstr "Widerrufsrecht"
|
12402 |
+
|
12403 |
# @ woocommerce-germanized
|
12404 |
#~ msgid "Shipping costs"
|
12405 |
#~ msgstr "Versandkosten"
|
12748 |
#~ "Passe die Instruktionen an um Kunden über die DHL Sendungsverfolgung zu "
|
12749 |
#~ "informieren. Du kannst einen der folgenden Platzhalter verwenden: %s"
|
12750 |
|
|
|
|
|
|
|
|
|
|
|
12751 |
#~ msgctxt "dhl"
|
12752 |
#~ msgid "Delete"
|
12753 |
#~ msgstr "Löschen"
|
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: 2021-01-
|
6 |
-
"PO-Revision-Date: 2021-01-
|
7 |
"Last-Translator: holzhannes <holzhannes@posteo.de>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE@formal\n"
|
@@ -45,7 +45,7 @@ msgctxt "dhl"
|
|
45 |
msgid "Additional Services"
|
46 |
msgstr "Zusätzliche Leistungen"
|
47 |
|
48 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:
|
49 |
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:514
|
50 |
#, php-format
|
51 |
msgid ""
|
@@ -58,13 +58,13 @@ msgstr ""
|
|
58 |
"(z.B. Gewicht) und versuchen Sie es erneut."
|
59 |
|
60 |
# @ woocommerce-germanized
|
61 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:
|
62 |
msgctxt "dhl"
|
63 |
msgid "Product"
|
64 |
msgstr "Produkt"
|
65 |
|
66 |
# @ woocommerce-germanized
|
67 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:
|
68 |
msgctxt "dhl"
|
69 |
msgid "Page Format"
|
70 |
msgstr "Seitenformat"
|
@@ -362,7 +362,7 @@ msgstr ""
|
|
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:
|
366 |
msgctxt "dhl"
|
367 |
msgid "Printing"
|
368 |
msgstr "Druck"
|
@@ -385,7 +385,7 @@ msgstr "Keine"
|
|
385 |
|
386 |
# @ woocommerce-germanized
|
387 |
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:181
|
388 |
-
#: woocommerce-germanized-dhl/src/Api/Paket.php:
|
389 |
msgctxt "dhl day context"
|
390 |
msgid "None"
|
391 |
msgstr "Keiner"
|
@@ -447,7 +447,7 @@ msgstr "Retourensendung #{shipment_id} zur Bestellung #{order_id}"
|
|
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:
|
451 |
#: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:38
|
452 |
msgctxt "dhl"
|
453 |
msgid "Packstation"
|
@@ -537,83 +537,83 @@ 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:
|
541 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
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:
|
548 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
597 |
msgctxt "dhl"
|
598 |
msgid "DHL Paket"
|
599 |
msgstr "DHL Paket"
|
600 |
|
601 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
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:
|
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:
|
612 |
msgctxt "dhl"
|
613 |
msgid "DHL Warenpost"
|
614 |
msgstr "DHL Warenpost"
|
615 |
|
616 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
617 |
msgctxt "dhl"
|
618 |
msgid "Error while uploading label."
|
619 |
msgstr "Fehler beim Hochladen des Labels."
|
@@ -717,7 +717,7 @@ msgstr ""
|
|
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:
|
721 |
#: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:39
|
722 |
msgctxt "dhl"
|
723 |
msgid "DHL"
|
@@ -841,7 +841,7 @@ msgstr ""
|
|
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:
|
845 |
msgctxt "dhl"
|
846 |
msgid "Automation"
|
847 |
msgstr "Automatisierung"
|
@@ -1394,7 +1394,7 @@ 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:
|
1398 |
msgctxt "dhl"
|
1399 |
msgid "Labels"
|
1400 |
msgstr "Labels"
|
@@ -1913,34 +1913,54 @@ 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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1917 |
msgctxt "dhl"
|
1918 |
msgid "Portokasse"
|
1919 |
msgstr "Portokasse"
|
1920 |
|
1921 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
1922 |
msgctxt "dhl"
|
1923 |
msgid "Balance"
|
1924 |
msgstr "Guthaben"
|
1925 |
|
1926 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
1927 |
msgctxt "dhl"
|
1928 |
msgid "Charge (€)"
|
1929 |
msgstr "Aufladen (€)"
|
1930 |
|
1931 |
# @ woocommerce-germanized
|
1932 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
1933 |
msgctxt "dhl"
|
1934 |
msgid "Products"
|
1935 |
msgstr "Produkte"
|
1936 |
|
1937 |
# @ woocommerce-germanized
|
1938 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
1939 |
msgctxt "dhl"
|
1940 |
msgid "Available Products"
|
1941 |
msgstr "Verfügbare Produkte"
|
1942 |
|
1943 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
1944 |
#, php-format
|
1945 |
msgctxt "dhl"
|
1946 |
msgid ""
|
@@ -1952,44 +1972,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:
|
1956 |
msgctxt "dhl"
|
1957 |
msgid "API Error"
|
1958 |
msgstr "API Fehler"
|
1959 |
|
1960 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
1961 |
msgctxt "dhl"
|
1962 |
msgid "Charge Portokasse"
|
1963 |
msgstr "Portokasse aufladen"
|
1964 |
|
1965 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
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:
|
1972 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
1973 |
msgctxt "dhl"
|
1974 |
msgid "Not yet a customer?"
|
1975 |
msgstr "Noch kein Kunde?"
|
1976 |
|
1977 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
1978 |
msgctxt "dhl"
|
1979 |
msgid "Internetmarke"
|
1980 |
msgstr "Internetmarke"
|
1981 |
|
1982 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
1983 |
msgctxt "dhl"
|
1984 |
msgid "Addresses"
|
1985 |
msgstr "Adressen"
|
1986 |
|
1987 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
1988 |
msgctxt "dhl"
|
1989 |
msgid "Preferred Services"
|
1990 |
msgstr "Wunschpaket"
|
1991 |
|
1992 |
-
#: woocommerce-germanized-dhl/src/Admin/Settings.php:
|
1993 |
msgctxt "dhl"
|
1994 |
msgid "Parcel Pickup"
|
1995 |
msgstr "Standorte"
|
@@ -2079,7 +2099,7 @@ msgstr "Tracked"
|
|
2079 |
|
2080 |
#: woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:43
|
2081 |
#: woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:52
|
2082 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2083 |
msgctxt "dhl"
|
2084 |
msgid "Error while fetching label PDF"
|
2085 |
msgstr "Fehler beim Download des PDF Labels"
|
@@ -2112,7 +2132,7 @@ msgctxt "dhl"
|
|
2112 |
msgid "Error during request: %s"
|
2113 |
msgstr "Fehler beim API Zugriff: %s"
|
2114 |
|
2115 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2116 |
#: woocommerce-germanized-dhl/src/Api/Soap.php:54
|
2117 |
#: woocommerce-germanized-dhl/src/Package.php:84
|
2118 |
#, php-format
|
@@ -2127,69 +2147,69 @@ msgstr ""
|
|
2127 |
"Zweifel Ihren Hoster und stellen Sie sicher, dass der SOAPClient <a href=\"%s"
|
2128 |
"\">installiert</a> ist."
|
2129 |
|
2130 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2131 |
#, php-format
|
2132 |
msgctxt "dhl"
|
2133 |
msgid "Error while instantiating main Internetmarke API: %s"
|
2134 |
msgstr "Fehler beim Aufruf der Internetmarke API: %s"
|
2135 |
|
2136 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2137 |
msgctxt "dhl"
|
2138 |
msgid "Internetmarke is disabled. Please enable Internetmarke."
|
2139 |
msgstr "Internetmarke ist deaktiviert. Bitte aktivieren Sie die Internetmarke."
|
2140 |
|
2141 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2142 |
msgctxt "dhl"
|
2143 |
msgid "Wrong username or password"
|
2144 |
msgstr "Falscher Benutzername oder Passwort"
|
2145 |
|
2146 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2147 |
#, php-format
|
2148 |
msgctxt "dhl"
|
2149 |
msgid "until %s"
|
2150 |
msgstr "bis %s"
|
2151 |
|
2152 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2153 |
#, php-format
|
2154 |
msgctxt "dhl"
|
2155 |
msgid "Length: %s"
|
2156 |
msgstr "Länge: %s"
|
2157 |
|
2158 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2159 |
#, php-format
|
2160 |
msgctxt "dhl"
|
2161 |
msgid "Width: %s"
|
2162 |
msgstr "Breite: %s"
|
2163 |
|
2164 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2165 |
#, php-format
|
2166 |
msgctxt "dhl"
|
2167 |
msgid "Height: %s"
|
2168 |
msgstr "Höhe: %s"
|
2169 |
|
2170 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2171 |
#, php-format
|
2172 |
msgctxt "dhl"
|
2173 |
msgid "Weight: %s"
|
2174 |
msgstr "Gewicht: %s"
|
2175 |
|
2176 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2177 |
msgctxt "dhl"
|
2178 |
msgid "Total"
|
2179 |
msgstr "Gesamt"
|
2180 |
|
2181 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2182 |
#, php-format
|
2183 |
msgctxt "dhl"
|
2184 |
msgid "Could not refund post label: %s"
|
2185 |
msgstr "Deutsche Post Label konnte nicht rückerstattet werden: %s"
|
2186 |
|
2187 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2188 |
msgctxt "dhl"
|
2189 |
msgid "Refund API could not be instantiated"
|
2190 |
msgstr "Die API für Rückerstattungen konnte nicht initialisiert werden"
|
2191 |
|
2192 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2193 |
#: woocommerce-germanized-dhl/src/Api/LabelSoap.php:379
|
2194 |
#: woocommerce-germanized-dhl/src/Api/ReturnRest.php:34
|
2195 |
#, php-format
|
@@ -2197,12 +2217,12 @@ msgctxt "dhl"
|
|
2197 |
msgid "Could not fetch shipment %d."
|
2198 |
msgstr "Sendung %d konnte nicht gefunden werden."
|
2199 |
|
2200 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2201 |
msgctxt "dhl"
|
2202 |
msgid "Error while generating shop order id."
|
2203 |
msgstr "Fehler beim Erzeugen der Shop Order Id."
|
2204 |
|
2205 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2206 |
#, php-format
|
2207 |
msgctxt "dhl"
|
2208 |
msgid ""
|
@@ -2212,14 +2232,14 @@ msgstr ""
|
|
2212 |
"Fehler beim Kauf des Labels. Bitte <a href=\"%s\">aktualisieren</a>Sie die "
|
2213 |
"Produktliste manuell und versuchen Sie es erneut."
|
2214 |
|
2215 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2216 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2217 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2218 |
msgctxt "dhl"
|
2219 |
msgid "Error while downloading the PDF stamp."
|
2220 |
msgstr "Fehler beim Download des PDF Labels."
|
2221 |
|
2222 |
-
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:
|
2223 |
msgctxt "dhl"
|
2224 |
msgid "Invalid stamp response."
|
2225 |
msgstr "Fehlerhafte Label Rückmeldung."
|
@@ -2323,38 +2343,38 @@ msgctxt "dhl"
|
|
2323 |
msgid "Parcel API not available"
|
2324 |
msgstr "Paket API ist nicht erreichbar"
|
2325 |
|
2326 |
-
#: woocommerce-germanized-dhl/src/Api/Paket.php:
|
2327 |
msgctxt "dhl"
|
2328 |
msgid "Mon"
|
2329 |
msgstr "Mo"
|
2330 |
|
2331 |
-
#: woocommerce-germanized-dhl/src/Api/Paket.php:
|
2332 |
msgctxt "dhl"
|
2333 |
msgid "Tue"
|
2334 |
msgstr "Di"
|
2335 |
|
2336 |
-
#: woocommerce-germanized-dhl/src/Api/Paket.php:
|
2337 |
msgctxt "dhl"
|
2338 |
msgid "Wed"
|
2339 |
msgstr "Mi"
|
2340 |
|
2341 |
-
#: woocommerce-germanized-dhl/src/Api/Paket.php:
|
2342 |
msgctxt "dhl"
|
2343 |
msgid "Thu"
|
2344 |
msgstr "Do"
|
2345 |
|
2346 |
-
#: woocommerce-germanized-dhl/src/Api/Paket.php:
|
2347 |
msgctxt "dhl"
|
2348 |
msgid "Fri"
|
2349 |
msgstr "Fr"
|
2350 |
|
2351 |
# @ woocommerce-germanized
|
2352 |
-
#: woocommerce-germanized-dhl/src/Api/Paket.php:
|
2353 |
msgctxt "dhl"
|
2354 |
msgid "Sat"
|
2355 |
msgstr "Sa"
|
2356 |
|
2357 |
-
#: woocommerce-germanized-dhl/src/Api/Paket.php:
|
2358 |
msgctxt "dhl"
|
2359 |
msgid "Sun"
|
2360 |
msgstr "So"
|
@@ -2412,7 +2432,7 @@ msgctxt "dhl"
|
|
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:
|
2416 |
msgctxt "dhl"
|
2417 |
msgid "Invalid label."
|
2418 |
msgstr "Ungültiges Label."
|
@@ -2424,7 +2444,7 @@ msgctxt "dhl time-span"
|
|
2424 |
msgid "%s-%s"
|
2425 |
msgstr "%s-%s"
|
2426 |
|
2427 |
-
#: woocommerce-germanized-dhl/src/Package.php:
|
2428 |
msgctxt "dhl"
|
2429 |
msgid ""
|
2430 |
"Please check the street field and make sure to provide a valid street number."
|
@@ -2433,15 +2453,15 @@ msgstr ""
|
|
2433 |
"angegeben wurde."
|
2434 |
|
2435 |
# @ woocommerce-germanized
|
2436 |
-
#: woocommerce-germanized-dhl/src/Package.php:
|
2437 |
msgctxt "dhl"
|
2438 |
msgid "Germany"
|
2439 |
msgstr "Deutschland"
|
2440 |
|
2441 |
# @ woocommerce-germanized
|
2442 |
#: woocommerce-germanized-dhl/src/ParcelLocator.php:92
|
2443 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2444 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2445 |
msgctxt "dhl"
|
2446 |
msgid "Address Type"
|
2447 |
msgstr "Adresstyp"
|
@@ -2467,30 +2487,30 @@ msgstr ""
|
|
2467 |
"eintragen."
|
2468 |
|
2469 |
#: woocommerce-germanized-dhl/src/ParcelLocator.php:188
|
2470 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2471 |
msgctxt "dhl"
|
2472 |
msgid "Invalid address type."
|
2473 |
msgstr "Ungültiger Adresstyp."
|
2474 |
|
2475 |
# @ woocommerce-germanized
|
2476 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2477 |
msgctxt "dhl"
|
2478 |
msgid "Sorry, but delivery to packstation is not available."
|
2479 |
msgstr ""
|
2480 |
"Entschuldigung, die Lieferung an eine Packstation steht nicht zur Verfügung."
|
2481 |
|
2482 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2483 |
msgctxt "dhl"
|
2484 |
msgid "Sorry, but delivery to parcel shops is not available."
|
2485 |
msgstr ""
|
2486 |
"Entschuldigung, die Lieferung an einen Paketshop steht nicht zur Verfügung."
|
2487 |
|
2488 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2489 |
msgctxt "dhl"
|
2490 |
msgid "Sorry, but delivery to post offices is not available."
|
2491 |
msgstr "Entschuldigung, die Lieferung an Postfilialen ist nicht verfügbar."
|
2492 |
|
2493 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2494 |
#, php-format
|
2495 |
msgctxt "dhl"
|
2496 |
msgid "Please indicate shipment to %s by one of the following values: %s."
|
@@ -2498,7 +2518,7 @@ msgstr ""
|
|
2498 |
"Bitte identifizieren Sie die Lieferung an %s durch die Eingabe einer der "
|
2499 |
"folgenden Werte: %s."
|
2500 |
|
2501 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2502 |
msgctxt "dhl"
|
2503 |
msgid ""
|
2504 |
"Your DHL customer number (Post number) is not valid. Please check your "
|
@@ -2507,7 +2527,7 @@ msgstr ""
|
|
2507 |
"Ihre DHL Kundennummer (Postnummer) ist nicht gültig. Bitte überprüfen Sie "
|
2508 |
"Ihre Eingabe."
|
2509 |
|
2510 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2511 |
msgctxt "dhl"
|
2512 |
msgid ""
|
2513 |
"Your DHL customer number (Post number) is needed to ship to a packstation."
|
@@ -2515,64 +2535,64 @@ msgstr ""
|
|
2515 |
"Ihre DHL Kundennummer (Postnummer) wird für den Versand an eine Packstation "
|
2516 |
"benötigt."
|
2517 |
|
2518 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2519 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2520 |
msgctxt "dhl"
|
2521 |
msgid "Branch"
|
2522 |
msgstr "Filiale"
|
2523 |
|
2524 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2525 |
msgctxt "dhl"
|
2526 |
msgid "Postnumber "
|
2527 |
msgstr "Postnummer "
|
2528 |
|
2529 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2530 |
#, php-format
|
2531 |
msgctxt "dhl"
|
2532 |
msgid "e.g. %s 456"
|
2533 |
msgstr "z.B. %s 456"
|
2534 |
|
2535 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2536 |
msgctxt "dhl"
|
2537 |
msgid "Branches"
|
2538 |
msgstr "Filialen"
|
2539 |
|
2540 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2541 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2542 |
msgctxt "dhl"
|
2543 |
msgid "DHL customer number (Post number)"
|
2544 |
msgstr "DHL Kundennummer (Postnummer)"
|
2545 |
|
2546 |
# @ woocommerce-germanized
|
2547 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2548 |
msgctxt "dhl"
|
2549 |
msgid "Regular Address"
|
2550 |
msgstr "Normale Adresse"
|
2551 |
|
2552 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2553 |
msgctxt "dhl"
|
2554 |
msgid "Not yet a DHL customer?"
|
2555 |
msgstr "Noch kein DHL Kunde?"
|
2556 |
|
2557 |
# @ woocommerce-germanized
|
2558 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2559 |
msgctxt "dhl"
|
2560 |
msgid "Register now"
|
2561 |
msgstr "Jetzt registrieren"
|
2562 |
|
2563 |
# @ woocommerce-germanized
|
2564 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2565 |
#, php-format
|
2566 |
msgctxt "dhl"
|
2567 |
msgid "Search %s"
|
2568 |
msgstr "%s suchen"
|
2569 |
|
2570 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2571 |
msgctxt "dhl"
|
2572 |
msgid "No DHL locations found"
|
2573 |
msgstr "Keine DHL Standorte gefunden"
|
2574 |
|
2575 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2576 |
#, php-format
|
2577 |
msgctxt "dhl"
|
2578 |
msgid ""
|
@@ -2583,12 +2603,12 @@ msgstr ""
|
|
2583 |
"einen %s oder %s."
|
2584 |
|
2585 |
# @ woocommerce-germanized
|
2586 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2587 |
msgctxt "dhl"
|
2588 |
msgid "DHL location"
|
2589 |
msgstr "DHL Standort"
|
2590 |
|
2591 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2592 |
msgctxt "dhl"
|
2593 |
msgid "retry"
|
2594 |
msgstr "Erneut versuchen"
|
@@ -2851,7 +2871,7 @@ msgstr "Verpackung"
|
|
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:
|
2855 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:24
|
2856 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:688
|
2857 |
msgctxt "shipments"
|
@@ -2897,14 +2917,14 @@ msgstr "Position hinzufügen"
|
|
2897 |
|
2898 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:189
|
2899 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:45
|
2900 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2901 |
msgctxt "shipments"
|
2902 |
msgid "Item"
|
2903 |
msgstr "Position"
|
2904 |
|
2905 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:190
|
2906 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:46
|
2907 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2908 |
#: woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:55
|
2909 |
#: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:37
|
2910 |
#: woocommerce-germanized-shipments/templates/shipment/shipment-details.php:60
|
@@ -2984,9 +3004,9 @@ 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:
|
2988 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2989 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2990 |
#: woocommerce-germanized-shipments/src/Admin/Settings.php:80
|
2991 |
#: woocommerce-germanized-shipments/src/Admin/Settings.php:177
|
2992 |
#: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:36
|
@@ -3016,10 +3036,10 @@ msgstr "%s #%s"
|
|
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:
|
3020 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3021 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3022 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3023 |
#: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:20
|
3024 |
msgctxt "shipments"
|
3025 |
msgid "Shipments"
|
@@ -3057,7 +3077,7 @@ msgstr "Titel"
|
|
3057 |
|
3058 |
# @ woocommerce-germanized
|
3059 |
#: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:12
|
3060 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3061 |
#: woocommerce-germanized-shipments/src/ShippingProvider.php:564
|
3062 |
msgctxt "shipments"
|
3063 |
msgid "Description"
|
@@ -3114,7 +3134,7 @@ msgid "Download"
|
|
3114 |
msgstr "Download"
|
3115 |
|
3116 |
#: woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:39
|
3117 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3118 |
msgctxt "shipments"
|
3119 |
msgid "Create new label"
|
3120 |
msgstr "Neues Label erstellen"
|
@@ -3282,8 +3302,8 @@ msgid "Text to appear below the main email content."
|
|
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:
|
3286 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
3287 |
#: woocommerce-germanized-shipments/templates/shipment/shipment-details-address.php:28
|
3288 |
msgctxt "shipments"
|
3289 |
msgid "N/A"
|
@@ -3346,7 +3366,7 @@ 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:
|
3350 |
msgctxt "shipments"
|
3351 |
msgid "Shipment"
|
3352 |
msgstr "Sendung"
|
@@ -3368,7 +3388,7 @@ 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:
|
3372 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:854
|
3373 |
msgctxt "shipments"
|
3374 |
msgid "Shipped"
|
@@ -3389,49 +3409,49 @@ msgctxt "shipments"
|
|
3389 |
msgid "Returned"
|
3390 |
msgstr "Retourniert"
|
3391 |
|
3392 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
3393 |
msgctxt "shipments"
|
3394 |
msgid "Draft"
|
3395 |
msgstr "Entwurf"
|
3396 |
|
3397 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
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:
|
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:
|
3411 |
msgctxt "shipments"
|
3412 |
msgid "Requested"
|
3413 |
msgstr "Beantragt"
|
3414 |
|
3415 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
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:
|
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:
|
3428 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
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:
|
3434 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
3435 |
#: woocommerce-germanized-shipments/src/ReturnShipment.php:428
|
3436 |
#: woocommerce-germanized-shipments/src/ReturnShipment.php:499
|
3437 |
#: woocommerce-germanized-shipments/src/SimpleShipment.php:118
|
@@ -3440,57 +3460,57 @@ 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:
|
3444 |
msgctxt "shipments"
|
3445 |
msgid "Invalid order item"
|
3446 |
msgstr "Ungültige Bestellposition"
|
3447 |
|
3448 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
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:
|
3455 |
msgctxt "shipments"
|
3456 |
msgid "None"
|
3457 |
msgstr "Keiner"
|
3458 |
|
3459 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
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:
|
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:
|
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:
|
3480 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3481 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:30
|
3482 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:694
|
3483 |
msgctxt "shipments"
|
3484 |
msgid "Actions"
|
3485 |
msgstr "Aktionen"
|
3486 |
|
3487 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
3488 |
msgctxt "shipments"
|
3489 |
msgid "View"
|
3490 |
msgstr "Anzeigen"
|
3491 |
|
3492 |
# @ woocommerce-germanized
|
3493 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
3494 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:865
|
3495 |
#: woocommerce-germanized-shipments/src/Ajax.php:337
|
3496 |
msgctxt "shipments"
|
@@ -3528,26 +3548,56 @@ msgctxt "shipments"
|
|
3528 |
msgid "View order"
|
3529 |
msgstr "Bestellung ansehen"
|
3530 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3531 |
# @ woocommerce-germanized
|
3532 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3533 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3534 |
#: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:36
|
3535 |
msgctxt "shipments"
|
3536 |
msgid "Reason"
|
3537 |
msgstr "Rücksendegrund"
|
3538 |
|
3539 |
# @ woocommerce-germanized
|
3540 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3541 |
msgctxt "shipments"
|
3542 |
msgid "Return reasons"
|
3543 |
msgstr "Rücksendegründe"
|
3544 |
|
3545 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3546 |
msgctxt "shipments"
|
3547 |
msgid "Reason code"
|
3548 |
msgstr "Rücksendegrund (Code)"
|
3549 |
|
3550 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3551 |
msgctxt "shipments"
|
3552 |
msgid "The reason code is used to identify the reason."
|
3553 |
msgstr ""
|
@@ -3555,62 +3605,62 @@ msgstr ""
|
|
3555 |
"identifizieren zu können."
|
3556 |
|
3557 |
# @ woocommerce-germanized
|
3558 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3559 |
msgctxt "shipments"
|
3560 |
msgid "Choose a reason text."
|
3561 |
msgstr "Beschreibung für den Grund."
|
3562 |
|
3563 |
# @ woocommerce-germanized
|
3564 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3565 |
msgctxt "shipments"
|
3566 |
msgid "+ Add reason"
|
3567 |
msgstr "+ Grund hinzufügen"
|
3568 |
|
3569 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3570 |
msgctxt "shipments"
|
3571 |
msgid "Remove selected reason(s)"
|
3572 |
msgstr "Ausgewählte Gründe löschen"
|
3573 |
|
3574 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3575 |
msgctxt "shipments"
|
3576 |
msgid "Available Packaging"
|
3577 |
msgstr "Verfügbare Verpackungen"
|
3578 |
|
3579 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3580 |
msgctxt "shipments"
|
3581 |
msgid "A description to help you identify the packaging."
|
3582 |
msgstr ""
|
3583 |
"Eine Beschreibung die Ihnen dabei hilft Verpackungen zu identifizieren."
|
3584 |
|
3585 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3586 |
msgctxt "shipments"
|
3587 |
msgid "Type"
|
3588 |
msgstr "Typ"
|
3589 |
|
3590 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3591 |
#, php-format
|
3592 |
msgctxt "shipments"
|
3593 |
msgid "Weight (%s)"
|
3594 |
msgstr "Gewicht (%s)"
|
3595 |
|
3596 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3597 |
msgctxt "shipments"
|
3598 |
msgid "The weight of the packaging."
|
3599 |
msgstr "Das Gewicht der Verpackung."
|
3600 |
|
3601 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3602 |
#, php-format
|
3603 |
msgctxt "shipments"
|
3604 |
msgid "Dimensions (LxWxH, %s)"
|
3605 |
msgstr "Abmessungen (LxBxH, %s)"
|
3606 |
|
3607 |
# @ woocommerce-germanized
|
3608 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3609 |
msgctxt "shipments"
|
3610 |
msgid "Max weight (kg)"
|
3611 |
msgstr "Max. Gewicht (kg)"
|
3612 |
|
3613 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3614 |
msgctxt "shipments"
|
3615 |
msgid ""
|
3616 |
"The maximum weight this packaging can hold. Leave empty to not restrict "
|
@@ -3619,68 +3669,68 @@ msgstr ""
|
|
3619 |
"Das maximale Gewicht, das diese Verpackung tragen kann. Leer lassen um das "
|
3620 |
"Gewicht nicht zu begrenzen."
|
3621 |
|
3622 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3623 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3624 |
msgctxt "shipments"
|
3625 |
msgid "Length"
|
3626 |
msgstr "Länge"
|
3627 |
|
3628 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3629 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3630 |
msgctxt "shipments"
|
3631 |
msgid "Width"
|
3632 |
msgstr "Breite"
|
3633 |
|
3634 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3635 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3636 |
msgctxt "shipments"
|
3637 |
msgid "Height"
|
3638 |
msgstr "Höhe"
|
3639 |
|
3640 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3641 |
msgctxt "shipments"
|
3642 |
msgid "+ Add packaging"
|
3643 |
msgstr "+ Verpackung hinzufügen"
|
3644 |
|
3645 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3646 |
msgctxt "shipments"
|
3647 |
msgid "Remove selected packaging"
|
3648 |
msgstr "Ausgewählte Verpackung löschen"
|
3649 |
|
3650 |
# @ woocommerce-germanized
|
3651 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3652 |
msgctxt "shipments"
|
3653 |
msgid "Create shipments"
|
3654 |
msgstr "Sendungen erstellen"
|
3655 |
|
3656 |
# @ woocommerce-germanized
|
3657 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3658 |
msgctxt "shipments"
|
3659 |
msgid "Search shipments"
|
3660 |
msgstr "Sendungen suchen"
|
3661 |
|
3662 |
# @ woocommerce-germanized
|
3663 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3664 |
msgctxt "shipments"
|
3665 |
msgid "Search returns"
|
3666 |
msgstr "Retouren suchen"
|
3667 |
|
3668 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3669 |
msgctxt "shipments"
|
3670 |
msgid "Do you really want to delete the shipment?"
|
3671 |
msgstr "Möchten Sie die Sendung wirklich löschen?"
|
3672 |
|
3673 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3674 |
msgctxt "shipments"
|
3675 |
msgid "Do you really want to delete the label?"
|
3676 |
msgstr "Möchten Sie das Label wirklich löschen?"
|
3677 |
|
3678 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3679 |
msgctxt "shipments"
|
3680 |
msgid "Please save the shipment before creating a new label"
|
3681 |
msgstr "Bitte speichern Sie die Sendung bevor Sie ein neues Label erstellen"
|
3682 |
|
3683 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
3684 |
msgctxt "shipments"
|
3685 |
msgid ""
|
3686 |
"Do you really want to delete the shipping provider? Some of your existing "
|
@@ -4697,7 +4747,7 @@ msgid "Letter C4"
|
|
4697 |
msgstr "Brief C4"
|
4698 |
|
4699 |
# @ woocommerce-germanized
|
4700 |
-
#: woocommerce-germanized-shipments/src/Package.php:
|
4701 |
msgctxt "shipments"
|
4702 |
msgid "Sorry, this order is invalid and cannot be returned."
|
4703 |
msgstr "Sorry, diese Bestellung existiert nicht."
|
@@ -4709,7 +4759,7 @@ msgid "%1$s (%2$s, %3$s)"
|
|
4709 |
msgstr "%1$s (%2$s, %3$s)"
|
4710 |
|
4711 |
#: woocommerce-germanized-shipments/src/ReturnShipment.php:356
|
4712 |
-
#: woocommerce-germanized-shipments/src/Shipment.php:
|
4713 |
#, php-format
|
4714 |
msgctxt "full name"
|
4715 |
msgid "%1$s %2$s"
|
@@ -5260,8 +5310,8 @@ msgstr "l"
|
|
5260 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:549
|
5261 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:559
|
5262 |
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:449
|
5263 |
-
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:
|
5264 |
-
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:
|
5265 |
msgid "incl. VAT"
|
5266 |
msgstr "inkl. MwSt."
|
5267 |
|
@@ -5369,7 +5419,8 @@ msgstr ""
|
|
5369 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:134
|
5370 |
#, php-format
|
5371 |
msgid ""
|
5372 |
-
"To insert a link to your
|
|
|
5373 |
msgstr ""
|
5374 |
"Um einen Link zur Widerrufsbelehrung einzufügen, verwenden Sie den folgenden "
|
5375 |
"Platzhalter: %s"
|
@@ -5391,20 +5442,20 @@ msgstr ""
|
|
5391 |
|
5392 |
# @ woocommerce-germanized
|
5393 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:122
|
5394 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
5395 |
msgid "Downloadable Product"
|
5396 |
msgstr "Herunterladbares Produkt"
|
5397 |
|
5398 |
# @ woocommerce-germanized
|
5399 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:123
|
5400 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
5401 |
msgid "Virtual Product"
|
5402 |
msgstr "Virtuelles Produkt"
|
5403 |
|
5404 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:124
|
5405 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:46
|
5406 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:168
|
5407 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
5408 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:146
|
5409 |
msgid "Service"
|
5410 |
msgstr "Dienstleistung"
|
@@ -5441,9 +5492,9 @@ msgstr "Digitale Produkttypen"
|
|
5441 |
# @ woocommerce-germanized
|
5442 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:139
|
5443 |
msgid ""
|
5444 |
-
"Select product types for which the loss of
|
5445 |
-
"Product types like \"simple product\" may be
|
5446 |
-
"virtual and downloadable products."
|
5447 |
msgstr ""
|
5448 |
"Wählen Sie die Produkttypen aus, für die ein Hinweis für den Verlust des "
|
5449 |
"Widerrufsrechts angezeigt werden soll. Produkttypen wie \"einfaches Produkt"
|
@@ -5512,8 +5563,8 @@ msgstr "Gleiche wie übergeordnet"
|
|
5512 |
|
5513 |
# @ woocommerce-germanized
|
5514 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-product-categories.php:82
|
5515 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
5516 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
5517 |
msgid "None"
|
5518 |
msgstr "Keine"
|
5519 |
|
@@ -5678,7 +5729,8 @@ msgstr "AGB"
|
|
5678 |
# @ woocommerce-germanized
|
5679 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:46
|
5680 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:63
|
5681 |
-
|
|
|
5682 |
msgstr "Widerrufsbelehrung"
|
5683 |
|
5684 |
# @ woocommerce-germanized
|
@@ -5886,18 +5938,20 @@ msgstr "Grundpreis automatisch berechnen"
|
|
5886 |
|
5887 |
# @ woocommerce-germanized
|
5888 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:107
|
|
|
5889 |
msgid "Regular Unit Price"
|
5890 |
msgstr "Einheitspreis"
|
5891 |
|
5892 |
# @ woocommerce-germanized
|
5893 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:114
|
|
|
5894 |
msgid "Sale Unit Price"
|
5895 |
msgstr "Angebots-Einheitspreis"
|
5896 |
|
5897 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:121
|
5898 |
#, php-format
|
5899 |
msgid ""
|
5900 |
-
"To enable unit prices on variation level please choose a unit and
|
5901 |
"units within %s."
|
5902 |
msgstr ""
|
5903 |
"Um Einheitspreise auf Variationen-Ebene zu aktivieren, bitte Einheit und "
|
@@ -5984,13 +6038,13 @@ msgstr ""
|
|
5984 |
|
5985 |
# @ woocommerce-germanized
|
5986 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:224
|
5987 |
-
msgid "
|
5988 |
msgstr "Grundpreiseinheiten"
|
5989 |
|
5990 |
# @ woocommerce-germanized
|
5991 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:227
|
5992 |
msgid ""
|
5993 |
-
"
|
5994 |
"price unit amount."
|
5995 |
msgstr ""
|
5996 |
"Anzahl der Grundpreiseinheiten. Beispiel Grundpreis: 0,99 / 100 ml. Füge "
|
@@ -5998,18 +6052,8 @@ msgstr ""
|
|
5998 |
|
5999 |
# @ woocommerce-germanized
|
6000 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:250
|
6001 |
-
msgid "Calculate
|
6002 |
-
msgstr "Grundpreis automatisch berechnen
|
6003 |
-
|
6004 |
-
# @ woocommerce-germanized
|
6005 |
-
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:254
|
6006 |
-
msgid "Regular Base Price"
|
6007 |
-
msgstr "Regulärer Grundpreis"
|
6008 |
-
|
6009 |
-
# @ woocommerce-germanized
|
6010 |
-
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:259
|
6011 |
-
msgid "Sale Base Price"
|
6012 |
-
msgstr "Angebotsgrundpreis"
|
6013 |
|
6014 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:271
|
6015 |
msgid "Adds an age verification checkbox while purchasing this product."
|
@@ -6153,7 +6197,7 @@ msgstr "PDF Rechnungen & Lieferscheine"
|
|
6153 |
|
6154 |
# @ woocommerce-germanized
|
6155 |
#: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-pro.php:30
|
6156 |
-
msgid "Generator for terms & conditions and
|
6157 |
msgstr "Schnittstelle für Mustertexte-Generatoren für AGB & Widerrufsbelehrung"
|
6158 |
|
6159 |
# @ woocommerce-germanized
|
@@ -6885,7 +6929,7 @@ msgstr ""
|
|
6885 |
# @ woocommerce-germanized
|
6886 |
# @ woocommerce
|
6887 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:163
|
6888 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6889 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:137
|
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
|
@@ -6992,7 +7036,7 @@ msgstr ""
|
|
6992 |
|
6993 |
# @ woocommerce-germanized
|
6994 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:30
|
6995 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6996 |
#: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:174
|
6997 |
msgid "Legal Pages"
|
6998 |
msgstr "Rechtlich relevante Seiten"
|
@@ -7051,7 +7095,7 @@ msgstr "Sie haben noch keine AGB? <a href=\"%s\">Jetzt generieren</a>!"
|
|
7051 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:64
|
7052 |
msgid ""
|
7053 |
"This page should contain information regarding your customer's Right of "
|
7054 |
-
"
|
7055 |
msgstr ""
|
7056 |
"Diese Seite sollte Ihre Widerrufsbelehrung enthalten. Nutzen Sie folgenden "
|
7057 |
"Shortcode um ein Widerrufsformular in die Seite einzubinden: "
|
@@ -7064,16 +7108,15 @@ msgid "Don't have a revocation page yet? <a href=\"%s\">Generate now</a>!"
|
|
7064 |
msgstr ""
|
7065 |
"Sie haben noch keine Widerrufsbelehrung? <a href=\"%s\">Jetzt generieren</a>!"
|
7066 |
|
7067 |
-
# @ woocommerce-germanized
|
7068 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:74
|
7069 |
-
msgid "
|
7070 |
msgstr "Widerruf richten an"
|
7071 |
|
7072 |
# @ woocommerce-germanized
|
7073 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:75
|
7074 |
msgid ""
|
7075 |
"Type in an address, telephone/telefax number, email address which is to be "
|
7076 |
-
"used as
|
7077 |
msgstr ""
|
7078 |
"Geben Sie hier die Adresse, Telefon- und Faxnummer, E-Mail Adresse usw. an, "
|
7079 |
"an die Ihre Kunden ihren Widerruf richten sollen"
|
@@ -7229,7 +7272,7 @@ msgstr "Jetzt hinzufügen"
|
|
7229 |
|
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:
|
7233 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:131
|
7234 |
msgid "Notice Text"
|
7235 |
msgstr "Hinweistext"
|
@@ -7247,32 +7290,23 @@ msgid ""
|
|
7247 |
"UStG."
|
7248 |
msgstr "Kein Mehrwertsteuerausweis, da Kleinunternehmer nach §19 (1) UStG."
|
7249 |
|
7250 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:232
|
7251 |
-
msgid "Phone"
|
7252 |
-
msgstr "Telefon"
|
7253 |
-
|
7254 |
# @ woocommerce-germanized
|
7255 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:233
|
7256 |
-
msgid "Mark phone number as non-required within checkout."
|
7257 |
-
msgstr "Telefonnummer in der Kasse nicht als Pflichtfeld abfragen."
|
7258 |
-
|
7259 |
-
# @ woocommerce-germanized
|
7260 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:240
|
7261 |
msgid "Add a title field to the address within checkout."
|
7262 |
msgstr "Lasse Kunden eine Anrede auswählen."
|
7263 |
|
7264 |
# @ woocommerce-germanized
|
7265 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7266 |
msgid "Disallow cancellations"
|
7267 |
msgstr "Stornierungen verhindern"
|
7268 |
|
7269 |
# @ woocommerce-germanized
|
7270 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7271 |
msgid "Don't allow customers to manually cancel orders."
|
7272 |
msgstr "Stornierung von Bestellungen durch den Kunden verhindern."
|
7273 |
|
7274 |
# @ woocommerce-germanized
|
7275 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7276 |
msgid ""
|
7277 |
"By default payment methods like PayPal allow order cancellation by clicking "
|
7278 |
"the abort link. This option will stop customers from manually cancel orders."
|
@@ -7281,17 +7315,17 @@ msgstr ""
|
|
7281 |
"Kunden den Abbrechen-Link verwendet. Diese Option verhindert den manuellen "
|
7282 |
"Abbruch einer Bestellung durch den Kunden."
|
7283 |
|
7284 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7285 |
msgid "Disallow gateway choosing"
|
7286 |
msgstr "Wechsel der Zahlungsart"
|
7287 |
|
7288 |
# @ woocommerce-germanized
|
7289 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7290 |
msgid "Don't allow customers to change the payment gateway after ordering."
|
7291 |
msgstr ""
|
7292 |
"Wechsel der Zahlungsart nach der Bestellung durch den Kunden verhindern."
|
7293 |
|
7294 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7295 |
msgid ""
|
7296 |
"Customers paying through a gateway which allows later payment (e.g. PayPal) "
|
7297 |
"will find a link within their customer account which redirects them to a pay "
|
@@ -7310,17 +7344,17 @@ msgstr ""
|
|
7310 |
"PayPal weiter."
|
7311 |
|
7312 |
# @ woocommerce-germanized
|
7313 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7314 |
msgid "Free shipping"
|
7315 |
msgstr "Kostenloser Versand"
|
7316 |
|
7317 |
# @ woocommerce-germanized
|
7318 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7319 |
msgid "Force free shipping method if available."
|
7320 |
msgstr "Erzwinge kostenlosen Versand wenn die Methode zur Verfügung steht."
|
7321 |
|
7322 |
# @ woocommerce-germanized
|
7323 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7324 |
msgid ""
|
7325 |
"By default WooCommerce will let customers choose other shipping methods than "
|
7326 |
"free shipping (if available). This option will force free shipping if "
|
@@ -7331,11 +7365,11 @@ msgstr ""
|
|
7331 |
"Versand, sobald dieser verfügbar ist."
|
7332 |
|
7333 |
# @ woocommerce-germanized
|
7334 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7335 |
msgid "Exclude Methods"
|
7336 |
msgstr "Deaktivierte Methoden"
|
7337 |
|
7338 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7339 |
msgid ""
|
7340 |
"Optionally choose methods which should be excluded from hiding when free "
|
7341 |
"shipping is available (e.g. express shipping options)."
|
@@ -7344,37 +7378,17 @@ msgstr ""
|
|
7344 |
"wenn kostenloser Versand verfügbar ist (z.B. Express-Versandmethoden)."
|
7345 |
|
7346 |
# @ woocommerce-germanized
|
7347 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7348 |
-
msgid "Price Range Format"
|
7349 |
-
msgstr "Preisspannen-Format"
|
7350 |
-
|
7351 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:290
|
7352 |
-
msgid ""
|
7353 |
-
"Adjust the price range format e.g. for variable products. Use {min_price} as "
|
7354 |
-
"placeholder for the minimum price. Use {max_price} as placeholder for the "
|
7355 |
-
"maximum price."
|
7356 |
-
msgstr ""
|
7357 |
-
"Passt das Format von Preisspannen z.B. für variable Produkte an. Verwenden "
|
7358 |
-
"Sie {min_price} als Platzhalter für den minimalen Preis und {max_price} als "
|
7359 |
-
"Platzhalter für den höchsten Preis."
|
7360 |
-
|
7361 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:294
|
7362 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:861
|
7363 |
-
msgid "{min_price} – {max_price}"
|
7364 |
-
msgstr "{min_price} – {max_price}"
|
7365 |
-
|
7366 |
-
# @ woocommerce-germanized
|
7367 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:298
|
7368 |
msgid "Add to Cart"
|
7369 |
msgstr "Zum Warenkorb Button"
|
7370 |
|
7371 |
# @ woocommerce-germanized
|
7372 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7373 |
msgid "Show add to cart button on listings."
|
7374 |
msgstr "Zeige den „zum Warenkorb“ Button in Produktlisten an."
|
7375 |
|
7376 |
# @ woocommerce-germanized
|
7377 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7378 |
msgid ""
|
7379 |
"unset this option if you don't want to show the add to cart button within "
|
7380 |
"the product listings"
|
@@ -7382,19 +7396,19 @@ msgstr ""
|
|
7382 |
"Deaktivieren Sie diese Option, wenn Sie den zum Warenkorb Button nicht "
|
7383 |
"innerhalb von Produktauflistungen darstellen möchten"
|
7384 |
|
7385 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7386 |
msgid "Link"
|
7387 |
msgstr "Verlinkung"
|
7388 |
|
7389 |
# @ woocommerce-germanized
|
7390 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7391 |
msgid "Link to product details page instead of add to cart within listings."
|
7392 |
msgstr ""
|
7393 |
"Ersetze den zum-Warenkorb-Link durch einen Link zur Produktdetailseite in "
|
7394 |
"Produktlisten."
|
7395 |
|
7396 |
# @ woocommerce-germanized
|
7397 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7398 |
msgid ""
|
7399 |
"Decide whether you like to link to your product's details page instead of "
|
7400 |
"displaying an add to cart button within product listings."
|
@@ -7404,17 +7418,17 @@ msgstr ""
|
|
7404 |
"einfach diese Option."
|
7405 |
|
7406 |
# @ woocommerce-germanized
|
7407 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7408 |
msgid "Product Details Text"
|
7409 |
msgstr "Produktdetails Text"
|
7410 |
|
7411 |
# @ woocommerce-germanized
|
7412 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7413 |
msgid "Details"
|
7414 |
msgstr "Details"
|
7415 |
|
7416 |
# @ woocommerce-germanized
|
7417 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7418 |
msgid ""
|
7419 |
"If you have chosen to link to product details page instead of add to cart "
|
7420 |
"URL you may want to change the button text."
|
@@ -7424,11 +7438,11 @@ msgstr ""
|
|
7424 |
"einen Button-Text vergeben."
|
7425 |
|
7426 |
# @ woocommerce-germanized
|
7427 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7428 |
msgid "Overview"
|
7429 |
msgstr "Übersicht"
|
7430 |
|
7431 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7432 |
msgid ""
|
7433 |
"You can always return to the settings overview by navigating through the "
|
7434 |
"breadcrumb navigation."
|
@@ -7437,17 +7451,17 @@ msgstr ""
|
|
7437 |
"indem Sie die Breadcrumb-Navigation nutzten."
|
7438 |
|
7439 |
# @ woocommerce-germanized
|
7440 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7441 |
msgid "Sections"
|
7442 |
msgstr "Rubriken"
|
7443 |
|
7444 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7445 |
msgid ""
|
7446 |
"Each setting tab might have sub sections containing more specific options."
|
7447 |
msgstr ""
|
7448 |
"Jeder Tab kann weitere Unterbereiche mit spezifischen Optionen beinhalten."
|
7449 |
|
7450 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
7451 |
msgid ""
|
7452 |
"Adjust legal pages e.g. terms and conditions. These pages are used to add "
|
7453 |
"links within checkboxes and text attachments to emails."
|
@@ -7611,8 +7625,8 @@ msgstr ""
|
|
7611 |
"Lieferzeit zugeordnet wurde."
|
7612 |
|
7613 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:134
|
7614 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7615 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7616 |
msgid "Format"
|
7617 |
msgstr "Format"
|
7618 |
|
@@ -7666,7 +7680,10 @@ msgstr "MwSt. Hinweis"
|
|
7666 |
# @ woocommerce-germanized
|
7667 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:225
|
7668 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:256
|
7669 |
-
|
|
|
|
|
|
|
7670 |
msgstr "Grundpreis"
|
7671 |
|
7672 |
# @ woocommerce-germanized
|
@@ -7697,7 +7714,7 @@ msgstr "Preisauszeichnung „Steuer“ anzeigen"
|
|
7697 |
|
7698 |
# @ woocommerce-germanized
|
7699 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:320
|
7700 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7701 |
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:248
|
7702 |
msgid "Shipping Costs"
|
7703 |
msgstr "Versandkosten"
|
@@ -7727,9 +7744,34 @@ msgstr ""
|
|
7727 |
"gebunden werden soll. Je höher die Priorität ist, desto später wird die "
|
7728 |
"Preisauszeichnung hinzugefügt. Standard ist %d."
|
7729 |
|
|
|
|
|
|
|
|
|
7730 |
# @ woocommerce-germanized
|
|
|
|
|
|
|
|
|
7731 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:372
|
7732 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7733 |
"This text will be used to inform the customer about shipping costs. Use "
|
7734 |
"{link}{/link} to insert link to shipping costs page."
|
7735 |
msgstr ""
|
@@ -7738,17 +7780,17 @@ msgstr ""
|
|
7738 |
"Link zur Versandkosten-Seite einzufügen."
|
7739 |
|
7740 |
# @ woocommerce-germanized
|
7741 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7742 |
msgid "plus {link}Shipping Costs{/link}"
|
7743 |
msgstr "zzgl. {link}Versandkosten{/link}"
|
7744 |
|
7745 |
# @ woocommerce-germanized
|
7746 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7747 |
msgid "Free Shipping Text"
|
7748 |
msgstr "Kostenloser Versand Text"
|
7749 |
|
7750 |
# @ woocommerce-germanized
|
7751 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7752 |
msgid ""
|
7753 |
"This text will be used to inform the customer about free shipping. Leave "
|
7754 |
"empty to disable notice. Use {link}{/link} to insert link to shipping costs "
|
@@ -7759,13 +7801,13 @@ msgstr ""
|
|
7759 |
"zur Versandkosten-Seite einzufügen."
|
7760 |
|
7761 |
# @ woocommerce-germanized
|
7762 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7763 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7764 |
msgid "Hide Notice"
|
7765 |
msgstr "Hinweis ausblenden"
|
7766 |
|
7767 |
# @ woocommerce-germanized
|
7768 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7769 |
msgid ""
|
7770 |
"Select product types for which you might want to disable the shipping costs "
|
7771 |
"notice."
|
@@ -7774,33 +7816,33 @@ msgstr ""
|
|
7774 |
"ausblenden möchten."
|
7775 |
|
7776 |
# @ woocommerce-germanized
|
7777 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7778 |
msgid "Footer"
|
7779 |
msgstr "Footer"
|
7780 |
|
7781 |
# @ woocommerce-germanized
|
7782 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7783 |
msgid "Notice"
|
7784 |
msgstr "Hinweis"
|
7785 |
|
7786 |
# @ woocommerce-germanized
|
7787 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7788 |
msgid "Attach a global VAT notice to your footer."
|
7789 |
msgstr "Einen seitenübergreifenden MwSt.-Hinweis im Footer einfügen."
|
7790 |
|
7791 |
# @ woocommerce-germanized
|
7792 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7793 |
msgid "Attach a global sale price notice to your footer."
|
7794 |
msgstr ""
|
7795 |
"Einen seitenübergreifenden Hinweis zu reduzierten Preisen im Footer einfügen."
|
7796 |
|
7797 |
# @ woocommerce-germanized
|
7798 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7799 |
msgid "Fallback"
|
7800 |
msgstr "Fallback"
|
7801 |
|
7802 |
# @ woocommerce-germanized
|
7803 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7804 |
msgid ""
|
7805 |
"This delivery time will be added to every product if no delivery time has "
|
7806 |
"been chosen individually"
|
@@ -7809,12 +7851,12 @@ msgstr ""
|
|
7809 |
"zugeordnet wurde"
|
7810 |
|
7811 |
# @ woocommerce-germanized
|
7812 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7813 |
msgid "Manage Delivery Times"
|
7814 |
msgstr "Lieferzeiten verwalten"
|
7815 |
|
7816 |
# @ woocommerce-germanized
|
7817 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7818 |
msgid ""
|
7819 |
"This text will be used to indicate delivery time for products. Use "
|
7820 |
"{delivery_time} as placeholder."
|
@@ -7823,15 +7865,15 @@ msgstr ""
|
|
7823 |
"{delivery_time} als Platzhalter verwenden."
|
7824 |
|
7825 |
# @ woocommerce-germanized
|
7826 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7827 |
msgid "Delivery time: {delivery_time}"
|
7828 |
msgstr "Lieferzeit: {delivery_time}"
|
7829 |
|
7830 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7831 |
msgid "Digital text"
|
7832 |
msgstr "Digitaler Text"
|
7833 |
|
7834 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7835 |
msgid ""
|
7836 |
"Enter a text which will be shown as digital delivery time text (replacement "
|
7837 |
"for default digital time on digital products)."
|
@@ -7841,24 +7883,24 @@ msgstr ""
|
|
7841 |
"einfach leer lassen."
|
7842 |
|
7843 |
# @ woocommerce
|
7844 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7845 |
msgid "Backorder"
|
7846 |
msgstr "Lieferrückstand"
|
7847 |
|
7848 |
# @ woocommerce-germanized
|
7849 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7850 |
msgid "Hide delivery time if a product is on backorder."
|
7851 |
msgstr "Lieferzeit ausblenden falls das Produkt im Lieferrückstand ist."
|
7852 |
|
7853 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7854 |
msgid "Not in Stock"
|
7855 |
msgstr "Nicht auf Lager"
|
7856 |
|
7857 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7858 |
msgid "Hide delivery time if a product is not in stock."
|
7859 |
msgstr "Lieferzeit ausblenden falls das Produkt nicht auf Lager ist."
|
7860 |
|
7861 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7862 |
msgid ""
|
7863 |
"Select product types for which you might want to disable the delivery time "
|
7864 |
"notice."
|
@@ -7867,11 +7909,11 @@ msgstr ""
|
|
7867 |
"deaktivieren möchten."
|
7868 |
|
7869 |
# @ woocommerce-germanized
|
7870 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7871 |
msgid ""
|
7872 |
-
"This text will be used to display the
|
7873 |
-
"price. If you want to specifically format
|
7874 |
-
"{unit} and {
|
7875 |
msgstr ""
|
7876 |
"Dieser Text wird für die Anzeige des Grundpreises verwendet. Nutzen Sie "
|
7877 |
"{price} als Platzhalter für den formatierten Grundpreis. Wenn Sie die "
|
@@ -7879,26 +7921,17 @@ msgstr ""
|
|
7879 |
"{unit} und {base_price} für die einzelnen Elemente."
|
7880 |
|
7881 |
# @ woocommerce-germanized
|
7882 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7883 |
msgid "{price}"
|
7884 |
msgstr "{price}"
|
7885 |
|
7886 |
# @ woocommerce-germanized
|
7887 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7888 |
-
msgid "Variable Price"
|
7889 |
-
msgstr "Variabler Preis"
|
7890 |
-
|
7891 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:514
|
7892 |
-
msgid "Enable price range base prices for variable products."
|
7893 |
-
msgstr "Aktiviert von-bis-Grundpreise für variable Produkte."
|
7894 |
-
|
7895 |
-
# @ woocommerce-germanized
|
7896 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:520
|
7897 |
msgid "Product units format"
|
7898 |
msgstr "Produkteinheiten Format"
|
7899 |
|
7900 |
# @ woocommerce-germanized
|
7901 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7902 |
msgid ""
|
7903 |
"This text will be used to display the product units. Use {product_units} to "
|
7904 |
"insert the amount of product units. Use {unit} to insert the unit. "
|
@@ -7910,21 +7943,30 @@ msgstr ""
|
|
7910 |
"formatierten Grundpreis."
|
7911 |
|
7912 |
# @ woocommerce-germanized
|
7913 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7914 |
msgid "Product contains: {product_units} {unit}"
|
7915 |
msgstr "Produkt enthält: {product_units} {unit}"
|
7916 |
|
7917 |
# @ woocommerce-germanized
|
7918 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7919 |
msgid "Fallback Sale Label"
|
7920 |
msgstr "Standard-Streichpreis-Hinweis"
|
7921 |
|
7922 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7923 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7924 |
msgid "Manage Price Labels"
|
7925 |
msgstr "Preishinweise verwalten"
|
7926 |
|
7927 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7928 |
msgid ""
|
7929 |
"Choose whether you would like to have a default sale price label to inform "
|
7930 |
"the customer about the regular price (e.g. Recommended Retail Price)."
|
@@ -7933,11 +7975,11 @@ msgstr ""
|
|
7933 |
"Sie den Kunden auf den alten Preis (bei reduzierten Produkten, sog. "
|
7934 |
"Streichpreis) hinweisen (z.B. UVP)."
|
7935 |
|
7936 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7937 |
msgid "Fallback Regular Label"
|
7938 |
msgstr "Standard-Angebotspreis"
|
7939 |
|
7940 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7941 |
msgid ""
|
7942 |
"Choose whether you would like to have a default sale price regular label to "
|
7943 |
"inform the customer about the sale price (e.g. New Price)."
|
@@ -7947,21 +7989,21 @@ msgstr ""
|
|
7947 |
"Angebotspreis) hinweisen (z.B. Unser neuer Preis)."
|
7948 |
|
7949 |
# @ woocommerce-germanized
|
7950 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7951 |
#: woocommerce-germanized/src/Shopmarks.php:294
|
7952 |
msgid "Single Product"
|
7953 |
msgstr "Produktdetailseite"
|
7954 |
|
7955 |
# @ woocommerce-germanized
|
7956 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7957 |
msgid "Show price labels on single product page."
|
7958 |
msgstr "Zeige Preishinweise auf der Produktdetailseite."
|
7959 |
|
7960 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7961 |
msgid "Loop"
|
7962 |
msgstr "Produktlisten"
|
7963 |
|
7964 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:
|
7965 |
msgid "Show price labels in product loops."
|
7966 |
msgstr "Zeige Preishinweise in Produktlisten."
|
7967 |
|
@@ -8785,13 +8827,6 @@ msgstr "Einheit Name"
|
|
8785 |
msgid "Unit Slug"
|
8786 |
msgstr "Einheit Slug"
|
8787 |
|
8788 |
-
# @ woocommerce-germanized
|
8789 |
-
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:130
|
8790 |
-
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:296
|
8791 |
-
#: woocommerce-germanized/includes/compatibility/elementor/widgets/class-wc-gzd-elementor-widget-product-unit-price.php:10
|
8792 |
-
msgid "Unit Price"
|
8793 |
-
msgstr "Grundpreis"
|
8794 |
-
|
8795 |
# @ woocommerce-germanized
|
8796 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:135
|
8797 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:301
|
@@ -8939,14 +8974,14 @@ msgstr ""
|
|
8939 |
"differenzbesteuerten Produkten gekauft werden."
|
8940 |
|
8941 |
# @ woocommerce-germanized
|
8942 |
-
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:
|
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:
|
8950 |
msgctxt "customer-title-male-address"
|
8951 |
msgid "Mr."
|
8952 |
msgstr "Herrn"
|
@@ -9098,11 +9133,11 @@ msgstr "Danke, dass Sie ein Konto bei %s erstellt haben."
|
|
9098 |
# @ woocommerce-germanized
|
9099 |
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:1130
|
9100 |
msgctxt "revocation-form"
|
9101 |
-
msgid "Forward your
|
9102 |
msgstr "Widerruf online erklären"
|
9103 |
|
9104 |
# @ woocommerce-germanized
|
9105 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
9106 |
#, php-format
|
9107 |
msgid ""
|
9108 |
"Please install <a href=\"%s\" target=\"_blank\">WooCommerce</a> before "
|
@@ -9111,95 +9146,94 @@ msgstr ""
|
|
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:
|
9115 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
9116 |
msgid "Reduced rate"
|
9117 |
msgstr "Ermäßigter Steuersatz"
|
9118 |
|
9119 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
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:
|
9127 |
msgctxt "Page slug"
|
9128 |
msgid "data-security"
|
9129 |
msgstr "datenschutzerklaerung"
|
9130 |
|
9131 |
# @ woocommerce-germanized
|
9132 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
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:
|
9139 |
msgctxt "Page slug"
|
9140 |
msgid "imprint"
|
9141 |
msgstr "impressum"
|
9142 |
|
9143 |
# @ woocommerce-germanized
|
9144 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
9145 |
msgctxt "Page title"
|
9146 |
msgid "Imprint"
|
9147 |
msgstr "Impressum"
|
9148 |
|
9149 |
# @ woocommerce-germanized
|
9150 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
9151 |
msgctxt "Page slug"
|
9152 |
msgid "terms"
|
9153 |
msgstr "agb"
|
9154 |
|
9155 |
# @ woocommerce-germanized
|
9156 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
9157 |
msgctxt "Page title"
|
9158 |
msgid "Terms & Conditions"
|
9159 |
msgstr "AGB"
|
9160 |
|
9161 |
# @ woocommerce-germanized
|
9162 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
9163 |
msgctxt "Page slug"
|
9164 |
msgid "revocation"
|
9165 |
msgstr "widerrufsbelehrung"
|
9166 |
|
9167 |
# @ woocommerce-germanized
|
9168 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
9169 |
msgctxt "Page title"
|
9170 |
-
msgid "
|
9171 |
msgstr "Widerrufsbelehrung"
|
9172 |
|
9173 |
# @ woocommerce-germanized
|
9174 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
9175 |
msgctxt "Page slug"
|
9176 |
msgid "shipping-methods"
|
9177 |
msgstr "versandarten"
|
9178 |
|
9179 |
# @ woocommerce-germanized
|
9180 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
9181 |
msgctxt "Page title"
|
9182 |
msgid "Shipping Methods"
|
9183 |
msgstr "Versandarten"
|
9184 |
|
9185 |
# @ woocommerce-germanized
|
9186 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
9187 |
msgctxt "Page slug"
|
9188 |
msgid "payment-methods"
|
9189 |
msgstr "bezahlmoeglichkeiten"
|
9190 |
|
9191 |
# @ woocommerce-germanized
|
9192 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
9193 |
msgctxt "Page title"
|
9194 |
msgid "Payment Methods"
|
9195 |
msgstr "Zahlungsarten"
|
9196 |
|
9197 |
# @ woocommerce-germanized
|
9198 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:104
|
9199 |
-
#: woocommerce-germanized/includes/updates/woocommerce-gzd-update-2.0.1.php:18
|
9200 |
msgid ""
|
9201 |
"With your order, you agree to have read and understood our {term_link}Terms "
|
9202 |
-
"and Conditions{/term_link}
|
9203 |
"revocation_link} and our {data_security_link}Privacy Policy{/"
|
9204 |
"data_security_link}."
|
9205 |
msgstr ""
|
@@ -9210,10 +9244,9 @@ msgstr ""
|
|
9210 |
|
9211 |
# @ woocommerce-germanized
|
9212 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:105
|
9213 |
-
#: woocommerce-germanized/includes/updates/woocommerce-gzd-update-2.0.1.php:19
|
9214 |
msgid ""
|
9215 |
-
"To
|
9216 |
-
"Conditions{/term_link}, {revocation_link}
|
9217 |
"revocation_link} and our {data_security_link}Privacy Policy{/"
|
9218 |
"data_security_link}."
|
9219 |
msgstr ""
|
@@ -9500,7 +9533,7 @@ msgstr "%s Zahlungsgebühr"
|
|
9500 |
# @ woocommerce-germanized
|
9501 |
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:153
|
9502 |
#: woocommerce-germanized/includes/wc-gzd-order-functions.php:35
|
9503 |
-
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:
|
9504 |
#, php-format
|
9505 |
msgid "Plus %s forwarding fee (charged by the transport agent)"
|
9506 |
msgstr "Zzgl. %s Übermittlungsentgelt (direkt an den Zusteller)"
|
@@ -9715,10 +9748,9 @@ msgstr "Mandat E-Mail"
|
|
9715 |
msgid "Visible during checkout"
|
9716 |
msgstr "Im Checkout anzeigen"
|
9717 |
|
9718 |
-
# @ woocommerce-germanized
|
9719 |
#: woocommerce-germanized/includes/class-wc-gzd-revocation.php:33
|
9720 |
msgctxt "revocation-form"
|
9721 |
-
msgid "
|
9722 |
msgstr "Widerruf"
|
9723 |
|
9724 |
# @ woocommerce-germanized
|
@@ -9927,14 +9959,13 @@ msgstr "Bestätigung Ihrer Bestellung {order_number}"
|
|
9927 |
msgid "Thank you for your order"
|
9928 |
msgstr "Vielen Dank für Ihre Bestellung"
|
9929 |
|
9930 |
-
# @ woocommerce-germanized
|
9931 |
#: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-revocation.php:33
|
9932 |
-
msgid "
|
9933 |
msgstr "Widerruf"
|
9934 |
|
9935 |
# @ woocommerce-germanized
|
9936 |
#: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-revocation.php:34
|
9937 |
-
msgid "Email being sent if a customer fills out the
|
9938 |
msgstr ""
|
9939 |
"Diese E-Mail wird als Bestätigung an den Kunden weitergeleitet, sobald er "
|
9940 |
"das Widerrufsformular ausgefüllt hat."
|
@@ -9951,8 +9982,8 @@ msgstr "Admin E-Mail"
|
|
9951 |
|
9952 |
#: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-revocation.php:177
|
9953 |
msgid ""
|
9954 |
-
"Insert the email address of your shop manager here. A copy of the
|
9955 |
-
"email is being sent to this address."
|
9956 |
msgstr ""
|
9957 |
"Fügen Sie hier die E-Mail Adresse des Shop-Managers ein. Eine Kopie des "
|
9958 |
"Widerrufs wird an diese E-Mail Adresse versendet."
|
@@ -10589,6 +10620,31 @@ msgstr ""
|
|
10589 |
"Aktiviert die Zahlungsart nur dann, wenn der Kunde bereits eine Bestellung "
|
10590 |
"erfolgreich abgeschlossen hat."
|
10591 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10592 |
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:195
|
10593 |
msgid ">= 12 years"
|
10594 |
msgstr ">= 12 Jahre"
|
@@ -10615,11 +10671,6 @@ msgctxt "age"
|
|
10615 |
msgid "None"
|
10616 |
msgstr "Keines"
|
10617 |
|
10618 |
-
# @ woocommerce-germanized
|
10619 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:241
|
10620 |
-
msgid "Right of Recission"
|
10621 |
-
msgstr "Widerrufsrecht"
|
10622 |
-
|
10623 |
# @ woocommerce-germanized
|
10624 |
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:243
|
10625 |
msgid "Data Security"
|
@@ -10644,18 +10695,23 @@ msgid "Mx"
|
|
10644 |
msgstr "Divers"
|
10645 |
|
10646 |
# @ woocommerce-germanized
|
10647 |
-
#: woocommerce-germanized/includes/wc-gzd-
|
|
|
|
|
|
|
|
|
|
|
10648 |
#: woocommerce-germanized/templates/checkout/edit-data-notice.php:25
|
10649 |
msgid "Edit Order"
|
10650 |
msgstr "Bestellung bearbeiten"
|
10651 |
|
10652 |
# @ woocommerce-germanized
|
10653 |
-
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:
|
10654 |
msgid "Choose a Payment Gateway"
|
10655 |
msgstr "Zahlungsart auswählen"
|
10656 |
|
10657 |
# @ woocommerce
|
10658 |
-
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:
|
10659 |
msgid "Place order"
|
10660 |
msgstr "Jetzt kaufen"
|
10661 |
|
@@ -10943,11 +10999,10 @@ msgstr ""
|
|
10943 |
|
10944 |
# @ woocommerce-germanized
|
10945 |
#: woocommerce-germanized/templates/emails/customer-revocation.php:26
|
10946 |
-
#: woocommerce-germanized/templates/emails/plain/customer-revocation.php:27
|
10947 |
msgctxt "revocation-form"
|
10948 |
msgid ""
|
10949 |
-
"By sending you this email we confirm your
|
10950 |
-
"data."
|
10951 |
msgstr ""
|
10952 |
"Mit der Zustellung dieser E-Mail bestätigen wir den Eingang Ihres Widerrufs. "
|
10953 |
"Bitte prüfen Sie Ihre Daten."
|
@@ -10966,6 +11021,16 @@ msgstr ""
|
|
10966 |
msgid "SEPA Data"
|
10967 |
msgstr "SEPA Daten"
|
10968 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10969 |
# @ woocommerce-germanized
|
10970 |
#: woocommerce-germanized/templates/footer/sale-info.php:22
|
10971 |
msgid "All striked out prices refer to prices used to be charged at this shop."
|
@@ -10989,11 +11054,10 @@ msgctxt "revocation-form"
|
|
10989 |
msgid "To"
|
10990 |
msgstr "An"
|
10991 |
|
10992 |
-
# @ woocommerce-germanized
|
10993 |
#: woocommerce-germanized/templates/forms/revocation-form.php:49
|
10994 |
#: woocommerce-germanized/templates/forms/revocation-form.php:50
|
10995 |
msgctxt "revocation-form"
|
10996 |
-
msgid "Forward
|
10997 |
msgstr "Widerruf erklären"
|
10998 |
|
10999 |
#: woocommerce-germanized/templates/global/complaints.php:22
|
@@ -12272,6 +12336,64 @@ msgstr "vendidero"
|
|
12272 |
msgid "https://vendidero.de"
|
12273 |
msgstr "https://vendidero.de"
|
12274 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12275 |
# @ woocommerce-germanized
|
12276 |
#~ msgid "Shipping costs"
|
12277 |
#~ msgstr "Versandkosten"
|
@@ -12607,10 +12729,6 @@ msgstr "https://vendidero.de"
|
|
12607 |
#~ "Passen Sie die Instruktionen an um Kunden über die DHL Sendungsverfolgung "
|
12608 |
#~ "zu informieren. Sie können einen der folgenden Platzhalter verwenden: %s"
|
12609 |
|
12610 |
-
#~ msgctxt "shipments"
|
12611 |
-
#~ msgid "View shipment"
|
12612 |
-
#~ msgstr "Sendung anzeigen"
|
12613 |
-
|
12614 |
#~ msgctxt "dhl"
|
12615 |
#~ msgid "Delete"
|
12616 |
#~ msgstr "Löschen"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce Germanized\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2021-01-26 14:31+0100\n"
|
6 |
+
"PO-Revision-Date: 2021-01-26 14:32+0100\n"
|
7 |
"Last-Translator: holzhannes <holzhannes@posteo.de>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE@formal\n"
|
45 |
msgid "Additional Services"
|
46 |
msgstr "Zusätzliche Leistungen"
|
47 |
|
48 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:30
|
49 |
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:514
|
50 |
#, php-format
|
51 |
msgid ""
|
58 |
"(z.B. Gewicht) und versuchen Sie es erneut."
|
59 |
|
60 |
# @ woocommerce-germanized
|
61 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:37
|
62 |
msgctxt "dhl"
|
63 |
msgid "Product"
|
64 |
msgstr "Produkt"
|
65 |
|
66 |
# @ woocommerce-germanized
|
67 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:50
|
68 |
msgctxt "dhl"
|
69 |
msgid "Page Format"
|
70 |
msgstr "Seitenformat"
|
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:1403
|
366 |
msgctxt "dhl"
|
367 |
msgid "Printing"
|
368 |
msgstr "Druck"
|
385 |
|
386 |
# @ woocommerce-germanized
|
387 |
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:181
|
388 |
+
#: woocommerce-germanized-dhl/src/Api/Paket.php:283
|
389 |
msgctxt "dhl day context"
|
390 |
msgid "None"
|
391 |
msgstr "Keiner"
|
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:864
|
451 |
#: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:38
|
452 |
msgctxt "dhl"
|
453 |
msgid "Packstation"
|
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:1453
|
541 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1537
|
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:1457
|
548 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1541
|
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:1489
|
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:1612
|
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:1700
|
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:1701
|
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:1710
|
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:1727
|
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:1728
|
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:1729
|
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:1804
|
597 |
msgctxt "dhl"
|
598 |
msgid "DHL Paket"
|
599 |
msgstr "DHL Paket"
|
600 |
|
601 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1805
|
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:1806
|
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:1807
|
612 |
msgctxt "dhl"
|
613 |
msgid "DHL Warenpost"
|
614 |
msgstr "DHL Warenpost"
|
615 |
|
616 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1894
|
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:1495
|
721 |
#: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:39
|
722 |
msgctxt "dhl"
|
723 |
msgid "DHL"
|
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:1420
|
845 |
msgctxt "dhl"
|
846 |
msgid "Automation"
|
847 |
msgstr "Automatisierung"
|
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:1496
|
1398 |
msgctxt "dhl"
|
1399 |
msgid "Labels"
|
1400 |
msgstr "Labels"
|
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:1323
|
1917 |
+
msgctxt "dhl"
|
1918 |
+
msgid "Print Y-axis Position"
|
1919 |
+
msgstr "Druck-Position Y-Achse"
|
1920 |
+
|
1921 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1325
|
1922 |
+
msgctxt "dhl"
|
1923 |
+
msgid "Adjust the print X-axis start position for the label."
|
1924 |
+
msgstr "Passen Sie die Start-Druckposition auf der X-Axis für das Label an."
|
1925 |
+
|
1926 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1332
|
1927 |
+
msgctxt "dhl"
|
1928 |
+
msgid "Print X-axis Position"
|
1929 |
+
msgstr "Druck-Position X-Achse"
|
1930 |
+
|
1931 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1334
|
1932 |
+
msgctxt "dhl"
|
1933 |
+
msgid "Adjust the print Y-axis start position for the label."
|
1934 |
+
msgstr "Passen Sie die Start-Druckposition auf der Y-Axis für das Label an."
|
1935 |
+
|
1936 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1362
|
1937 |
msgctxt "dhl"
|
1938 |
msgid "Portokasse"
|
1939 |
msgstr "Portokasse"
|
1940 |
|
1941 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1365
|
1942 |
msgctxt "dhl"
|
1943 |
msgid "Balance"
|
1944 |
msgstr "Guthaben"
|
1945 |
|
1946 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1372
|
1947 |
msgctxt "dhl"
|
1948 |
msgid "Charge (€)"
|
1949 |
msgstr "Aufladen (€)"
|
1950 |
|
1951 |
# @ woocommerce-germanized
|
1952 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1382
|
1953 |
msgctxt "dhl"
|
1954 |
msgid "Products"
|
1955 |
msgstr "Produkte"
|
1956 |
|
1957 |
# @ woocommerce-germanized
|
1958 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1385
|
1959 |
msgctxt "dhl"
|
1960 |
msgid "Available Products"
|
1961 |
msgstr "Verfügbare Produkte"
|
1962 |
|
1963 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1388
|
1964 |
#, php-format
|
1965 |
msgctxt "dhl"
|
1966 |
msgid ""
|
1972 |
"stehen sollen. Sie können die Produktliste auch manuell <a href=\"%s"
|
1973 |
"\">aktualisieren</a>, falls notwendig."
|
1974 |
|
1975 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1413
|
1976 |
msgctxt "dhl"
|
1977 |
msgid "API Error"
|
1978 |
msgstr "API Fehler"
|
1979 |
|
1980 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1454
|
1981 |
msgctxt "dhl"
|
1982 |
msgid "Charge Portokasse"
|
1983 |
msgstr "Portokasse aufladen"
|
1984 |
|
1985 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1455
|
1986 |
#, php-format
|
1987 |
msgctxt "dhl"
|
1988 |
msgid "The minimum amount is %s"
|
1989 |
msgstr "Der Minimalbetrag beträgt %s"
|
1990 |
|
1991 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1465
|
1992 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1467
|
1993 |
msgctxt "dhl"
|
1994 |
msgid "Not yet a customer?"
|
1995 |
msgstr "Noch kein Kunde?"
|
1996 |
|
1997 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1497
|
1998 |
msgctxt "dhl"
|
1999 |
msgid "Internetmarke"
|
2000 |
msgstr "Internetmarke"
|
2001 |
|
2002 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1498
|
2003 |
msgctxt "dhl"
|
2004 |
msgid "Addresses"
|
2005 |
msgstr "Adressen"
|
2006 |
|
2007 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1499
|
2008 |
msgctxt "dhl"
|
2009 |
msgid "Preferred Services"
|
2010 |
msgstr "Wunschpaket"
|
2011 |
|
2012 |
+
#: woocommerce-germanized-dhl/src/Admin/Settings.php:1500
|
2013 |
msgctxt "dhl"
|
2014 |
msgid "Parcel Pickup"
|
2015 |
msgstr "Standorte"
|
2099 |
|
2100 |
#: woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:43
|
2101 |
#: woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:52
|
2102 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:508
|
2103 |
msgctxt "dhl"
|
2104 |
msgid "Error while fetching label PDF"
|
2105 |
msgstr "Fehler beim Download des PDF Labels"
|
2132 |
msgid "Error during request: %s"
|
2133 |
msgstr "Fehler beim API Zugriff: %s"
|
2134 |
|
2135 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:66
|
2136 |
#: woocommerce-germanized-dhl/src/Api/Soap.php:54
|
2137 |
#: woocommerce-germanized-dhl/src/Package.php:84
|
2138 |
#, php-format
|
2147 |
"Zweifel Ihren Hoster und stellen Sie sicher, dass der SOAPClient <a href=\"%s"
|
2148 |
"\">installiert</a> ist."
|
2149 |
|
2150 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:71
|
2151 |
#, php-format
|
2152 |
msgctxt "dhl"
|
2153 |
msgid "Error while instantiating main Internetmarke API: %s"
|
2154 |
msgstr "Fehler beim Aufruf der Internetmarke API: %s"
|
2155 |
|
2156 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:75
|
2157 |
msgctxt "dhl"
|
2158 |
msgid "Internetmarke is disabled. Please enable Internetmarke."
|
2159 |
msgstr "Internetmarke ist deaktiviert. Bitte aktivieren Sie die Internetmarke."
|
2160 |
|
2161 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:86
|
2162 |
msgctxt "dhl"
|
2163 |
msgid "Wrong username or password"
|
2164 |
msgstr "Falscher Benutzername oder Passwort"
|
2165 |
|
2166 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:254
|
2167 |
#, php-format
|
2168 |
msgctxt "dhl"
|
2169 |
msgid "until %s"
|
2170 |
msgstr "bis %s"
|
2171 |
|
2172 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:355
|
2173 |
#, php-format
|
2174 |
msgctxt "dhl"
|
2175 |
msgid "Length: %s"
|
2176 |
msgstr "Länge: %s"
|
2177 |
|
2178 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:359
|
2179 |
#, php-format
|
2180 |
msgctxt "dhl"
|
2181 |
msgid "Width: %s"
|
2182 |
msgstr "Breite: %s"
|
2183 |
|
2184 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:363
|
2185 |
#, php-format
|
2186 |
msgctxt "dhl"
|
2187 |
msgid "Height: %s"
|
2188 |
msgstr "Höhe: %s"
|
2189 |
|
2190 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:367
|
2191 |
#, php-format
|
2192 |
msgctxt "dhl"
|
2193 |
msgid "Weight: %s"
|
2194 |
msgstr "Gewicht: %s"
|
2195 |
|
2196 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:372
|
2197 |
msgctxt "dhl"
|
2198 |
msgid "Total"
|
2199 |
msgstr "Gesamt"
|
2200 |
|
2201 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:562
|
2202 |
#, php-format
|
2203 |
msgctxt "dhl"
|
2204 |
msgid "Could not refund post label: %s"
|
2205 |
msgstr "Deutsche Post Label konnte nicht rückerstattet werden: %s"
|
2206 |
|
2207 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:576
|
2208 |
msgctxt "dhl"
|
2209 |
msgid "Refund API could not be instantiated"
|
2210 |
msgstr "Die API für Rückerstattungen konnte nicht initialisiert werden"
|
2211 |
|
2212 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:665
|
2213 |
#: woocommerce-germanized-dhl/src/Api/LabelSoap.php:379
|
2214 |
#: woocommerce-germanized-dhl/src/Api/ReturnRest.php:34
|
2215 |
#, php-format
|
2217 |
msgid "Could not fetch shipment %d."
|
2218 |
msgstr "Sendung %d konnte nicht gefunden werden."
|
2219 |
|
2220 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:711
|
2221 |
msgctxt "dhl"
|
2222 |
msgid "Error while generating shop order id."
|
2223 |
msgstr "Fehler beim Erzeugen der Shop Order Id."
|
2224 |
|
2225 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:747
|
2226 |
#, php-format
|
2227 |
msgctxt "dhl"
|
2228 |
msgid ""
|
2232 |
"Fehler beim Kauf des Labels. Bitte <a href=\"%s\">aktualisieren</a>Sie die "
|
2233 |
"Produktliste manuell und versuchen Sie es erneut."
|
2234 |
|
2235 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:790
|
2236 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:797
|
2237 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:825
|
2238 |
msgctxt "dhl"
|
2239 |
msgid "Error while downloading the PDF stamp."
|
2240 |
msgstr "Fehler beim Download des PDF Labels."
|
2241 |
|
2242 |
+
#: woocommerce-germanized-dhl/src/Api/Internetmarke.php:832
|
2243 |
msgctxt "dhl"
|
2244 |
msgid "Invalid stamp response."
|
2245 |
msgstr "Fehlerhafte Label Rückmeldung."
|
2343 |
msgid "Parcel API not available"
|
2344 |
msgstr "Paket API ist nicht erreichbar"
|
2345 |
|
2346 |
+
#: woocommerce-germanized-dhl/src/Api/Paket.php:261
|
2347 |
msgctxt "dhl"
|
2348 |
msgid "Mon"
|
2349 |
msgstr "Mo"
|
2350 |
|
2351 |
+
#: woocommerce-germanized-dhl/src/Api/Paket.php:262
|
2352 |
msgctxt "dhl"
|
2353 |
msgid "Tue"
|
2354 |
msgstr "Di"
|
2355 |
|
2356 |
+
#: woocommerce-germanized-dhl/src/Api/Paket.php:263
|
2357 |
msgctxt "dhl"
|
2358 |
msgid "Wed"
|
2359 |
msgstr "Mi"
|
2360 |
|
2361 |
+
#: woocommerce-germanized-dhl/src/Api/Paket.php:264
|
2362 |
msgctxt "dhl"
|
2363 |
msgid "Thu"
|
2364 |
msgstr "Do"
|
2365 |
|
2366 |
+
#: woocommerce-germanized-dhl/src/Api/Paket.php:265
|
2367 |
msgctxt "dhl"
|
2368 |
msgid "Fri"
|
2369 |
msgstr "Fr"
|
2370 |
|
2371 |
# @ woocommerce-germanized
|
2372 |
+
#: woocommerce-germanized-dhl/src/Api/Paket.php:266
|
2373 |
msgctxt "dhl"
|
2374 |
msgid "Sat"
|
2375 |
msgstr "Sa"
|
2376 |
|
2377 |
+
#: woocommerce-germanized-dhl/src/Api/Paket.php:267
|
2378 |
msgctxt "dhl"
|
2379 |
msgid "Sun"
|
2380 |
msgstr "So"
|
2432 |
msgid "POST error or timeout occured. Please try again later."
|
2433 |
msgstr "POST Fehler oder Zeitüberschreitung. Bitte später erneut versuchen."
|
2434 |
|
2435 |
+
#: woocommerce-germanized-dhl/src/DataStores/Label.php:320
|
2436 |
msgctxt "dhl"
|
2437 |
msgid "Invalid label."
|
2438 |
msgstr "Ungültiges Label."
|
2444 |
msgid "%s-%s"
|
2445 |
msgstr "%s-%s"
|
2446 |
|
2447 |
+
#: woocommerce-germanized-dhl/src/Package.php:277
|
2448 |
msgctxt "dhl"
|
2449 |
msgid ""
|
2450 |
"Please check the street field and make sure to provide a valid street number."
|
2453 |
"angegeben wurde."
|
2454 |
|
2455 |
# @ woocommerce-germanized
|
2456 |
+
#: woocommerce-germanized-dhl/src/Package.php:997
|
2457 |
msgctxt "dhl"
|
2458 |
msgid "Germany"
|
2459 |
msgstr "Deutschland"
|
2460 |
|
2461 |
# @ woocommerce-germanized
|
2462 |
#: woocommerce-germanized-dhl/src/ParcelLocator.php:92
|
2463 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:877
|
2464 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:906
|
2465 |
msgctxt "dhl"
|
2466 |
msgid "Address Type"
|
2467 |
msgstr "Adresstyp"
|
2487 |
"eintragen."
|
2488 |
|
2489 |
#: woocommerce-germanized-dhl/src/ParcelLocator.php:188
|
2490 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:581
|
2491 |
msgctxt "dhl"
|
2492 |
msgid "Invalid address type."
|
2493 |
msgstr "Ungültiger Adresstyp."
|
2494 |
|
2495 |
# @ woocommerce-germanized
|
2496 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:653
|
2497 |
msgctxt "dhl"
|
2498 |
msgid "Sorry, but delivery to packstation is not available."
|
2499 |
msgstr ""
|
2500 |
"Entschuldigung, die Lieferung an eine Packstation steht nicht zur Verfügung."
|
2501 |
|
2502 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:658
|
2503 |
msgctxt "dhl"
|
2504 |
msgid "Sorry, but delivery to parcel shops is not available."
|
2505 |
msgstr ""
|
2506 |
"Entschuldigung, die Lieferung an einen Paketshop steht nicht zur Verfügung."
|
2507 |
|
2508 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:662
|
2509 |
msgctxt "dhl"
|
2510 |
msgid "Sorry, but delivery to post offices is not available."
|
2511 |
msgstr "Entschuldigung, die Lieferung an Postfilialen ist nicht verfügbar."
|
2512 |
|
2513 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:669
|
2514 |
#, php-format
|
2515 |
msgctxt "dhl"
|
2516 |
msgid "Please indicate shipment to %s by one of the following values: %s."
|
2518 |
"Bitte identifizieren Sie die Lieferung an %s durch die Eingabe einer der "
|
2519 |
"folgenden Werte: %s."
|
2520 |
|
2521 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:677
|
2522 |
msgctxt "dhl"
|
2523 |
msgid ""
|
2524 |
"Your DHL customer number (Post number) is not valid. Please check your "
|
2527 |
"Ihre DHL Kundennummer (Postnummer) ist nicht gültig. Bitte überprüfen Sie "
|
2528 |
"Ihre Eingabe."
|
2529 |
|
2530 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:680
|
2531 |
msgctxt "dhl"
|
2532 |
msgid ""
|
2533 |
"Your DHL customer number (Post number) is needed to ship to a packstation."
|
2535 |
"Ihre DHL Kundennummer (Postnummer) wird für den Versand an eine Packstation "
|
2536 |
"benötigt."
|
2537 |
|
2538 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:729
|
2539 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:868
|
2540 |
msgctxt "dhl"
|
2541 |
msgid "Branch"
|
2542 |
msgstr "Filiale"
|
2543 |
|
2544 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:730
|
2545 |
msgctxt "dhl"
|
2546 |
msgid "Postnumber "
|
2547 |
msgstr "Postnummer "
|
2548 |
|
2549 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:843
|
2550 |
#, php-format
|
2551 |
msgctxt "dhl"
|
2552 |
msgid "e.g. %s 456"
|
2553 |
msgstr "z.B. %s 456"
|
2554 |
|
2555 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:868
|
2556 |
msgctxt "dhl"
|
2557 |
msgid "Branches"
|
2558 |
msgstr "Filialen"
|
2559 |
|
2560 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:884
|
2561 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:917
|
2562 |
msgctxt "dhl"
|
2563 |
msgid "DHL customer number (Post number)"
|
2564 |
msgstr "DHL Kundennummer (Postnummer)"
|
2565 |
|
2566 |
# @ woocommerce-germanized
|
2567 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:894
|
2568 |
msgctxt "dhl"
|
2569 |
msgid "Regular Address"
|
2570 |
msgstr "Normale Adresse"
|
2571 |
|
2572 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:921
|
2573 |
msgctxt "dhl"
|
2574 |
msgid "Not yet a DHL customer?"
|
2575 |
msgstr "Noch kein DHL Kunde?"
|
2576 |
|
2577 |
# @ woocommerce-germanized
|
2578 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:921
|
2579 |
msgctxt "dhl"
|
2580 |
msgid "Register now"
|
2581 |
msgstr "Jetzt registrieren"
|
2582 |
|
2583 |
# @ woocommerce-germanized
|
2584 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:970
|
2585 |
#, php-format
|
2586 |
msgctxt "dhl"
|
2587 |
msgid "Search %s"
|
2588 |
msgstr "%s suchen"
|
2589 |
|
2590 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:1075
|
2591 |
msgctxt "dhl"
|
2592 |
msgid "No DHL locations found"
|
2593 |
msgstr "Keine DHL Standorte gefunden"
|
2594 |
|
2595 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:1090
|
2596 |
#, php-format
|
2597 |
msgctxt "dhl"
|
2598 |
msgid ""
|
2603 |
"einen %s oder %s."
|
2604 |
|
2605 |
# @ woocommerce-germanized
|
2606 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:1090
|
2607 |
msgctxt "dhl"
|
2608 |
msgid "DHL location"
|
2609 |
msgstr "DHL Standort"
|
2610 |
|
2611 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:1090
|
2612 |
msgctxt "dhl"
|
2613 |
msgid "retry"
|
2614 |
msgstr "Erneut versuchen"
|
2871 |
|
2872 |
# @ woocommerce-germanized
|
2873 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:58
|
2874 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1053
|
2875 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:24
|
2876 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:688
|
2877 |
msgctxt "shipments"
|
2917 |
|
2918 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:189
|
2919 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:45
|
2920 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:154
|
2921 |
msgctxt "shipments"
|
2922 |
msgid "Item"
|
2923 |
msgstr "Position"
|
2924 |
|
2925 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:190
|
2926 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:46
|
2927 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:159
|
2928 |
#: woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:55
|
2929 |
#: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:37
|
2930 |
#: woocommerce-germanized-shipments/templates/shipment/shipment-details.php:60
|
3004 |
|
3005 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-list.php:22
|
3006 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:87
|
3007 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:141
|
3008 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:575
|
3009 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:696
|
3010 |
#: woocommerce-germanized-shipments/src/Admin/Settings.php:80
|
3011 |
#: woocommerce-germanized-shipments/src/Admin/Settings.php:177
|
3012 |
#: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:36
|
3036 |
# @ woocommerce-germanized
|
3037 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:19
|
3038 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:80
|
3039 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:505
|
3040 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:574
|
3041 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:662
|
3042 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:729
|
3043 |
#: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:20
|
3044 |
msgctxt "shipments"
|
3045 |
msgid "Shipments"
|
3077 |
|
3078 |
# @ woocommerce-germanized
|
3079 |
#: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:12
|
3080 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:382
|
3081 |
#: woocommerce-germanized-shipments/src/ShippingProvider.php:564
|
3082 |
msgctxt "shipments"
|
3083 |
msgid "Description"
|
3134 |
msgstr "Download"
|
3135 |
|
3136 |
#: woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:39
|
3137 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:788
|
3138 |
msgctxt "shipments"
|
3139 |
msgid "Create new label"
|
3140 |
msgstr "Neues Label erstellen"
|
3302 |
msgstr "Text der unterhalb des Inhalts der E-Mail angezeigt werden soll."
|
3303 |
|
3304 |
#: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:356
|
3305 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:985
|
3306 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1015
|
3307 |
#: woocommerce-germanized-shipments/templates/shipment/shipment-details-address.php:28
|
3308 |
msgctxt "shipments"
|
3309 |
msgid "N/A"
|
3366 |
msgstr "Brief"
|
3367 |
|
3368 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:79
|
3369 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1051
|
3370 |
msgctxt "shipments"
|
3371 |
msgid "Shipment"
|
3372 |
msgstr "Sendung"
|
3388 |
|
3389 |
# @ woocommerce-germanized
|
3390 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:115
|
3391 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:347
|
3392 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:854
|
3393 |
msgctxt "shipments"
|
3394 |
msgid "Shipped"
|
3409 |
msgid "Returned"
|
3410 |
msgstr "Retourniert"
|
3411 |
|
3412 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:345
|
3413 |
msgctxt "shipments"
|
3414 |
msgid "Draft"
|
3415 |
msgstr "Entwurf"
|
3416 |
|
3417 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:346
|
3418 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:846
|
3419 |
msgctxt "shipments"
|
3420 |
msgid "Processing"
|
3421 |
msgstr "In Bearbeitung"
|
3422 |
|
3423 |
# @ woocommerce-germanized
|
3424 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:348
|
3425 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:50
|
3426 |
msgctxt "shipments"
|
3427 |
msgid "Delivered"
|
3428 |
msgstr "Geliefert"
|
3429 |
|
3430 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:349
|
3431 |
msgctxt "shipments"
|
3432 |
msgid "Requested"
|
3433 |
msgstr "Beantragt"
|
3434 |
|
3435 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:398
|
3436 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:81
|
3437 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:135
|
3438 |
msgctxt "shipments"
|
3439 |
msgid "Invalid order."
|
3440 |
msgstr "Ungültige Bestellung."
|
3441 |
|
3442 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:402
|
3443 |
msgctxt "shipments"
|
3444 |
msgid "This order is already fully returned."
|
3445 |
msgstr "Diese Bestellung wurde bereits vollständig zurückgesendet."
|
3446 |
|
3447 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:413
|
3448 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:454
|
3449 |
msgctxt "shipments"
|
3450 |
msgid "Error while creating the shipment instance"
|
3451 |
msgstr "Fehler beim Erstellen der Sendungsinstanz"
|
3452 |
|
3453 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:439
|
3454 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:443
|
3455 |
#: woocommerce-germanized-shipments/src/ReturnShipment.php:428
|
3456 |
#: woocommerce-germanized-shipments/src/ReturnShipment.php:499
|
3457 |
#: woocommerce-germanized-shipments/src/SimpleShipment.php:118
|
3460 |
msgid "Invalid shipment order"
|
3461 |
msgstr "Ungültige Bestellung zur Sendung"
|
3462 |
|
3463 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:473
|
3464 |
msgctxt "shipments"
|
3465 |
msgid "Invalid order item"
|
3466 |
msgstr "Ungültige Bestellposition"
|
3467 |
|
3468 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:595
|
3469 |
msgctxt "shipments"
|
3470 |
msgid "Invalid shipment item"
|
3471 |
msgstr "Ungültige Sendungsposition"
|
3472 |
|
3473 |
# @ woocommerce-germanized
|
3474 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:668
|
3475 |
msgctxt "shipments"
|
3476 |
msgid "None"
|
3477 |
msgstr "Keiner"
|
3478 |
|
3479 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:741
|
3480 |
msgctxt "shipments"
|
3481 |
msgid "Error while uploading file."
|
3482 |
msgstr "Fehler beim Hochladen der Datei."
|
3483 |
|
3484 |
# @ woocommerce-germanized
|
3485 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1052
|
3486 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:23
|
3487 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:687
|
3488 |
msgctxt "shipments"
|
3489 |
msgid "Date"
|
3490 |
msgstr "Datum"
|
3491 |
|
3492 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1054
|
3493 |
#: woocommerce-germanized-shipments/templates/shipment/shipment-details-tracking.php:23
|
3494 |
msgctxt "shipments"
|
3495 |
msgid "Tracking"
|
3496 |
msgstr "Sendungsverfolgung"
|
3497 |
|
3498 |
# @ woocommerce-germanized
|
3499 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1055
|
3500 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:164
|
3501 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:30
|
3502 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:694
|
3503 |
msgctxt "shipments"
|
3504 |
msgid "Actions"
|
3505 |
msgstr "Aktionen"
|
3506 |
|
3507 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1291
|
3508 |
msgctxt "shipments"
|
3509 |
msgid "View"
|
3510 |
msgstr "Anzeigen"
|
3511 |
|
3512 |
# @ woocommerce-germanized
|
3513 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1298
|
3514 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:865
|
3515 |
#: woocommerce-germanized-shipments/src/Ajax.php:337
|
3516 |
msgctxt "shipments"
|
3548 |
msgid "View order"
|
3549 |
msgstr "Bestellung ansehen"
|
3550 |
|
3551 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:92
|
3552 |
+
msgctxt "shipments"
|
3553 |
+
msgid "View Shipments"
|
3554 |
+
msgstr "Sendung anzeigen"
|
3555 |
+
|
3556 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:93
|
3557 |
+
msgctxt "shipments"
|
3558 |
+
msgid "Endpoint for the \"My account → View shipments\" page."
|
3559 |
+
msgstr "Endpunkt für die „Mein Konto → Sendungen“ Seite."
|
3560 |
+
|
3561 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:100
|
3562 |
+
msgctxt "shipments"
|
3563 |
+
msgid "View shipment"
|
3564 |
+
msgstr "Sendung anzeigen"
|
3565 |
+
|
3566 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:101
|
3567 |
+
msgctxt "shipments"
|
3568 |
+
msgid "Endpoint for the \"My account → View shipment\" page."
|
3569 |
+
msgstr "Endpunkt für die „Mein Konto → Sendung“ Seite."
|
3570 |
+
|
3571 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:108
|
3572 |
+
msgctxt "shipments"
|
3573 |
+
msgid "Add Return Shipment"
|
3574 |
+
msgstr "Rücksendung"
|
3575 |
+
|
3576 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:109
|
3577 |
+
msgctxt "shipments"
|
3578 |
+
msgid "Endpoint for the \"My account → Add return shipment\" page."
|
3579 |
+
msgstr "Endpunkt für die „Mein Konto → Rücksendung“ Seite."
|
3580 |
+
|
3581 |
# @ woocommerce-germanized
|
3582 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:172
|
3583 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:307
|
3584 |
#: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:36
|
3585 |
msgctxt "shipments"
|
3586 |
msgid "Reason"
|
3587 |
msgstr "Rücksendegrund"
|
3588 |
|
3589 |
# @ woocommerce-germanized
|
3590 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:299
|
3591 |
msgctxt "shipments"
|
3592 |
msgid "Return reasons"
|
3593 |
msgstr "Rücksendegründe"
|
3594 |
|
3595 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:306
|
3596 |
msgctxt "shipments"
|
3597 |
msgid "Reason code"
|
3598 |
msgstr "Rücksendegrund (Code)"
|
3599 |
|
3600 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:306
|
3601 |
msgctxt "shipments"
|
3602 |
msgid "The reason code is used to identify the reason."
|
3603 |
msgstr ""
|
3605 |
"identifizieren zu können."
|
3606 |
|
3607 |
# @ woocommerce-germanized
|
3608 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:307
|
3609 |
msgctxt "shipments"
|
3610 |
msgid "Choose a reason text."
|
3611 |
msgstr "Beschreibung für den Grund."
|
3612 |
|
3613 |
# @ woocommerce-germanized
|
3614 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:326
|
3615 |
msgctxt "shipments"
|
3616 |
msgid "+ Add reason"
|
3617 |
msgstr "+ Grund hinzufügen"
|
3618 |
|
3619 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:326
|
3620 |
msgctxt "shipments"
|
3621 |
msgid "Remove selected reason(s)"
|
3622 |
msgstr "Ausgewählte Gründe löschen"
|
3623 |
|
3624 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:359
|
3625 |
msgctxt "shipments"
|
3626 |
msgid "Available Packaging"
|
3627 |
msgstr "Verfügbare Verpackungen"
|
3628 |
|
3629 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:382
|
3630 |
msgctxt "shipments"
|
3631 |
msgid "A description to help you identify the packaging."
|
3632 |
msgstr ""
|
3633 |
"Eine Beschreibung die Ihnen dabei hilft Verpackungen zu identifizieren."
|
3634 |
|
3635 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:383
|
3636 |
msgctxt "shipments"
|
3637 |
msgid "Type"
|
3638 |
msgstr "Typ"
|
3639 |
|
3640 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:384
|
3641 |
#, php-format
|
3642 |
msgctxt "shipments"
|
3643 |
msgid "Weight (%s)"
|
3644 |
msgstr "Gewicht (%s)"
|
3645 |
|
3646 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:384
|
3647 |
msgctxt "shipments"
|
3648 |
msgid "The weight of the packaging."
|
3649 |
msgstr "Das Gewicht der Verpackung."
|
3650 |
|
3651 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:385
|
3652 |
#, php-format
|
3653 |
msgctxt "shipments"
|
3654 |
msgid "Dimensions (LxWxH, %s)"
|
3655 |
msgstr "Abmessungen (LxBxH, %s)"
|
3656 |
|
3657 |
# @ woocommerce-germanized
|
3658 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:386
|
3659 |
msgctxt "shipments"
|
3660 |
msgid "Max weight (kg)"
|
3661 |
msgstr "Max. Gewicht (kg)"
|
3662 |
|
3663 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:386
|
3664 |
msgctxt "shipments"
|
3665 |
msgid ""
|
3666 |
"The maximum weight this packaging can hold. Leave empty to not restrict "
|
3669 |
"Das maximale Gewicht, das diese Verpackung tragen kann. Leer lassen um das "
|
3670 |
"Gewicht nicht zu begrenzen."
|
3671 |
|
3672 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:411
|
3673 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:452
|
3674 |
msgctxt "shipments"
|
3675 |
msgid "Length"
|
3676 |
msgstr "Länge"
|
3677 |
|
3678 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:412
|
3679 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:453
|
3680 |
msgctxt "shipments"
|
3681 |
msgid "Width"
|
3682 |
msgstr "Breite"
|
3683 |
|
3684 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:413
|
3685 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:454
|
3686 |
msgctxt "shipments"
|
3687 |
msgid "Height"
|
3688 |
msgstr "Höhe"
|
3689 |
|
3690 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:426
|
3691 |
msgctxt "shipments"
|
3692 |
msgid "+ Add packaging"
|
3693 |
msgstr "+ Verpackung hinzufügen"
|
3694 |
|
3695 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:426
|
3696 |
msgctxt "shipments"
|
3697 |
msgid "Remove selected packaging"
|
3698 |
msgstr "Ausgewählte Verpackung löschen"
|
3699 |
|
3700 |
# @ woocommerce-germanized
|
3701 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:559
|
3702 |
msgctxt "shipments"
|
3703 |
msgid "Create shipments"
|
3704 |
msgstr "Sendungen erstellen"
|
3705 |
|
3706 |
# @ woocommerce-germanized
|
3707 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:674
|
3708 |
msgctxt "shipments"
|
3709 |
msgid "Search shipments"
|
3710 |
msgstr "Sendungen suchen"
|
3711 |
|
3712 |
# @ woocommerce-germanized
|
3713 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:708
|
3714 |
msgctxt "shipments"
|
3715 |
msgid "Search returns"
|
3716 |
msgstr "Retouren suchen"
|
3717 |
|
3718 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:781
|
3719 |
msgctxt "shipments"
|
3720 |
msgid "Do you really want to delete the shipment?"
|
3721 |
msgstr "Möchten Sie die Sendung wirklich löschen?"
|
3722 |
|
3723 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:787
|
3724 |
msgctxt "shipments"
|
3725 |
msgid "Do you really want to delete the label?"
|
3726 |
msgstr "Möchten Sie das Label wirklich löschen?"
|
3727 |
|
3728 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:789
|
3729 |
msgctxt "shipments"
|
3730 |
msgid "Please save the shipment before creating a new label"
|
3731 |
msgstr "Bitte speichern Sie die Sendung bevor Sie ein neues Label erstellen"
|
3732 |
|
3733 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:839
|
3734 |
msgctxt "shipments"
|
3735 |
msgid ""
|
3736 |
"Do you really want to delete the shipping provider? Some of your existing "
|
4747 |
msgstr "Brief C4"
|
4748 |
|
4749 |
# @ woocommerce-germanized
|
4750 |
+
#: woocommerce-germanized-shipments/src/Package.php:103
|
4751 |
msgctxt "shipments"
|
4752 |
msgid "Sorry, this order is invalid and cannot be returned."
|
4753 |
msgstr "Sorry, diese Bestellung existiert nicht."
|
4759 |
msgstr "%1$s (%2$s, %3$s)"
|
4760 |
|
4761 |
#: woocommerce-germanized-shipments/src/ReturnShipment.php:356
|
4762 |
+
#: woocommerce-germanized-shipments/src/Shipment.php:920
|
4763 |
#, php-format
|
4764 |
msgctxt "full name"
|
4765 |
msgid "%1$s %2$s"
|
5310 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:549
|
5311 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:559
|
5312 |
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:449
|
5313 |
+
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:614
|
5314 |
+
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:622
|
5315 |
msgid "incl. VAT"
|
5316 |
msgstr "inkl. MwSt."
|
5317 |
|
5419 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:134
|
5420 |
#, php-format
|
5421 |
msgid ""
|
5422 |
+
"To insert a link to your cancellation policy use the following placeholder: "
|
5423 |
+
"%s"
|
5424 |
msgstr ""
|
5425 |
"Um einen Link zur Widerrufsbelehrung einzufügen, verwenden Sie den folgenden "
|
5426 |
"Platzhalter: %s"
|
5442 |
|
5443 |
# @ woocommerce-germanized
|
5444 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:122
|
5445 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:444
|
5446 |
msgid "Downloadable Product"
|
5447 |
msgstr "Herunterladbares Produkt"
|
5448 |
|
5449 |
# @ woocommerce-germanized
|
5450 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:123
|
5451 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:445
|
5452 |
msgid "Virtual Product"
|
5453 |
msgstr "Virtuelles Produkt"
|
5454 |
|
5455 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:124
|
5456 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:46
|
5457 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:168
|
5458 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:446
|
5459 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:146
|
5460 |
msgid "Service"
|
5461 |
msgstr "Dienstleistung"
|
5492 |
# @ woocommerce-germanized
|
5493 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:139
|
5494 |
msgid ""
|
5495 |
+
"Select product types for which the loss of the right of withdrawal notice is "
|
5496 |
+
"shown. Product types like \"simple product\" may be redundant because they "
|
5497 |
+
"include virtual and downloadable products."
|
5498 |
msgstr ""
|
5499 |
"Wählen Sie die Produkttypen aus, für die ein Hinweis für den Verlust des "
|
5500 |
"Widerrufsrechts angezeigt werden soll. Produkttypen wie \"einfaches Produkt"
|
5563 |
|
5564 |
# @ woocommerce-germanized
|
5565 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-product-categories.php:82
|
5566 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:453
|
5567 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:549
|
5568 |
msgid "None"
|
5569 |
msgstr "Keine"
|
5570 |
|
5729 |
# @ woocommerce-germanized
|
5730 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:46
|
5731 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:63
|
5732 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:241
|
5733 |
+
msgid "Cancellation Policy"
|
5734 |
msgstr "Widerrufsbelehrung"
|
5735 |
|
5736 |
# @ woocommerce-germanized
|
5938 |
|
5939 |
# @ woocommerce-germanized
|
5940 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:107
|
5941 |
+
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:254
|
5942 |
msgid "Regular Unit Price"
|
5943 |
msgstr "Einheitspreis"
|
5944 |
|
5945 |
# @ woocommerce-germanized
|
5946 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:114
|
5947 |
+
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:259
|
5948 |
msgid "Sale Unit Price"
|
5949 |
msgstr "Angebots-Einheitspreis"
|
5950 |
|
5951 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:121
|
5952 |
#, php-format
|
5953 |
msgid ""
|
5954 |
+
"To enable unit prices on variation level please choose a unit and unit price "
|
5955 |
"units within %s."
|
5956 |
msgstr ""
|
5957 |
"Um Einheitspreise auf Variationen-Ebene zu aktivieren, bitte Einheit und "
|
6038 |
|
6039 |
# @ woocommerce-germanized
|
6040 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:224
|
6041 |
+
msgid "Unit Price Units"
|
6042 |
msgstr "Grundpreiseinheiten"
|
6043 |
|
6044 |
# @ woocommerce-germanized
|
6045 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:227
|
6046 |
msgid ""
|
6047 |
+
"Unit price units. Example unit price: 0,99 € / 100 ml. Insert 100 as unit "
|
6048 |
"price unit amount."
|
6049 |
msgstr ""
|
6050 |
"Anzahl der Grundpreiseinheiten. Beispiel Grundpreis: 0,99 / 100 ml. Füge "
|
6052 |
|
6053 |
# @ woocommerce-germanized
|
6054 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:250
|
6055 |
+
msgid "Calculate unit prices automatically."
|
6056 |
+
msgstr "Grundpreis automatisch berechnen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6057 |
|
6058 |
#: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:271
|
6059 |
msgid "Adds an age verification checkbox while purchasing this product."
|
6197 |
|
6198 |
# @ woocommerce-germanized
|
6199 |
#: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-pro.php:30
|
6200 |
+
msgid "Generator for terms & conditions and cancellation policy"
|
6201 |
msgstr "Schnittstelle für Mustertexte-Generatoren für AGB & Widerrufsbelehrung"
|
6202 |
|
6203 |
# @ woocommerce-germanized
|
6929 |
# @ woocommerce-germanized
|
6930 |
# @ woocommerce
|
6931 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:163
|
6932 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:232
|
6933 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:137
|
6934 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:144
|
6935 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:138
|
7036 |
|
7037 |
# @ woocommerce-germanized
|
7038 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:30
|
7039 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:354
|
7040 |
#: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:174
|
7041 |
msgid "Legal Pages"
|
7042 |
msgstr "Rechtlich relevante Seiten"
|
7095 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:64
|
7096 |
msgid ""
|
7097 |
"This page should contain information regarding your customer's Right of "
|
7098 |
+
"Withdrawal."
|
7099 |
msgstr ""
|
7100 |
"Diese Seite sollte Ihre Widerrufsbelehrung enthalten. Nutzen Sie folgenden "
|
7101 |
"Shortcode um ein Widerrufsformular in die Seite einzubinden: "
|
7108 |
msgstr ""
|
7109 |
"Sie haben noch keine Widerrufsbelehrung? <a href=\"%s\">Jetzt generieren</a>!"
|
7110 |
|
|
|
7111 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:74
|
7112 |
+
msgid "Send withdrawal to"
|
7113 |
msgstr "Widerruf richten an"
|
7114 |
|
7115 |
# @ woocommerce-germanized
|
7116 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:75
|
7117 |
msgid ""
|
7118 |
"Type in an address, telephone/telefax number, email address which is to be "
|
7119 |
+
"used as the recipient address of the withdrawal."
|
7120 |
msgstr ""
|
7121 |
"Geben Sie hier die Adresse, Telefon- und Faxnummer, E-Mail Adresse usw. an, "
|
7122 |
"an die Ihre Kunden ihren Widerruf richten sollen"
|
7272 |
|
7273 |
# @ woocommerce-germanized
|
7274 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:209
|
7275 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:388
|
7276 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:131
|
7277 |
msgid "Notice Text"
|
7278 |
msgstr "Hinweistext"
|
7290 |
"UStG."
|
7291 |
msgstr "Kein Mehrwertsteuerausweis, da Kleinunternehmer nach §19 (1) UStG."
|
7292 |
|
|
|
|
|
|
|
|
|
7293 |
# @ woocommerce-germanized
|
7294 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:233
|
|
|
|
|
|
|
|
|
|
|
7295 |
msgid "Add a title field to the address within checkout."
|
7296 |
msgstr "Lasse Kunden eine Anrede auswählen."
|
7297 |
|
7298 |
# @ woocommerce-germanized
|
7299 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:239
|
7300 |
msgid "Disallow cancellations"
|
7301 |
msgstr "Stornierungen verhindern"
|
7302 |
|
7303 |
# @ woocommerce-germanized
|
7304 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:240
|
7305 |
msgid "Don't allow customers to manually cancel orders."
|
7306 |
msgstr "Stornierung von Bestellungen durch den Kunden verhindern."
|
7307 |
|
7308 |
# @ woocommerce-germanized
|
7309 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:240
|
7310 |
msgid ""
|
7311 |
"By default payment methods like PayPal allow order cancellation by clicking "
|
7312 |
"the abort link. This option will stop customers from manually cancel orders."
|
7315 |
"Kunden den Abbrechen-Link verwendet. Diese Option verhindert den manuellen "
|
7316 |
"Abbruch einer Bestellung durch den Kunden."
|
7317 |
|
7318 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:246
|
7319 |
msgid "Disallow gateway choosing"
|
7320 |
msgstr "Wechsel der Zahlungsart"
|
7321 |
|
7322 |
# @ woocommerce-germanized
|
7323 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:247
|
7324 |
msgid "Don't allow customers to change the payment gateway after ordering."
|
7325 |
msgstr ""
|
7326 |
"Wechsel der Zahlungsart nach der Bestellung durch den Kunden verhindern."
|
7327 |
|
7328 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:247
|
7329 |
msgid ""
|
7330 |
"Customers paying through a gateway which allows later payment (e.g. PayPal) "
|
7331 |
"will find a link within their customer account which redirects them to a pay "
|
7344 |
"PayPal weiter."
|
7345 |
|
7346 |
# @ woocommerce-germanized
|
7347 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:253
|
7348 |
msgid "Free shipping"
|
7349 |
msgstr "Kostenloser Versand"
|
7350 |
|
7351 |
# @ woocommerce-germanized
|
7352 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:254
|
7353 |
msgid "Force free shipping method if available."
|
7354 |
msgstr "Erzwinge kostenlosen Versand wenn die Methode zur Verfügung steht."
|
7355 |
|
7356 |
# @ woocommerce-germanized
|
7357 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:254
|
7358 |
msgid ""
|
7359 |
"By default WooCommerce will let customers choose other shipping methods than "
|
7360 |
"free shipping (if available). This option will force free shipping if "
|
7365 |
"Versand, sobald dieser verfügbar ist."
|
7366 |
|
7367 |
# @ woocommerce-germanized
|
7368 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:261
|
7369 |
msgid "Exclude Methods"
|
7370 |
msgstr "Deaktivierte Methoden"
|
7371 |
|
7372 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:270
|
7373 |
msgid ""
|
7374 |
"Optionally choose methods which should be excluded from hiding when free "
|
7375 |
"shipping is available (e.g. express shipping options)."
|
7378 |
"wenn kostenloser Versand verfügbar ist (z.B. Express-Versandmethoden)."
|
7379 |
|
7380 |
# @ woocommerce-germanized
|
7381 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:282
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7382 |
msgid "Add to Cart"
|
7383 |
msgstr "Zum Warenkorb Button"
|
7384 |
|
7385 |
# @ woocommerce-germanized
|
7386 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:283
|
7387 |
msgid "Show add to cart button on listings."
|
7388 |
msgstr "Zeige den „zum Warenkorb“ Button in Produktlisten an."
|
7389 |
|
7390 |
# @ woocommerce-germanized
|
7391 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:287
|
7392 |
msgid ""
|
7393 |
"unset this option if you don't want to show the add to cart button within "
|
7394 |
"the product listings"
|
7396 |
"Deaktivieren Sie diese Option, wenn Sie den zum Warenkorb Button nicht "
|
7397 |
"innerhalb von Produktauflistungen darstellen möchten"
|
7398 |
|
7399 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:290
|
7400 |
msgid "Link"
|
7401 |
msgstr "Verlinkung"
|
7402 |
|
7403 |
# @ woocommerce-germanized
|
7404 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:291
|
7405 |
msgid "Link to product details page instead of add to cart within listings."
|
7406 |
msgstr ""
|
7407 |
"Ersetze den zum-Warenkorb-Link durch einen Link zur Produktdetailseite in "
|
7408 |
"Produktlisten."
|
7409 |
|
7410 |
# @ woocommerce-germanized
|
7411 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:295
|
7412 |
msgid ""
|
7413 |
"Decide whether you like to link to your product's details page instead of "
|
7414 |
"displaying an add to cart button within product listings."
|
7418 |
"einfach diese Option."
|
7419 |
|
7420 |
# @ woocommerce-germanized
|
7421 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:298
|
7422 |
msgid "Product Details Text"
|
7423 |
msgstr "Produktdetails Text"
|
7424 |
|
7425 |
# @ woocommerce-germanized
|
7426 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:300
|
7427 |
msgid "Details"
|
7428 |
msgstr "Details"
|
7429 |
|
7430 |
# @ woocommerce-germanized
|
7431 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:305
|
7432 |
msgid ""
|
7433 |
"If you have chosen to link to product details page instead of add to cart "
|
7434 |
"URL you may want to change the button text."
|
7438 |
"einen Button-Text vergeben."
|
7439 |
|
7440 |
# @ woocommerce-germanized
|
7441 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:326
|
7442 |
msgid "Overview"
|
7443 |
msgstr "Übersicht"
|
7444 |
|
7445 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:327
|
7446 |
msgid ""
|
7447 |
"You can always return to the settings overview by navigating through the "
|
7448 |
"breadcrumb navigation."
|
7451 |
"indem Sie die Breadcrumb-Navigation nutzten."
|
7452 |
|
7453 |
# @ woocommerce-germanized
|
7454 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:340
|
7455 |
msgid "Sections"
|
7456 |
msgstr "Rubriken"
|
7457 |
|
7458 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:341
|
7459 |
msgid ""
|
7460 |
"Each setting tab might have sub sections containing more specific options."
|
7461 |
msgstr ""
|
7462 |
"Jeder Tab kann weitere Unterbereiche mit spezifischen Optionen beinhalten."
|
7463 |
|
7464 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:355
|
7465 |
msgid ""
|
7466 |
"Adjust legal pages e.g. terms and conditions. These pages are used to add "
|
7467 |
"links within checkboxes and text attachments to emails."
|
7625 |
"Lieferzeit zugeordnet wurde."
|
7626 |
|
7627 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:134
|
7628 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:475
|
7629 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:522
|
7630 |
msgid "Format"
|
7631 |
msgstr "Format"
|
7632 |
|
7680 |
# @ woocommerce-germanized
|
7681 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:225
|
7682 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:256
|
7683 |
+
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:130
|
7684 |
+
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:296
|
7685 |
+
#: woocommerce-germanized/includes/compatibility/elementor/widgets/class-wc-gzd-elementor-widget-product-unit-price.php:10
|
7686 |
+
msgid "Unit Price"
|
7687 |
msgstr "Grundpreis"
|
7688 |
|
7689 |
# @ woocommerce-germanized
|
7714 |
|
7715 |
# @ woocommerce-germanized
|
7716 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:320
|
7717 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:382
|
7718 |
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:248
|
7719 |
msgid "Shipping Costs"
|
7720 |
msgstr "Versandkosten"
|
7744 |
"gebunden werden soll. Je höher die Priorität ist, desto später wird die "
|
7745 |
"Preisauszeichnung hinzugefügt. Standard ist %d."
|
7746 |
|
7747 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:365
|
7748 |
+
msgid "Price Ranges"
|
7749 |
+
msgstr "Preisspannen"
|
7750 |
+
|
7751 |
# @ woocommerce-germanized
|
7752 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:371
|
7753 |
+
msgid "Price Range Format"
|
7754 |
+
msgstr "Preisspannen-Format"
|
7755 |
+
|
7756 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:372
|
7757 |
msgid ""
|
7758 |
+
"Adjust the price range format e.g. for variable products. Use {min_price} as "
|
7759 |
+
"placeholder for the minimum price. Use {max_price} as placeholder for the "
|
7760 |
+
"maximum price."
|
7761 |
+
msgstr ""
|
7762 |
+
"Passt das Format von Preisspannen z.B. für variable Produkte an. Verwenden "
|
7763 |
+
"Sie {min_price} als Platzhalter für den minimalen Preis und {max_price} als "
|
7764 |
+
"Platzhalter für den höchsten Preis."
|
7765 |
+
|
7766 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:376
|
7767 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:890
|
7768 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:894
|
7769 |
+
msgid "{min_price} – {max_price}"
|
7770 |
+
msgstr "{min_price} – {max_price}"
|
7771 |
+
|
7772 |
+
# @ woocommerce-germanized
|
7773 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:389
|
7774 |
+
msgid ""
|
7775 |
"This text will be used to inform the customer about shipping costs. Use "
|
7776 |
"{link}{/link} to insert link to shipping costs page."
|
7777 |
msgstr ""
|
7780 |
"Link zur Versandkosten-Seite einzufügen."
|
7781 |
|
7782 |
# @ woocommerce-germanized
|
7783 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:394
|
7784 |
msgid "plus {link}Shipping Costs{/link}"
|
7785 |
msgstr "zzgl. {link}Versandkosten{/link}"
|
7786 |
|
7787 |
# @ woocommerce-germanized
|
7788 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:397
|
7789 |
msgid "Free Shipping Text"
|
7790 |
msgstr "Kostenloser Versand Text"
|
7791 |
|
7792 |
# @ woocommerce-germanized
|
7793 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:398
|
7794 |
msgid ""
|
7795 |
"This text will be used to inform the customer about free shipping. Leave "
|
7796 |
"empty to disable notice. Use {link}{/link} to insert link to shipping costs "
|
7801 |
"zur Versandkosten-Seite einzufügen."
|
7802 |
|
7803 |
# @ woocommerce-germanized
|
7804 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:406
|
7805 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:504
|
7806 |
msgid "Hide Notice"
|
7807 |
msgstr "Hinweis ausblenden"
|
7808 |
|
7809 |
# @ woocommerce-germanized
|
7810 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:407
|
7811 |
msgid ""
|
7812 |
"Select product types for which you might want to disable the shipping costs "
|
7813 |
"notice."
|
7816 |
"ausblenden möchten."
|
7817 |
|
7818 |
# @ woocommerce-germanized
|
7819 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:417
|
7820 |
msgid "Footer"
|
7821 |
msgstr "Footer"
|
7822 |
|
7823 |
# @ woocommerce-germanized
|
7824 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:420
|
7825 |
msgid "Notice"
|
7826 |
msgstr "Hinweis"
|
7827 |
|
7828 |
# @ woocommerce-germanized
|
7829 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:421
|
7830 |
msgid "Attach a global VAT notice to your footer."
|
7831 |
msgstr "Einen seitenübergreifenden MwSt.-Hinweis im Footer einfügen."
|
7832 |
|
7833 |
# @ woocommerce-germanized
|
7834 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:428
|
7835 |
msgid "Attach a global sale price notice to your footer."
|
7836 |
msgstr ""
|
7837 |
"Einen seitenübergreifenden Hinweis zu reduzierten Preisen im Footer einfügen."
|
7838 |
|
7839 |
# @ woocommerce-germanized
|
7840 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:464
|
7841 |
msgid "Fallback"
|
7842 |
msgstr "Fallback"
|
7843 |
|
7844 |
# @ woocommerce-germanized
|
7845 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:465
|
7846 |
msgid ""
|
7847 |
"This delivery time will be added to every product if no delivery time has "
|
7848 |
"been chosen individually"
|
7851 |
"zugeordnet wurde"
|
7852 |
|
7853 |
# @ woocommerce-germanized
|
7854 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:472
|
7855 |
msgid "Manage Delivery Times"
|
7856 |
msgstr "Lieferzeiten verwalten"
|
7857 |
|
7858 |
# @ woocommerce-germanized
|
7859 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:476
|
7860 |
msgid ""
|
7861 |
"This text will be used to indicate delivery time for products. Use "
|
7862 |
"{delivery_time} as placeholder."
|
7865 |
"{delivery_time} als Platzhalter verwenden."
|
7866 |
|
7867 |
# @ woocommerce-germanized
|
7868 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:480
|
7869 |
msgid "Delivery time: {delivery_time}"
|
7870 |
msgstr "Lieferzeit: {delivery_time}"
|
7871 |
|
7872 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:483
|
7873 |
msgid "Digital text"
|
7874 |
msgstr "Digitaler Text"
|
7875 |
|
7876 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:487
|
7877 |
msgid ""
|
7878 |
"Enter a text which will be shown as digital delivery time text (replacement "
|
7879 |
"for default digital time on digital products)."
|
7883 |
"einfach leer lassen."
|
7884 |
|
7885 |
# @ woocommerce
|
7886 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:490
|
7887 |
msgid "Backorder"
|
7888 |
msgstr "Lieferrückstand"
|
7889 |
|
7890 |
# @ woocommerce-germanized
|
7891 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:491
|
7892 |
msgid "Hide delivery time if a product is on backorder."
|
7893 |
msgstr "Lieferzeit ausblenden falls das Produkt im Lieferrückstand ist."
|
7894 |
|
7895 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:497
|
7896 |
msgid "Not in Stock"
|
7897 |
msgstr "Nicht auf Lager"
|
7898 |
|
7899 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:498
|
7900 |
msgid "Hide delivery time if a product is not in stock."
|
7901 |
msgstr "Lieferzeit ausblenden falls das Produkt nicht auf Lager ist."
|
7902 |
|
7903 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:505
|
7904 |
msgid ""
|
7905 |
"Select product types for which you might want to disable the delivery time "
|
7906 |
"notice."
|
7909 |
"deaktivieren möchten."
|
7910 |
|
7911 |
# @ woocommerce-germanized
|
7912 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:523
|
7913 |
msgid ""
|
7914 |
+
"This text will be used to display the unit price. Use {price} to insert the "
|
7915 |
+
"price. If you want to specifically format unit price output use {base}, "
|
7916 |
+
"{unit} and {unit_price} as placeholders."
|
7917 |
msgstr ""
|
7918 |
"Dieser Text wird für die Anzeige des Grundpreises verwendet. Nutzen Sie "
|
7919 |
"{price} als Platzhalter für den formatierten Grundpreis. Wenn Sie die "
|
7921 |
"{unit} und {base_price} für die einzelnen Elemente."
|
7922 |
|
7923 |
# @ woocommerce-germanized
|
7924 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:527
|
7925 |
msgid "{price}"
|
7926 |
msgstr "{price}"
|
7927 |
|
7928 |
# @ woocommerce-germanized
|
7929 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:530
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7930 |
msgid "Product units format"
|
7931 |
msgstr "Produkteinheiten Format"
|
7932 |
|
7933 |
# @ woocommerce-germanized
|
7934 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:531
|
7935 |
msgid ""
|
7936 |
"This text will be used to display the product units. Use {product_units} to "
|
7937 |
"insert the amount of product units. Use {unit} to insert the unit. "
|
7943 |
"formatierten Grundpreis."
|
7944 |
|
7945 |
# @ woocommerce-germanized
|
7946 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:535
|
7947 |
msgid "Product contains: {product_units} {unit}"
|
7948 |
msgstr "Produkt enthält: {product_units} {unit}"
|
7949 |
|
7950 |
# @ woocommerce-germanized
|
7951 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:538
|
7952 |
+
msgid "Variable Unit Price"
|
7953 |
+
msgstr "Variabler Grundpreis"
|
7954 |
+
|
7955 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:539
|
7956 |
+
msgid "Enable price range unit prices for variable products."
|
7957 |
+
msgstr "Aktiviert von-bis-Grundpreise für variable Produkte."
|
7958 |
+
|
7959 |
+
# @ woocommerce-germanized
|
7960 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:554
|
7961 |
msgid "Fallback Sale Label"
|
7962 |
msgstr "Standard-Streichpreis-Hinweis"
|
7963 |
|
7964 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:561
|
7965 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:571
|
7966 |
msgid "Manage Price Labels"
|
7967 |
msgstr "Preishinweise verwalten"
|
7968 |
|
7969 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:561
|
7970 |
msgid ""
|
7971 |
"Choose whether you would like to have a default sale price label to inform "
|
7972 |
"the customer about the regular price (e.g. Recommended Retail Price)."
|
7975 |
"Sie den Kunden auf den alten Preis (bei reduzierten Produkten, sog. "
|
7976 |
"Streichpreis) hinweisen (z.B. UVP)."
|
7977 |
|
7978 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:564
|
7979 |
msgid "Fallback Regular Label"
|
7980 |
msgstr "Standard-Angebotspreis"
|
7981 |
|
7982 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:571
|
7983 |
msgid ""
|
7984 |
"Choose whether you would like to have a default sale price regular label to "
|
7985 |
"inform the customer about the sale price (e.g. New Price)."
|
7989 |
"Angebotspreis) hinweisen (z.B. Unser neuer Preis)."
|
7990 |
|
7991 |
# @ woocommerce-germanized
|
7992 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:575
|
7993 |
#: woocommerce-germanized/src/Shopmarks.php:294
|
7994 |
msgid "Single Product"
|
7995 |
msgstr "Produktdetailseite"
|
7996 |
|
7997 |
# @ woocommerce-germanized
|
7998 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:576
|
7999 |
msgid "Show price labels on single product page."
|
8000 |
msgstr "Zeige Preishinweise auf der Produktdetailseite."
|
8001 |
|
8002 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:583
|
8003 |
msgid "Loop"
|
8004 |
msgstr "Produktlisten"
|
8005 |
|
8006 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:584
|
8007 |
msgid "Show price labels in product loops."
|
8008 |
msgstr "Zeige Preishinweise in Produktlisten."
|
8009 |
|
8827 |
msgid "Unit Slug"
|
8828 |
msgstr "Einheit Slug"
|
8829 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8830 |
# @ woocommerce-germanized
|
8831 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:135
|
8832 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:301
|
8974 |
"differenzbesteuerten Produkten gekauft werden."
|
8975 |
|
8976 |
# @ woocommerce-germanized
|
8977 |
+
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:905
|
8978 |
#: woocommerce-germanized/includes/class-wc-gzd-revocation.php:52
|
8979 |
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:604
|
8980 |
msgid "Mr."
|
8981 |
msgstr "Herr"
|
8982 |
|
8983 |
# @ woocommerce-germanized
|
8984 |
+
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:906
|
8985 |
msgctxt "customer-title-male-address"
|
8986 |
msgid "Mr."
|
8987 |
msgstr "Herrn"
|
9133 |
# @ woocommerce-germanized
|
9134 |
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:1130
|
9135 |
msgctxt "revocation-form"
|
9136 |
+
msgid "Forward your withdrawal online"
|
9137 |
msgstr "Widerruf online erklären"
|
9138 |
|
9139 |
# @ woocommerce-germanized
|
9140 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:168
|
9141 |
#, php-format
|
9142 |
msgid ""
|
9143 |
"Please install <a href=\"%s\" target=\"_blank\">WooCommerce</a> before "
|
9146 |
"Bitte installieren Sie <a href=\"%s\" target=\"_blank\">WooCommerce</a> "
|
9147 |
"bevor Sie WooCommerce Germanized installieren. Vielen Dank!"
|
9148 |
|
9149 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:488
|
9150 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:502
|
9151 |
msgid "Reduced rate"
|
9152 |
msgstr "Ermäßigter Steuersatz"
|
9153 |
|
9154 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:544
|
9155 |
#, php-format
|
9156 |
msgctxt "vat-rate-import"
|
9157 |
msgid "VAT %s"
|
9158 |
msgstr "MwSt. %s"
|
9159 |
|
9160 |
# @ woocommerce-germanized
|
9161 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:659
|
9162 |
msgctxt "Page slug"
|
9163 |
msgid "data-security"
|
9164 |
msgstr "datenschutzerklaerung"
|
9165 |
|
9166 |
# @ woocommerce-germanized
|
9167 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:660
|
9168 |
msgctxt "Page title"
|
9169 |
msgid "Data Security Statement"
|
9170 |
msgstr "Datenschutzerklärung"
|
9171 |
|
9172 |
# @ woocommerce-germanized
|
9173 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:664
|
9174 |
msgctxt "Page slug"
|
9175 |
msgid "imprint"
|
9176 |
msgstr "impressum"
|
9177 |
|
9178 |
# @ woocommerce-germanized
|
9179 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:665
|
9180 |
msgctxt "Page title"
|
9181 |
msgid "Imprint"
|
9182 |
msgstr "Impressum"
|
9183 |
|
9184 |
# @ woocommerce-germanized
|
9185 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:669
|
9186 |
msgctxt "Page slug"
|
9187 |
msgid "terms"
|
9188 |
msgstr "agb"
|
9189 |
|
9190 |
# @ woocommerce-germanized
|
9191 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:670
|
9192 |
msgctxt "Page title"
|
9193 |
msgid "Terms & Conditions"
|
9194 |
msgstr "AGB"
|
9195 |
|
9196 |
# @ woocommerce-germanized
|
9197 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:674
|
9198 |
msgctxt "Page slug"
|
9199 |
msgid "revocation"
|
9200 |
msgstr "widerrufsbelehrung"
|
9201 |
|
9202 |
# @ woocommerce-germanized
|
9203 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:675
|
9204 |
msgctxt "Page title"
|
9205 |
+
msgid "Cancellation Policy"
|
9206 |
msgstr "Widerrufsbelehrung"
|
9207 |
|
9208 |
# @ woocommerce-germanized
|
9209 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:679
|
9210 |
msgctxt "Page slug"
|
9211 |
msgid "shipping-methods"
|
9212 |
msgstr "versandarten"
|
9213 |
|
9214 |
# @ woocommerce-germanized
|
9215 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:680
|
9216 |
msgctxt "Page title"
|
9217 |
msgid "Shipping Methods"
|
9218 |
msgstr "Versandarten"
|
9219 |
|
9220 |
# @ woocommerce-germanized
|
9221 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:684
|
9222 |
msgctxt "Page slug"
|
9223 |
msgid "payment-methods"
|
9224 |
msgstr "bezahlmoeglichkeiten"
|
9225 |
|
9226 |
# @ woocommerce-germanized
|
9227 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:685
|
9228 |
msgctxt "Page title"
|
9229 |
msgid "Payment Methods"
|
9230 |
msgstr "Zahlungsarten"
|
9231 |
|
9232 |
# @ woocommerce-germanized
|
9233 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:104
|
|
|
9234 |
msgid ""
|
9235 |
"With your order, you agree to have read and understood our {term_link}Terms "
|
9236 |
+
"and Conditions{/term_link}, {revocation_link}Cancellation Policy{/"
|
9237 |
"revocation_link} and our {data_security_link}Privacy Policy{/"
|
9238 |
"data_security_link}."
|
9239 |
msgstr ""
|
9244 |
|
9245 |
# @ woocommerce-germanized
|
9246 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:105
|
|
|
9247 |
msgid ""
|
9248 |
+
"To complete the order you have to accept to our {term_link}Terms and "
|
9249 |
+
"Conditions{/term_link}, {revocation_link}Cancellation Policy{/"
|
9250 |
"revocation_link} and our {data_security_link}Privacy Policy{/"
|
9251 |
"data_security_link}."
|
9252 |
msgstr ""
|
9533 |
# @ woocommerce-germanized
|
9534 |
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:153
|
9535 |
#: woocommerce-germanized/includes/wc-gzd-order-functions.php:35
|
9536 |
+
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:540
|
9537 |
#, php-format
|
9538 |
msgid "Plus %s forwarding fee (charged by the transport agent)"
|
9539 |
msgstr "Zzgl. %s Übermittlungsentgelt (direkt an den Zusteller)"
|
9748 |
msgid "Visible during checkout"
|
9749 |
msgstr "Im Checkout anzeigen"
|
9750 |
|
|
|
9751 |
#: woocommerce-germanized/includes/class-wc-gzd-revocation.php:33
|
9752 |
msgctxt "revocation-form"
|
9753 |
+
msgid "Withdrawal"
|
9754 |
msgstr "Widerruf"
|
9755 |
|
9756 |
# @ woocommerce-germanized
|
9959 |
msgid "Thank you for your order"
|
9960 |
msgstr "Vielen Dank für Ihre Bestellung"
|
9961 |
|
|
|
9962 |
#: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-revocation.php:33
|
9963 |
+
msgid "Withdrawal"
|
9964 |
msgstr "Widerruf"
|
9965 |
|
9966 |
# @ woocommerce-germanized
|
9967 |
#: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-revocation.php:34
|
9968 |
+
msgid "Email being sent if a customer fills out the form of withdrawal."
|
9969 |
msgstr ""
|
9970 |
"Diese E-Mail wird als Bestätigung an den Kunden weitergeleitet, sobald er "
|
9971 |
"das Widerrufsformular ausgefüllt hat."
|
9982 |
|
9983 |
#: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-revocation.php:177
|
9984 |
msgid ""
|
9985 |
+
"Insert the email address of your shop manager here. A copy of the withdrawal "
|
9986 |
+
"confirmation email is being sent to this address."
|
9987 |
msgstr ""
|
9988 |
"Fügen Sie hier die E-Mail Adresse des Shop-Managers ein. Eine Kopie des "
|
9989 |
"Widerrufs wird an diese E-Mail Adresse versendet."
|
10620 |
"Aktiviert die Zahlungsart nur dann, wenn der Kunde bereits eine Bestellung "
|
10621 |
"erfolgreich abgeschlossen hat."
|
10622 |
|
10623 |
+
# @ woocommerce-germanized
|
10624 |
+
#: woocommerce-germanized/includes/updates/woocommerce-gzd-update-2.0.1.php:18
|
10625 |
+
msgid ""
|
10626 |
+
"With your order, you agree to have read and understood our {term_link}Terms "
|
10627 |
+
"and Conditions{/term_link} your {revocation_link}Right of Recission{/"
|
10628 |
+
"revocation_link} and our {data_security_link}Privacy Policy{/"
|
10629 |
+
"data_security_link}."
|
10630 |
+
msgstr ""
|
10631 |
+
"Mit Ihrer Bestellung erklären Sie sich mit unseren {term_link}Allgemeinen "
|
10632 |
+
"Geschäftsbedingungen{/term_link}, {revocation_link}Widerrufsbestimmungen{/"
|
10633 |
+
"revocation_link} und {data_security_link}Datenschutzbestimmungen{/"
|
10634 |
+
"data_security_link} einverstanden."
|
10635 |
+
|
10636 |
+
# @ woocommerce-germanized
|
10637 |
+
#: woocommerce-germanized/includes/updates/woocommerce-gzd-update-2.0.1.php:19
|
10638 |
+
msgid ""
|
10639 |
+
"To finish the order you have to accept to our {term_link}Terms and "
|
10640 |
+
"Conditions{/term_link}, {revocation_link}Right of Recission{/"
|
10641 |
+
"revocation_link} and our {data_security_link}Privacy Policy{/"
|
10642 |
+
"data_security_link}."
|
10643 |
+
msgstr ""
|
10644 |
+
"Bitte akzeptieren Sie unsere {term_link}Allgemeinen Geschäftsbedingungen{/"
|
10645 |
+
"term_link}, {revocation_link}Widerrufsbestimmungen{/revocation_link} und "
|
10646 |
+
"{data_security_link}Datenschutzbestimmungen{/data_security_link}."
|
10647 |
+
|
10648 |
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:195
|
10649 |
msgid ">= 12 years"
|
10650 |
msgstr ">= 12 Jahre"
|
10671 |
msgid "None"
|
10672 |
msgstr "Keines"
|
10673 |
|
|
|
|
|
|
|
|
|
|
|
10674 |
# @ woocommerce-germanized
|
10675 |
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:243
|
10676 |
msgid "Data Security"
|
10695 |
msgstr "Divers"
|
10696 |
|
10697 |
# @ woocommerce-germanized
|
10698 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:851
|
10699 |
+
msgid "More variants available"
|
10700 |
+
msgstr "Weitere Varianten verfügbar"
|
10701 |
+
|
10702 |
+
# @ woocommerce-germanized
|
10703 |
+
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:284
|
10704 |
#: woocommerce-germanized/templates/checkout/edit-data-notice.php:25
|
10705 |
msgid "Edit Order"
|
10706 |
msgstr "Bestellung bearbeiten"
|
10707 |
|
10708 |
# @ woocommerce-germanized
|
10709 |
+
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:295
|
10710 |
msgid "Choose a Payment Gateway"
|
10711 |
msgstr "Zahlungsart auswählen"
|
10712 |
|
10713 |
# @ woocommerce
|
10714 |
+
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:435
|
10715 |
msgid "Place order"
|
10716 |
msgstr "Jetzt kaufen"
|
10717 |
|
10999 |
|
11000 |
# @ woocommerce-germanized
|
11001 |
#: woocommerce-germanized/templates/emails/customer-revocation.php:26
|
|
|
11002 |
msgctxt "revocation-form"
|
11003 |
msgid ""
|
11004 |
+
"By sending you this email we confirm receiving your withdrawal. Please "
|
11005 |
+
"review your data."
|
11006 |
msgstr ""
|
11007 |
"Mit der Zustellung dieser E-Mail bestätigen wir den Eingang Ihres Widerrufs. "
|
11008 |
"Bitte prüfen Sie Ihre Daten."
|
11021 |
msgid "SEPA Data"
|
11022 |
msgstr "SEPA Daten"
|
11023 |
|
11024 |
+
# @ woocommerce-germanized
|
11025 |
+
#: woocommerce-germanized/templates/emails/plain/customer-revocation.php:27
|
11026 |
+
msgctxt "revocation-form"
|
11027 |
+
msgid ""
|
11028 |
+
"By sending you this email we confirm your Revocation. Please review your "
|
11029 |
+
"data."
|
11030 |
+
msgstr ""
|
11031 |
+
"Mit der Zustellung dieser E-Mail bestätigen wir den Eingang Ihres Widerrufs. "
|
11032 |
+
"Bitte prüfen Sie Ihre Daten."
|
11033 |
+
|
11034 |
# @ woocommerce-germanized
|
11035 |
#: woocommerce-germanized/templates/footer/sale-info.php:22
|
11036 |
msgid "All striked out prices refer to prices used to be charged at this shop."
|
11054 |
msgid "To"
|
11055 |
msgstr "An"
|
11056 |
|
|
|
11057 |
#: woocommerce-germanized/templates/forms/revocation-form.php:49
|
11058 |
#: woocommerce-germanized/templates/forms/revocation-form.php:50
|
11059 |
msgctxt "revocation-form"
|
11060 |
+
msgid "Forward Withdrawal"
|
11061 |
msgstr "Widerruf erklären"
|
11062 |
|
11063 |
#: woocommerce-germanized/templates/global/complaints.php:22
|
12336 |
msgid "https://vendidero.de"
|
12337 |
msgstr "https://vendidero.de"
|
12338 |
|
12339 |
+
#~ msgid "Phone"
|
12340 |
+
#~ msgstr "Telefon"
|
12341 |
+
|
12342 |
+
# @ woocommerce-germanized
|
12343 |
+
#~ msgid "Mark phone number as non-required within checkout."
|
12344 |
+
#~ msgstr "Telefonnummer in der Kasse nicht als Pflichtfeld abfragen."
|
12345 |
+
|
12346 |
+
# @ woocommerce-germanized
|
12347 |
+
#~ msgid "Base Price Units"
|
12348 |
+
#~ msgstr "Grundpreiseinheiten"
|
12349 |
+
|
12350 |
+
# @ woocommerce-germanized
|
12351 |
+
#~ msgid "Calculate base prices automatically."
|
12352 |
+
#~ msgstr "Grundpreis automatisch berechnen."
|
12353 |
+
|
12354 |
+
# @ woocommerce-germanized
|
12355 |
+
#~ msgid "Regular Base Price"
|
12356 |
+
#~ msgstr "Regulärer Grundpreis"
|
12357 |
+
|
12358 |
+
# @ woocommerce-germanized
|
12359 |
+
#~ msgid "Sale Base Price"
|
12360 |
+
#~ msgstr "Angebotsgrundpreis"
|
12361 |
+
|
12362 |
+
# @ woocommerce-germanized
|
12363 |
+
#~ msgid "Base Price"
|
12364 |
+
#~ msgstr "Grundpreis"
|
12365 |
+
|
12366 |
+
# @ woocommerce-germanized
|
12367 |
+
#~ msgid "Power of Revocation"
|
12368 |
+
#~ msgstr "Widerrufsbelehrung"
|
12369 |
+
|
12370 |
+
# @ woocommerce-germanized
|
12371 |
+
#~ msgid "Revocation Address"
|
12372 |
+
#~ msgstr "Widerruf richten an"
|
12373 |
+
|
12374 |
+
# @ woocommerce-germanized
|
12375 |
+
#~ msgctxt "Page title"
|
12376 |
+
#~ msgid "Power of Revocation"
|
12377 |
+
#~ msgstr "Widerrufsbelehrung"
|
12378 |
+
|
12379 |
+
# @ woocommerce-germanized
|
12380 |
+
#~ msgctxt "revocation-form"
|
12381 |
+
#~ msgid "Revocation"
|
12382 |
+
#~ msgstr "Widerruf"
|
12383 |
+
|
12384 |
+
# @ woocommerce-germanized
|
12385 |
+
#~ msgid "Revocation"
|
12386 |
+
#~ msgstr "Widerruf"
|
12387 |
+
|
12388 |
+
# @ woocommerce-germanized
|
12389 |
+
#~ msgid "Right of Recission"
|
12390 |
+
#~ msgstr "Widerrufsrecht"
|
12391 |
+
|
12392 |
+
# @ woocommerce-germanized
|
12393 |
+
#~ msgctxt "revocation-form"
|
12394 |
+
#~ msgid "Forward Revocation"
|
12395 |
+
#~ msgstr "Widerruf erklären"
|
12396 |
+
|
12397 |
# @ woocommerce-germanized
|
12398 |
#~ msgid "Shipping costs"
|
12399 |
#~ msgstr "Versandkosten"
|
12729 |
#~ "Passen Sie die Instruktionen an um Kunden über die DHL Sendungsverfolgung "
|
12730 |
#~ "zu informieren. Sie können einen der folgenden Platzhalter verwenden: %s"
|
12731 |
|
|
|
|
|
|
|
|
|
12732 |
#~ msgctxt "dhl"
|
12733 |
#~ msgid "Delete"
|
12734 |
#~ msgstr "Löschen"
|
includes/admin/class-wc-gzd-admin-legal-checkboxes.php
CHANGED
@@ -106,7 +106,7 @@ class WC_GZD_Admin_Legal_Checkboxes {
|
|
106 |
'id' => $checkbox->get_form_field_id( 'confirmation' ),
|
107 |
'css' => 'width:100%; height: 65px;',
|
108 |
'desc_tip' => __( 'This text will be appended to your order processing email if the order contains service products.', 'woocommerce-germanized' ),
|
109 |
-
'desc' => sprintf( __( 'To insert a link to your
|
110 |
'default' => __( '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.', 'woocommerce-germanized' ),
|
111 |
),
|
112 |
) );
|
@@ -131,12 +131,12 @@ class WC_GZD_Admin_Legal_Checkboxes {
|
|
131 |
'id' => $checkbox->get_form_field_id( 'confirmation' ),
|
132 |
'css' => 'width:100%; height: 65px;',
|
133 |
'desc_tip' => __( 'This text will be appended to your order processing email if the order contains digital products.', 'woocommerce-germanized' ),
|
134 |
-
'desc' => sprintf( __( 'To insert a link to your
|
135 |
'default' => __( '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.', 'woocommerce-germanized' ),
|
136 |
),
|
137 |
array(
|
138 |
'title' => __( 'Digital Product types', 'woocommerce-germanized' ),
|
139 |
-
'desc' => __( 'Select product types for which the loss of
|
140 |
'desc_tip' => true,
|
141 |
'id' => $checkbox->get_form_field_id( 'types' ),
|
142 |
'default' => array( 'downloadable' ),
|
106 |
'id' => $checkbox->get_form_field_id( 'confirmation' ),
|
107 |
'css' => 'width:100%; height: 65px;',
|
108 |
'desc_tip' => __( 'This text will be appended to your order processing email if the order contains service products.', 'woocommerce-germanized' ),
|
109 |
+
'desc' => sprintf( __( 'To insert a link to your cancellation policy use the following placeholder: %s', 'woocommerce-germanized' ), '<code>{link}, {/link}</code>' ),
|
110 |
'default' => __( '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.', 'woocommerce-germanized' ),
|
111 |
),
|
112 |
) );
|
131 |
'id' => $checkbox->get_form_field_id( 'confirmation' ),
|
132 |
'css' => 'width:100%; height: 65px;',
|
133 |
'desc_tip' => __( 'This text will be appended to your order processing email if the order contains digital products.', 'woocommerce-germanized' ),
|
134 |
+
'desc' => sprintf( __( 'To insert a link to your cancellation policy use the following placeholder: %s', 'woocommerce-germanized' ), '<code>{link}, {/link}</code>' ),
|
135 |
'default' => __( '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.', 'woocommerce-germanized' ),
|
136 |
),
|
137 |
array(
|
138 |
'title' => __( 'Digital Product types', 'woocommerce-germanized' ),
|
139 |
+
'desc' => __( 'Select product types for which the loss of the right of withdrawal notice is shown. Product types like "simple product" may be redundant because they include virtual and downloadable products.', 'woocommerce-germanized' ),
|
140 |
'desc_tip' => true,
|
141 |
'id' => $checkbox->get_form_field_id( 'types' ),
|
142 |
'default' => array( 'downloadable' ),
|
includes/admin/class-wc-gzd-admin-status.php
CHANGED
@@ -43,7 +43,7 @@ class WC_GZD_Admin_Status extends WC_Admin_Status {
|
|
43 |
|
44 |
$pages = array(
|
45 |
'terms' => __( 'Terms & Conditions', 'woocommerce-germanized' ),
|
46 |
-
'revocation' => __( '
|
47 |
'imprint' => __( 'Imprint', 'woocommerce-germanized' ),
|
48 |
'data_security' => __( 'Data Security Statement', 'woocommerce-germanized' ),
|
49 |
'payment_methods' => __( 'Payment Methods', 'woocommerce-germanized' ),
|
43 |
|
44 |
$pages = array(
|
45 |
'terms' => __( 'Terms & Conditions', 'woocommerce-germanized' ),
|
46 |
+
'revocation' => __( 'Cancellation Policy', 'woocommerce-germanized' ),
|
47 |
'imprint' => __( 'Imprint', 'woocommerce-germanized' ),
|
48 |
'data_security' => __( 'Data Security Statement', 'woocommerce-germanized' ),
|
49 |
'payment_methods' => __( 'Payment Methods', 'woocommerce-germanized' ),
|
includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php
CHANGED
@@ -118,7 +118,7 @@ class WC_Germanized_Meta_Box_Product_Data_Variable {
|
|
118 |
placeholder=""/>
|
119 |
</p>
|
120 |
<p class="form-row form-row-first wc-gzd-unit-price-disabled-notice notice notice-warning">
|
121 |
-
<?php printf( __( 'To enable unit prices on variation level please choose a unit and
|
122 |
</p>
|
123 |
</div>
|
124 |
<div class="variable_shipping_time hide_if_variation_virtual">
|
118 |
placeholder=""/>
|
119 |
</p>
|
120 |
<p class="form-row form-row-first wc-gzd-unit-price-disabled-notice notice notice-warning">
|
121 |
+
<?php printf( __( 'To enable unit prices on variation level please choose a unit and unit price units within %s.', 'woocommerce-germanized' ), '<a href="#general_product_data" class="wc-gzd-general-product-data-tab">' . __( 'general product data', 'woocommerce-germanized' ) . '</a>' ); ?>
|
122 |
</p>
|
123 |
</div>
|
124 |
<div class="variable_shipping_time hide_if_variation_virtual">
|
includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php
CHANGED
@@ -221,10 +221,10 @@ class WC_Germanized_Meta_Box_Product_Data {
|
|
221 |
) );
|
222 |
woocommerce_wp_text_input( array(
|
223 |
'id' => '_unit_base',
|
224 |
-
'label' => __( '
|
225 |
'data_type' => 'decimal',
|
226 |
'desc_tip' => true,
|
227 |
-
'description' => __( '
|
228 |
) );
|
229 |
|
230 |
echo '</div>';
|
@@ -247,16 +247,16 @@ class WC_Germanized_Meta_Box_Product_Data {
|
|
247 |
woocommerce_wp_checkbox( array(
|
248 |
'id' => '_unit_price_auto',
|
249 |
'label' => __( 'Calculation', 'woocommerce-germanized' ),
|
250 |
-
'description' => '<span class="wc-gzd-premium-desc">' . __( 'Calculate
|
251 |
) );
|
252 |
woocommerce_wp_text_input( array(
|
253 |
'id' => '_unit_price_regular',
|
254 |
-
'label' => __( 'Regular
|
255 |
'data_type' => 'price'
|
256 |
) );
|
257 |
woocommerce_wp_text_input( array(
|
258 |
'id' => '_unit_price_sale',
|
259 |
-
'label' => __( 'Sale
|
260 |
'data_type' => 'price'
|
261 |
) );
|
262 |
|
221 |
) );
|
222 |
woocommerce_wp_text_input( array(
|
223 |
'id' => '_unit_base',
|
224 |
+
'label' => __( 'Unit Price Units', 'woocommerce-germanized' ),
|
225 |
'data_type' => 'decimal',
|
226 |
'desc_tip' => true,
|
227 |
+
'description' => __( 'Unit price units. Example unit price: 0,99 € / 100 ml. Insert 100 as unit price unit amount.', 'woocommerce-germanized' )
|
228 |
) );
|
229 |
|
230 |
echo '</div>';
|
247 |
woocommerce_wp_checkbox( array(
|
248 |
'id' => '_unit_price_auto',
|
249 |
'label' => __( 'Calculation', 'woocommerce-germanized' ),
|
250 |
+
'description' => '<span class="wc-gzd-premium-desc">' . __( 'Calculate unit prices automatically.', 'woocommerce-germanized' ) . '</span> <a href="https://vendidero.de/woocommerce-germanized#upgrade" target="_blank" class="wc-gzd-pro">pro</a>'
|
251 |
) );
|
252 |
woocommerce_wp_text_input( array(
|
253 |
'id' => '_unit_price_regular',
|
254 |
+
'label' => __( 'Regular Unit Price', 'woocommerce-germanized' ) . ' (' . get_woocommerce_currency_symbol() . ')',
|
255 |
'data_type' => 'price'
|
256 |
) );
|
257 |
woocommerce_wp_text_input( array(
|
258 |
'id' => '_unit_price_sale',
|
259 |
+
'label' => __( 'Sale Unit Price', 'woocommerce-germanized' ) . ' (' . get_woocommerce_currency_symbol() . ')',
|
260 |
'data_type' => 'price'
|
261 |
) );
|
262 |
|
includes/admin/notes/class-wc-gzd-admin-note-pro.php
CHANGED
@@ -27,7 +27,7 @@ class WC_GZD_Admin_Note_Pro extends WC_GZD_Admin_Note {
|
|
27 |
$content = '<p>' . __( '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:', 'woocommerce-germanized' ) . '</p>
|
28 |
<ul>
|
29 |
<li>✓ ' . __( 'PDF invoices and packing slips', 'woocommerce-germanized' ) . '</li>
|
30 |
-
<li>✓ ' . __( 'Generator for terms & conditions and
|
31 |
<li>✓ ' . __( 'Multistep Checkout', 'woocommerce-germanized' ) . '</li>
|
32 |
<li>✓ <strong>' . __( 'Premium Ticket Support', 'woocommerce-germanized' ) . '</strong></li>
|
33 |
</ul>
|
27 |
$content = '<p>' . __( '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:', 'woocommerce-germanized' ) . '</p>
|
28 |
<ul>
|
29 |
<li>✓ ' . __( 'PDF invoices and packing slips', 'woocommerce-germanized' ) . '</li>
|
30 |
+
<li>✓ ' . __( 'Generator for terms & conditions and cancellation policy', 'woocommerce-germanized' ) . '</li>
|
31 |
<li>✓ ' . __( 'Multistep Checkout', 'woocommerce-germanized' ) . '</li>
|
32 |
<li>✓ <strong>' . __( 'Premium Ticket Support', 'woocommerce-germanized' ) . '</strong></li>
|
33 |
</ul>
|
includes/admin/settings/class-wc-gzd-settings-tab-general.php
CHANGED
@@ -60,8 +60,8 @@ class WC_GZD_Settings_Tab_General extends WC_GZD_Settings_Tab {
|
|
60 |
'desc' => ( ! get_option( 'woocommerce_terms_page_id' ) ? sprintf( __( 'Don\'t have terms & conditions yet? <a href="%s">Generate now</a>!', 'woocommerce-germanized' ), admin_url( 'admin.php?page=wc-settings&tab=germanized-terms_generator' ) ) : '' ),
|
61 |
),
|
62 |
array(
|
63 |
-
'title' => __( '
|
64 |
-
'desc_tip' => __( 'This page should contain information regarding your customer\'s Right of
|
65 |
'id' => 'woocommerce_revocation_page_id',
|
66 |
'type' => 'single_select_page',
|
67 |
'default' => '',
|
@@ -71,8 +71,8 @@ class WC_GZD_Settings_Tab_General extends WC_GZD_Settings_Tab {
|
|
71 |
),
|
72 |
|
73 |
array(
|
74 |
-
'title' => __( '
|
75 |
-
'desc' => __( 'Type in an address, telephone/telefax number, email address which is to be used as
|
76 |
'desc_tip' => true,
|
77 |
'css' => 'width:100%; height: 65px;',
|
78 |
'id' => 'woocommerce_gzd_revocation_address',
|
@@ -228,13 +228,6 @@ class WC_GZD_Settings_Tab_General extends WC_GZD_Settings_Tab {
|
|
228 |
return array(
|
229 |
array( 'title' => '', 'type' => 'title', 'desc' => '', 'id' => 'checkout_options' ),
|
230 |
|
231 |
-
array(
|
232 |
-
'title' => __( 'Phone', 'woocommerce-germanized' ),
|
233 |
-
'desc' => __( 'Mark phone number as non-required within checkout.', 'woocommerce-germanized' ),
|
234 |
-
'id' => 'woocommerce_gzd_checkout_phone_non_required',
|
235 |
-
'type' => 'gzd_toggle',
|
236 |
-
'default' => 'yes',
|
237 |
-
),
|
238 |
array(
|
239 |
'title' => __( 'Title', 'woocommerce-germanized' ),
|
240 |
'desc' => __( 'Add a title field to the address within checkout.', 'woocommerce-germanized' ),
|
@@ -285,15 +278,6 @@ class WC_GZD_Settings_Tab_General extends WC_GZD_Settings_Tab {
|
|
285 |
return array(
|
286 |
array( 'title' => '', 'type' => 'title', 'desc' => '', 'id' => 'shop_options' ),
|
287 |
|
288 |
-
array(
|
289 |
-
'title' => __( 'Price Range Format', 'woocommerce-germanized' ),
|
290 |
-
'desc' => '<div class="wc-gzd-additional-desc">' . __( '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.', 'woocommerce-germanized' ) . '</div>',
|
291 |
-
'id' => 'woocommerce_gzd_price_range_format_text',
|
292 |
-
'type' => 'text',
|
293 |
-
'css' => 'min-width:300px;',
|
294 |
-
'default' => __( '{min_price} – {max_price}', 'woocommerce-germanized' ),
|
295 |
-
),
|
296 |
-
|
297 |
array(
|
298 |
'title' => __( 'Add to Cart', 'woocommerce-germanized' ),
|
299 |
'desc' => __( 'Show add to cart button on listings.', 'woocommerce-germanized' ),
|
60 |
'desc' => ( ! get_option( 'woocommerce_terms_page_id' ) ? sprintf( __( 'Don\'t have terms & conditions yet? <a href="%s">Generate now</a>!', 'woocommerce-germanized' ), admin_url( 'admin.php?page=wc-settings&tab=germanized-terms_generator' ) ) : '' ),
|
61 |
),
|
62 |
array(
|
63 |
+
'title' => __( 'Cancellation Policy', 'woocommerce-germanized' ),
|
64 |
+
'desc_tip' => __( 'This page should contain information regarding your customer\'s Right of Withdrawal.', 'woocommerce-germanized' ),
|
65 |
'id' => 'woocommerce_revocation_page_id',
|
66 |
'type' => 'single_select_page',
|
67 |
'default' => '',
|
71 |
),
|
72 |
|
73 |
array(
|
74 |
+
'title' => __( 'Send withdrawal to', 'woocommerce-germanized' ),
|
75 |
+
'desc' => __( 'Type in an address, telephone/telefax number, email address which is to be used as the recipient address of the withdrawal.', 'woocommerce-germanized' ),
|
76 |
'desc_tip' => true,
|
77 |
'css' => 'width:100%; height: 65px;',
|
78 |
'id' => 'woocommerce_gzd_revocation_address',
|
228 |
return array(
|
229 |
array( 'title' => '', 'type' => 'title', 'desc' => '', 'id' => 'checkout_options' ),
|
230 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
231 |
array(
|
232 |
'title' => __( 'Title', 'woocommerce-germanized' ),
|
233 |
'desc' => __( 'Add a title field to the address within checkout.', 'woocommerce-germanized' ),
|
278 |
return array(
|
279 |
array( 'title' => '', 'type' => 'title', 'desc' => '', 'id' => 'shop_options' ),
|
280 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
array(
|
282 |
'title' => __( 'Add to Cart', 'woocommerce-germanized' ),
|
283 |
'desc' => __( 'Show add to cart button on listings.', 'woocommerce-germanized' ),
|
includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php
CHANGED
@@ -222,7 +222,7 @@ class WC_GZD_Settings_Tab_Shopmarks extends WC_GZD_Settings_Tab {
|
|
222 |
'checkboxgroup' => '',
|
223 |
),
|
224 |
array(
|
225 |
-
'desc' => __( '
|
226 |
'id' => 'woocommerce_gzd_display_product_widget_unit_price',
|
227 |
'type' => 'gzd_toggle',
|
228 |
'default' => 'yes',
|
@@ -253,7 +253,7 @@ class WC_GZD_Settings_Tab_Shopmarks extends WC_GZD_Settings_Tab {
|
|
253 |
|
254 |
array(
|
255 |
'title' => __( 'E-Mails', 'woocommerce-germanized' ),
|
256 |
-
'desc' => __( '
|
257 |
'id' => 'woocommerce_gzd_display_emails_unit_price',
|
258 |
'type' => 'gzd_toggle',
|
259 |
'default' => 'yes',
|
@@ -361,6 +361,23 @@ class WC_GZD_Settings_Tab_Shopmarks extends WC_GZD_Settings_Tab {
|
|
361 |
protected function get_general_settings() {
|
362 |
|
363 |
$settings = array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
364 |
array(
|
365 |
'title' => __( 'Shipping Costs', 'woocommerce-germanized' ),
|
366 |
'type' => 'title',
|
@@ -503,19 +520,12 @@ class WC_GZD_Settings_Tab_Shopmarks extends WC_GZD_Settings_Tab {
|
|
503 |
array( 'type' => 'title', 'title' => '', 'id' => 'unit_price_options' ),
|
504 |
array(
|
505 |
'title' => __( 'Format', 'woocommerce-germanized' ),
|
506 |
-
'desc' => '<div class="wc-gzd-additional-desc">' . __( 'This text will be used to display the
|
507 |
'desc_tip' => false,
|
508 |
'id' => 'woocommerce_gzd_unit_price_text',
|
509 |
'type' => 'text',
|
510 |
'default' => __( '{price}', 'woocommerce-germanized' ),
|
511 |
),
|
512 |
-
array(
|
513 |
-
'title' => __( 'Variable Price', 'woocommerce-germanized' ),
|
514 |
-
'desc' => __( 'Enable price range base prices for variable products.', 'woocommerce-germanized' ),
|
515 |
-
'id' => 'woocommerce_gzd_unit_price_enable_variable',
|
516 |
-
'default' => 'yes',
|
517 |
-
'type' => 'gzd_toggle',
|
518 |
-
),
|
519 |
array(
|
520 |
'title' => __( 'Product units format', 'woocommerce-germanized' ),
|
521 |
'desc' => '<div class="wc-gzd-additional-desc">' . __( '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}.', 'woocommerce-germanized' ) . '</div>',
|
@@ -524,6 +534,13 @@ class WC_GZD_Settings_Tab_Shopmarks extends WC_GZD_Settings_Tab {
|
|
524 |
'type' => 'text',
|
525 |
'default' => __( 'Product contains: {product_units} {unit}', 'woocommerce-germanized' ),
|
526 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
527 |
array( 'type' => 'sectionend', 'id' => 'unit_price_options' ),
|
528 |
);
|
529 |
}
|
222 |
'checkboxgroup' => '',
|
223 |
),
|
224 |
array(
|
225 |
+
'desc' => __( 'Unit Price', 'woocommerce-germanized' ),
|
226 |
'id' => 'woocommerce_gzd_display_product_widget_unit_price',
|
227 |
'type' => 'gzd_toggle',
|
228 |
'default' => 'yes',
|
253 |
|
254 |
array(
|
255 |
'title' => __( 'E-Mails', 'woocommerce-germanized' ),
|
256 |
+
'desc' => __( 'Unit Price', 'woocommerce-germanized' ),
|
257 |
'id' => 'woocommerce_gzd_display_emails_unit_price',
|
258 |
'type' => 'gzd_toggle',
|
259 |
'default' => 'yes',
|
361 |
protected function get_general_settings() {
|
362 |
|
363 |
$settings = array(
|
364 |
+
array(
|
365 |
+
'title' => __( 'Price Ranges', 'woocommerce-germanized' ),
|
366 |
+
'type' => 'title',
|
367 |
+
'id' => 'price_range_options'
|
368 |
+
),
|
369 |
+
|
370 |
+
array(
|
371 |
+
'title' => __( 'Price Range Format', 'woocommerce-germanized' ),
|
372 |
+
'desc' => '<div class="wc-gzd-additional-desc">' . __( '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.', 'woocommerce-germanized' ) . '</div>',
|
373 |
+
'id' => 'woocommerce_gzd_price_range_format_text',
|
374 |
+
'type' => 'text',
|
375 |
+
'css' => 'min-width:300px;',
|
376 |
+
'default' => __( '{min_price} – {max_price}', 'woocommerce-germanized' ),
|
377 |
+
),
|
378 |
+
|
379 |
+
array( 'type' => 'sectionend', 'id' => 'price_range_options' ),
|
380 |
+
|
381 |
array(
|
382 |
'title' => __( 'Shipping Costs', 'woocommerce-germanized' ),
|
383 |
'type' => 'title',
|
520 |
array( 'type' => 'title', 'title' => '', 'id' => 'unit_price_options' ),
|
521 |
array(
|
522 |
'title' => __( 'Format', 'woocommerce-germanized' ),
|
523 |
+
'desc' => '<div class="wc-gzd-additional-desc">' . __( 'This text will be used to display the unit price. Use {price} to insert the price. If you want to specifically format unit price output use {base}, {unit} and {unit_price} as placeholders.', 'woocommerce-germanized' ) . '</div>',
|
524 |
'desc_tip' => false,
|
525 |
'id' => 'woocommerce_gzd_unit_price_text',
|
526 |
'type' => 'text',
|
527 |
'default' => __( '{price}', 'woocommerce-germanized' ),
|
528 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
529 |
array(
|
530 |
'title' => __( 'Product units format', 'woocommerce-germanized' ),
|
531 |
'desc' => '<div class="wc-gzd-additional-desc">' . __( '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}.', 'woocommerce-germanized' ) . '</div>',
|
534 |
'type' => 'text',
|
535 |
'default' => __( 'Product contains: {product_units} {unit}', 'woocommerce-germanized' ),
|
536 |
),
|
537 |
+
array(
|
538 |
+
'title' => __( 'Variable Unit Price', 'woocommerce-germanized' ),
|
539 |
+
'desc' => __( 'Enable price range unit prices for variable products.', 'woocommerce-germanized' ),
|
540 |
+
'id' => 'woocommerce_gzd_unit_price_enable_variable',
|
541 |
+
'default' => 'yes',
|
542 |
+
'type' => 'gzd_toggle',
|
543 |
+
),
|
544 |
array( 'type' => 'sectionend', 'id' => 'unit_price_options' ),
|
545 |
);
|
546 |
}
|
includes/class-wc-gzd-checkout.php
CHANGED
@@ -575,15 +575,6 @@ class WC_GZD_Checkout {
|
|
575 |
);
|
576 |
}
|
577 |
|
578 |
-
if ( 'yes' === get_option( 'woocommerce_gzd_checkout_phone_non_required' ) ) {
|
579 |
-
$this->custom_fields['phone'] = array(
|
580 |
-
'before' => '',
|
581 |
-
'override' => true,
|
582 |
-
'required' => false,
|
583 |
-
'group' => array( 'billing' )
|
584 |
-
);
|
585 |
-
}
|
586 |
-
|
587 |
/**
|
588 |
* Filter to adjust custom checkout-related admin fields.
|
589 |
*
|
@@ -715,9 +706,21 @@ class WC_GZD_Checkout {
|
|
715 |
|
716 |
foreach( $rates as $key => $rate ) {
|
717 |
$original_taxes = $rate->get_taxes();
|
718 |
-
$
|
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
|
@@ -729,7 +732,7 @@ class WC_GZD_Checkout {
|
|
729 |
|
730 |
foreach ( $tax_shares as $tax_rate => $class ) {
|
731 |
$tax_rates = WC_Tax::get_rates( $tax_rate );
|
732 |
-
$cost_share = $
|
733 |
$taxes = $taxes + WC_Tax::calc_tax( $cost_share, $tax_rates, wc_gzd_additional_costs_include_tax() );
|
734 |
}
|
735 |
|
@@ -741,7 +744,7 @@ class WC_GZD_Checkout {
|
|
741 |
$tax_rates = WC_Tax::get_shipping_tax_rates();
|
742 |
|
743 |
if ( ! empty( $tax_rates ) ) {
|
744 |
-
$taxes = WC_Tax::calc_tax( $
|
745 |
|
746 |
$rates[ $key ]->set_taxes( $taxes );
|
747 |
}
|
@@ -755,15 +758,15 @@ class WC_GZD_Checkout {
|
|
755 |
*/
|
756 |
if ( wc_gzd_additional_costs_include_tax() ) {
|
757 |
$tax_total = array_sum( $rates[ $key ]->get_taxes() );
|
758 |
-
$
|
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( $
|
763 |
-
$
|
764 |
}
|
765 |
|
766 |
-
$rates[ $key ]->set_cost( $
|
767 |
}
|
768 |
}
|
769 |
|
575 |
);
|
576 |
}
|
577 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
578 |
/**
|
579 |
* Filter to adjust custom checkout-related admin fields.
|
580 |
*
|
706 |
|
707 |
foreach( $rates as $key => $rate ) {
|
708 |
$original_taxes = $rate->get_taxes();
|
709 |
+
$original_cost = $rate->get_cost();
|
710 |
$tax_shares = wc_gzd_get_cart_tax_share( 'shipping' );
|
711 |
|
712 |
+
/**
|
713 |
+
* Prevent bugs in plugins like Woo Subscriptions which
|
714 |
+
* apply the woocommerce_package_rates filter twice (which might lead to costs being reduced twice).
|
715 |
+
*
|
716 |
+
* Store the original shipping costs (before removing tax) within the object.
|
717 |
+
*/
|
718 |
+
if ( isset( $rate->original_cost ) ) {
|
719 |
+
$original_cost = $rate->original_cost;
|
720 |
+
} else {
|
721 |
+
$rate->original_cost = $original_cost;
|
722 |
+
}
|
723 |
+
|
724 |
/**
|
725 |
* Calculate split taxes if the cart contains more than one tax rate.
|
726 |
* Tax rounding (e.g. for subtotal) is handled by WC_Cart_Totals::get_shipping_from_cart
|
732 |
|
733 |
foreach ( $tax_shares as $tax_rate => $class ) {
|
734 |
$tax_rates = WC_Tax::get_rates( $tax_rate );
|
735 |
+
$cost_share = $original_cost * $class['share'];
|
736 |
$taxes = $taxes + WC_Tax::calc_tax( $cost_share, $tax_rates, wc_gzd_additional_costs_include_tax() );
|
737 |
}
|
738 |
|
744 |
$tax_rates = WC_Tax::get_shipping_tax_rates();
|
745 |
|
746 |
if ( ! empty( $tax_rates ) ) {
|
747 |
+
$taxes = WC_Tax::calc_tax( $original_cost, $tax_rates, wc_gzd_additional_costs_include_tax() );
|
748 |
|
749 |
$rates[ $key ]->set_taxes( $taxes );
|
750 |
}
|
758 |
*/
|
759 |
if ( wc_gzd_additional_costs_include_tax() ) {
|
760 |
$tax_total = array_sum( $rates[ $key ]->get_taxes() );
|
761 |
+
$new_cost = $original_cost - $tax_total;
|
762 |
|
763 |
if ( WC()->customer->is_vat_exempt() ) {
|
764 |
$shipping_rates = WC_Tax::get_shipping_tax_rates();
|
765 |
+
$shipping_taxes = WC_Tax::calc_inclusive_tax( $original_cost, $shipping_rates );
|
766 |
+
$new_cost = ( $new_cost - array_sum( $shipping_taxes ) );
|
767 |
}
|
768 |
|
769 |
+
$rates[ $key ]->set_cost( $new_cost );
|
770 |
}
|
771 |
}
|
772 |
|
includes/class-wc-gzd-emails.php
CHANGED
@@ -167,7 +167,7 @@ class WC_GZD_Emails {
|
|
167 |
* @return string
|
168 |
*/
|
169 |
public function add_bcc_email_headers( $headers, $id, $object, $email = null ) {
|
170 |
-
if ( $email ) {
|
171 |
$recipients = $email->get_option( 'bcc' );
|
172 |
|
173 |
if ( $recipients && ! empty( $recipients ) ) {
|
@@ -1127,6 +1127,6 @@ class WC_GZD_Emails {
|
|
1127 |
* @return string
|
1128 |
*/
|
1129 |
public function revocation_form_replacement( $atts ) {
|
1130 |
-
return '<a href="' . esc_url( wc_gzd_get_page_permalink( 'revocation' ) ) . '">' . _x( 'Forward your
|
1131 |
}
|
1132 |
}
|
167 |
* @return string
|
168 |
*/
|
169 |
public function add_bcc_email_headers( $headers, $id, $object, $email = null ) {
|
170 |
+
if ( $email && is_a( $email, 'WC_Email' ) ) {
|
171 |
$recipients = $email->get_option( 'bcc' );
|
172 |
|
173 |
if ( $recipients && ! empty( $recipients ) ) {
|
1127 |
* @return string
|
1128 |
*/
|
1129 |
public function revocation_form_replacement( $atts ) {
|
1130 |
+
return '<a href="' . esc_url( wc_gzd_get_page_permalink( 'revocation' ) ) . '">' . _x( 'Forward your withdrawal online', 'revocation-form', 'woocommerce-germanized' ) . '</a>';
|
1131 |
}
|
1132 |
}
|
includes/class-wc-gzd-install.php
CHANGED
@@ -37,7 +37,8 @@ if ( ! class_exists( 'WC_GZD_Install' ) ) :
|
|
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 |
/**
|
@@ -671,7 +672,7 @@ if ( ! class_exists( 'WC_GZD_Install' ) ) :
|
|
671 |
),
|
672 |
'revocation' => array(
|
673 |
'name' => _x( 'revocation', 'Page slug', 'woocommerce-germanized' ),
|
674 |
-
'title' => _x( '
|
675 |
'content' => ''
|
676 |
),
|
677 |
'shipping_costs' => array(
|
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 |
+
'3.3.5' => 'updates/woocommerce-gzd-update-3.3.5.php'
|
42 |
);
|
43 |
|
44 |
/**
|
672 |
),
|
673 |
'revocation' => array(
|
674 |
'name' => _x( 'revocation', 'Page slug', 'woocommerce-germanized' ),
|
675 |
+
'title' => _x( 'Cancellation Policy', 'Page title', 'woocommerce-germanized' ),
|
676 |
'content' => ''
|
677 |
),
|
678 |
'shipping_costs' => array(
|
includes/class-wc-gzd-legal-checkbox-manager.php
CHANGED
@@ -101,8 +101,8 @@ class WC_GZD_Legal_Checkbox_Manager {
|
|
101 |
'html_wrapper_classes' => array( 'legal' ),
|
102 |
'hide_input' => false,
|
103 |
'label_args' => $this->get_legal_label_args(),
|
104 |
-
'label' => __( 'With your order, you agree to have read and understood our {term_link}Terms and Conditions{/term_link}
|
105 |
-
'error_message' => __( 'To
|
106 |
'is_mandatory' => true,
|
107 |
'priority' => 0,
|
108 |
'template_name' => 'checkout/terms.php',
|
101 |
'html_wrapper_classes' => array( 'legal' ),
|
102 |
'hide_input' => false,
|
103 |
'label_args' => $this->get_legal_label_args(),
|
104 |
+
'label' => __( 'With your order, you agree to have read and understood our {term_link}Terms and Conditions{/term_link}, {revocation_link}Cancellation Policy{/revocation_link} and our {data_security_link}Privacy Policy{/data_security_link}.', 'woocommerce-germanized' ),
|
105 |
+
'error_message' => __( 'To complete the order you have to accept to our {term_link}Terms and Conditions{/term_link}, {revocation_link}Cancellation Policy{/revocation_link} and our {data_security_link}Privacy Policy{/data_security_link}.', 'woocommerce-germanized' ),
|
106 |
'is_mandatory' => true,
|
107 |
'priority' => 0,
|
108 |
'template_name' => 'checkout/terms.php',
|
includes/class-wc-gzd-product-grouped.php
CHANGED
@@ -31,86 +31,133 @@ class WC_GZD_Product_Grouped extends WC_GZD_Product {
|
|
31 |
return $product && is_a( $product, 'WC_GZD_Product' ) && ( 'publish' === $product->get_status() || current_user_can( 'edit_product', $product->get_id() ) );
|
32 |
}
|
33 |
|
34 |
-
protected function
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
|
|
44 |
|
45 |
-
|
|
|
|
|
46 |
|
47 |
-
|
48 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
|
51 |
-
|
52 |
-
|
53 |
-
if ( $gzd_child->has_unit() ) {
|
54 |
-
$unit = $gzd_child->get_unit();
|
55 |
-
|
56 |
-
if ( ! isset( $this->child_prices[ $unit ] ) ) {
|
57 |
-
$this->child_prices[ $unit ] = array();
|
58 |
-
$this->child_prices[ $unit ]['prices'] = array(
|
59 |
-
'incl' => array(
|
60 |
-
'price' => array(),
|
61 |
-
'regular_price' => array(),
|
62 |
-
'sale_price' => array(),
|
63 |
-
),
|
64 |
-
'excl' => array(
|
65 |
-
'price' => array(),
|
66 |
-
'regular_price' => array(),
|
67 |
-
'sale_price' => array(),
|
68 |
-
),
|
69 |
-
);
|
70 |
-
}
|
71 |
|
72 |
-
|
73 |
-
|
74 |
-
|
|
|
75 |
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
'products' => $gzd_child->get_unit_product(),
|
80 |
-
), $child );
|
81 |
|
82 |
-
|
83 |
-
|
84 |
-
'products' => $gzd_child->get_unit_product(),
|
85 |
-
'tax_mode' => 'excl',
|
86 |
-
), $child );
|
87 |
|
88 |
-
|
89 |
-
|
|
|
|
|
90 |
continue;
|
91 |
}
|
92 |
|
93 |
-
$
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
}
|
103 |
}
|
104 |
-
}
|
105 |
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
|
|
114 |
}
|
115 |
}
|
116 |
}
|
@@ -211,16 +258,14 @@ class WC_GZD_Product_Grouped extends WC_GZD_Product {
|
|
211 |
|
212 |
if ( $this->has_unit() ) {
|
213 |
|
214 |
-
$prices
|
215 |
-
$text = get_option( 'woocommerce_gzd_unit_price_text' );
|
216 |
-
|
217 |
$min_price = current( $prices['price'] );
|
218 |
$max_price = end( $prices['price'] );
|
219 |
$min_reg_price = current( $prices['regular_price'] );
|
220 |
$max_reg_price = end( $prices['regular_price'] );
|
221 |
|
222 |
if ( $min_price !== $max_price ) {
|
223 |
-
$price =
|
224 |
} elseif ( $this->child->is_on_sale() && $min_reg_price === $max_reg_price ) {
|
225 |
$price = wc_format_sale_price( wc_price( $max_reg_price ), wc_price( $min_price ) );
|
226 |
} else {
|
@@ -238,24 +283,7 @@ class WC_GZD_Product_Grouped extends WC_GZD_Product {
|
|
238 |
*
|
239 |
*/
|
240 |
$price = apply_filters( 'woocommerce_gzd_grouped_unit_price_html', $price, $this );
|
241 |
-
|
242 |
-
/** This filter is documented in includes/abstract/abstract-wc-gzd-product.php */
|
243 |
-
$separator = apply_filters( 'wc_gzd_unit_price_base_seperator', ' ' );
|
244 |
-
|
245 |
-
if ( strpos( $text, '{price}' ) !== false ) {
|
246 |
-
$replacements = array(
|
247 |
-
/** This filter is documented in includes/abstract/abstract-wc-gzd-product.php */
|
248 |
-
'{price}' => $price . apply_filters( 'wc_gzd_unit_price_seperator', ' / ' ) . $this->get_unit_base_html() . $separator . $this->get_unit_html(),
|
249 |
-
);
|
250 |
-
} else {
|
251 |
-
$replacements = array(
|
252 |
-
'{base_price}' => $price,
|
253 |
-
'{unit}' => $this->get_unit_html(),
|
254 |
-
'{base}' => $this->get_unit_base_html(),
|
255 |
-
);
|
256 |
-
}
|
257 |
-
|
258 |
-
$price = wc_gzd_replace_label_shortcodes( $text, $replacements );
|
259 |
}
|
260 |
|
261 |
/** This filter is documented in includes/abstract/abstract-wc-gzd-product.php */
|
31 |
return $product && is_a( $product, 'WC_GZD_Product' ) && ( 'publish' === $product->get_status() || current_user_can( 'edit_product', $product->get_id() ) );
|
32 |
}
|
33 |
|
34 |
+
protected function get_min_max_child_products() {
|
35 |
+
$tax_display_mode = get_option( 'woocommerce_tax_display_shop' );
|
36 |
+
$children = array_filter( array_map( 'wc_get_product', $this->get_wc_product()->get_children() ), 'wc_products_array_filter_visible_grouped' );
|
37 |
+
$products = array();
|
38 |
+
$sort = false;
|
39 |
+
|
40 |
+
foreach ( $children as $child ) {
|
41 |
+
if ( '' !== $child->get_price() ) {
|
42 |
+
$child_prices[ $child->get_id() ] = 'incl' === $tax_display_mode ? wc_get_price_including_tax( $child ) : wc_get_price_excluding_tax( $child );
|
43 |
+
}
|
44 |
+
}
|
45 |
|
46 |
+
if ( ! empty( $child_prices ) ) {
|
47 |
+
$min_id = array_keys( $child_prices, min( $child_prices ) )[0];
|
48 |
+
$max_id = array_keys( $child_prices, max( $child_prices ) )[0];
|
49 |
|
50 |
+
/**
|
51 |
+
* In case the current price range format includes a starting from price only
|
52 |
+
* we will need to make sure that we do only check unit prices for variations
|
53 |
+
* that match the minimum price.
|
54 |
+
*/
|
55 |
+
if ( woocommerce_gzd_price_range_format_is_min_price() ) {
|
56 |
+
asort( $child_prices );
|
57 |
+
$min_price = min( $child_prices );
|
58 |
+
$products = array();
|
59 |
+
$sort = true;
|
60 |
+
|
61 |
+
foreach( $child_prices as $child_id => $price ) {
|
62 |
+
if ( $price <= $min_price ) {
|
63 |
+
$products[] = $child_id;
|
64 |
}
|
65 |
+
}
|
66 |
+
} elseif ( $min_id === $max_id ) {
|
67 |
+
$products = $children;
|
68 |
+
$sort = true;
|
69 |
+
} else {
|
70 |
+
$products = array(
|
71 |
+
wc_gzd_get_gzd_product( $min_id ),
|
72 |
+
wc_gzd_get_gzd_product( $max_id ),
|
73 |
+
);
|
74 |
+
}
|
75 |
+
}
|
76 |
|
77 |
+
return array( 'products' => $products, 'sort' => $sort );
|
78 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
|
80 |
+
protected function get_child_unit_data() {
|
81 |
+
if ( is_null( $this->child_prices ) ) {
|
82 |
+
$min_max = $this->get_min_max_child_products();
|
83 |
+
$this->child_prices = array();
|
84 |
|
85 |
+
if ( ! empty( $min_max['products'] ) ) {
|
86 |
+
$sort = $min_max['sort'];
|
87 |
+
$children = $min_max['products'];
|
|
|
|
|
88 |
|
89 |
+
if ( ! empty( $children ) ) {
|
90 |
+
$this->has_unit_price = true;
|
|
|
|
|
|
|
91 |
|
92 |
+
foreach ( $children as $child ) {
|
93 |
+
$child = wc_gzd_get_gzd_product( $child );
|
94 |
+
|
95 |
+
if ( ! $child ) {
|
96 |
continue;
|
97 |
}
|
98 |
|
99 |
+
if ( $child->has_unit() ) {
|
100 |
+
$unit = $child->get_unit();
|
101 |
+
|
102 |
+
if ( ! isset( $this->child_prices[ $unit ] ) ) {
|
103 |
+
$this->child_prices[ $unit ] = array();
|
104 |
+
$this->child_prices[ $unit ]['prices'] = array(
|
105 |
+
'incl' => array(
|
106 |
+
'price' => array(),
|
107 |
+
'regular_price' => array(),
|
108 |
+
'sale_price' => array(),
|
109 |
+
),
|
110 |
+
'excl' => array(
|
111 |
+
'price' => array(),
|
112 |
+
'regular_price' => array(),
|
113 |
+
'sale_price' => array(),
|
114 |
+
),
|
115 |
+
);
|
116 |
+
}
|
117 |
+
|
118 |
+
if ( ! isset( $this->child_prices[ $unit ]['base'] ) ) {
|
119 |
+
$this->child_prices[ $unit ]['base'] = $child->get_unit_base();
|
120 |
+
}
|
121 |
+
|
122 |
+
// Recalculate new prices
|
123 |
+
$prices_incl = wc_gzd_recalculate_unit_price( array(
|
124 |
+
'base' => $this->child_prices[ $unit ]['base'],
|
125 |
+
'products' => $child->get_unit_product(),
|
126 |
+
), $child );
|
127 |
+
|
128 |
+
$prices_excl = wc_gzd_recalculate_unit_price( array(
|
129 |
+
'base' => $this->child_prices[ $unit ]['base'],
|
130 |
+
'products' => $child->get_unit_product(),
|
131 |
+
'tax_mode' => 'excl',
|
132 |
+
), $child );
|
133 |
+
|
134 |
+
if ( empty( $prices_incl ) || empty( $prices_excl ) ) {
|
135 |
+
$this->has_unit_price = false;
|
136 |
+
continue;
|
137 |
+
}
|
138 |
+
|
139 |
+
$this->child_prices[ $unit ]['prices']['incl']['price'][] = $prices_incl['unit'];
|
140 |
+
$this->child_prices[ $unit ]['prices']['incl']['regular_price'][] = $prices_incl['regular'];
|
141 |
+
$this->child_prices[ $unit ]['prices']['incl']['sale_price'][] = $prices_incl['sale'];
|
142 |
+
|
143 |
+
$this->child_prices[ $unit ]['prices']['excl']['price'][] = $prices_excl['unit'];
|
144 |
+
$this->child_prices[ $unit ]['prices']['excl']['regular_price'][] = $prices_excl['regular'];
|
145 |
+
$this->child_prices[ $unit ]['prices']['excl']['sale_price'][] = $prices_excl['sale'];
|
146 |
+
} else {
|
147 |
+
$this->has_unit_price = false;
|
148 |
+
}
|
149 |
}
|
150 |
}
|
|
|
151 |
|
152 |
+
if ( $sort && ! empty( $this->child_prices ) ) {
|
153 |
+
foreach ( $this->child_prices as $unit => $data ) {
|
154 |
+
asort( $this->child_prices[ $unit ]['prices']['incl']['price'] );
|
155 |
+
asort( $this->child_prices[ $unit ]['prices']['incl']['regular_price'] );
|
156 |
+
asort( $this->child_prices[ $unit ]['prices']['incl']['sale_price'] );
|
157 |
+
asort( $this->child_prices[ $unit ]['prices']['excl']['price'] );
|
158 |
+
asort( $this->child_prices[ $unit ]['prices']['excl']['regular_price'] );
|
159 |
+
asort( $this->child_prices[ $unit ]['prices']['excl']['sale_price'] );
|
160 |
+
}
|
161 |
}
|
162 |
}
|
163 |
}
|
258 |
|
259 |
if ( $this->has_unit() ) {
|
260 |
|
261 |
+
$prices = $this->get_child_unit_prices();
|
|
|
|
|
262 |
$min_price = current( $prices['price'] );
|
263 |
$max_price = end( $prices['price'] );
|
264 |
$min_reg_price = current( $prices['regular_price'] );
|
265 |
$max_reg_price = end( $prices['regular_price'] );
|
266 |
|
267 |
if ( $min_price !== $max_price ) {
|
268 |
+
$price = woocommerce_gzd_format_unit_price_range( $min_price, $max_price );
|
269 |
} elseif ( $this->child->is_on_sale() && $min_reg_price === $max_reg_price ) {
|
270 |
$price = wc_format_sale_price( wc_price( $max_reg_price ), wc_price( $min_price ) );
|
271 |
} else {
|
283 |
*
|
284 |
*/
|
285 |
$price = apply_filters( 'woocommerce_gzd_grouped_unit_price_html', $price, $this );
|
286 |
+
$price = wc_gzd_format_unit_price( $price, $this->get_unit_html(), $this->get_unit_base_html() );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
287 |
}
|
288 |
|
289 |
/** This filter is documented in includes/abstract/abstract-wc-gzd-product.php */
|
includes/class-wc-gzd-product-variable.php
CHANGED
@@ -151,7 +151,6 @@ class WC_GZD_Product_Variable extends WC_GZD_Product {
|
|
151 |
}
|
152 |
|
153 |
$prices = $this->get_variation_unit_prices( true );
|
154 |
-
$text = get_option( 'woocommerce_gzd_unit_price_text' );
|
155 |
|
156 |
if ( $this->has_unit() ) {
|
157 |
|
@@ -160,11 +159,8 @@ class WC_GZD_Product_Variable extends WC_GZD_Product {
|
|
160 |
$min_reg_price = current( $prices['regular_price'] );
|
161 |
$max_reg_price = end( $prices['regular_price'] );
|
162 |
|
163 |
-
/** This filter is documented in includes/abstract/abstract-wc-gzd-product.php */
|
164 |
-
$separator = apply_filters( 'wc_gzd_unit_price_base_seperator', ' ' );
|
165 |
-
|
166 |
if ( $min_price !== $max_price ) {
|
167 |
-
$price =
|
168 |
} elseif ( $this->get_wc_product()->is_on_sale() && $min_reg_price === $max_reg_price ) {
|
169 |
$price = wc_format_sale_price( wc_price( $max_reg_price ), wc_price( $min_price ) );
|
170 |
} else {
|
@@ -182,21 +178,7 @@ class WC_GZD_Product_Variable extends WC_GZD_Product {
|
|
182 |
*
|
183 |
*/
|
184 |
$price = apply_filters( 'woocommerce_gzd_variable_unit_price_html', $price, $this );
|
185 |
-
|
186 |
-
if ( strpos( $text, '{price}' ) !== false ) {
|
187 |
-
$replacements = array(
|
188 |
-
/** This filter is documented in includes/abstract/abstract-wc-gzd-product.php */
|
189 |
-
'{price}' => $price . apply_filters( 'wc_gzd_unit_price_seperator', ' / ' ) . $this->get_unit_base_html() . $separator . $this->get_unit_html(),
|
190 |
-
);
|
191 |
-
} else {
|
192 |
-
$replacements = array(
|
193 |
-
'{base_price}' => $price,
|
194 |
-
'{unit}' => $this->get_unit_html(),
|
195 |
-
'{base}' => $this->get_unit_base_html(),
|
196 |
-
);
|
197 |
-
}
|
198 |
-
|
199 |
-
$price = wc_gzd_replace_label_shortcodes( $text, $replacements );
|
200 |
}
|
201 |
|
202 |
/** This filter is documented in includes/abstract/abstract-wc-gzd-product.php */
|
@@ -233,7 +215,7 @@ class WC_GZD_Product_Variable extends WC_GZD_Product {
|
|
233 |
* DEVELOPERS should filter this hash if offering conditonal pricing to keep it unique.
|
234 |
* @var string
|
235 |
*/
|
236 |
-
if ( $display ) {
|
237 |
$price_hash = array( get_option( 'woocommerce_tax_display_shop', 'excl' ), WC_Tax::get_rates() );
|
238 |
} else {
|
239 |
$price_hash = array( false );
|
@@ -282,15 +264,40 @@ class WC_GZD_Product_Variable extends WC_GZD_Product {
|
|
282 |
// If the prices are not stored for this hash, generate them
|
283 |
if ( empty( $this->unit_prices_array[ $price_hash ] ) ) {
|
284 |
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
291 |
|
|
|
292 |
if ( $variation = wc_get_product( $variation_id ) ) {
|
293 |
-
|
294 |
$gzd_variation = wc_gzd_get_product( $variation );
|
295 |
|
296 |
/**
|
@@ -384,9 +391,11 @@ class WC_GZD_Product_Variable extends WC_GZD_Product {
|
|
384 |
}
|
385 |
}
|
386 |
|
387 |
-
|
388 |
-
|
389 |
-
|
|
|
|
|
390 |
|
391 |
$this->unit_prices_array[ $price_hash ] = array(
|
392 |
'price' => $prices,
|
151 |
}
|
152 |
|
153 |
$prices = $this->get_variation_unit_prices( true );
|
|
|
154 |
|
155 |
if ( $this->has_unit() ) {
|
156 |
|
159 |
$min_reg_price = current( $prices['regular_price'] );
|
160 |
$max_reg_price = end( $prices['regular_price'] );
|
161 |
|
|
|
|
|
|
|
162 |
if ( $min_price !== $max_price ) {
|
163 |
+
$price = woocommerce_gzd_format_unit_price_range( $min_price, $max_price );
|
164 |
} elseif ( $this->get_wc_product()->is_on_sale() && $min_reg_price === $max_reg_price ) {
|
165 |
$price = wc_format_sale_price( wc_price( $max_reg_price ), wc_price( $min_price ) );
|
166 |
} else {
|
178 |
*
|
179 |
*/
|
180 |
$price = apply_filters( 'woocommerce_gzd_variable_unit_price_html', $price, $this );
|
181 |
+
$price = wc_gzd_format_unit_price( $price, $this->get_unit_html(), $this->get_unit_base_html() );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
}
|
183 |
|
184 |
/** This filter is documented in includes/abstract/abstract-wc-gzd-product.php */
|
215 |
* DEVELOPERS should filter this hash if offering conditonal pricing to keep it unique.
|
216 |
* @var string
|
217 |
*/
|
218 |
+
if ( $display && wc_tax_enabled() ) {
|
219 |
$price_hash = array( get_option( 'woocommerce_tax_display_shop', 'excl' ), WC_Tax::get_rates() );
|
220 |
} else {
|
221 |
$price_hash = array( false );
|
264 |
// If the prices are not stored for this hash, generate them
|
265 |
if ( empty( $this->unit_prices_array[ $price_hash ] ) ) {
|
266 |
|
267 |
+
/**
|
268 |
+
* Use the (already sorted) variation prices of the parent product
|
269 |
+
* to make sure the right unit price matches min max price ranges.
|
270 |
+
*/
|
271 |
+
$variation_prices = $this->get_wc_product()->get_variation_prices( $display );
|
272 |
+
$prices = array();
|
273 |
+
$regular_prices = array();
|
274 |
+
$sale_prices = array();
|
275 |
+
$unique_values = array_unique( $variation_prices['price'] );
|
276 |
+
/**
|
277 |
+
* Allow sorting unit prices by value in case the variable
|
278 |
+
* product contains only products of the same price
|
279 |
+
*/
|
280 |
+
$allow_sort = sizeof( $unique_values ) === 1;
|
281 |
+
$is_min_price = woocommerce_gzd_price_range_format_is_min_price();
|
282 |
+
|
283 |
+
/**
|
284 |
+
* In case the current price range format includes a starting from price only
|
285 |
+
* we will need to make sure that we do only check unit prices for variations
|
286 |
+
* that match the minimum price.
|
287 |
+
*/
|
288 |
+
if ( $is_min_price && ! empty( $variation_prices['price'] ) ) {
|
289 |
+
$min_price = array_values( $variation_prices['price'] )[0];
|
290 |
+
$allow_sort = true;
|
291 |
+
|
292 |
+
foreach( $variation_prices['price'] as $variation_id => $price ) {
|
293 |
+
if ( $price > $min_price ) {
|
294 |
+
unset( $variation_prices['price'][ $variation_id ] );
|
295 |
+
}
|
296 |
+
}
|
297 |
+
}
|
298 |
|
299 |
+
foreach ( $variation_prices['price'] as $variation_id => $price ) {
|
300 |
if ( $variation = wc_get_product( $variation_id ) ) {
|
|
|
301 |
$gzd_variation = wc_gzd_get_product( $variation );
|
302 |
|
303 |
/**
|
391 |
}
|
392 |
}
|
393 |
|
394 |
+
if ( $allow_sort ) {
|
395 |
+
asort( $prices );
|
396 |
+
asort( $regular_prices );
|
397 |
+
asort( $sale_prices );
|
398 |
+
}
|
399 |
|
400 |
$this->unit_prices_array[ $price_hash ] = array(
|
401 |
'price' => $prices,
|
includes/class-wc-gzd-revocation.php
CHANGED
@@ -30,7 +30,7 @@ class WC_GZD_Revocation {
|
|
30 |
return apply_filters( 'woocommerce_gzd_revocation_fields', array(
|
31 |
'content' => array(
|
32 |
'type' => 'textarea',
|
33 |
-
'label' => _x( '
|
34 |
'required' => true,
|
35 |
'description' => _x( 'Tip: Delete whatever entry does not apply, and provide, as needed', 'revocation-form', 'woocommerce-germanized' ),
|
36 |
'default' => _x( 'I/We hereby give notice that I/We withdraw from my/our contract of sale of the following goods/provision of the following service: ', 'revocation-form', 'woocommerce-germanized' ),
|
30 |
return apply_filters( 'woocommerce_gzd_revocation_fields', array(
|
31 |
'content' => array(
|
32 |
'type' => 'textarea',
|
33 |
+
'label' => _x( 'Withdrawal', 'revocation-form', 'woocommerce-germanized' ),
|
34 |
'required' => true,
|
35 |
'description' => _x( 'Tip: Delete whatever entry does not apply, and provide, as needed', 'revocation-form', 'woocommerce-germanized' ),
|
36 |
'default' => _x( 'I/We hereby give notice that I/We withdraw from my/our contract of sale of the following goods/provision of the following service: ', 'revocation-form', 'woocommerce-germanized' ),
|
includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php
CHANGED
@@ -33,6 +33,25 @@ class WC_GZD_Compatibility_WooCommerce_Subscriptions extends WC_GZD_Compatibilit
|
|
33 |
$this,
|
34 |
'enable_unit_prices'
|
35 |
), 10, 1 );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
}
|
37 |
|
38 |
public function enable_unit_prices( $types ) {
|
33 |
$this,
|
34 |
'enable_unit_prices'
|
35 |
), 10, 1 );
|
36 |
+
|
37 |
+
/**
|
38 |
+
* Subscriptions recalculates the cart total amount by summing up
|
39 |
+
* all total amounts (including rounded shipping amount). That may lead to
|
40 |
+
* rounding issues when the split tax option is enabled.
|
41 |
+
*/
|
42 |
+
add_filter( 'woocommerce_subscriptions_calculated_total', array( $this, 'adjust_subscription_rounded_shipping' ), 100, 1 );
|
43 |
+
}
|
44 |
+
|
45 |
+
public function adjust_subscription_rounded_shipping( $total ) {
|
46 |
+
if ( ! wc_gzd_enable_additional_costs_split_tax_calculation() ) {
|
47 |
+
return $total;
|
48 |
+
}
|
49 |
+
|
50 |
+
$shipping_methods = WC()->cart->calculate_shipping();
|
51 |
+
$shipping_total = wc_format_decimal( array_sum( wp_list_pluck( $shipping_methods, 'cost' ) ) );
|
52 |
+
$total = max( 0, round( WC()->cart->cart_contents_total + WC()->cart->tax_total + WC()->cart->shipping_tax_total + $shipping_total + WC()->cart->fee_total, WC()->cart->dp ) );
|
53 |
+
|
54 |
+
return $total;
|
55 |
}
|
56 |
|
57 |
public function enable_unit_prices( $types ) {
|
includes/emails/class-wc-gzd-email-customer-revocation.php
CHANGED
@@ -30,8 +30,8 @@ if ( ! class_exists( 'WC_GZD_Email_Customer_Revocation' ) ) :
|
|
30 |
public function __construct() {
|
31 |
|
32 |
$this->id = 'customer_revocation';
|
33 |
-
$this->title = __( '
|
34 |
-
$this->description = __( 'Email being sent if a customer fills out the
|
35 |
|
36 |
$this->template_html = 'emails/customer-revocation.php';
|
37 |
$this->template_plain = 'emails/plain/customer-revocation.php';
|
@@ -174,7 +174,7 @@ if ( ! class_exists( 'WC_GZD_Email_Customer_Revocation' ) ) :
|
|
174 |
'title' => __( 'Admin email', 'woocommerce-germanized' ),
|
175 |
'type' => 'text',
|
176 |
'desc_tip' => true,
|
177 |
-
'description' => __( 'Insert the email address of your shop manager here. A copy of the
|
178 |
'placeholder' => '',
|
179 |
'default' => get_bloginfo( 'admin_email' ),
|
180 |
),
|
30 |
public function __construct() {
|
31 |
|
32 |
$this->id = 'customer_revocation';
|
33 |
+
$this->title = __( 'Withdrawal', 'woocommerce-germanized' );
|
34 |
+
$this->description = __( 'Email being sent if a customer fills out the form of withdrawal.', 'woocommerce-germanized' );
|
35 |
|
36 |
$this->template_html = 'emails/customer-revocation.php';
|
37 |
$this->template_plain = 'emails/plain/customer-revocation.php';
|
174 |
'title' => __( 'Admin email', 'woocommerce-germanized' ),
|
175 |
'type' => 'text',
|
176 |
'desc_tip' => true,
|
177 |
+
'description' => __( 'Insert the email address of your shop manager here. A copy of the withdrawal confirmation email is being sent to this address.', 'woocommerce-germanized' ),
|
178 |
'placeholder' => '',
|
179 |
'default' => get_bloginfo( 'admin_email' ),
|
180 |
),
|
includes/updates/woocommerce-gzd-update-3.3.5.php
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
4 |
+
exit;
|
5 |
+
}
|
6 |
+
|
7 |
+
/**
|
8 |
+
* This option has been removed from Germanized core as WooCommerce
|
9 |
+
* provides it's own option for it via the customizer.
|
10 |
+
*/
|
11 |
+
if ( 'yes' === get_option( 'woocommerce_gzd_checkout_phone_non_required' ) ) {
|
12 |
+
update_option( 'woocommerce_checkout_phone_field', 'optional' );
|
13 |
+
}
|
14 |
+
|
includes/wc-gzd-core-functions.php
CHANGED
@@ -238,7 +238,7 @@ function wc_gzd_get_hook_priority( $hook ) {
|
|
238 |
function wc_gzd_get_legal_pages( $email_attachable_only = false ) {
|
239 |
$legal_pages = array(
|
240 |
'terms' => __( 'Terms & Conditions', 'woocommerce-germanized' ),
|
241 |
-
'revocation' => __( '
|
242 |
'imprint' => __( 'Imprint', 'woocommerce-germanized' ),
|
243 |
'data_security' => __( 'Data Security', 'woocommerce-germanized' ),
|
244 |
);
|
@@ -839,6 +839,21 @@ function _wc_gzd_legal_page_shortcode( $atts, $content, $tag ) {
|
|
839 |
return _wc_gzd_page_shortcode( $atts, $content );
|
840 |
}
|
841 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
842 |
/**
|
843 |
* Variable Pricing
|
844 |
*/
|
@@ -858,7 +873,7 @@ function woocommmerce_gzd_price_range( $price_html, $from, $to ) {
|
|
858 |
return $price_html;
|
859 |
}
|
860 |
|
861 |
-
$format =
|
862 |
$price_html = str_replace( array(
|
863 |
'{min_price}',
|
864 |
'{max_price}'
|
@@ -867,6 +882,26 @@ function woocommmerce_gzd_price_range( $price_html, $from, $to ) {
|
|
867 |
return $price_html;
|
868 |
}
|
869 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
870 |
function wc_gzd_get_default_revocation_address() {
|
871 |
$countries = isset( WC()->countries ) && WC()->countries ? WC()->countries : false;
|
872 |
$default = '';
|
@@ -1025,6 +1060,7 @@ function wc_gzd_format_unit_price( $price, $unit, $unit_base ) {
|
|
1025 |
);
|
1026 |
} else {
|
1027 |
$replacements = array(
|
|
|
1028 |
'{base_price}' => $price,
|
1029 |
'{unit}' => $unit,
|
1030 |
'{base}' => $unit_base
|
238 |
function wc_gzd_get_legal_pages( $email_attachable_only = false ) {
|
239 |
$legal_pages = array(
|
240 |
'terms' => __( 'Terms & Conditions', 'woocommerce-germanized' ),
|
241 |
+
'revocation' => __( 'Cancellation Policy', 'woocommerce-germanized' ),
|
242 |
'imprint' => __( 'Imprint', 'woocommerce-germanized' ),
|
243 |
'data_security' => __( 'Data Security', 'woocommerce-germanized' ),
|
244 |
);
|
839 |
return _wc_gzd_page_shortcode( $atts, $content );
|
840 |
}
|
841 |
|
842 |
+
function woocommerce_gzd_show_add_more_variants_notice( $product ) {
|
843 |
+
if ( 'variable' === $product->get_type() && apply_filters( "woocommerce_gzd_show_variable_more_variants_notice", false, $product ) ) {
|
844 |
+
return true;
|
845 |
+
}
|
846 |
+
|
847 |
+
return false;
|
848 |
+
}
|
849 |
+
|
850 |
+
function woocommerce_gzd_get_more_variants_notice( $product ) {
|
851 |
+
$text = apply_filters( "woocommerce_gzd_variable_more_variants_notice_text", __( 'More variants available', 'woocommerce-germanized' ), $product );
|
852 |
+
$html = '<span class="small smaller wc-gzd-additional-info more-variants-available-info">' . $text . '</span>';
|
853 |
+
|
854 |
+
return $html;
|
855 |
+
}
|
856 |
+
|
857 |
/**
|
858 |
* Variable Pricing
|
859 |
*/
|
873 |
return $price_html;
|
874 |
}
|
875 |
|
876 |
+
$format = woocommerce_gzd_get_price_range_format();
|
877 |
$price_html = str_replace( array(
|
878 |
'{min_price}',
|
879 |
'{max_price}'
|
882 |
return $price_html;
|
883 |
}
|
884 |
|
885 |
+
function woocommerce_gzd_price_range_format_is_min_price() {
|
886 |
+
return strpos( woocommerce_gzd_get_price_range_format(), '{max_price}' ) === false;
|
887 |
+
}
|
888 |
+
|
889 |
+
function woocommerce_gzd_get_price_range_format() {
|
890 |
+
return apply_filters( 'woocommerce_gzd_price_range_format', get_option( 'woocommerce_gzd_price_range_format_text', __( '{min_price} – {max_price}', 'woocommerce-germanized' ) ) );
|
891 |
+
}
|
892 |
+
|
893 |
+
function woocommerce_gzd_get_unit_price_range_format() {
|
894 |
+
return apply_filters( 'woocommerce_gzd_unit_price_range_format', __( '{min_price} – {max_price}', 'woocommerce-germanized' ) );
|
895 |
+
}
|
896 |
+
|
897 |
+
function woocommerce_gzd_format_unit_price_range( $min_price, $max_price ) {
|
898 |
+
add_filter( 'woocommerce_gzd_price_range_format', 'woocommerce_gzd_get_unit_price_range_format', 10 );
|
899 |
+
$formatted = wc_format_price_range( $min_price, $max_price );
|
900 |
+
remove_filter( 'woocommerce_gzd_price_range_format', 'woocommerce_gzd_get_unit_price_range_format', 10 );
|
901 |
+
|
902 |
+
return $formatted;
|
903 |
+
}
|
904 |
+
|
905 |
function wc_gzd_get_default_revocation_address() {
|
906 |
$countries = isset( WC()->countries ) && WC()->countries ? WC()->countries : false;
|
907 |
$default = '';
|
1060 |
);
|
1061 |
} else {
|
1062 |
$replacements = array(
|
1063 |
+
'{unit_price}' => $price,
|
1064 |
'{base_price}' => $price,
|
1065 |
'{unit}' => $unit,
|
1066 |
'{base}' => $unit_base
|
includes/wc-gzd-template-functions.php
CHANGED
@@ -144,6 +144,65 @@ if ( ! function_exists( 'woocommerce_gzd_template_single_product_units' ) ) {
|
|
144 |
}
|
145 |
}
|
146 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
if ( ! function_exists( 'woocommerce_gzd_template_grouped_single_product_units' ) ) {
|
148 |
|
149 |
function woocommerce_gzd_template_grouped_single_product_units( $html, $grouped_child ) {
|
@@ -382,6 +441,15 @@ if ( ! function_exists( 'woocommerce_gzd_template_order_submit' ) ) {
|
|
382 |
|
383 |
}
|
384 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
385 |
if ( ! function_exists( 'woocommerce_gzd_template_order_pay_now_button' ) ) {
|
386 |
|
387 |
/**
|
144 |
}
|
145 |
}
|
146 |
|
147 |
+
if ( ! function_exists( 'woocommerce_gzd_template_add_more_variants_unit_price_notice' ) ) {
|
148 |
+
|
149 |
+
/**
|
150 |
+
* @param $price
|
151 |
+
* @param WC_GZD_Product $product
|
152 |
+
*/
|
153 |
+
function woocommerce_gzd_template_add_more_variants_unit_price_notice( $price, $product ) {
|
154 |
+
if ( woocommerce_gzd_show_add_more_variants_notice( $product ) ) {
|
155 |
+
$price = $price . ' ' . woocommerce_gzd_get_more_variants_notice( $product );
|
156 |
+
}
|
157 |
+
|
158 |
+
return $price;
|
159 |
+
}
|
160 |
+
}
|
161 |
+
|
162 |
+
if ( ! function_exists( 'woocommerce_gzd_template_add_more_variants_price_notice' ) ) {
|
163 |
+
|
164 |
+
/**
|
165 |
+
* @param $price
|
166 |
+
* @param WC_GZD_Product $product
|
167 |
+
*/
|
168 |
+
function woocommerce_gzd_template_add_more_variants_price_notice( $price, $product ) {
|
169 |
+
if ( woocommerce_gzd_show_add_more_variants_notice( $product ) ) {
|
170 |
+
$gzd_product = wc_gzd_get_gzd_product( $product );
|
171 |
+
|
172 |
+
/**
|
173 |
+
* In case the product has a unit price - add the notice to the unit price (which comes afterwards)
|
174 |
+
*/
|
175 |
+
if ( $gzd_product->has_unit() && 'no' !== get_option( 'woocommerce_gzd_unit_price_enable_variable' ) ) {
|
176 |
+
return $price;
|
177 |
+
} else {
|
178 |
+
$price = $price . ' ' . woocommerce_gzd_get_more_variants_notice( $product );
|
179 |
+
}
|
180 |
+
}
|
181 |
+
|
182 |
+
return $price;
|
183 |
+
}
|
184 |
+
}
|
185 |
+
|
186 |
+
/**
|
187 |
+
* @param $price
|
188 |
+
* @param WC_Product $product
|
189 |
+
*
|
190 |
+
* @return mixed
|
191 |
+
*/
|
192 |
+
function woocommerce_gzd_price_notice( $price, $product ) {
|
193 |
+
if ( woocommerce_gzd_show_add_more_variants_notice( $product ) ) {
|
194 |
+
$gzd_product = wc_gzd_get_gzd_product( $product );
|
195 |
+
|
196 |
+
if ( $gzd_product->has_unit() && 'no' !== get_option( 'woocommerce_gzd_unit_price_enable_variable' ) ) {
|
197 |
+
return $price;
|
198 |
+
} else {
|
199 |
+
$price = $price . ' ' . woocommerce_gzd_get_more_variants_notice( $product );
|
200 |
+
}
|
201 |
+
}
|
202 |
+
|
203 |
+
return $price;
|
204 |
+
}
|
205 |
+
|
206 |
if ( ! function_exists( 'woocommerce_gzd_template_grouped_single_product_units' ) ) {
|
207 |
|
208 |
function woocommerce_gzd_template_grouped_single_product_units( $html, $grouped_child ) {
|
441 |
|
442 |
}
|
443 |
|
444 |
+
if ( ! function_exists( 'woocommerce_gzd_template_order_submit_fallback' ) ) {
|
445 |
+
|
446 |
+
function woocommerce_gzd_template_order_submit_fallback() {
|
447 |
+
if ( ! did_action( 'woocommerce_checkout_order_review' ) ) {
|
448 |
+
woocommerce_gzd_template_order_submit();
|
449 |
+
}
|
450 |
+
}
|
451 |
+
}
|
452 |
+
|
453 |
if ( ! function_exists( 'woocommerce_gzd_template_order_pay_now_button' ) ) {
|
454 |
|
455 |
/**
|
includes/wc-gzd-template-hooks.php
CHANGED
@@ -21,6 +21,13 @@ if ( get_option( 'woocommerce_gzd_display_digital_delivery_time_text' ) !== '' )
|
|
21 |
|
22 |
add_filter( 'woocommerce_get_price_html', 'woocommerce_gzd_template_sale_price_label_html', 50, 2 );
|
23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
/**
|
25 |
* Single Product
|
26 |
*/
|
@@ -182,6 +189,7 @@ function woocommerce_gzd_checkout_load_ajax_relevant_hooks() {
|
|
182 |
}
|
183 |
|
184 |
add_action( 'woocommerce_checkout_order_review', 'woocommerce_gzd_template_order_submit', wc_gzd_get_hook_priority( 'checkout_order_submit' ) );
|
|
|
185 |
|
186 |
// Render checkout checkboxes
|
187 |
add_action( 'woocommerce_review_order_after_payment', 'woocommerce_gzd_template_render_checkout_checkboxes', 10 );
|
21 |
|
22 |
add_filter( 'woocommerce_get_price_html', 'woocommerce_gzd_template_sale_price_label_html', 50, 2 );
|
23 |
|
24 |
+
/**
|
25 |
+
* Maybe add specific more variants available notice to price html in case
|
26 |
+
* explicitly activated via woocommerce_gzd_show_variable_more_variants_notice.
|
27 |
+
*/
|
28 |
+
add_filter( 'woocommerce_get_price_html', 'woocommerce_gzd_template_add_more_variants_price_notice', 100, 2 );
|
29 |
+
add_filter( 'woocommerce_gzd_unit_price_html', 'woocommerce_gzd_template_add_more_variants_unit_price_notice', 100, 2 );
|
30 |
+
|
31 |
/**
|
32 |
* Single Product
|
33 |
*/
|
189 |
}
|
190 |
|
191 |
add_action( 'woocommerce_checkout_order_review', 'woocommerce_gzd_template_order_submit', wc_gzd_get_hook_priority( 'checkout_order_submit' ) );
|
192 |
+
add_action( 'woocommerce_checkout_after_order_review', 'woocommerce_gzd_template_order_submit_fallback', 50 );
|
193 |
|
194 |
// Render checkout checkboxes
|
195 |
add_action( 'woocommerce_review_order_after_payment', 'woocommerce_gzd_template_render_checkout_checkboxes', 10 );
|
packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php
CHANGED
@@ -8,21 +8,15 @@ defined( 'ABSPATH' ) || exit;
|
|
8 |
|
9 |
use Vendidero\Germanized\DHL\Package;
|
10 |
|
11 |
-
$
|
12 |
-
$im_products
|
13 |
-
$
|
14 |
-
$
|
15 |
-
$
|
16 |
-
$
|
17 |
-
$is_wp_int = false;
|
18 |
-
$selected_services = array();
|
19 |
|
20 |
-
if ( ! empty( $
|
21 |
-
|
22 |
-
$selected_product = Package::get_internetmarke_api()->get_product_parent_code( $selected_product );
|
23 |
-
|
24 |
-
$is_wp_int = Package::get_internetmarke_api()->is_warenpost_international( $selected_product );
|
25 |
-
$selected_product_id = Package::get_internetmarke_api()->get_product_id( $selected_product );
|
26 |
}
|
27 |
?>
|
28 |
<?php if ( empty( $im_products ) ) : ?>
|
@@ -43,14 +37,11 @@ if ( ! empty( $selected_product ) ) {
|
|
43 |
'label' => _x( 'Product', 'dhl', 'woocommerce-germanized' ),
|
44 |
'description' => '',
|
45 |
'options' => $im_products,
|
46 |
-
'value' =>
|
47 |
) ); ?>
|
48 |
|
49 |
<div class="wc-gzd-shipment-im-additional-services">
|
50 |
-
<?php
|
51 |
-
$product_id = $selected_product_id;
|
52 |
-
include( Package::get_path() . '/includes/admin/views/html-deutsche-post-additional-services.php' );
|
53 |
-
?>
|
54 |
</div>
|
55 |
|
56 |
<div class="wc-gzd-shipment-im-page-format" style="<?php echo ( $is_wp_int ? 'display: none;' : '' ); ?>">
|
@@ -59,7 +50,7 @@ if ( ! empty( $selected_product ) ) {
|
|
59 |
'label' => _x( 'Page Format', 'dhl', 'woocommerce-germanized' ),
|
60 |
'description' => '',
|
61 |
'options' => Package::get_internetmarke_api()->get_page_format_list(),
|
62 |
-
'value' => isset( $
|
63 |
) ); ?>
|
64 |
</div>
|
65 |
</form>
|
8 |
|
9 |
use Vendidero\Germanized\DHL\Package;
|
10 |
|
11 |
+
$selected_data = wc_gzd_dhl_get_deutsche_post_selected_default_product( $shipment, $dhl_order );
|
12 |
+
$im_products = wc_gzd_dhl_get_deutsche_post_products( $shipment );
|
13 |
+
$product_id = $selected_data['product_id'];
|
14 |
+
$product_code = $selected_data['product_code'];
|
15 |
+
$selected_services = $selected_data['services'];
|
16 |
+
$is_wp_int = false;
|
|
|
|
|
17 |
|
18 |
+
if ( ! empty( $product_code ) ) {
|
19 |
+
$is_wp_int = Package::get_internetmarke_api()->is_warenpost_international( $product_code );
|
|
|
|
|
|
|
|
|
20 |
}
|
21 |
?>
|
22 |
<?php if ( empty( $im_products ) ) : ?>
|
37 |
'label' => _x( 'Product', 'dhl', 'woocommerce-germanized' ),
|
38 |
'description' => '',
|
39 |
'options' => $im_products,
|
40 |
+
'value' => $product_code,
|
41 |
) ); ?>
|
42 |
|
43 |
<div class="wc-gzd-shipment-im-additional-services">
|
44 |
+
<?php include( Package::get_path() . '/includes/admin/views/html-deutsche-post-additional-services.php' ); ?>
|
|
|
|
|
|
|
45 |
</div>
|
46 |
|
47 |
<div class="wc-gzd-shipment-im-page-format" style="<?php echo ( $is_wp_int ? 'display: none;' : '' ); ?>">
|
50 |
'label' => _x( 'Page Format', 'dhl', 'woocommerce-germanized' ),
|
51 |
'description' => '',
|
52 |
'options' => Package::get_internetmarke_api()->get_page_format_list(),
|
53 |
+
'value' => isset( $selected_data['page_format'] ) ? $selected_data['page_format'] : '',
|
54 |
) ); ?>
|
55 |
</div>
|
56 |
</form>
|
packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php
CHANGED
@@ -13,7 +13,6 @@ use Vendidero\Germanized\DHL\LabelQuery;
|
|
13 |
use Vendidero\Germanized\DHL\Order;
|
14 |
use Vendidero\Germanized\DHL\Package;
|
15 |
use Vendidero\Germanized\DHL\ParcelLocator;
|
16 |
-
use Vendidero\Germanized\DHL\ShippingProviderMethodDHL;
|
17 |
use Vendidero\Germanized\DHL\ParcelServices;
|
18 |
use Vendidero\Germanized\DHL\LabelFactory;
|
19 |
use Vendidero\Germanized\DHL\SimpleLabel;
|
@@ -40,7 +39,7 @@ function wc_gzd_dhl_get_shipment_customs_data( $label ) {
|
|
40 |
|
41 |
$customsDetails = array();
|
42 |
$item_description = '';
|
43 |
-
$total_weight = $label->
|
44 |
$item_weights = array();
|
45 |
$shipment_items = $shipment->get_items();
|
46 |
|
@@ -155,11 +154,11 @@ function wc_gzd_dhl_get_shipment_customs_data( $label ) {
|
|
155 |
$item_description = substr( $item_description, 0, 255 );
|
156 |
|
157 |
return array(
|
158 |
-
'invoiceNumber'
|
159 |
-
'additionalFee'
|
160 |
-
'exportTypeDescription'
|
161 |
-
'placeOfCommital'
|
162 |
-
'ExportDocPosition'
|
163 |
);
|
164 |
}
|
165 |
|
@@ -950,6 +949,42 @@ function wc_gzd_dhl_get_service_product_attributes( $service ) {
|
|
950 |
);
|
951 |
}
|
952 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 );
|
@@ -961,6 +996,7 @@ function wc_gzd_dhl_get_deutsche_post_label_default_args( $dhl_order, $shipment
|
|
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'],
|
@@ -1093,6 +1129,7 @@ function wc_gzd_dhl_get_label_default_args( $dhl_order, $shipment ) {
|
|
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'],
|
@@ -1318,28 +1355,53 @@ function wc_gzd_dhl_get_shipment_dimensions( $shipment, $unit = 'cm' ) {
|
|
1318 |
*
|
1319 |
* @return float
|
1320 |
*/
|
1321 |
-
function wc_gzd_dhl_get_shipment_weight( $shipment, $unit = 'kg' ) {
|
1322 |
-
$shipping_method
|
1323 |
-
$shipment_weight
|
1324 |
-
$
|
|
|
|
|
1325 |
|
1326 |
if ( ! empty( $shipment_weight ) ) {
|
1327 |
$shipment_weight = wc_get_weight( $shipment_weight, $unit, $shipment->get_weight_unit() );
|
1328 |
}
|
1329 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1330 |
if ( 'dhl' === $shipment->get_shipping_provider() ) {
|
1331 |
$dhl_shipping_method = wc_gzd_dhl_get_shipping_method( $shipping_method );
|
1332 |
$min_weight = wc_get_weight( Package::get_setting( 'label_minimum_shipment_weight', $dhl_shipping_method ), $unit, 'kg' );
|
1333 |
|
1334 |
-
|
|
|
|
|
|
|
1335 |
$shipment_weight = wc_get_weight( Package::get_setting( 'label_default_shipment_weight', $dhl_shipping_method ), $unit, 'kg' );
|
|
|
1336 |
}
|
1337 |
} elseif ( 'deutsche_post' === $shipment->get_shipping_provider() ) {
|
1338 |
$dp_shipping_method = wc_gzd_dhl_get_deutsche_post_shipping_method( $shipping_method );
|
1339 |
$min_weight = wc_get_weight( Package::get_setting( 'deutsche_post_label_minimum_shipment_weight', $dp_shipping_method ), $unit, 'kg' );
|
1340 |
|
1341 |
-
|
|
|
|
|
|
|
1342 |
$shipment_weight = wc_get_weight( Package::get_setting( 'deutsche_post_label_default_shipment_weight', $dp_shipping_method ), $unit, 'kg' );
|
|
|
1343 |
}
|
1344 |
}
|
1345 |
|
@@ -1364,6 +1426,7 @@ function wc_gzd_dhl_get_return_label_default_args( $dhl_order, $shipment ) {
|
|
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'],
|
13 |
use Vendidero\Germanized\DHL\Order;
|
14 |
use Vendidero\Germanized\DHL\Package;
|
15 |
use Vendidero\Germanized\DHL\ParcelLocator;
|
|
|
16 |
use Vendidero\Germanized\DHL\ParcelServices;
|
17 |
use Vendidero\Germanized\DHL\LabelFactory;
|
18 |
use Vendidero\Germanized\DHL\SimpleLabel;
|
39 |
|
40 |
$customsDetails = array();
|
41 |
$item_description = '';
|
42 |
+
$total_weight = $label->get_net_weight();
|
43 |
$item_weights = array();
|
44 |
$shipment_items = $shipment->get_items();
|
45 |
|
154 |
$item_description = substr( $item_description, 0, 255 );
|
155 |
|
156 |
return array(
|
157 |
+
'invoiceNumber' => $shipment->get_id(),
|
158 |
+
'additionalFee' => wc_format_decimal( $shipment->get_additional_total(), 2 ),
|
159 |
+
'exportTypeDescription' => $item_description,
|
160 |
+
'placeOfCommital' => $shipment->get_country(),
|
161 |
+
'ExportDocPosition' => $customsDetails
|
162 |
);
|
163 |
}
|
164 |
|
949 |
);
|
950 |
}
|
951 |
|
952 |
+
/**
|
953 |
+
* @param Shipment $shipment
|
954 |
+
* @param Order $dhl_order
|
955 |
+
*/
|
956 |
+
function wc_gzd_dhl_get_deutsche_post_selected_default_product( $shipment, $dhl_order = false ) {
|
957 |
+
if ( ! $dhl_order ) {
|
958 |
+
$dhl_order = wc_gzd_dhl_get_order( $shipment->get_order() );
|
959 |
+
}
|
960 |
+
|
961 |
+
$default_args = wc_gzd_dhl_get_deutsche_post_label_default_args( $dhl_order, $shipment );
|
962 |
+
$im_all_products = wc_gzd_dhl_get_deutsche_post_products( $shipment, false );
|
963 |
+
$default_product = isset( $default_args['dhl_product'] ) ? $default_args['dhl_product'] : array_keys( $im_all_products )[0];
|
964 |
+
$selected_product = isset( $im_all_products[ $default_product ] ) ? $default_product : array_keys( $im_all_products )[0];
|
965 |
+
$selected_services = isset( $default_args['additional_services'] ) ? $default_args['additional_services'] : array();
|
966 |
+
$selected_product_id = 0;
|
967 |
+
|
968 |
+
if ( ! empty( $selected_product ) ) {
|
969 |
+
/**
|
970 |
+
* Do only override services in case the product is a child product and force parent code.
|
971 |
+
*/
|
972 |
+
if ( ! Package::get_internetmarke_api()->product_code_is_parent( $selected_product ) ) {
|
973 |
+
$selected_services = Package::get_internetmarke_api()->get_product_services( $selected_product );
|
974 |
+
$selected_product = Package::get_internetmarke_api()->get_product_parent_code( $selected_product );
|
975 |
+
}
|
976 |
+
|
977 |
+
$selected_product_id = Package::get_internetmarke_api()->get_product_id( $selected_product );
|
978 |
+
}
|
979 |
+
|
980 |
+
return array(
|
981 |
+
'services' => $selected_services,
|
982 |
+
'product_code' => $selected_product,
|
983 |
+
'product_id' => $selected_product_id,
|
984 |
+
'page_format' => $default_args['page_format']
|
985 |
+
);
|
986 |
+
}
|
987 |
+
|
988 |
function wc_gzd_dhl_get_deutsche_post_label_default_args( $dhl_order, $shipment ) {
|
989 |
$shipping_method = $shipment->get_shipping_method();
|
990 |
$dp_shipping_method = wc_gzd_dhl_get_deutsche_post_shipping_method( $shipping_method );
|
996 |
'stamp_total' => 0,
|
997 |
'additional_services' => array(),
|
998 |
'weight' => wc_gzd_dhl_get_shipment_weight( $shipment ),
|
999 |
+
'net_weight' => wc_gzd_dhl_get_shipment_weight( $shipment, 'kg', true ),
|
1000 |
'length' => $dimensions['length'],
|
1001 |
'width' => $dimensions['width'],
|
1002 |
'height' => $dimensions['height'],
|
1129 |
'services' => array(),
|
1130 |
'codeable_address_only' => Package::get_setting( 'label_address_codeable_only', $dhl_shipping_method ),
|
1131 |
'weight' => wc_gzd_dhl_get_shipment_weight( $shipment ),
|
1132 |
+
'net_weight' => wc_gzd_dhl_get_shipment_weight( $shipment, 'kg', true ),
|
1133 |
'length' => $dimensions['length'],
|
1134 |
'width' => $dimensions['width'],
|
1135 |
'height' => $dimensions['height'],
|
1355 |
*
|
1356 |
* @return float
|
1357 |
*/
|
1358 |
+
function wc_gzd_dhl_get_shipment_weight( $shipment, $unit = 'kg', $net_weight = false ) {
|
1359 |
+
$shipping_method = $shipment->get_shipping_method();
|
1360 |
+
$shipment_weight = $shipment->get_total_weight();
|
1361 |
+
$shipment_content_weight = $shipment->get_weight();
|
1362 |
+
$shipment_packaging_weight = $shipment->get_packaging_weight();
|
1363 |
+
$min_weight = 0;
|
1364 |
|
1365 |
if ( ! empty( $shipment_weight ) ) {
|
1366 |
$shipment_weight = wc_get_weight( $shipment_weight, $unit, $shipment->get_weight_unit() );
|
1367 |
}
|
1368 |
|
1369 |
+
if ( ! empty( $shipment_content_weight ) ) {
|
1370 |
+
$shipment_content_weight = wc_get_weight( $shipment_content_weight, $unit, $shipment->get_weight_unit() );
|
1371 |
+
}
|
1372 |
+
|
1373 |
+
if ( ! empty( $shipment_packaging_weight ) ) {
|
1374 |
+
$shipment_packaging_weight = wc_get_weight( $shipment_packaging_weight, $unit, $shipment->get_weight_unit() );
|
1375 |
+
}
|
1376 |
+
|
1377 |
+
/**
|
1378 |
+
* The net weight does not include packaging weight.
|
1379 |
+
*/
|
1380 |
+
if ( $net_weight ) {
|
1381 |
+
$shipment_packaging_weight = 0;
|
1382 |
+
}
|
1383 |
+
|
1384 |
if ( 'dhl' === $shipment->get_shipping_provider() ) {
|
1385 |
$dhl_shipping_method = wc_gzd_dhl_get_shipping_method( $shipping_method );
|
1386 |
$min_weight = wc_get_weight( Package::get_setting( 'label_minimum_shipment_weight', $dhl_shipping_method ), $unit, 'kg' );
|
1387 |
|
1388 |
+
/**
|
1389 |
+
* In case the content weight of the shipment is empty - use the standard weight and add the packaging on top.
|
1390 |
+
*/
|
1391 |
+
if ( empty( $shipment_content_weight ) ) {
|
1392 |
$shipment_weight = wc_get_weight( Package::get_setting( 'label_default_shipment_weight', $dhl_shipping_method ), $unit, 'kg' );
|
1393 |
+
$shipment_weight += $shipment_packaging_weight;
|
1394 |
}
|
1395 |
} elseif ( 'deutsche_post' === $shipment->get_shipping_provider() ) {
|
1396 |
$dp_shipping_method = wc_gzd_dhl_get_deutsche_post_shipping_method( $shipping_method );
|
1397 |
$min_weight = wc_get_weight( Package::get_setting( 'deutsche_post_label_minimum_shipment_weight', $dp_shipping_method ), $unit, 'kg' );
|
1398 |
|
1399 |
+
/**
|
1400 |
+
* In case the content weight of the shipment is empty - use the standard weight and add the packaging on top.
|
1401 |
+
*/
|
1402 |
+
if ( empty( $shipment_content_weight ) ) {
|
1403 |
$shipment_weight = wc_get_weight( Package::get_setting( 'deutsche_post_label_default_shipment_weight', $dp_shipping_method ), $unit, 'kg' );
|
1404 |
+
$shipment_weight += $shipment_packaging_weight;
|
1405 |
}
|
1406 |
}
|
1407 |
|
1426 |
'services' => array(),
|
1427 |
'receiver_slug' => wc_gzd_dhl_get_default_return_receiver_slug( $shipment->get_sender_country(), $dhl_shipping_method ),
|
1428 |
'weight' => wc_gzd_dhl_get_shipment_weight( $shipment ),
|
1429 |
+
'net_weight' => wc_gzd_dhl_get_shipment_weight( $shipment, 'kg', true ),
|
1430 |
'length' => $dimensions['length'],
|
1431 |
'width' => $dimensions['width'],
|
1432 |
'height' => $dimensions['height'],
|
packages/woocommerce-germanized-dhl/src/Admin/Settings.php
CHANGED
@@ -1319,6 +1319,24 @@ class Settings {
|
|
1319 |
'options' => Package::get_internetmarke_api()->get_page_format_list(),
|
1320 |
'default' => 1,
|
1321 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1322 |
);
|
1323 |
|
1324 |
if ( $for_shipping_method ) {
|
1319 |
'options' => Package::get_internetmarke_api()->get_page_format_list(),
|
1320 |
'default' => 1,
|
1321 |
),
|
1322 |
+
array(
|
1323 |
+
'title' => _x( 'Print X-axis column', 'dhl', 'woocommerce-germanized' ),
|
1324 |
+
'id' => 'woocommerce_gzd_deutsche_post_label_position_x',
|
1325 |
+
'desc_tip' => _x( 'Adjust the print X-axis start column for the label.', 'dhl', 'woocommerce-germanized' ),
|
1326 |
+
'type' => 'number',
|
1327 |
+
'custom_attributes' => array( 'min' => 0, 'step' => 1 ),
|
1328 |
+
'css' => 'max-width: 100px;',
|
1329 |
+
'default' => 1,
|
1330 |
+
),
|
1331 |
+
array(
|
1332 |
+
'title' => _x( 'Print Y-axis column', 'dhl', 'woocommerce-germanized' ),
|
1333 |
+
'id' => 'woocommerce_gzd_deutsche_post_label_position_y',
|
1334 |
+
'desc_tip' => _x( 'Adjust the print Y-axis start column for the label.', 'dhl', 'woocommerce-germanized' ),
|
1335 |
+
'type' => 'number',
|
1336 |
+
'custom_attributes' => array( 'min' => 0, 'step' => 1 ),
|
1337 |
+
'css' => 'max-width: 100px;',
|
1338 |
+
'default' => 1,
|
1339 |
+
),
|
1340 |
);
|
1341 |
|
1342 |
if ( $for_shipping_method ) {
|
packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php
CHANGED
@@ -215,7 +215,7 @@ class ImWarenpostIntRest extends Rest {
|
|
215 |
* @return string
|
216 |
*/
|
217 |
protected function get_pdf_accept_header() {
|
218 |
-
return 'application/pdf';
|
219 |
}
|
220 |
|
221 |
protected function set_header( $authorization = '', $request_type = 'GET', $endpoint = '' ) {
|
215 |
* @return string
|
216 |
*/
|
217 |
protected function get_pdf_accept_header() {
|
218 |
+
return apply_filters( 'woocommerce_gzd_deutsche_post_label_api_pdf_accept_header', 'application/pdf' );
|
219 |
}
|
220 |
|
221 |
protected function set_header( $authorization = '', $request_type = 'GET', $endpoint = '' ) {
|
packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php
CHANGED
@@ -13,6 +13,8 @@ use baltpeter\Internetmarke\User;
|
|
13 |
use Vendidero\Germanized\DHL\Admin\Settings;
|
14 |
use Vendidero\Germanized\DHL\DeutschePostLabel;
|
15 |
use Vendidero\Germanized\DHL\Package;
|
|
|
|
|
16 |
|
17 |
defined( 'ABSPATH' ) || exit;
|
18 |
|
@@ -293,6 +295,22 @@ class Internetmarke {
|
|
293 |
return $im_product_id;
|
294 |
}
|
295 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
296 |
public function get_product_total( $product_code ) {
|
297 |
$total = 0;
|
298 |
|
@@ -672,7 +690,13 @@ class Internetmarke {
|
|
672 |
$receiver_name = new Name( $receiver_person_name, null );
|
673 |
}
|
674 |
|
675 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
676 |
$receiver = new \baltpeter\Internetmarke\NamedAddress( $receiver_name, $receiver_address );
|
677 |
$address_binding = new \baltpeter\Internetmarke\AddressBinding( $sender, $receiver );
|
678 |
|
@@ -689,7 +713,33 @@ class Internetmarke {
|
|
689 |
|
690 |
$label->set_shop_order_id( $shop_order_id );
|
691 |
|
692 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
693 |
$stamp = $this->api->checkoutShoppingCartPdf( $this->get_user()->getUserToken(), $label->get_page_format(), array( $order_item ), $label->get_stamp_total(), $shop_order_id, null, true, 2 );
|
694 |
|
695 |
return $this->update_default_label( $label, $stamp );
|
13 |
use Vendidero\Germanized\DHL\Admin\Settings;
|
14 |
use Vendidero\Germanized\DHL\DeutschePostLabel;
|
15 |
use Vendidero\Germanized\DHL\Package;
|
16 |
+
use Vendidero\Germanized\DHL\ParcelLocator;
|
17 |
+
use Vendidero\Germanized\Shipments\Shipment;
|
18 |
|
19 |
defined( 'ABSPATH' ) || exit;
|
20 |
|
295 |
return $im_product_id;
|
296 |
}
|
297 |
|
298 |
+
public function product_code_is_parent( $im_product_id ) {
|
299 |
+
$this->load_products();
|
300 |
+
$data = $this->products->get_product_data_by_code( $im_product_id );
|
301 |
+
$is_parent = false;
|
302 |
+
|
303 |
+
if ( ! empty( $data ) ) {
|
304 |
+
if ( $data->product_parent_id > 0 ) {
|
305 |
+
$is_parent = false;
|
306 |
+
} else {
|
307 |
+
$is_parent = true;
|
308 |
+
}
|
309 |
+
}
|
310 |
+
|
311 |
+
return $is_parent;
|
312 |
+
}
|
313 |
+
|
314 |
public function get_product_total( $product_code ) {
|
315 |
$total = 0;
|
316 |
|
690 |
$receiver_name = new Name( $receiver_person_name, null );
|
691 |
}
|
692 |
|
693 |
+
$additional = $shipment->get_address_2();
|
694 |
+
|
695 |
+
if ( $shipment->send_to_external_pickup( 'packstation' ) ) {
|
696 |
+
$additional = ParcelLocator::get_postnumber_by_shipment( $shipment );
|
697 |
+
}
|
698 |
+
|
699 |
+
$receiver_address = new Address( $additional, $shipment->get_address_street(), $shipment->get_address_street_number(), $shipment->get_postcode(), $shipment->get_city(), Package::get_country_iso_alpha3( $shipment->get_country() ) );
|
700 |
$receiver = new \baltpeter\Internetmarke\NamedAddress( $receiver_name, $receiver_address );
|
701 |
$address_binding = new \baltpeter\Internetmarke\AddressBinding( $sender, $receiver );
|
702 |
|
713 |
|
714 |
$label->set_shop_order_id( $shop_order_id );
|
715 |
|
716 |
+
$position = new \baltpeter\Internetmarke\Position(
|
717 |
+
/**
|
718 |
+
* Adjust the Deutsche Post (Internetmarke) label print X position.
|
719 |
+
*
|
720 |
+
* @param mixed $x The x axis position.
|
721 |
+
* @param DeutschePostLabel $label The label instance.
|
722 |
+
* @param Shipment $shipment The shipment instance.
|
723 |
+
*
|
724 |
+
* @since 3.4.5
|
725 |
+
* @package Vendidero/Germanized/DHL
|
726 |
+
*/
|
727 |
+
apply_filters( 'woocommerce_gzd_deutsche_post_label_api_position_x', Package::get_setting( 'deutsche_post_label_position_x' ), $label, $shipment ),
|
728 |
+
/**
|
729 |
+
* Adjust the Deutsche Post (Internetmarke) label print Y position.
|
730 |
+
*
|
731 |
+
* @param mixed $y The y axis position.
|
732 |
+
* @param DeutschePostLabel $label The label instance.
|
733 |
+
* @param Shipment $shipment The shipment instance.
|
734 |
+
*
|
735 |
+
* @since 3.4.5
|
736 |
+
* @package Vendidero/Germanized/DHL
|
737 |
+
*/
|
738 |
+
apply_filters( 'woocommerce_gzd_deutsche_post_label_api_position_y', Package::get_setting( 'deutsche_post_label_position_y' ), $label, $shipment ),
|
739 |
+
apply_filters( 'woocommerce_gzd_deutsche_post_label_api_page_number', 1, $label, $shipment )
|
740 |
+
);
|
741 |
+
|
742 |
+
$order_item = new \baltpeter\Internetmarke\OrderItem( $label->get_dhl_product(), null, $address_binding, $position, 'AddressZone' );
|
743 |
$stamp = $this->api->checkoutShoppingCartPdf( $this->get_user()->getUserToken(), $label->get_page_format(), array( $order_item ), $label->get_stamp_total(), $shop_order_id, null, true, 2 );
|
744 |
|
745 |
return $this->update_default_label( $label, $stamp );
|
packages/woocommerce-germanized-dhl/src/Api/Paket.php
CHANGED
@@ -243,6 +243,9 @@ class Paket {
|
|
243 |
$preferred_services = $this->get_parcel_api()->get_services( $args );
|
244 |
$preferred_days = $this->get_preferred_days( $preferred_services );
|
245 |
} catch( Exception $e ) {
|
|
|
|
|
|
|
246 |
throw $e;
|
247 |
}
|
248 |
|
243 |
$preferred_services = $this->get_parcel_api()->get_services( $args );
|
244 |
$preferred_days = $this->get_preferred_days( $preferred_services );
|
245 |
} catch( Exception $e ) {
|
246 |
+
// Reset timezone to not affect any other plugins
|
247 |
+
date_default_timezone_set( $current_timzone );
|
248 |
+
|
249 |
throw $e;
|
250 |
}
|
251 |
|
packages/woocommerce-germanized-dhl/src/DataStores/Label.php
CHANGED
@@ -60,6 +60,7 @@ class Label extends WC_Data_Store_WP implements WC_Object_Data_Store_Interface {
|
|
60 |
'_cod_total',
|
61 |
'_cod_includes_additional_total',
|
62 |
'_weight',
|
|
|
63 |
'_width',
|
64 |
'_length',
|
65 |
'_height',
|
60 |
'_cod_total',
|
61 |
'_cod_includes_additional_total',
|
62 |
'_weight',
|
63 |
+
'_net_weight',
|
64 |
'_width',
|
65 |
'_length',
|
66 |
'_height',
|
packages/woocommerce-germanized-dhl/src/Label.php
CHANGED
@@ -55,6 +55,7 @@ abstract class Label extends WC_Data implements ShipmentLabel {
|
|
55 |
'shipment_id' => 0,
|
56 |
'number' => '',
|
57 |
'weight' => '',
|
|
|
58 |
'length' => '',
|
59 |
'width' => '',
|
60 |
'height' => '',
|
@@ -160,6 +161,16 @@ abstract class Label extends WC_Data implements ShipmentLabel {
|
|
160 |
return $this->get_prop( 'weight', $context );
|
161 |
}
|
162 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
163 |
public function get_length( $context = 'view' ) {
|
164 |
return $this->get_prop( 'length', $context );
|
165 |
}
|
@@ -284,6 +295,10 @@ abstract class Label extends WC_Data implements ShipmentLabel {
|
|
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 |
}
|
55 |
'shipment_id' => 0,
|
56 |
'number' => '',
|
57 |
'weight' => '',
|
58 |
+
'net_weight' => '',
|
59 |
'length' => '',
|
60 |
'width' => '',
|
61 |
'height' => '',
|
161 |
return $this->get_prop( 'weight', $context );
|
162 |
}
|
163 |
|
164 |
+
public function get_net_weight( $context = 'view' ) {
|
165 |
+
$weight = $this->get_prop( 'net_weight', $context );
|
166 |
+
|
167 |
+
if ( 'view' === $context && '' === $weight ) {
|
168 |
+
$weight = $this->get_weight( $context );
|
169 |
+
}
|
170 |
+
|
171 |
+
return $weight;
|
172 |
+
}
|
173 |
+
|
174 |
public function get_length( $context = 'view' ) {
|
175 |
return $this->get_prop( 'length', $context );
|
176 |
}
|
295 |
$this->set_prop( 'weight','' !== $weight ? wc_format_decimal( $weight ) : '' );
|
296 |
}
|
297 |
|
298 |
+
public function set_net_weight( $weight ) {
|
299 |
+
$this->set_prop( 'net_weight','' !== $weight ? wc_format_decimal( $weight ) : '' );
|
300 |
+
}
|
301 |
+
|
302 |
public function set_width( $width ) {
|
303 |
$this->set_prop( 'width','' !== $width ? wc_format_decimal( $width ) : '' );
|
304 |
}
|
packages/woocommerce-germanized-dhl/src/Package.php
CHANGED
@@ -23,7 +23,7 @@ class Package {
|
|
23 |
*
|
24 |
* @var string
|
25 |
*/
|
26 |
-
const VERSION = '1.4.
|
27 |
|
28 |
public static $upload_dir_suffix = '';
|
29 |
|
@@ -223,7 +223,10 @@ class Package {
|
|
223 |
ParcelLocator::init();
|
224 |
}
|
225 |
|
226 |
-
|
|
|
|
|
|
|
227 |
ParcelServices::init();
|
228 |
}
|
229 |
|
@@ -1045,13 +1048,23 @@ class Package {
|
|
1045 |
return false;
|
1046 |
}
|
1047 |
|
1048 |
-
if ( in_array( $country_receiver,
|
1049 |
return true;
|
1050 |
} else {
|
1051 |
return false;
|
1052 |
}
|
1053 |
}
|
1054 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1055 |
/**
|
1056 |
* Function return whether the sender and receiver country is "crossborder" i.e. needs CUSTOMS declarations (outside EU)
|
1057 |
*/
|
@@ -1061,9 +1074,9 @@ class Package {
|
|
1061 |
}
|
1062 |
|
1063 |
// Is sender country in EU...
|
1064 |
-
if ( in_array( self::get_base_country(),
|
1065 |
// ... and receiver country is in EU means NOT crossborder!
|
1066 |
-
if ( in_array( $country_receiver,
|
1067 |
return false;
|
1068 |
} else {
|
1069 |
return true;
|
23 |
*
|
24 |
* @var string
|
25 |
*/
|
26 |
+
const VERSION = '1.4.5';
|
27 |
|
28 |
public static $upload_dir_suffix = '';
|
29 |
|
223 |
ParcelLocator::init();
|
224 |
}
|
225 |
|
226 |
+
/**
|
227 |
+
* Additional services are only available for DHL products
|
228 |
+
*/
|
229 |
+
if ( self::is_dhl_enabled() && ParcelServices::is_enabled() ) {
|
230 |
ParcelServices::init();
|
231 |
}
|
232 |
|
1048 |
return false;
|
1049 |
}
|
1050 |
|
1051 |
+
if ( in_array( $country_receiver, self::get_eu_countries() ) ) {
|
1052 |
return true;
|
1053 |
} else {
|
1054 |
return false;
|
1055 |
}
|
1056 |
}
|
1057 |
|
1058 |
+
protected static function get_eu_countries() {
|
1059 |
+
$countries = WC()->countries->get_european_union_countries();
|
1060 |
+
|
1061 |
+
if ( in_array( 'GB', $countries ) ) {
|
1062 |
+
$countries = array_diff( $countries, array( 'GB' ) );
|
1063 |
+
}
|
1064 |
+
|
1065 |
+
return $countries;
|
1066 |
+
}
|
1067 |
+
|
1068 |
/**
|
1069 |
* Function return whether the sender and receiver country is "crossborder" i.e. needs CUSTOMS declarations (outside EU)
|
1070 |
*/
|
1074 |
}
|
1075 |
|
1076 |
// Is sender country in EU...
|
1077 |
+
if ( in_array( self::get_base_country(), self::get_eu_countries() ) ) {
|
1078 |
// ... and receiver country is in EU means NOT crossborder!
|
1079 |
+
if ( in_array( $country_receiver, self::get_eu_countries() ) ) {
|
1080 |
return false;
|
1081 |
} else {
|
1082 |
return true;
|
packages/woocommerce-germanized-dhl/src/ParcelLocator.php
CHANGED
@@ -517,7 +517,9 @@ class ParcelLocator {
|
|
517 |
$supports = array();
|
518 |
|
519 |
foreach( wc_gzd_dhl_get_pickup_types() as $pickup_type => $title ) {
|
520 |
-
|
|
|
|
|
521 |
$supports[] = $pickup_type;
|
522 |
}
|
523 |
}
|
@@ -774,7 +776,19 @@ class ParcelLocator {
|
|
774 |
|
775 |
if ( $check_method && ( $method = wc_gzd_dhl_get_current_shipping_method() ) ) {
|
776 |
if ( $method->has_option( $option_key ) && ! self::disable_method_setting() ) {
|
777 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
778 |
}
|
779 |
}
|
780 |
|
@@ -806,7 +820,7 @@ class ParcelLocator {
|
|
806 |
public static function has_map() {
|
807 |
$api_key = self::get_setting( 'map_api_key' );
|
808 |
|
809 |
-
return ( 'yes' === self::get_setting( 'map_enable' ) && ! empty( $api_key ) );
|
810 |
}
|
811 |
|
812 |
public static function get_max_results() {
|
517 |
$supports = array();
|
518 |
|
519 |
foreach( wc_gzd_dhl_get_pickup_types() as $pickup_type => $title ) {
|
520 |
+
$getter = "is_{$pickup_type}_enabled";
|
521 |
+
|
522 |
+
if ( $method->$getter() ) {
|
523 |
$supports[] = $pickup_type;
|
524 |
}
|
525 |
}
|
776 |
|
777 |
if ( $check_method && ( $method = wc_gzd_dhl_get_current_shipping_method() ) ) {
|
778 |
if ( $method->has_option( $option_key ) && ! self::disable_method_setting() ) {
|
779 |
+
/**
|
780 |
+
* Explicitly call available pickup getters instead of generic get_option method
|
781 |
+
* to support DP adjustments (packstation).
|
782 |
+
*/
|
783 |
+
if ( 'parcel_pickup_packstation_enable' === $option_key ) {
|
784 |
+
return wc_bool_to_string( $method->is_packstation_enabled() );
|
785 |
+
} elseif ( 'parcel_pickup_parcelshop_enable' === $option_key ) {
|
786 |
+
return wc_bool_to_string( $method->is_parcelshop_enabled() );
|
787 |
+
} elseif ( 'parcel_pickup_postoffice_enable' === $option_key ) {
|
788 |
+
return wc_bool_to_string( $method->is_postoffice_enabled() );
|
789 |
+
} else {
|
790 |
+
return $method->get_option( $option_key );
|
791 |
+
}
|
792 |
}
|
793 |
}
|
794 |
|
820 |
public static function has_map() {
|
821 |
$api_key = self::get_setting( 'map_api_key' );
|
822 |
|
823 |
+
return ( 'yes' === self::get_setting( 'map_enable' ) && ! empty( $api_key ) && Package::is_dhl_enabled() );
|
824 |
}
|
825 |
|
826 |
public static function get_max_results() {
|
packages/woocommerce-germanized-dhl/src/ShippingProvider/MethodDHL.php
CHANGED
@@ -3,6 +3,7 @@
|
|
3 |
namespace Vendidero\Germanized\DHL\ShippingProvider;
|
4 |
|
5 |
use Vendidero\Germanized\DHL\Package;
|
|
|
6 |
use Vendidero\Germanized\Shipments\ShippingProviderMethod;
|
7 |
|
8 |
defined( 'ABSPATH' ) || exit;
|
@@ -116,7 +117,11 @@ class MethodDHL {
|
|
116 |
}
|
117 |
|
118 |
public function is_packstation_enabled() {
|
119 |
-
|
|
|
|
|
|
|
|
|
120 |
}
|
121 |
|
122 |
public function is_postoffice_enabled() {
|
3 |
namespace Vendidero\Germanized\DHL\ShippingProvider;
|
4 |
|
5 |
use Vendidero\Germanized\DHL\Package;
|
6 |
+
use Vendidero\Germanized\DHL\ParcelLocator;
|
7 |
use Vendidero\Germanized\Shipments\ShippingProviderMethod;
|
8 |
|
9 |
defined( 'ABSPATH' ) || exit;
|
117 |
}
|
118 |
|
119 |
public function is_packstation_enabled() {
|
120 |
+
if ( $this->is_deutsche_post_enabled() ) {
|
121 |
+
return ParcelLocator::is_packstation_enabled( false );
|
122 |
+
} else {
|
123 |
+
return $this->get_option( 'dhl_parcel_pickup_packstation_enable' ) === 'yes' ? true : false;
|
124 |
+
}
|
125 |
}
|
126 |
|
127 |
public function is_postoffice_enabled() {
|
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.
|
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.5
|
9 |
* Requires PHP: 5.6
|
10 |
* License: GPLv3
|
11 |
*
|
packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php
CHANGED
@@ -152,7 +152,6 @@ function wc_gzd_get_shipment_order_return_statuses() {
|
|
152 |
* @return ShippingProviderMethod
|
153 |
*/
|
154 |
function wc_gzd_get_shipping_provider_method( $instance_id ) {
|
155 |
-
|
156 |
$original_id = $instance_id;
|
157 |
|
158 |
if ( is_a( $original_id, 'WC_Shipping_Rate' ) ) {
|
@@ -179,8 +178,24 @@ function wc_gzd_get_shipping_provider_method( $instance_id ) {
|
|
179 |
// Make sure shipping zones are loaded
|
180 |
include_once WC_ABSPATH . 'includes/class-wc-shipping-zones.php';
|
181 |
|
182 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
|
|
|
184 |
/**
|
185 |
* Filter to adjust the classname used to construct the shipping provider method
|
186 |
* which contains additional provider related settings useful for shipments.
|
152 |
* @return ShippingProviderMethod
|
153 |
*/
|
154 |
function wc_gzd_get_shipping_provider_method( $instance_id ) {
|
|
|
155 |
$original_id = $instance_id;
|
156 |
|
157 |
if ( is_a( $original_id, 'WC_Shipping_Rate' ) ) {
|
178 |
// Make sure shipping zones are loaded
|
179 |
include_once WC_ABSPATH . 'includes/class-wc-shipping-zones.php';
|
180 |
|
181 |
+
/**
|
182 |
+
* Cache methods within frontend
|
183 |
+
*/
|
184 |
+
if ( WC()->session ) {
|
185 |
+
$cache_key = 'woocommerce_gzd_method_' . $instance_id;
|
186 |
+
|
187 |
+
if ( ! $method = WC()->session->get( $cache_key ) ) {
|
188 |
+
$method = WC_Shipping_Zones::get_shipping_method( $instance_id );
|
189 |
+
|
190 |
+
if ( $method ) {
|
191 |
+
WC()->session->set( $cache_key, $method );
|
192 |
+
}
|
193 |
+
}
|
194 |
+
} else {
|
195 |
+
$method = WC_Shipping_Zones::get_shipping_method( $instance_id );
|
196 |
+
}
|
197 |
|
198 |
+
if ( $method ) {
|
199 |
/**
|
200 |
* Filter to adjust the classname used to construct the shipping provider method
|
201 |
* which contains additional provider related settings useful for shipments.
|
packages/woocommerce-germanized-shipments/src/Admin/Admin.php
CHANGED
@@ -52,6 +52,72 @@ class Admin {
|
|
52 |
|
53 |
// Menu count
|
54 |
add_action( 'admin_head', array( __CLASS__, 'menu_return_count' ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
}
|
56 |
|
57 |
public static function menu_return_count() {
|
@@ -301,12 +367,12 @@ class Admin {
|
|
301 |
width: 100% !important;
|
302 |
}
|
303 |
tbody.packaging_list .input-inner-wrap {
|
304 |
-
|
305 |
-
flex-wrap: nowrap;
|
306 |
}
|
307 |
-
tbody.packaging_list .input-inner-wrap input {
|
308 |
width: 33% !important;
|
309 |
min-width: auto !important;
|
|
|
310 |
}
|
311 |
</style>
|
312 |
<table class="widefat wc_input_table sortable" cellspacing="0">
|
52 |
|
53 |
// Menu count
|
54 |
add_action( 'admin_head', array( __CLASS__, 'menu_return_count' ) );
|
55 |
+
|
56 |
+
// Register endpoints within settings
|
57 |
+
add_filter( 'woocommerce_get_settings_advanced', array( __CLASS__, 'register_endpoint_settings' ), 20, 2 );
|
58 |
+
}
|
59 |
+
|
60 |
+
private static function get_setting_key_by_id( $settings, $id, $type = '' ) {
|
61 |
+
if ( ! empty( $settings ) ) {
|
62 |
+
foreach ( $settings as $key => $value ) {
|
63 |
+
if ( isset( $value['id'] ) && $value['id'] == $id ) {
|
64 |
+
if ( ! empty( $type ) && $type !== $value['type'] ) {
|
65 |
+
continue;
|
66 |
+
}
|
67 |
+
return $key;
|
68 |
+
}
|
69 |
+
}
|
70 |
+
}
|
71 |
+
|
72 |
+
return false;
|
73 |
+
}
|
74 |
+
|
75 |
+
protected static function add_settings_after( $settings, $id, $insert = array(), $type = '' ) {
|
76 |
+
$key = self::get_setting_key_by_id( $settings, $id, $type );
|
77 |
+
|
78 |
+
if ( is_numeric( $key ) ) {
|
79 |
+
$key ++;
|
80 |
+
$settings = array_merge( array_merge( array_slice( $settings, 0, $key, true ), $insert ), array_slice( $settings, $key, count( $settings ) - 1, true ) );
|
81 |
+
} else {
|
82 |
+
$settings += $insert;
|
83 |
+
}
|
84 |
+
|
85 |
+
return $settings;
|
86 |
+
}
|
87 |
+
|
88 |
+
public static function register_endpoint_settings( $settings, $current_section ) {
|
89 |
+
if ( '' === $current_section ) {
|
90 |
+
$endpoints = array(
|
91 |
+
array(
|
92 |
+
'title' => _x( 'View Shipments', 'shipments', 'woocommerce-germanized' ),
|
93 |
+
'desc' => _x( 'Endpoint for the "My account → View shipments" page.', 'shipments', 'woocommerce-germanized' ),
|
94 |
+
'id' => 'woocommerce_gzd_shipments_view_shipments_endpoint',
|
95 |
+
'type' => 'text',
|
96 |
+
'default' => 'view-shipments',
|
97 |
+
'desc_tip' => true,
|
98 |
+
),
|
99 |
+
array(
|
100 |
+
'title' => _x( 'View shipment', 'shipments', 'woocommerce-germanized' ),
|
101 |
+
'desc' => _x( 'Endpoint for the "My account → View shipment" page.', 'shipments', 'woocommerce-germanized' ),
|
102 |
+
'id' => 'woocommerce_gzd_shipments_view_shipment_endpoint',
|
103 |
+
'type' => 'text',
|
104 |
+
'default' => 'view-shipment',
|
105 |
+
'desc_tip' => true,
|
106 |
+
),
|
107 |
+
array(
|
108 |
+
'title' => _x( 'Add Return Shipment', 'shipments', 'woocommerce-germanized' ),
|
109 |
+
'desc' => _x( 'Endpoint for the "My account → Add return shipment" page.', 'shipments', 'woocommerce-germanized' ),
|
110 |
+
'id' => 'woocommerce_gzd_shipments_add_return_shipment_endpoint',
|
111 |
+
'type' => 'text',
|
112 |
+
'default' => 'add-return-shipment',
|
113 |
+
'desc_tip' => true,
|
114 |
+
),
|
115 |
+
);
|
116 |
+
|
117 |
+
$settings = self::add_settings_after( $settings, 'woocommerce_myaccount_downloads_endpoint', $endpoints );
|
118 |
+
}
|
119 |
+
|
120 |
+
return $settings;
|
121 |
}
|
122 |
|
123 |
public static function menu_return_count() {
|
367 |
width: 100% !important;
|
368 |
}
|
369 |
tbody.packaging_list .input-inner-wrap {
|
370 |
+
clear: both;
|
|
|
371 |
}
|
372 |
+
tbody.packaging_list .input-inner-wrap input.wc_input_decimal {
|
373 |
width: 33% !important;
|
374 |
min-width: auto !important;
|
375 |
+
float: left !important;
|
376 |
}
|
377 |
</style>
|
378 |
<table class="widefat wc_input_table sortable" cellspacing="0">
|
packages/woocommerce-germanized-shipments/src/Package.php
CHANGED
@@ -17,7 +17,7 @@ class Package {
|
|
17 |
*
|
18 |
* @var string
|
19 |
*/
|
20 |
-
const VERSION = '1.4.
|
21 |
|
22 |
public static $upload_dir_suffix = '';
|
23 |
|
@@ -46,6 +46,12 @@ class Package {
|
|
46 |
|
47 |
add_filter( 'woocommerce_get_query_vars', array( __CLASS__, 'register_endpoints' ), 10, 1 );
|
48 |
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
add_action( 'woocommerce_load_shipping_methods', array( __CLASS__, 'load_shipping_methods' ), 5, 1 );
|
50 |
add_filter( 'woocommerce_shipping_methods', array( __CLASS__, 'set_method_filters' ), 200, 1 );
|
51 |
|
@@ -211,10 +217,32 @@ class Package {
|
|
211 |
}
|
212 |
}
|
213 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
public static function register_endpoints( $query_vars ) {
|
215 |
-
|
216 |
-
|
217 |
-
|
|
|
|
|
|
|
218 |
|
219 |
return $query_vars;
|
220 |
}
|
17 |
*
|
18 |
* @var string
|
19 |
*/
|
20 |
+
const VERSION = '1.4.4';
|
21 |
|
22 |
public static $upload_dir_suffix = '';
|
23 |
|
46 |
|
47 |
add_filter( 'woocommerce_get_query_vars', array( __CLASS__, 'register_endpoints' ), 10, 1 );
|
48 |
|
49 |
+
if ( ! did_action( 'woocommerce_loaded' ) ) {
|
50 |
+
add_action( 'woocommerce_loaded', array( __CLASS__, 'inject_endpoints' ), 10 );
|
51 |
+
} else {
|
52 |
+
self::inject_endpoints();
|
53 |
+
}
|
54 |
+
|
55 |
add_action( 'woocommerce_load_shipping_methods', array( __CLASS__, 'load_shipping_methods' ), 5, 1 );
|
56 |
add_filter( 'woocommerce_shipping_methods', array( __CLASS__, 'set_method_filters' ), 200, 1 );
|
57 |
|
217 |
}
|
218 |
}
|
219 |
|
220 |
+
public static function inject_endpoints() {
|
221 |
+
if ( function_exists( 'WC' ) && WC()->query ) {
|
222 |
+
foreach( self::get_endpoints() as $endpoint ) {
|
223 |
+
if ( ! array_key_exists( $endpoint, WC()->query->query_vars ) ) {
|
224 |
+
$option_name = str_replace( '-', '_', $endpoint );
|
225 |
+
WC()->query->query_vars[ $endpoint ] = get_option( "woocommerce_gzd_shipments_{$option_name}_endpoint", $endpoint );
|
226 |
+
}
|
227 |
+
}
|
228 |
+
}
|
229 |
+
}
|
230 |
+
|
231 |
+
public static function get_endpoints() {
|
232 |
+
return array(
|
233 |
+
'view-shipment',
|
234 |
+
'add-return-shipment',
|
235 |
+
'view-shipments'
|
236 |
+
);
|
237 |
+
}
|
238 |
+
|
239 |
public static function register_endpoints( $query_vars ) {
|
240 |
+
foreach( self::get_endpoints() as $endpoint ) {
|
241 |
+
if ( ! array_key_exists( $endpoint, $query_vars ) ) {
|
242 |
+
$option_name = str_replace( '-', '_', $endpoint );
|
243 |
+
$query_vars[ $endpoint ] = get_option( "woocommerce_gzd_shipments_{$option_name}_endpoint", $endpoint );
|
244 |
+
}
|
245 |
+
}
|
246 |
|
247 |
return $query_vars;
|
248 |
}
|
packages/woocommerce-germanized-shipments/src/Shipment.php
CHANGED
@@ -323,11 +323,7 @@ abstract class Shipment extends WC_Data {
|
|
323 |
}
|
324 |
|
325 |
public function get_total_weight() {
|
326 |
-
$weight = $this->get_weight();
|
327 |
-
|
328 |
-
if ( $packaging = $this->get_packaging() ) {
|
329 |
-
$weight += $packaging->get_weight();
|
330 |
-
}
|
331 |
|
332 |
return apply_filters( "{$this->get_hook_prefix()}total_weight", $weight, $this );
|
333 |
}
|
@@ -380,9 +376,21 @@ abstract class Shipment extends WC_Data {
|
|
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(),
|
386 |
} else {
|
387 |
$length = $this->get_length();
|
388 |
}
|
@@ -408,7 +416,7 @@ abstract class Shipment extends WC_Data {
|
|
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(),
|
412 |
} else {
|
413 |
$width = $this->get_width();
|
414 |
}
|
@@ -434,7 +442,7 @@ abstract class Shipment extends WC_Data {
|
|
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(),
|
438 |
} else {
|
439 |
$height = $this->get_height();
|
440 |
}
|
323 |
}
|
324 |
|
325 |
public function get_total_weight() {
|
326 |
+
$weight = $this->get_weight() + $this->get_packaging_weight();
|
|
|
|
|
|
|
|
|
327 |
|
328 |
return apply_filters( "{$this->get_hook_prefix()}total_weight", $weight, $this );
|
329 |
}
|
376 |
return $length;
|
377 |
}
|
378 |
|
379 |
+
public function get_packaging_weight() {
|
380 |
+
$packaging_weight = 0;
|
381 |
+
|
382 |
+
if ( $packaging = $this->get_packaging() ) {
|
383 |
+
if ( ! empty( $packaging->get_weight() ) ) {
|
384 |
+
$packaging_weight = wc_get_weight( $packaging->get_weight(), $this->get_weight_unit(), wc_gzd_get_packaging_weight_unit() );
|
385 |
+
}
|
386 |
+
}
|
387 |
+
|
388 |
+
return $packaging_weight;
|
389 |
+
}
|
390 |
+
|
391 |
public function get_package_length() {
|
392 |
if ( $packaging = $this->get_packaging() ) {
|
393 |
+
$length = wc_get_dimension( $packaging->get_length(), $this->get_dimension_unit(), wc_gzd_get_packaging_dimension_unit() );
|
394 |
} else {
|
395 |
$length = $this->get_length();
|
396 |
}
|
416 |
|
417 |
public function get_package_width() {
|
418 |
if ( $packaging = $this->get_packaging() ) {
|
419 |
+
$width = wc_get_dimension( $packaging->get_width(), $this->get_dimension_unit(), wc_gzd_get_packaging_dimension_unit() );
|
420 |
} else {
|
421 |
$width = $this->get_width();
|
422 |
}
|
442 |
|
443 |
public function get_package_height() {
|
444 |
if ( $packaging = $this->get_packaging() ) {
|
445 |
+
$height = wc_get_dimension( $packaging->get_height(), $this->get_dimension_unit(), wc_gzd_get_packaging_dimension_unit() );
|
446 |
} else {
|
447 |
$height = $this->get_height();
|
448 |
}
|
packages/woocommerce-germanized-shipments/src/Validation.php
CHANGED
@@ -20,8 +20,9 @@ class Validation {
|
|
20 |
add_action( 'woocommerce_new_order', array( __CLASS__, 'new_order' ), 10, 1 );
|
21 |
add_action( 'woocommerce_delete_order', array( __CLASS__, 'delete_order' ), 10, 1 );
|
22 |
|
23 |
-
|
24 |
-
|
|
|
25 |
|
26 |
add_action( 'before_delete_post', array( __CLASS__, 'before_delete_refund' ), 10, 1 );
|
27 |
add_action( 'woocommerce_delete_order_refund', array( __CLASS__, 'delete_refund_order' ), 10, 1 );
|
20 |
add_action( 'woocommerce_new_order', array( __CLASS__, 'new_order' ), 10, 1 );
|
21 |
add_action( 'woocommerce_delete_order', array( __CLASS__, 'delete_order' ), 10, 1 );
|
22 |
|
23 |
+
foreach( array( 'cancelled', 'failed', 'refunded' ) as $cancelled_status ) {
|
24 |
+
add_action( "woocommerce_order_status_{$cancelled_status}", array( __CLASS__, 'maybe_cancel_shipments' ), 10, 2 );
|
25 |
+
}
|
26 |
|
27 |
add_action( 'before_delete_post', array( __CLASS__, 'before_delete_refund' ), 10, 1 );
|
28 |
add_action( 'woocommerce_delete_order_refund', array( __CLASS__, 'delete_refund_order' ), 10, 1 );
|
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.
|
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.4
|
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:
|
8 |
-
Stable tag: 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,22 @@ 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.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
|
4 |
Requires at least: 5.4
|
5 |
Tested up to: 5.6
|
6 |
WC requires at least: 3.9
|
7 |
+
WC tested up to: 5.0
|
8 |
+
Stable tag: 3.3.5
|
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.5 =
|
190 |
+
* Feature: WC 5.0 compatibility
|
191 |
+
* Improvement: Unit price ranges reflecting the matching unit price per min max price (not using the unit min max price)
|
192 |
+
* Improvement: Consisting wording for cancellation policy and withdrawal
|
193 |
+
* Improvement: Better Jetpack Builder compatibility
|
194 |
+
* Improvement: Shipping costs tax calculation compatibility improvements
|
195 |
+
* Improvement: Removed legacy checkout phone option in favor of Woo's customizer option
|
196 |
+
* Improvement: Allow Packstation delivery and choosing for Internetmarke
|
197 |
+
* Improvement: Internetmarke label print XY position options
|
198 |
+
* Improvement: Internetmarke address 2 field
|
199 |
+
* Improvement: Internetmarke default product selection
|
200 |
+
* Improvement: Cache shipping method instances during frontend requests
|
201 |
+
* Improvement: Maybe cancel shipments for refunded orders
|
202 |
+
* Fix: Firefox packaging table dimensions display
|
203 |
+
* Fix: DHL customs net weight calculation
|
204 |
+
|
205 |
= 3.3.4 =
|
206 |
* Feature: WC 4.9 compatibility
|
207 |
* Improvement: Use net prices for shipping costs and fees in case net option is enabled in Woo tax settings
|
templates/emails/customer-revocation.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
*
|
13 |
* @see https://github.com/vendidero/woocommerce-germanized/wiki/Overriding-Germanized-Templates
|
14 |
* @package Germanized/Templates
|
15 |
-
* @version 1.0.
|
16 |
*/
|
17 |
if ( ! defined( 'ABSPATH' ) ) {
|
18 |
exit;
|
@@ -23,7 +23,7 @@ $fields = WC_GZD_Revocation::get_fields();
|
|
23 |
|
24 |
<?php do_action( 'woocommerce_email_header', $email_heading, $email ); ?>
|
25 |
|
26 |
-
<p><?php echo _x( 'By sending you this email we confirm your
|
27 |
|
28 |
<table cellspacing="0" cellpadding="0" style="width: 100%; vertical-align: top;" border="0">
|
29 |
<?php if ( ! empty( $fields ) ) : ?>
|
12 |
*
|
13 |
* @see https://github.com/vendidero/woocommerce-germanized/wiki/Overriding-Germanized-Templates
|
14 |
* @package Germanized/Templates
|
15 |
+
* @version 1.0.1
|
16 |
*/
|
17 |
if ( ! defined( 'ABSPATH' ) ) {
|
18 |
exit;
|
23 |
|
24 |
<?php do_action( 'woocommerce_email_header', $email_heading, $email ); ?>
|
25 |
|
26 |
+
<p><?php echo _x( 'By sending you this email we confirm receiving your withdrawal. Please review your data.', 'revocation-form', 'woocommerce-germanized' ); ?></p>
|
27 |
|
28 |
<table cellspacing="0" cellpadding="0" style="width: 100%; vertical-align: top;" border="0">
|
29 |
<?php if ( ! empty( $fields ) ) : ?>
|
templates/forms/revocation-form.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
*
|
13 |
* @see https://github.com/vendidero/woocommerce-germanized/wiki/Overriding-Germanized-Templates
|
14 |
* @package Germanized/Templates
|
15 |
-
* @version 1.0.
|
16 |
*/
|
17 |
if ( ! defined( 'ABSPATH' ) ) {
|
18 |
exit;
|
@@ -46,8 +46,8 @@ $fields = WC_GZD_Revocation::get_fields();
|
|
46 |
<div class="form-row submit-revocation checkout-btn-wrap">
|
47 |
<?php wp_nonce_field( 'woocommerce-revocation' ); ?>
|
48 |
<button class="button alt" name="woocommerce_gzd_revocation_submit" id="submit_revocation"
|
49 |
-
value="<?php echo esc_attr( _x( 'Forward
|
50 |
-
data-value="<?php echo esc_attr( _x( 'Forward
|
51 |
</div>
|
52 |
|
53 |
</form>
|
12 |
*
|
13 |
* @see https://github.com/vendidero/woocommerce-germanized/wiki/Overriding-Germanized-Templates
|
14 |
* @package Germanized/Templates
|
15 |
+
* @version 1.0.1
|
16 |
*/
|
17 |
if ( ! defined( 'ABSPATH' ) ) {
|
18 |
exit;
|
46 |
<div class="form-row submit-revocation checkout-btn-wrap">
|
47 |
<?php wp_nonce_field( 'woocommerce-revocation' ); ?>
|
48 |
<button class="button alt" name="woocommerce_gzd_revocation_submit" id="submit_revocation"
|
49 |
+
value="<?php echo esc_attr( _x( 'Forward Withdrawal', 'revocation-form', 'woocommerce-germanized' ) ); ?>"
|
50 |
+
data-value="<?php echo esc_attr( _x( 'Forward Withdrawal', 'revocation-form', 'woocommerce-germanized' ) ); ?>"><?php echo _x( 'Forward Withdrawal', 'revocation-form', 'woocommerce-germanized' ); ?></button>
|
51 |
</div>
|
52 |
|
53 |
</form>
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInit63b70c83b4a124aa51b42a95c10c3d7b::getLoader();
|
vendor/autoload_packages.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp63b70c83b4a124aa51b42a95c10c3d7b;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/composer/InstalledVersions.php
CHANGED
@@ -19,7 +19,7 @@ private static $installed = array (
|
|
19 |
'aliases' =>
|
20 |
array (
|
21 |
),
|
22 |
-
'reference' => '
|
23 |
'name' => 'vendidero/woocommerce-germanized',
|
24 |
),
|
25 |
'versions' =>
|
@@ -44,12 +44,12 @@ private static $installed = array (
|
|
44 |
),
|
45 |
'composer/installers' =>
|
46 |
array (
|
47 |
-
'pretty_version' => 'v1.
|
48 |
-
'version' => '1.
|
49 |
'aliases' =>
|
50 |
array (
|
51 |
),
|
52 |
-
'reference' => '
|
53 |
),
|
54 |
'myclabs/deep-copy' =>
|
55 |
array (
|
@@ -103,25 +103,25 @@ private static $installed = array (
|
|
103 |
'aliases' =>
|
104 |
array (
|
105 |
),
|
106 |
-
'reference' => '
|
107 |
),
|
108 |
'vendidero/woocommerce-germanized-dhl' =>
|
109 |
array (
|
110 |
-
'pretty_version' => 'v1.4.
|
111 |
-
'version' => '1.4.
|
112 |
'aliases' =>
|
113 |
array (
|
114 |
),
|
115 |
-
'reference' => '
|
116 |
),
|
117 |
'vendidero/woocommerce-germanized-shipments' =>
|
118 |
array (
|
119 |
-
'pretty_version' => 'v1.4.
|
120 |
-
'version' => '1.4.
|
121 |
'aliases' =>
|
122 |
array (
|
123 |
),
|
124 |
-
'reference' => '
|
125 |
),
|
126 |
'vendidero/woocommerce-trusted-shops' =>
|
127 |
array (
|
19 |
'aliases' =>
|
20 |
array (
|
21 |
),
|
22 |
+
'reference' => 'dfdd74e467d7eddbf5adf259282c4d5500c0821e',
|
23 |
'name' => 'vendidero/woocommerce-germanized',
|
24 |
),
|
25 |
'versions' =>
|
44 |
),
|
45 |
'composer/installers' =>
|
46 |
array (
|
47 |
+
'pretty_version' => 'v1.10.0',
|
48 |
+
'version' => '1.10.0.0',
|
49 |
'aliases' =>
|
50 |
array (
|
51 |
),
|
52 |
+
'reference' => '1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d',
|
53 |
),
|
54 |
'myclabs/deep-copy' =>
|
55 |
array (
|
103 |
'aliases' =>
|
104 |
array (
|
105 |
),
|
106 |
+
'reference' => 'dfdd74e467d7eddbf5adf259282c4d5500c0821e',
|
107 |
),
|
108 |
'vendidero/woocommerce-germanized-dhl' =>
|
109 |
array (
|
110 |
+
'pretty_version' => 'v1.4.5',
|
111 |
+
'version' => '1.4.5.0',
|
112 |
'aliases' =>
|
113 |
array (
|
114 |
),
|
115 |
+
'reference' => '2930d1349b0112abae960d9e2ffd8eb309818316',
|
116 |
),
|
117 |
'vendidero/woocommerce-germanized-shipments' =>
|
118 |
array (
|
119 |
+
'pretty_version' => 'v1.4.4',
|
120 |
+
'version' => '1.4.4.0',
|
121 |
'aliases' =>
|
122 |
array (
|
123 |
),
|
124 |
+
'reference' => 'b9d92627595321eb9899c249e55130a09a224bbe',
|
125 |
),
|
126 |
'vendidero/woocommerce-trusted-shops' =>
|
127 |
array (
|
vendor/composer/autoload_classmap.php
CHANGED
@@ -80,6 +80,7 @@ return array(
|
|
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',
|
@@ -91,6 +92,7 @@ return array(
|
|
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',
|
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\\ProcessWireInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/ProcessWireInstaller.php',
|
84 |
'Composer\\Installers\\PuppetInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/PuppetInstaller.php',
|
85 |
'Composer\\Installers\\PxcmsInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/PxcmsInstaller.php',
|
86 |
'Composer\\Installers\\RadPHPInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/RadPHPInstaller.php',
|
92 |
'Composer\\Installers\\ShopwareInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/ShopwareInstaller.php',
|
93 |
'Composer\\Installers\\SilverStripeInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/SilverStripeInstaller.php',
|
94 |
'Composer\\Installers\\SiteDirectInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/SiteDirectInstaller.php',
|
95 |
+
'Composer\\Installers\\StarbugInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/StarbugInstaller.php',
|
96 |
'Composer\\Installers\\SyDESInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/SyDESInstaller.php',
|
97 |
'Composer\\Installers\\SyliusInstaller' => $vendorDir . '/composer/installers/src/Composer/Installers/SyliusInstaller.php',
|
98 |
'Composer\\Installers\\Symfony1Installer' => $vendorDir . '/composer/installers/src/Composer/Installers/Symfony1Installer.php',
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -24,15 +24,15 @@ class ComposerAutoloaderInit11a2348af64ff8817f711cc97b151bde
|
|
24 |
|
25 |
require __DIR__ . '/platform_check.php';
|
26 |
|
27 |
-
spl_autoload_register(array('
|
28 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
29 |
-
spl_autoload_unregister(array('
|
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\
|
36 |
} else {
|
37 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
38 |
foreach ($map as $namespace => $path) {
|
@@ -53,19 +53,19 @@ class ComposerAutoloaderInit11a2348af64ff8817f711cc97b151bde
|
|
53 |
$loader->register(true);
|
54 |
|
55 |
if ($useStaticLoader) {
|
56 |
-
$includeFiles = Composer\Autoload\
|
57 |
} else {
|
58 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
59 |
}
|
60 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
61 |
-
|
62 |
}
|
63 |
|
64 |
return $loader;
|
65 |
}
|
66 |
}
|
67 |
|
68 |
-
function
|
69 |
{
|
70 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
71 |
require $file;
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInit63b70c83b4a124aa51b42a95c10c3d7b
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
24 |
|
25 |
require __DIR__ . '/platform_check.php';
|
26 |
|
27 |
+
spl_autoload_register(array('ComposerAutoloaderInit63b70c83b4a124aa51b42a95c10c3d7b', 'loadClassLoader'), true, true);
|
28 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
29 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit63b70c83b4a124aa51b42a95c10c3d7b', '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\ComposerStaticInit63b70c83b4a124aa51b42a95c10c3d7b::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\ComposerStaticInit63b70c83b4a124aa51b42a95c10c3d7b::$files;
|
57 |
} else {
|
58 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
59 |
}
|
60 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
61 |
+
composerRequire63b70c83b4a124aa51b42a95c10c3d7b($fileIdentifier, $file);
|
62 |
}
|
63 |
|
64 |
return $loader;
|
65 |
}
|
66 |
}
|
67 |
|
68 |
+
function composerRequire63b70c83b4a124aa51b42a95c10c3d7b($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
|
8 |
{
|
9 |
public static $files = array (
|
10 |
'6124b4c8570aa390c21fafd04a26c69f' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php',
|
@@ -162,6 +162,7 @@ class ComposerStaticInit11a2348af64ff8817f711cc97b151bde
|
|
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',
|
@@ -173,6 +174,7 @@ class ComposerStaticInit11a2348af64ff8817f711cc97b151bde
|
|
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',
|
@@ -385,9 +387,9 @@ class ComposerStaticInit11a2348af64ff8817f711cc97b151bde
|
|
385 |
public static function getInitializer(ClassLoader $loader)
|
386 |
{
|
387 |
return \Closure::bind(function () use ($loader) {
|
388 |
-
$loader->prefixLengthsPsr4 =
|
389 |
-
$loader->prefixDirsPsr4 =
|
390 |
-
$loader->classMap =
|
391 |
|
392 |
}, null, ClassLoader::class);
|
393 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInit63b70c83b4a124aa51b42a95c10c3d7b
|
8 |
{
|
9 |
public static $files = array (
|
10 |
'6124b4c8570aa390c21fafd04a26c69f' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/deep_copy.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\\ProcessWireInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/ProcessWireInstaller.php',
|
166 |
'Composer\\Installers\\PuppetInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/PuppetInstaller.php',
|
167 |
'Composer\\Installers\\PxcmsInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/PxcmsInstaller.php',
|
168 |
'Composer\\Installers\\RadPHPInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/RadPHPInstaller.php',
|
174 |
'Composer\\Installers\\ShopwareInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/ShopwareInstaller.php',
|
175 |
'Composer\\Installers\\SilverStripeInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/SilverStripeInstaller.php',
|
176 |
'Composer\\Installers\\SiteDirectInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/SiteDirectInstaller.php',
|
177 |
+
'Composer\\Installers\\StarbugInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/StarbugInstaller.php',
|
178 |
'Composer\\Installers\\SyDESInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/SyDESInstaller.php',
|
179 |
'Composer\\Installers\\SyliusInstaller' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/SyliusInstaller.php',
|
180 |
'Composer\\Installers\\Symfony1Installer' => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers/Symfony1Installer.php',
|
387 |
public static function getInitializer(ClassLoader $loader)
|
388 |
{
|
389 |
return \Closure::bind(function () use ($loader) {
|
390 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInit63b70c83b4a124aa51b42a95c10c3d7b::$prefixLengthsPsr4;
|
391 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit63b70c83b4a124aa51b42a95c10c3d7b::$prefixDirsPsr4;
|
392 |
+
$loader->classMap = ComposerStaticInit63b70c83b4a124aa51b42a95c10c3d7b::$classMap;
|
393 |
|
394 |
}, null, ClassLoader::class);
|
395 |
}
|
vendor/composer/installed.json
CHANGED
@@ -90,17 +90,17 @@
|
|
90 |
},
|
91 |
{
|
92 |
"name": "composer/installers",
|
93 |
-
"version": "v1.
|
94 |
-
"version_normalized": "1.
|
95 |
"source": {
|
96 |
"type": "git",
|
97 |
"url": "https://github.com/composer/installers.git",
|
98 |
-
"reference": "
|
99 |
},
|
100 |
"dist": {
|
101 |
"type": "zip",
|
102 |
-
"url": "https://api.github.com/repos/composer/installers/zipball/
|
103 |
-
"reference": "
|
104 |
"shasum": ""
|
105 |
},
|
106 |
"require": {
|
@@ -111,18 +111,19 @@
|
|
111 |
"shama/baton": "*"
|
112 |
},
|
113 |
"require-dev": {
|
114 |
-
"composer/composer": "1.6.* || 2.0
|
115 |
-
"composer/semver": "1
|
116 |
-
"
|
117 |
-
"
|
|
|
118 |
"symfony/process": "^2.3"
|
119 |
},
|
120 |
-
"time": "
|
121 |
"type": "composer-plugin",
|
122 |
"extra": {
|
123 |
"class": "Composer\\Installers\\Plugin",
|
124 |
"branch-alias": {
|
125 |
-
"dev-
|
126 |
}
|
127 |
},
|
128 |
"installation-source": "dist",
|
@@ -161,6 +162,7 @@
|
|
161 |
"Porto",
|
162 |
"RadPHP",
|
163 |
"SMF",
|
|
|
164 |
"Thelia",
|
165 |
"Whmcs",
|
166 |
"WolfCMS",
|
@@ -201,6 +203,7 @@
|
|
201 |
"phpbb",
|
202 |
"piwik",
|
203 |
"ppi",
|
|
|
204 |
"puppet",
|
205 |
"pxcms",
|
206 |
"reindex",
|
@@ -218,13 +221,17 @@
|
|
218 |
],
|
219 |
"support": {
|
220 |
"issues": "https://github.com/composer/installers/issues",
|
221 |
-
"source": "https://github.com/composer/installers/tree/v1.
|
222 |
},
|
223 |
"funding": [
|
224 |
{
|
225 |
"url": "https://packagist.com",
|
226 |
"type": "custom"
|
227 |
},
|
|
|
|
|
|
|
|
|
228 |
{
|
229 |
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
|
230 |
"type": "tidelift"
|
@@ -415,17 +422,17 @@
|
|
415 |
},
|
416 |
{
|
417 |
"name": "vendidero/woocommerce-germanized-dhl",
|
418 |
-
"version": "v1.4.
|
419 |
-
"version_normalized": "1.4.
|
420 |
"source": {
|
421 |
"type": "git",
|
422 |
"url": "https://github.com/vendidero/woocommerce-germanized-dhl.git",
|
423 |
-
"reference": "
|
424 |
},
|
425 |
"dist": {
|
426 |
"type": "zip",
|
427 |
-
"url": "https://api.github.com/repos/vendidero/woocommerce-germanized-dhl/zipball/
|
428 |
-
"reference": "
|
429 |
"shasum": ""
|
430 |
},
|
431 |
"require": {
|
@@ -436,7 +443,7 @@
|
|
436 |
"require-dev": {
|
437 |
"phpunit/phpunit": "6.5.14"
|
438 |
},
|
439 |
-
"time": "2021-01-
|
440 |
"type": "wordpress-plugin",
|
441 |
"installation-source": "dist",
|
442 |
"autoload": {
|
@@ -460,24 +467,24 @@
|
|
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.
|
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.
|
471 |
-
"version_normalized": "1.4.
|
472 |
"source": {
|
473 |
"type": "git",
|
474 |
"url": "https://github.com/vendidero/woocommerce-germanized-shipments.git",
|
475 |
-
"reference": "
|
476 |
},
|
477 |
"dist": {
|
478 |
"type": "zip",
|
479 |
-
"url": "https://api.github.com/repos/vendidero/woocommerce-germanized-shipments/zipball/
|
480 |
-
"reference": "
|
481 |
"shasum": ""
|
482 |
},
|
483 |
"require": {
|
@@ -488,7 +495,7 @@
|
|
488 |
"require-dev": {
|
489 |
"phpunit/phpunit": "^7.5.14"
|
490 |
},
|
491 |
-
"time": "2021-01-
|
492 |
"type": "wordpress-plugin",
|
493 |
"installation-source": "dist",
|
494 |
"autoload": {
|
@@ -510,7 +517,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.
|
514 |
"issues": "https://github.com/vendidero/woocommerce-germanized-shipments/issues"
|
515 |
},
|
516 |
"install-path": "../../packages/woocommerce-germanized-shipments"
|
90 |
},
|
91 |
{
|
92 |
"name": "composer/installers",
|
93 |
+
"version": "v1.10.0",
|
94 |
+
"version_normalized": "1.10.0.0",
|
95 |
"source": {
|
96 |
"type": "git",
|
97 |
"url": "https://github.com/composer/installers.git",
|
98 |
+
"reference": "1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d"
|
99 |
},
|
100 |
"dist": {
|
101 |
"type": "zip",
|
102 |
+
"url": "https://api.github.com/repos/composer/installers/zipball/1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d",
|
103 |
+
"reference": "1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d",
|
104 |
"shasum": ""
|
105 |
},
|
106 |
"require": {
|
111 |
"shama/baton": "*"
|
112 |
},
|
113 |
"require-dev": {
|
114 |
+
"composer/composer": "1.6.* || ^2.0",
|
115 |
+
"composer/semver": "^1 || ^3",
|
116 |
+
"phpstan/phpstan": "^0.12.55",
|
117 |
+
"phpstan/phpstan-phpunit": "^0.12.16",
|
118 |
+
"symfony/phpunit-bridge": "^4.2 || ^5",
|
119 |
"symfony/process": "^2.3"
|
120 |
},
|
121 |
+
"time": "2021-01-14T11:07:16+00:00",
|
122 |
"type": "composer-plugin",
|
123 |
"extra": {
|
124 |
"class": "Composer\\Installers\\Plugin",
|
125 |
"branch-alias": {
|
126 |
+
"dev-main": "1.x-dev"
|
127 |
}
|
128 |
},
|
129 |
"installation-source": "dist",
|
162 |
"Porto",
|
163 |
"RadPHP",
|
164 |
"SMF",
|
165 |
+
"Starbug",
|
166 |
"Thelia",
|
167 |
"Whmcs",
|
168 |
"WolfCMS",
|
203 |
"phpbb",
|
204 |
"piwik",
|
205 |
"ppi",
|
206 |
+
"processwire",
|
207 |
"puppet",
|
208 |
"pxcms",
|
209 |
"reindex",
|
221 |
],
|
222 |
"support": {
|
223 |
"issues": "https://github.com/composer/installers/issues",
|
224 |
+
"source": "https://github.com/composer/installers/tree/v1.10.0"
|
225 |
},
|
226 |
"funding": [
|
227 |
{
|
228 |
"url": "https://packagist.com",
|
229 |
"type": "custom"
|
230 |
},
|
231 |
+
{
|
232 |
+
"url": "https://github.com/composer",
|
233 |
+
"type": "github"
|
234 |
+
},
|
235 |
{
|
236 |
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
|
237 |
"type": "tidelift"
|
422 |
},
|
423 |
{
|
424 |
"name": "vendidero/woocommerce-germanized-dhl",
|
425 |
+
"version": "v1.4.5",
|
426 |
+
"version_normalized": "1.4.5.0",
|
427 |
"source": {
|
428 |
"type": "git",
|
429 |
"url": "https://github.com/vendidero/woocommerce-germanized-dhl.git",
|
430 |
+
"reference": "2930d1349b0112abae960d9e2ffd8eb309818316"
|
431 |
},
|
432 |
"dist": {
|
433 |
"type": "zip",
|
434 |
+
"url": "https://api.github.com/repos/vendidero/woocommerce-germanized-dhl/zipball/2930d1349b0112abae960d9e2ffd8eb309818316",
|
435 |
+
"reference": "2930d1349b0112abae960d9e2ffd8eb309818316",
|
436 |
"shasum": ""
|
437 |
},
|
438 |
"require": {
|
443 |
"require-dev": {
|
444 |
"phpunit/phpunit": "6.5.14"
|
445 |
},
|
446 |
+
"time": "2021-01-26T15:51:55+00:00",
|
447 |
"type": "wordpress-plugin",
|
448 |
"installation-source": "dist",
|
449 |
"autoload": {
|
467 |
"description": "The Germanized DHL implementation.",
|
468 |
"homepage": "https://github.com/vendidero/woocommerce-germanized-dhl",
|
469 |
"support": {
|
470 |
+
"source": "https://github.com/vendidero/woocommerce-germanized-dhl/tree/v1.4.5",
|
471 |
"issues": "https://github.com/vendidero/woocommerce-germanized-dhl/issues"
|
472 |
},
|
473 |
"install-path": "../../packages/woocommerce-germanized-dhl"
|
474 |
},
|
475 |
{
|
476 |
"name": "vendidero/woocommerce-germanized-shipments",
|
477 |
+
"version": "v1.4.4",
|
478 |
+
"version_normalized": "1.4.4.0",
|
479 |
"source": {
|
480 |
"type": "git",
|
481 |
"url": "https://github.com/vendidero/woocommerce-germanized-shipments.git",
|
482 |
+
"reference": "b9d92627595321eb9899c249e55130a09a224bbe"
|
483 |
},
|
484 |
"dist": {
|
485 |
"type": "zip",
|
486 |
+
"url": "https://api.github.com/repos/vendidero/woocommerce-germanized-shipments/zipball/b9d92627595321eb9899c249e55130a09a224bbe",
|
487 |
+
"reference": "b9d92627595321eb9899c249e55130a09a224bbe",
|
488 |
"shasum": ""
|
489 |
},
|
490 |
"require": {
|
495 |
"require-dev": {
|
496 |
"phpunit/phpunit": "^7.5.14"
|
497 |
},
|
498 |
+
"time": "2021-01-26T13:17:39+00:00",
|
499 |
"type": "wordpress-plugin",
|
500 |
"installation-source": "dist",
|
501 |
"autoload": {
|
517 |
"description": "The Germanized Shipments implementation.",
|
518 |
"homepage": "https://github.com/vendidero/woocommerce-germanized-shipments",
|
519 |
"support": {
|
520 |
+
"source": "https://github.com/vendidero/woocommerce-germanized-shipments/tree/v1.4.4",
|
521 |
"issues": "https://github.com/vendidero/woocommerce-germanized-shipments/issues"
|
522 |
},
|
523 |
"install-path": "../../packages/woocommerce-germanized-shipments"
|
vendor/composer/installed.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
'aliases' =>
|
7 |
array (
|
8 |
),
|
9 |
-
'reference' => '
|
10 |
'name' => 'vendidero/woocommerce-germanized',
|
11 |
),
|
12 |
'versions' =>
|
@@ -31,12 +31,12 @@
|
|
31 |
),
|
32 |
'composer/installers' =>
|
33 |
array (
|
34 |
-
'pretty_version' => 'v1.
|
35 |
-
'version' => '1.
|
36 |
'aliases' =>
|
37 |
array (
|
38 |
),
|
39 |
-
'reference' => '
|
40 |
),
|
41 |
'myclabs/deep-copy' =>
|
42 |
array (
|
@@ -90,25 +90,25 @@
|
|
90 |
'aliases' =>
|
91 |
array (
|
92 |
),
|
93 |
-
'reference' => '
|
94 |
),
|
95 |
'vendidero/woocommerce-germanized-dhl' =>
|
96 |
array (
|
97 |
-
'pretty_version' => 'v1.4.
|
98 |
-
'version' => '1.4.
|
99 |
'aliases' =>
|
100 |
array (
|
101 |
),
|
102 |
-
'reference' => '
|
103 |
),
|
104 |
'vendidero/woocommerce-germanized-shipments' =>
|
105 |
array (
|
106 |
-
'pretty_version' => 'v1.4.
|
107 |
-
'version' => '1.4.
|
108 |
'aliases' =>
|
109 |
array (
|
110 |
),
|
111 |
-
'reference' => '
|
112 |
),
|
113 |
'vendidero/woocommerce-trusted-shops' =>
|
114 |
array (
|
6 |
'aliases' =>
|
7 |
array (
|
8 |
),
|
9 |
+
'reference' => 'dfdd74e467d7eddbf5adf259282c4d5500c0821e',
|
10 |
'name' => 'vendidero/woocommerce-germanized',
|
11 |
),
|
12 |
'versions' =>
|
31 |
),
|
32 |
'composer/installers' =>
|
33 |
array (
|
34 |
+
'pretty_version' => 'v1.10.0',
|
35 |
+
'version' => '1.10.0.0',
|
36 |
'aliases' =>
|
37 |
array (
|
38 |
),
|
39 |
+
'reference' => '1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d',
|
40 |
),
|
41 |
'myclabs/deep-copy' =>
|
42 |
array (
|
90 |
'aliases' =>
|
91 |
array (
|
92 |
),
|
93 |
+
'reference' => 'dfdd74e467d7eddbf5adf259282c4d5500c0821e',
|
94 |
),
|
95 |
'vendidero/woocommerce-germanized-dhl' =>
|
96 |
array (
|
97 |
+
'pretty_version' => 'v1.4.5',
|
98 |
+
'version' => '1.4.5.0',
|
99 |
'aliases' =>
|
100 |
array (
|
101 |
),
|
102 |
+
'reference' => '2930d1349b0112abae960d9e2ffd8eb309818316',
|
103 |
),
|
104 |
'vendidero/woocommerce-germanized-shipments' =>
|
105 |
array (
|
106 |
+
'pretty_version' => 'v1.4.4',
|
107 |
+
'version' => '1.4.4.0',
|
108 |
'aliases' =>
|
109 |
array (
|
110 |
),
|
111 |
+
'reference' => 'b9d92627595321eb9899c249e55130a09a224bbe',
|
112 |
),
|
113 |
'vendidero/woocommerce-trusted-shops' =>
|
114 |
array (
|
vendor/composer/installers/phpstan.neon.dist
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
parameters:
|
2 |
+
level: 5
|
3 |
+
paths:
|
4 |
+
- src
|
5 |
+
- tests
|
6 |
+
excludes_analyse:
|
7 |
+
- tests/Composer/Installers/Test/PolyfillTestCase.php
|
8 |
+
|
9 |
+
includes:
|
10 |
+
- vendor/phpstan/phpstan-phpunit/extension.neon
|
vendor/composer/installers/src/Composer/Installers/BaseInstaller.php
CHANGED
@@ -74,8 +74,8 @@ abstract class BaseInstaller
|
|
74 |
/**
|
75 |
* For an installer to override to modify the vars per installer.
|
76 |
*
|
77 |
-
* @param array $vars
|
78 |
-
* @return array
|
79 |
*/
|
80 |
public function inflectPackageVars($vars)
|
81 |
{
|
@@ -85,7 +85,7 @@ abstract class BaseInstaller
|
|
85 |
/**
|
86 |
* Gets the installer's locations
|
87 |
*
|
88 |
-
* @return array
|
89 |
*/
|
90 |
public function getLocations()
|
91 |
{
|
@@ -95,8 +95,8 @@ abstract class BaseInstaller
|
|
95 |
/**
|
96 |
* Replace vars in a path
|
97 |
*
|
98 |
-
* @param string
|
99 |
-
* @param array
|
100 |
* @return string
|
101 |
*/
|
102 |
protected function templatePath($path, array $vars = array())
|
@@ -121,7 +121,7 @@ abstract class BaseInstaller
|
|
121 |
* @param string $name
|
122 |
* @param string $type
|
123 |
* @param string $vendor = NULL
|
124 |
-
* @return string
|
125 |
*/
|
126 |
protected function mapCustomInstallPaths(array $paths, $name, $type, $vendor = NULL)
|
127 |
{
|
74 |
/**
|
75 |
* For an installer to override to modify the vars per installer.
|
76 |
*
|
77 |
+
* @param array<string, string> $vars This will normally receive array{name: string, vendor: string, type: string}
|
78 |
+
* @return array<string, string>
|
79 |
*/
|
80 |
public function inflectPackageVars($vars)
|
81 |
{
|
85 |
/**
|
86 |
* Gets the installer's locations
|
87 |
*
|
88 |
+
* @return array<string, string> map of package types => install path
|
89 |
*/
|
90 |
public function getLocations()
|
91 |
{
|
95 |
/**
|
96 |
* Replace vars in a path
|
97 |
*
|
98 |
+
* @param string $path
|
99 |
+
* @param array<string, string> $vars
|
100 |
* @return string
|
101 |
*/
|
102 |
protected function templatePath($path, array $vars = array())
|
121 |
* @param string $name
|
122 |
* @param string $type
|
123 |
* @param string $vendor = NULL
|
124 |
+
* @return string|false
|
125 |
*/
|
126 |
protected function mapCustomInstallPaths(array $paths, $name, $type, $vendor = NULL)
|
127 |
{
|
vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php
CHANGED
@@ -2,6 +2,7 @@
|
|
2 |
namespace Composer\Installers;
|
3 |
|
4 |
use Composer\DependencyResolver\Pool;
|
|
|
5 |
|
6 |
class CakePHPInstaller extends BaseInstaller
|
7 |
{
|
@@ -49,14 +50,6 @@ class CakePHPInstaller extends BaseInstaller
|
|
49 |
*/
|
50 |
protected function matchesCakeVersion($matcher, $version)
|
51 |
{
|
52 |
-
if (class_exists('Composer\Semver\Constraint\MultiConstraint')) {
|
53 |
-
$multiClass = 'Composer\Semver\Constraint\MultiConstraint';
|
54 |
-
$constraintClass = 'Composer\Semver\Constraint\Constraint';
|
55 |
-
} else {
|
56 |
-
$multiClass = 'Composer\Package\LinkConstraint\MultiConstraint';
|
57 |
-
$constraintClass = 'Composer\Package\LinkConstraint\VersionConstraint';
|
58 |
-
}
|
59 |
-
|
60 |
$repositoryManager = $this->composer->getRepositoryManager();
|
61 |
if (! $repositoryManager) {
|
62 |
return false;
|
@@ -67,6 +60,6 @@ class CakePHPInstaller extends BaseInstaller
|
|
67 |
return false;
|
68 |
}
|
69 |
|
70 |
-
return $repos->findPackage('cakephp/cakephp', new
|
71 |
}
|
72 |
}
|
2 |
namespace Composer\Installers;
|
3 |
|
4 |
use Composer\DependencyResolver\Pool;
|
5 |
+
use Composer\Semver\Constraint\Constraint;
|
6 |
|
7 |
class CakePHPInstaller extends BaseInstaller
|
8 |
{
|
50 |
*/
|
51 |
protected function matchesCakeVersion($matcher, $version)
|
52 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
$repositoryManager = $this->composer->getRepositoryManager();
|
54 |
if (! $repositoryManager) {
|
55 |
return false;
|
60 |
return false;
|
61 |
}
|
62 |
|
63 |
+
return $repos->findPackage('cakephp/cakephp', new Constraint($matcher, $version)) !== null;
|
64 |
}
|
65 |
}
|
vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php
CHANGED
@@ -12,9 +12,7 @@ class CockpitInstaller extends BaseInstaller
|
|
12 |
*
|
13 |
* Strip `module-` prefix from package name.
|
14 |
*
|
15 |
-
* @
|
16 |
-
*
|
17 |
-
* @return array
|
18 |
*/
|
19 |
public function inflectPackageVars($vars)
|
20 |
{
|
12 |
*
|
13 |
* Strip `module-` prefix from package name.
|
14 |
*
|
15 |
+
* {@inheritDoc}
|
|
|
|
|
16 |
*/
|
17 |
public function inflectPackageVars($vars)
|
18 |
{
|
vendor/composer/installers/src/Composer/Installers/Installer.php
CHANGED
@@ -9,6 +9,7 @@ use Composer\IO\IOInterface;
|
|
9 |
use Composer\Package\PackageInterface;
|
10 |
use Composer\Repository\InstalledRepositoryInterface;
|
11 |
use Composer\Util\Filesystem;
|
|
|
12 |
|
13 |
class Installer extends LibraryInstaller
|
14 |
{
|
@@ -87,6 +88,7 @@ class Installer extends LibraryInstaller
|
|
87 |
'radphp' => 'RadPHPInstaller',
|
88 |
'phifty' => 'PhiftyInstaller',
|
89 |
'porto' => 'PortoInstaller',
|
|
|
90 |
'redaxo' => 'RedaxoInstaller',
|
91 |
'redaxo5' => 'Redaxo5Installer',
|
92 |
'reindex' => 'ReIndexInstaller',
|
@@ -95,6 +97,7 @@ class Installer extends LibraryInstaller
|
|
95 |
'sitedirect' => 'SiteDirectInstaller',
|
96 |
'silverstripe' => 'SilverStripeInstaller',
|
97 |
'smf' => 'SMFInstaller',
|
|
|
98 |
'sydes' => 'SyDESInstaller',
|
99 |
'sylius' => 'SyliusInstaller',
|
100 |
'symfony1' => 'Symfony1Installer',
|
@@ -160,9 +163,23 @@ class Installer extends LibraryInstaller
|
|
160 |
|
161 |
public function uninstall(InstalledRepositoryInterface $repo, PackageInterface $package)
|
162 |
{
|
163 |
-
parent::uninstall($repo, $package);
|
164 |
$installPath = $this->getPackageBasePath($package);
|
165 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
}
|
167 |
|
168 |
/**
|
@@ -184,23 +201,20 @@ class Installer extends LibraryInstaller
|
|
184 |
/**
|
185 |
* Finds a supported framework type if it exists and returns it
|
186 |
*
|
187 |
-
* @param string
|
188 |
-
* @return string
|
189 |
*/
|
190 |
protected function findFrameworkType($type)
|
191 |
{
|
192 |
-
$frameworkType = false;
|
193 |
-
|
194 |
krsort($this->supportedTypes);
|
195 |
|
196 |
foreach ($this->supportedTypes as $key => $val) {
|
197 |
if ($key === substr($type, 0, strlen($key))) {
|
198 |
-
|
199 |
-
break;
|
200 |
}
|
201 |
}
|
202 |
|
203 |
-
return
|
204 |
}
|
205 |
|
206 |
/**
|
9 |
use Composer\Package\PackageInterface;
|
10 |
use Composer\Repository\InstalledRepositoryInterface;
|
11 |
use Composer\Util\Filesystem;
|
12 |
+
use React\Promise\PromiseInterface;
|
13 |
|
14 |
class Installer extends LibraryInstaller
|
15 |
{
|
88 |
'radphp' => 'RadPHPInstaller',
|
89 |
'phifty' => 'PhiftyInstaller',
|
90 |
'porto' => 'PortoInstaller',
|
91 |
+
'processwire' => 'ProcessWireInstaller',
|
92 |
'redaxo' => 'RedaxoInstaller',
|
93 |
'redaxo5' => 'Redaxo5Installer',
|
94 |
'reindex' => 'ReIndexInstaller',
|
97 |
'sitedirect' => 'SiteDirectInstaller',
|
98 |
'silverstripe' => 'SilverStripeInstaller',
|
99 |
'smf' => 'SMFInstaller',
|
100 |
+
'starbug' => 'StarbugInstaller',
|
101 |
'sydes' => 'SyDESInstaller',
|
102 |
'sylius' => 'SyliusInstaller',
|
103 |
'symfony1' => 'Symfony1Installer',
|
163 |
|
164 |
public function uninstall(InstalledRepositoryInterface $repo, PackageInterface $package)
|
165 |
{
|
|
|
166 |
$installPath = $this->getPackageBasePath($package);
|
167 |
+
$io = $this->io;
|
168 |
+
$outputStatus = function () use ($io, $installPath) {
|
169 |
+
$io->write(sprintf('Deleting %s - %s', $installPath, !file_exists($installPath) ? '<comment>deleted</comment>' : '<error>not deleted</error>'));
|
170 |
+
};
|
171 |
+
|
172 |
+
$promise = parent::uninstall($repo, $package);
|
173 |
+
|
174 |
+
// Composer v2 might return a promise here
|
175 |
+
if ($promise instanceof PromiseInterface) {
|
176 |
+
return $promise->then($outputStatus);
|
177 |
+
}
|
178 |
+
|
179 |
+
// If not, execute the code right away as parent::uninstall executed synchronously (composer v1, or v2 without async)
|
180 |
+
$outputStatus();
|
181 |
+
|
182 |
+
return null;
|
183 |
}
|
184 |
|
185 |
/**
|
201 |
/**
|
202 |
* Finds a supported framework type if it exists and returns it
|
203 |
*
|
204 |
+
* @param string $type
|
205 |
+
* @return string|false
|
206 |
*/
|
207 |
protected function findFrameworkType($type)
|
208 |
{
|
|
|
|
|
209 |
krsort($this->supportedTypes);
|
210 |
|
211 |
foreach ($this->supportedTypes as $key => $val) {
|
212 |
if ($key === substr($type, 0, strlen($key))) {
|
213 |
+
return substr($type, 0, strlen($key));
|
|
|
214 |
}
|
215 |
}
|
216 |
|
217 |
+
return false;
|
218 |
}
|
219 |
|
220 |
/**
|
vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php
CHANGED
@@ -18,6 +18,7 @@ class MoodleInstaller extends BaseInstaller
|
|
18 |
'cachestore' => 'cache/stores/{$name}/',
|
19 |
'cachelock' => 'cache/locks/{$name}/',
|
20 |
'calendartype' => 'calendar/type/{$name}/',
|
|
|
21 |
'format' => 'course/format/{$name}/',
|
22 |
'coursereport' => 'course/report/{$name}/',
|
23 |
'customcertelement' => 'mod/customcert/element/{$name}/',
|
18 |
'cachestore' => 'cache/stores/{$name}/',
|
19 |
'cachelock' => 'cache/locks/{$name}/',
|
20 |
'calendartype' => 'calendar/type/{$name}/',
|
21 |
+
'fileconverter' => 'files/converter/{$name}/',
|
22 |
'format' => 'course/format/{$name}/',
|
23 |
'coursereport' => 'course/report/{$name}/',
|
24 |
'customcertelement' => 'mod/customcert/element/{$name}/',
|
vendor/composer/installers/src/Composer/Installers/OxidInstaller.php
CHANGED
@@ -18,7 +18,7 @@ class OxidInstaller extends BaseInstaller
|
|
18 |
*
|
19 |
* @param PackageInterface $package
|
20 |
* @param string $frameworkType
|
21 |
-
* @return
|
22 |
*/
|
23 |
public function getInstallPath(PackageInterface $package, $frameworkType = '')
|
24 |
{
|
18 |
*
|
19 |
* @param PackageInterface $package
|
20 |
* @param string $frameworkType
|
21 |
+
* @return string
|
22 |
*/
|
23 |
public function getInstallPath(PackageInterface $package, $frameworkType = '')
|
24 |
{
|
vendor/composer/installers/src/Composer/Installers/ProcessWireInstaller.php
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Composer\Installers;
|
4 |
+
|
5 |
+
class ProcessWireInstaller extends BaseInstaller
|
6 |
+
{
|
7 |
+
protected $locations = array(
|
8 |
+
'module' => 'site/modules/{$name}/',
|
9 |
+
);
|
10 |
+
|
11 |
+
/**
|
12 |
+
* Format package name to CamelCase
|
13 |
+
*/
|
14 |
+
public function inflectPackageVars($vars)
|
15 |
+
{
|
16 |
+
$vars['name'] = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $vars['name']));
|
17 |
+
$vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']);
|
18 |
+
$vars['name'] = str_replace(' ', '', ucwords($vars['name']));
|
19 |
+
|
20 |
+
return $vars;
|
21 |
+
}
|
22 |
+
}
|
vendor/composer/installers/src/Composer/Installers/StarbugInstaller.php
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
namespace Composer\Installers;
|
3 |
+
|
4 |
+
class StarbugInstaller extends BaseInstaller
|
5 |
+
{
|
6 |
+
protected $locations = array(
|
7 |
+
'module' => 'modules/{$name}/',
|
8 |
+
'theme' => 'themes/{$name}/',
|
9 |
+
'custom-module' => 'app/modules/{$name}/',
|
10 |
+
'custom-theme' => 'app/themes/{$name}/'
|
11 |
+
);
|
12 |
+
}
|
vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php
CHANGED
@@ -13,9 +13,7 @@ class SyDESInstaller extends BaseInstaller
|
|
13 |
*
|
14 |
* Strip `sydes-` prefix and a trailing '-theme' or '-module' from package name if present.
|
15 |
*
|
16 |
-
* @
|
17 |
-
*
|
18 |
-
* @return array
|
19 |
*/
|
20 |
public function inflectPackageVars($vars)
|
21 |
{
|
13 |
*
|
14 |
* Strip `sydes-` prefix and a trailing '-theme' or '-module' from package name if present.
|
15 |
*
|
16 |
+
* {@inerhitDoc}
|
|
|
|
|
17 |
*/
|
18 |
public function inflectPackageVars($vars)
|
19 |
{
|
vendor/composer/installers/src/Composer/Installers/TaoInstaller.php
CHANGED
@@ -6,7 +6,25 @@ namespace Composer\Installers;
|
|
6 |
*/
|
7 |
class TaoInstaller extends BaseInstaller
|
8 |
{
|
|
|
|
|
9 |
protected $locations = array(
|
10 |
'extension' => '{$name}'
|
11 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
}
|
6 |
*/
|
7 |
class TaoInstaller extends BaseInstaller
|
8 |
{
|
9 |
+
const EXTRA_TAO_EXTENSION_NAME = 'tao-extension-name';
|
10 |
+
|
11 |
protected $locations = array(
|
12 |
'extension' => '{$name}'
|
13 |
);
|
14 |
+
|
15 |
+
public function inflectPackageVars($vars)
|
16 |
+
{
|
17 |
+
$extra = $this->package->getExtra();
|
18 |
+
|
19 |
+
if (array_key_exists(self::EXTRA_TAO_EXTENSION_NAME, $extra)) {
|
20 |
+
$vars['name'] = $extra[self::EXTRA_TAO_EXTENSION_NAME];
|
21 |
+
return $vars;
|
22 |
+
}
|
23 |
+
|
24 |
+
$vars['name'] = str_replace('extension-', '', $vars['name']);
|
25 |
+
$vars['name'] = str_replace('-', ' ', $vars['name']);
|
26 |
+
$vars['name'] = lcfirst(str_replace(' ', '', ucwords($vars['name'])));
|
27 |
+
|
28 |
+
return $vars;
|
29 |
+
}
|
30 |
}
|
vendor/composer/jetpack_autoload_classmap.php
CHANGED
@@ -323,331 +323,331 @@ return array(
|
|
323 |
'path' => $baseDir . '/packages/woocommerce-trusted-shops/src/Package.php'
|
324 |
),
|
325 |
'Vendidero\\Germanized\\Shipments\\Shipment' => array(
|
326 |
-
'version' => '1.4.
|
327 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Shipment.php'
|
328 |
),
|
329 |
'Vendidero\\Germanized\\Shipments\\Install' => array(
|
330 |
-
'version' => '1.4.
|
331 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Install.php'
|
332 |
),
|
333 |
'Vendidero\\Germanized\\Shipments\\SimpleShipment' => array(
|
334 |
-
'version' => '1.4.
|
335 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/SimpleShipment.php'
|
336 |
),
|
337 |
'Vendidero\\Germanized\\Shipments\\ShippingProviderMethod' => array(
|
338 |
-
'version' => '1.4.
|
339 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviderMethod.php'
|
340 |
),
|
341 |
'Vendidero\\Germanized\\Shipments\\Package' => array(
|
342 |
-
'version' => '1.4.
|
343 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Package.php'
|
344 |
),
|
345 |
'Vendidero\\Germanized\\Shipments\\Order' => array(
|
346 |
-
'version' => '1.4.
|
347 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Order.php'
|
348 |
),
|
349 |
'Vendidero\\Germanized\\Shipments\\DataStores\\Shipment' => array(
|
350 |
-
'version' => '1.4.
|
351 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/Shipment.php'
|
352 |
),
|
353 |
'Vendidero\\Germanized\\Shipments\\DataStores\\ShippingProvider' => array(
|
354 |
-
'version' => '1.4.
|
355 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/ShippingProvider.php'
|
356 |
),
|
357 |
'Vendidero\\Germanized\\Shipments\\DataStores\\Packaging' => array(
|
358 |
-
'version' => '1.4.
|
359 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/Packaging.php'
|
360 |
),
|
361 |
'Vendidero\\Germanized\\Shipments\\DataStores\\ShipmentItem' => array(
|
362 |
-
'version' => '1.4.
|
363 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/ShipmentItem.php'
|
364 |
),
|
365 |
'Vendidero\\Germanized\\Shipments\\PackagingFactory' => array(
|
366 |
-
'version' => '1.4.
|
367 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PackagingFactory.php'
|
368 |
),
|
369 |
'Vendidero\\Germanized\\Shipments\\Ajax' => array(
|
370 |
-
'version' => '1.4.
|
371 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Ajax.php'
|
372 |
),
|
373 |
'Vendidero\\Germanized\\Shipments\\ReturnShipment' => array(
|
374 |
-
'version' => '1.4.
|
375 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ReturnShipment.php'
|
376 |
),
|
377 |
'Vendidero\\Germanized\\Shipments\\ShippingProvider' => array(
|
378 |
-
'version' => '1.4.
|
379 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProvider.php'
|
380 |
),
|
381 |
'Vendidero\\Germanized\\Shipments\\AddressSplitter' => array(
|
382 |
-
'version' => '1.4.
|
383 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/AddressSplitter.php'
|
384 |
),
|
385 |
'Vendidero\\Germanized\\Shipments\\Admin\\BulkLabel' => array(
|
386 |
-
'version' => '1.4.
|
387 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php'
|
388 |
),
|
389 |
'Vendidero\\Germanized\\Shipments\\Admin\\Settings' => array(
|
390 |
-
'version' => '1.4.
|
391 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Settings.php'
|
392 |
),
|
393 |
'Vendidero\\Germanized\\Shipments\\Admin\\MetaBox' => array(
|
394 |
-
'version' => '1.4.
|
395 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/MetaBox.php'
|
396 |
),
|
397 |
'Vendidero\\Germanized\\Shipments\\Admin\\DownloadHandler' => array(
|
398 |
-
'version' => '1.4.
|
399 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/DownloadHandler.php'
|
400 |
),
|
401 |
'Vendidero\\Germanized\\Shipments\\Admin\\ReturnTable' => array(
|
402 |
-
'version' => '1.4.
|
403 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php'
|
404 |
),
|
405 |
'Vendidero\\Germanized\\Shipments\\Admin\\BulkActionHandler' => array(
|
406 |
-
'version' => '1.4.
|
407 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/BulkActionHandler.php'
|
408 |
),
|
409 |
'Vendidero\\Germanized\\Shipments\\Admin\\Admin' => array(
|
410 |
-
'version' => '1.4.
|
411 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Admin.php'
|
412 |
),
|
413 |
'Vendidero\\Germanized\\Shipments\\Admin\\Table' => array(
|
414 |
-
'version' => '1.4.
|
415 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Table.php'
|
416 |
),
|
417 |
'Vendidero\\Germanized\\Shipments\\ShipmentQuery' => array(
|
418 |
-
'version' => '1.4.
|
419 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentQuery.php'
|
420 |
),
|
421 |
'Vendidero\\Germanized\\Shipments\\WPMLHelper' => array(
|
422 |
-
'version' => '1.4.
|
423 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/WPMLHelper.php'
|
424 |
),
|
425 |
'Vendidero\\Germanized\\Shipments\\ShipmentReturnItem' => array(
|
426 |
-
'version' => '1.4.
|
427 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentReturnItem.php'
|
428 |
),
|
429 |
'Vendidero\\Germanized\\Shipments\\FormHandler' => array(
|
430 |
-
'version' => '1.4.
|
431 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/FormHandler.php'
|
432 |
),
|
433 |
'Vendidero\\Germanized\\Shipments\\PDFMerger' => array(
|
434 |
-
'version' => '1.4.
|
435 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PDFMerger.php'
|
436 |
),
|
437 |
'Vendidero\\Germanized\\Shipments\\ShipmentFactory' => array(
|
438 |
-
'version' => '1.4.
|
439 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentFactory.php'
|
440 |
),
|
441 |
'Vendidero\\Germanized\\Shipments\\ShippingProviderMethodPlaceholder' => array(
|
442 |
-
'version' => '1.4.
|
443 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviderMethodPlaceholder.php'
|
444 |
),
|
445 |
'Vendidero\\Germanized\\Shipments\\Automation' => array(
|
446 |
-
'version' => '1.4.
|
447 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Automation.php'
|
448 |
),
|
449 |
'Vendidero\\Germanized\\Shipments\\ShippingProviders' => array(
|
450 |
-
'version' => '1.4.
|
451 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviders.php'
|
452 |
),
|
453 |
'Vendidero\\Germanized\\Shipments\\Packaging' => array(
|
454 |
-
'version' => '1.4.
|
455 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Packaging.php'
|
456 |
),
|
457 |
'Vendidero\\Germanized\\Shipments\\Api' => array(
|
458 |
-
'version' => '1.4.
|
459 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Api.php'
|
460 |
),
|
461 |
'Vendidero\\Germanized\\Shipments\\ShipmentItem' => array(
|
462 |
-
'version' => '1.4.
|
463 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentItem.php'
|
464 |
),
|
465 |
'Vendidero\\Germanized\\Shipments\\Validation' => array(
|
466 |
-
'version' => '1.4.
|
467 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Validation.php'
|
468 |
),
|
469 |
'Vendidero\\Germanized\\Shipments\\Emails' => array(
|
470 |
-
'version' => '1.4.
|
471 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Emails.php'
|
472 |
),
|
473 |
'Vendidero\\Germanized\\Shipments\\PDFSplitter' => array(
|
474 |
-
'version' => '1.4.
|
475 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PDFSplitter.php'
|
476 |
),
|
477 |
'Vendidero\\Germanized\\Shipments\\ReturnReason' => array(
|
478 |
-
'version' => '1.4.
|
479 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ReturnReason.php'
|
480 |
),
|
481 |
'Vendidero\\Germanized\\Shipments\\Interfaces\\ShipmentReturnLabel' => array(
|
482 |
-
'version' => '1.4.
|
483 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShipmentReturnLabel.php'
|
484 |
),
|
485 |
'Vendidero\\Germanized\\Shipments\\Interfaces\\ShipmentLabel' => array(
|
486 |
-
'version' => '1.4.
|
487 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShipmentLabel.php'
|
488 |
),
|
489 |
'Vendidero\\Germanized\\DHL\\ShippingProvider\\DeutschePost' => array(
|
490 |
-
'version' => '1.4.
|
491 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php'
|
492 |
),
|
493 |
'Vendidero\\Germanized\\DHL\\ShippingProvider\\MethodDHL' => array(
|
494 |
-
'version' => '1.4.
|
495 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/MethodDHL.php'
|
496 |
),
|
497 |
'Vendidero\\Germanized\\DHL\\ShippingProvider\\DHL' => array(
|
498 |
-
'version' => '1.4.
|
499 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/DHL.php'
|
500 |
),
|
501 |
'Vendidero\\Germanized\\DHL\\ShippingProvider\\MethodDeutschePost' => array(
|
502 |
-
'version' => '1.4.
|
503 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/MethodDeutschePost.php'
|
504 |
),
|
505 |
'Vendidero\\Germanized\\DHL\\Install' => array(
|
506 |
-
'version' => '1.4.
|
507 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Install.php'
|
508 |
),
|
509 |
'Vendidero\\Germanized\\DHL\\LabelQuery' => array(
|
510 |
-
'version' => '1.4.
|
511 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/LabelQuery.php'
|
512 |
),
|
513 |
'Vendidero\\Germanized\\DHL\\ShipmentLabelWatcher' => array(
|
514 |
-
'version' => '1.4.
|
515 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShipmentLabelWatcher.php'
|
516 |
),
|
517 |
'Vendidero\\Germanized\\DHL\\Package' => array(
|
518 |
-
'version' => '1.4.
|
519 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Package.php'
|
520 |
),
|
521 |
'Vendidero\\Germanized\\DHL\\Product' => array(
|
522 |
-
'version' => '1.4.
|
523 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Product.php'
|
524 |
),
|
525 |
'Vendidero\\Germanized\\DHL\\Order' => array(
|
526 |
-
'version' => '1.4.
|
527 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Order.php'
|
528 |
),
|
529 |
'Vendidero\\Germanized\\DHL\\DataStores\\Label' => array(
|
530 |
-
'version' => '1.4.
|
531 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DataStores/Label.php'
|
532 |
),
|
533 |
'Vendidero\\Germanized\\DHL\\Ajax' => array(
|
534 |
-
'version' => '1.4.
|
535 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Ajax.php'
|
536 |
),
|
537 |
'Vendidero\\Germanized\\DHL\\Label' => array(
|
538 |
-
'version' => '1.4.
|
539 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Label.php'
|
540 |
),
|
541 |
'Vendidero\\Germanized\\DHL\\ParcelServices' => array(
|
542 |
-
'version' => '1.4.
|
543 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ParcelServices.php'
|
544 |
),
|
545 |
'Vendidero\\Germanized\\DHL\\Admin\\Importer\\Internetmarke' => array(
|
546 |
-
'version' => '1.4.
|
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.
|
551 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Importer/DHL.php'
|
552 |
),
|
553 |
'Vendidero\\Germanized\\DHL\\Admin\\Settings' => array(
|
554 |
-
'version' => '1.4.
|
555 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Settings.php'
|
556 |
),
|
557 |
'Vendidero\\Germanized\\DHL\\Admin\\Status' => array(
|
558 |
-
'version' => '1.4.
|
559 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Status.php'
|
560 |
),
|
561 |
'Vendidero\\Germanized\\DHL\\Admin\\Admin' => array(
|
562 |
-
'version' => '1.4.
|
563 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Admin.php'
|
564 |
),
|
565 |
'Vendidero\\Germanized\\DHL\\ReturnLabel' => array(
|
566 |
-
'version' => '1.4.
|
567 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ReturnLabel.php'
|
568 |
),
|
569 |
'Vendidero\\Germanized\\DHL\\ParcelLocator' => array(
|
570 |
-
'version' => '1.4.
|
571 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ParcelLocator.php'
|
572 |
),
|
573 |
'Vendidero\\Germanized\\DHL\\SimpleLabel' => array(
|
574 |
-
'version' => '1.4.
|
575 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/SimpleLabel.php'
|
576 |
),
|
577 |
'Vendidero\\Germanized\\DHL\\DownloadHandler' => array(
|
578 |
-
'version' => '1.4.
|
579 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DownloadHandler.php'
|
580 |
),
|
581 |
'Vendidero\\Germanized\\DHL\\Api\\ReturnRest' => array(
|
582 |
-
'version' => '1.4.
|
583 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ReturnRest.php'
|
584 |
),
|
585 |
'Vendidero\\Germanized\\DHL\\Api\\Paket' => array(
|
586 |
-
'version' => '1.4.
|
587 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Paket.php'
|
588 |
),
|
589 |
'Vendidero\\Germanized\\DHL\\Api\\LabelSoap' => array(
|
590 |
-
'version' => '1.4.
|
591 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php'
|
592 |
),
|
593 |
'Vendidero\\Germanized\\DHL\\Api\\ImProductList' => array(
|
594 |
-
'version' => '1.4.
|
595 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImProductList.php'
|
596 |
),
|
597 |
'Vendidero\\Germanized\\DHL\\Api\\AuthSoap' => array(
|
598 |
-
'version' => '1.4.
|
599 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/AuthSoap.php'
|
600 |
),
|
601 |
'Vendidero\\Germanized\\DHL\\Api\\Internetmarke' => array(
|
602 |
-
'version' => '1.4.
|
603 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php'
|
604 |
),
|
605 |
'Vendidero\\Germanized\\DHL\\Api\\ParcelRest' => array(
|
606 |
-
'version' => '1.4.
|
607 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ParcelRest.php'
|
608 |
),
|
609 |
'Vendidero\\Germanized\\DHL\\Api\\Soap' => array(
|
610 |
-
'version' => '1.4.
|
611 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Soap.php'
|
612 |
),
|
613 |
'Vendidero\\Germanized\\DHL\\Api\\Rest' => array(
|
614 |
-
'version' => '1.4.
|
615 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Rest.php'
|
616 |
),
|
617 |
'Vendidero\\Germanized\\DHL\\Api\\ImProductsSoap' => array(
|
618 |
-
'version' => '1.4.
|
619 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImProductsSoap.php'
|
620 |
),
|
621 |
'Vendidero\\Germanized\\DHL\\Api\\FinderSoap' => array(
|
622 |
-
'version' => '1.4.
|
623 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php'
|
624 |
),
|
625 |
'Vendidero\\Germanized\\DHL\\Api\\ImRefundSoap' => array(
|
626 |
-
'version' => '1.4.
|
627 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImRefundSoap.php'
|
628 |
),
|
629 |
'Vendidero\\Germanized\\DHL\\Api\\ImWarenpostIntRest' => array(
|
630 |
-
'version' => '1.4.
|
631 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php'
|
632 |
),
|
633 |
'Vendidero\\Germanized\\DHL\\Automation' => array(
|
634 |
-
'version' => '1.4.
|
635 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Automation.php'
|
636 |
),
|
637 |
'Vendidero\\Germanized\\DHL\\DeutschePostReturnLabel' => array(
|
638 |
-
'version' => '1.4.
|
639 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DeutschePostReturnLabel.php'
|
640 |
),
|
641 |
'Vendidero\\Germanized\\DHL\\LabelFactory' => array(
|
642 |
-
'version' => '1.4.
|
643 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/LabelFactory.php'
|
644 |
),
|
645 |
'Vendidero\\Germanized\\DHL\\LabelWatcher' => array(
|
646 |
-
'version' => '1.4.
|
647 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/LabelWatcher.php'
|
648 |
),
|
649 |
'Vendidero\\Germanized\\DHL\\DeutschePostLabel' => array(
|
650 |
-
'version' => '1.4.
|
651 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DeutschePostLabel.php'
|
652 |
),
|
653 |
'Vendidero\\Germanized\\Shopmark' => array(
|
@@ -763,387 +763,395 @@ return array(
|
|
763 |
'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php'
|
764 |
),
|
765 |
'Composer\\Installers\\GravInstaller' => array(
|
766 |
-
'version' => '1.
|
767 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/GravInstaller.php'
|
768 |
),
|
769 |
'Composer\\Installers\\AttogramInstaller' => array(
|
770 |
-
'version' => '1.
|
771 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AttogramInstaller.php'
|
772 |
),
|
773 |
'Composer\\Installers\\DrupalInstaller' => array(
|
774 |
-
'version' => '1.
|
775 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DrupalInstaller.php'
|
776 |
),
|
777 |
'Composer\\Installers\\CraftInstaller' => array(
|
778 |
-
'version' => '1.
|
779 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CraftInstaller.php'
|
780 |
),
|
781 |
'Composer\\Installers\\CiviCrmInstaller' => array(
|
782 |
-
'version' => '1.
|
783 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CiviCrmInstaller.php'
|
784 |
),
|
785 |
'Composer\\Installers\\ItopInstaller' => array(
|
786 |
-
'version' => '1.
|
787 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ItopInstaller.php'
|
788 |
),
|
789 |
'Composer\\Installers\\ReIndexInstaller' => array(
|
790 |
-
'version' => '1.
|
791 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ReIndexInstaller.php'
|
792 |
),
|
793 |
'Composer\\Installers\\TheliaInstaller' => array(
|
794 |
-
'version' => '1.
|
795 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TheliaInstaller.php'
|
796 |
),
|
797 |
'Composer\\Installers\\SilverStripeInstaller' => array(
|
798 |
-
'version' => '1.
|
799 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SilverStripeInstaller.php'
|
800 |
),
|
801 |
'Composer\\Installers\\ShopwareInstaller' => array(
|
802 |
-
'version' => '1.
|
803 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ShopwareInstaller.php'
|
804 |
),
|
805 |
'Composer\\Installers\\DokuWikiInstaller' => array(
|
806 |
-
'version' => '1.
|
807 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DokuWikiInstaller.php'
|
808 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
809 |
'Composer\\Installers\\SyliusInstaller' => array(
|
810 |
-
'version' => '1.
|
811 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SyliusInstaller.php'
|
812 |
),
|
813 |
'Composer\\Installers\\PPIInstaller' => array(
|
814 |
-
'version' => '1.
|
815 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PPIInstaller.php'
|
816 |
),
|
817 |
'Composer\\Installers\\KirbyInstaller' => array(
|
818 |
-
'version' => '1.
|
819 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KirbyInstaller.php'
|
820 |
),
|
821 |
'Composer\\Installers\\LaravelInstaller' => array(
|
822 |
-
'version' => '1.
|
823 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LaravelInstaller.php'
|
824 |
),
|
825 |
'Composer\\Installers\\ElggInstaller' => array(
|
826 |
-
'version' => '1.
|
827 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ElggInstaller.php'
|
828 |
),
|
829 |
'Composer\\Installers\\VanillaInstaller' => array(
|
830 |
-
'version' => '1.
|
831 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/VanillaInstaller.php'
|
832 |
),
|
833 |
'Composer\\Installers\\YawikInstaller' => array(
|
834 |
-
'version' => '1.
|
835 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/YawikInstaller.php'
|
836 |
),
|
837 |
'Composer\\Installers\\RoundcubeInstaller' => array(
|
838 |
-
'version' => '1.
|
839 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RoundcubeInstaller.php'
|
840 |
),
|
841 |
'Composer\\Installers\\VgmcpInstaller' => array(
|
842 |
-
'version' => '1.
|
843 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/VgmcpInstaller.php'
|
844 |
),
|
845 |
'Composer\\Installers\\UserFrostingInstaller' => array(
|
846 |
-
'version' => '1.
|
847 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/UserFrostingInstaller.php'
|
848 |
),
|
849 |
'Composer\\Installers\\RadPHPInstaller' => array(
|
850 |
-
'version' => '1.
|
851 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RadPHPInstaller.php'
|
852 |
),
|
853 |
'Composer\\Installers\\KnownInstaller' => array(
|
854 |
-
'version' => '1.
|
855 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KnownInstaller.php'
|
856 |
),
|
857 |
'Composer\\Installers\\SMFInstaller' => array(
|
858 |
-
'version' => '1.
|
859 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SMFInstaller.php'
|
860 |
),
|
861 |
'Composer\\Installers\\PhiftyInstaller' => array(
|
862 |
-
'version' => '1.
|
863 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PhiftyInstaller.php'
|
864 |
),
|
865 |
'Composer\\Installers\\MakoInstaller' => array(
|
866 |
-
'version' => '1.
|
867 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MakoInstaller.php'
|
868 |
),
|
869 |
'Composer\\Installers\\TYPO3CmsInstaller' => array(
|
870 |
-
'version' => '1.
|
871 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php'
|
872 |
),
|
873 |
'Composer\\Installers\\CockpitInstaller' => array(
|
874 |
-
'version' => '1.
|
875 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CockpitInstaller.php'
|
876 |
),
|
877 |
'Composer\\Installers\\CodeIgniterInstaller' => array(
|
878 |
-
'version' => '1.
|
879 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php'
|
880 |
),
|
881 |
'Composer\\Installers\\TaoInstaller' => array(
|
882 |
-
'version' => '1.
|
883 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TaoInstaller.php'
|
884 |
),
|
885 |
'Composer\\Installers\\AimeosInstaller' => array(
|
886 |
-
'version' => '1.
|
887 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AimeosInstaller.php'
|
888 |
),
|
889 |
'Composer\\Installers\\KohanaInstaller' => array(
|
890 |
-
'version' => '1.
|
891 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KohanaInstaller.php'
|
892 |
),
|
893 |
'Composer\\Installers\\Plugin' => array(
|
894 |
-
'version' => '1.
|
895 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Plugin.php'
|
896 |
),
|
897 |
'Composer\\Installers\\ExpressionEngineInstaller' => array(
|
898 |
-
'version' => '1.
|
899 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php'
|
900 |
),
|
901 |
'Composer\\Installers\\OctoberInstaller' => array(
|
902 |
-
'version' => '1.
|
903 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OctoberInstaller.php'
|
904 |
),
|
905 |
'Composer\\Installers\\WolfCMSInstaller' => array(
|
906 |
-
'version' => '1.
|
907 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WolfCMSInstaller.php'
|
908 |
),
|
909 |
'Composer\\Installers\\LithiumInstaller' => array(
|
910 |
-
'version' => '1.
|
911 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LithiumInstaller.php'
|
912 |
),
|
913 |
'Composer\\Installers\\ZendInstaller' => array(
|
914 |
-
'version' => '1.
|
915 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ZendInstaller.php'
|
916 |
),
|
917 |
'Composer\\Installers\\Symfony1Installer' => array(
|
918 |
-
'version' => '1.
|
919 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Symfony1Installer.php'
|
920 |
),
|
921 |
'Composer\\Installers\\LavaLiteInstaller' => array(
|
922 |
-
'version' => '1.
|
923 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LavaLiteInstaller.php'
|
924 |
),
|
925 |
'Composer\\Installers\\MoodleInstaller' => array(
|
926 |
-
'version' => '1.
|
927 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MoodleInstaller.php'
|
928 |
),
|
929 |
'Composer\\Installers\\HuradInstaller' => array(
|
930 |
-
'version' => '1.
|
931 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/HuradInstaller.php'
|
932 |
),
|
933 |
'Composer\\Installers\\BaseInstaller' => array(
|
934 |
-
'version' => '1.
|
935 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BaseInstaller.php'
|
936 |
),
|
937 |
'Composer\\Installers\\CakePHPInstaller' => array(
|
938 |
-
'version' => '1.
|
939 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CakePHPInstaller.php'
|
940 |
),
|
941 |
'Composer\\Installers\\RedaxoInstaller' => array(
|
942 |
-
'version' => '1.
|
943 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RedaxoInstaller.php'
|
944 |
),
|
945 |
'Composer\\Installers\\ModxInstaller' => array(
|
946 |
-
'version' => '1.
|
947 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ModxInstaller.php'
|
948 |
),
|
949 |
'Composer\\Installers\\MauticInstaller' => array(
|
950 |
-
'version' => '1.
|
951 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MauticInstaller.php'
|
952 |
),
|
953 |
'Composer\\Installers\\MagentoInstaller' => array(
|
954 |
-
'version' => '1.
|
955 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MagentoInstaller.php'
|
956 |
),
|
957 |
'Composer\\Installers\\Concrete5Installer' => array(
|
958 |
-
'version' => '1.
|
959 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Concrete5Installer.php'
|
960 |
),
|
961 |
'Composer\\Installers\\FuelphpInstaller' => array(
|
962 |
-
'version' => '1.
|
963 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/FuelphpInstaller.php'
|
964 |
),
|
965 |
'Composer\\Installers\\FuelInstaller' => array(
|
966 |
-
'version' => '1.
|
967 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/FuelInstaller.php'
|
968 |
),
|
969 |
'Composer\\Installers\\PrestashopInstaller' => array(
|
970 |
-
'version' => '1.
|
971 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PrestashopInstaller.php'
|
972 |
),
|
973 |
'Composer\\Installers\\OxidInstaller' => array(
|
974 |
-
'version' => '1.
|
975 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OxidInstaller.php'
|
976 |
),
|
977 |
'Composer\\Installers\\TuskInstaller' => array(
|
978 |
-
'version' => '1.
|
979 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TuskInstaller.php'
|
980 |
),
|
981 |
'Composer\\Installers\\TYPO3FlowInstaller' => array(
|
982 |
-
'version' => '1.
|
983 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php'
|
984 |
),
|
985 |
'Composer\\Installers\\PiwikInstaller' => array(
|
986 |
-
'version' => '1.
|
987 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PiwikInstaller.php'
|
988 |
),
|
989 |
'Composer\\Installers\\PuppetInstaller' => array(
|
990 |
-
'version' => '1.
|
991 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PuppetInstaller.php'
|
992 |
),
|
993 |
'Composer\\Installers\\AglInstaller' => array(
|
994 |
-
'version' => '1.
|
995 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AglInstaller.php'
|
996 |
),
|
997 |
'Composer\\Installers\\PimcoreInstaller' => array(
|
998 |
-
'version' => '1.
|
999 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PimcoreInstaller.php'
|
1000 |
),
|
1001 |
'Composer\\Installers\\EliasisInstaller' => array(
|
1002 |
-
'version' => '1.
|
1003 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/EliasisInstaller.php'
|
1004 |
),
|
1005 |
'Composer\\Installers\\Redaxo5Installer' => array(
|
1006 |
-
'version' => '1.
|
1007 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Redaxo5Installer.php'
|
1008 |
),
|
1009 |
'Composer\\Installers\\BitrixInstaller' => array(
|
1010 |
-
'version' => '1.
|
1011 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BitrixInstaller.php'
|
1012 |
),
|
1013 |
'Composer\\Installers\\AsgardInstaller' => array(
|
1014 |
-
'version' => '1.
|
1015 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AsgardInstaller.php'
|
1016 |
),
|
1017 |
'Composer\\Installers\\WHMCSInstaller' => array(
|
1018 |
-
'version' => '1.
|
1019 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WHMCSInstaller.php'
|
1020 |
),
|
1021 |
'Composer\\Installers\\KanboardInstaller' => array(
|
1022 |
-
'version' => '1.
|
1023 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KanboardInstaller.php'
|
1024 |
),
|
1025 |
'Composer\\Installers\\WordPressInstaller' => array(
|
1026 |
-
'version' => '1.
|
1027 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WordPressInstaller.php'
|
1028 |
),
|
1029 |
'Composer\\Installers\\MajimaInstaller' => array(
|
1030 |
-
'version' => '1.
|
1031 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MajimaInstaller.php'
|
1032 |
),
|
1033 |
'Composer\\Installers\\DframeInstaller' => array(
|
1034 |
-
'version' => '1.
|
1035 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DframeInstaller.php'
|
1036 |
),
|
1037 |
'Composer\\Installers\\PlentymarketsInstaller' => array(
|
1038 |
-
'version' => '1.
|
1039 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php'
|
1040 |
),
|
1041 |
'Composer\\Installers\\EzPlatformInstaller' => array(
|
1042 |
-
'version' => '1.
|
1043 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/EzPlatformInstaller.php'
|
1044 |
),
|
1045 |
'Composer\\Installers\\MODXEvoInstaller' => array(
|
1046 |
-
'version' => '1.
|
1047 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MODXEvoInstaller.php'
|
1048 |
),
|
1049 |
'Composer\\Installers\\OntoWikiInstaller' => array(
|
1050 |
-
'version' => '1.
|
1051 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OntoWikiInstaller.php'
|
1052 |
),
|
1053 |
'Composer\\Installers\\AnnotateCmsInstaller' => array(
|
1054 |
-
'version' => '1.
|
1055 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php'
|
1056 |
),
|
1057 |
'Composer\\Installers\\MODULEWorkInstaller' => array(
|
1058 |
-
'version' => '1.
|
1059 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php'
|
1060 |
),
|
1061 |
'Composer\\Installers\\OsclassInstaller' => array(
|
1062 |
-
'version' => '1.
|
1063 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OsclassInstaller.php'
|
1064 |
),
|
1065 |
'Composer\\Installers\\ChefInstaller' => array(
|
1066 |
-
'version' => '1.
|
1067 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ChefInstaller.php'
|
1068 |
),
|
1069 |
'Composer\\Installers\\JoomlaInstaller' => array(
|
1070 |
-
'version' => '1.
|
1071 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/JoomlaInstaller.php'
|
1072 |
),
|
1073 |
'Composer\\Installers\\Installer' => array(
|
1074 |
-
'version' => '1.
|
1075 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Installer.php'
|
1076 |
),
|
1077 |
'Composer\\Installers\\KodiCMSInstaller' => array(
|
1078 |
-
'version' => '1.
|
1079 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KodiCMSInstaller.php'
|
1080 |
),
|
1081 |
'Composer\\Installers\\PhpBBInstaller' => array(
|
1082 |
-
'version' => '1.
|
1083 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PhpBBInstaller.php'
|
1084 |
),
|
1085 |
'Composer\\Installers\\MediaWikiInstaller' => array(
|
1086 |
-
'version' => '1.
|
1087 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MediaWikiInstaller.php'
|
1088 |
),
|
1089 |
'Composer\\Installers\\ImageCMSInstaller' => array(
|
1090 |
-
'version' => '1.
|
1091 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ImageCMSInstaller.php'
|
1092 |
),
|
1093 |
'Composer\\Installers\\PortoInstaller' => array(
|
1094 |
-
'version' => '1.
|
1095 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PortoInstaller.php'
|
1096 |
),
|
1097 |
'Composer\\Installers\\DolibarrInstaller' => array(
|
1098 |
-
'version' => '1.
|
1099 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DolibarrInstaller.php'
|
1100 |
),
|
1101 |
'Composer\\Installers\\BonefishInstaller' => array(
|
1102 |
-
'version' => '1.
|
1103 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BonefishInstaller.php'
|
1104 |
),
|
1105 |
'Composer\\Installers\\MayaInstaller' => array(
|
1106 |
-
'version' => '1.
|
1107 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MayaInstaller.php'
|
1108 |
),
|
1109 |
'Composer\\Installers\\CroogoInstaller' => array(
|
1110 |
-
'version' => '1.
|
1111 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CroogoInstaller.php'
|
1112 |
),
|
1113 |
'Composer\\Installers\\PxcmsInstaller' => array(
|
1114 |
-
'version' => '1.
|
1115 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PxcmsInstaller.php'
|
1116 |
),
|
1117 |
'Composer\\Installers\\DecibelInstaller' => array(
|
1118 |
-
'version' => '1.
|
1119 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DecibelInstaller.php'
|
1120 |
),
|
1121 |
'Composer\\Installers\\SyDESInstaller' => array(
|
1122 |
-
'version' => '1.
|
1123 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SyDESInstaller.php'
|
1124 |
),
|
1125 |
'Composer\\Installers\\LanManagementSystemInstaller' => array(
|
1126 |
-
'version' => '1.
|
1127 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php'
|
1128 |
),
|
1129 |
'Composer\\Installers\\ClanCatsFrameworkInstaller' => array(
|
1130 |
-
'version' => '1.
|
1131 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php'
|
1132 |
),
|
1133 |
'Composer\\Installers\\ZikulaInstaller' => array(
|
1134 |
-
'version' => '1.
|
1135 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ZikulaInstaller.php'
|
1136 |
),
|
1137 |
'Composer\\Installers\\MantisBTInstaller' => array(
|
1138 |
-
'version' => '1.
|
1139 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MantisBTInstaller.php'
|
1140 |
),
|
1141 |
'Composer\\Installers\\SiteDirectInstaller' => array(
|
1142 |
-
'version' => '1.
|
1143 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SiteDirectInstaller.php'
|
1144 |
),
|
1145 |
'Composer\\Installers\\MicroweberInstaller' => array(
|
1146 |
-
'version' => '1.
|
1147 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MicroweberInstaller.php'
|
1148 |
),
|
1149 |
'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => array(
|
323 |
'path' => $baseDir . '/packages/woocommerce-trusted-shops/src/Package.php'
|
324 |
),
|
325 |
'Vendidero\\Germanized\\Shipments\\Shipment' => array(
|
326 |
+
'version' => '1.4.4.0',
|
327 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Shipment.php'
|
328 |
),
|
329 |
'Vendidero\\Germanized\\Shipments\\Install' => array(
|
330 |
+
'version' => '1.4.4.0',
|
331 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Install.php'
|
332 |
),
|
333 |
'Vendidero\\Germanized\\Shipments\\SimpleShipment' => array(
|
334 |
+
'version' => '1.4.4.0',
|
335 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/SimpleShipment.php'
|
336 |
),
|
337 |
'Vendidero\\Germanized\\Shipments\\ShippingProviderMethod' => array(
|
338 |
+
'version' => '1.4.4.0',
|
339 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviderMethod.php'
|
340 |
),
|
341 |
'Vendidero\\Germanized\\Shipments\\Package' => array(
|
342 |
+
'version' => '1.4.4.0',
|
343 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Package.php'
|
344 |
),
|
345 |
'Vendidero\\Germanized\\Shipments\\Order' => array(
|
346 |
+
'version' => '1.4.4.0',
|
347 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Order.php'
|
348 |
),
|
349 |
'Vendidero\\Germanized\\Shipments\\DataStores\\Shipment' => array(
|
350 |
+
'version' => '1.4.4.0',
|
351 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/Shipment.php'
|
352 |
),
|
353 |
'Vendidero\\Germanized\\Shipments\\DataStores\\ShippingProvider' => array(
|
354 |
+
'version' => '1.4.4.0',
|
355 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/ShippingProvider.php'
|
356 |
),
|
357 |
'Vendidero\\Germanized\\Shipments\\DataStores\\Packaging' => array(
|
358 |
+
'version' => '1.4.4.0',
|
359 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/Packaging.php'
|
360 |
),
|
361 |
'Vendidero\\Germanized\\Shipments\\DataStores\\ShipmentItem' => array(
|
362 |
+
'version' => '1.4.4.0',
|
363 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/ShipmentItem.php'
|
364 |
),
|
365 |
'Vendidero\\Germanized\\Shipments\\PackagingFactory' => array(
|
366 |
+
'version' => '1.4.4.0',
|
367 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PackagingFactory.php'
|
368 |
),
|
369 |
'Vendidero\\Germanized\\Shipments\\Ajax' => array(
|
370 |
+
'version' => '1.4.4.0',
|
371 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Ajax.php'
|
372 |
),
|
373 |
'Vendidero\\Germanized\\Shipments\\ReturnShipment' => array(
|
374 |
+
'version' => '1.4.4.0',
|
375 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ReturnShipment.php'
|
376 |
),
|
377 |
'Vendidero\\Germanized\\Shipments\\ShippingProvider' => array(
|
378 |
+
'version' => '1.4.4.0',
|
379 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProvider.php'
|
380 |
),
|
381 |
'Vendidero\\Germanized\\Shipments\\AddressSplitter' => array(
|
382 |
+
'version' => '1.4.4.0',
|
383 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/AddressSplitter.php'
|
384 |
),
|
385 |
'Vendidero\\Germanized\\Shipments\\Admin\\BulkLabel' => array(
|
386 |
+
'version' => '1.4.4.0',
|
387 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php'
|
388 |
),
|
389 |
'Vendidero\\Germanized\\Shipments\\Admin\\Settings' => array(
|
390 |
+
'version' => '1.4.4.0',
|
391 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Settings.php'
|
392 |
),
|
393 |
'Vendidero\\Germanized\\Shipments\\Admin\\MetaBox' => array(
|
394 |
+
'version' => '1.4.4.0',
|
395 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/MetaBox.php'
|
396 |
),
|
397 |
'Vendidero\\Germanized\\Shipments\\Admin\\DownloadHandler' => array(
|
398 |
+
'version' => '1.4.4.0',
|
399 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/DownloadHandler.php'
|
400 |
),
|
401 |
'Vendidero\\Germanized\\Shipments\\Admin\\ReturnTable' => array(
|
402 |
+
'version' => '1.4.4.0',
|
403 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php'
|
404 |
),
|
405 |
'Vendidero\\Germanized\\Shipments\\Admin\\BulkActionHandler' => array(
|
406 |
+
'version' => '1.4.4.0',
|
407 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/BulkActionHandler.php'
|
408 |
),
|
409 |
'Vendidero\\Germanized\\Shipments\\Admin\\Admin' => array(
|
410 |
+
'version' => '1.4.4.0',
|
411 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Admin.php'
|
412 |
),
|
413 |
'Vendidero\\Germanized\\Shipments\\Admin\\Table' => array(
|
414 |
+
'version' => '1.4.4.0',
|
415 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Table.php'
|
416 |
),
|
417 |
'Vendidero\\Germanized\\Shipments\\ShipmentQuery' => array(
|
418 |
+
'version' => '1.4.4.0',
|
419 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentQuery.php'
|
420 |
),
|
421 |
'Vendidero\\Germanized\\Shipments\\WPMLHelper' => array(
|
422 |
+
'version' => '1.4.4.0',
|
423 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/WPMLHelper.php'
|
424 |
),
|
425 |
'Vendidero\\Germanized\\Shipments\\ShipmentReturnItem' => array(
|
426 |
+
'version' => '1.4.4.0',
|
427 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentReturnItem.php'
|
428 |
),
|
429 |
'Vendidero\\Germanized\\Shipments\\FormHandler' => array(
|
430 |
+
'version' => '1.4.4.0',
|
431 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/FormHandler.php'
|
432 |
),
|
433 |
'Vendidero\\Germanized\\Shipments\\PDFMerger' => array(
|
434 |
+
'version' => '1.4.4.0',
|
435 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PDFMerger.php'
|
436 |
),
|
437 |
'Vendidero\\Germanized\\Shipments\\ShipmentFactory' => array(
|
438 |
+
'version' => '1.4.4.0',
|
439 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentFactory.php'
|
440 |
),
|
441 |
'Vendidero\\Germanized\\Shipments\\ShippingProviderMethodPlaceholder' => array(
|
442 |
+
'version' => '1.4.4.0',
|
443 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviderMethodPlaceholder.php'
|
444 |
),
|
445 |
'Vendidero\\Germanized\\Shipments\\Automation' => array(
|
446 |
+
'version' => '1.4.4.0',
|
447 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Automation.php'
|
448 |
),
|
449 |
'Vendidero\\Germanized\\Shipments\\ShippingProviders' => array(
|
450 |
+
'version' => '1.4.4.0',
|
451 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviders.php'
|
452 |
),
|
453 |
'Vendidero\\Germanized\\Shipments\\Packaging' => array(
|
454 |
+
'version' => '1.4.4.0',
|
455 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Packaging.php'
|
456 |
),
|
457 |
'Vendidero\\Germanized\\Shipments\\Api' => array(
|
458 |
+
'version' => '1.4.4.0',
|
459 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Api.php'
|
460 |
),
|
461 |
'Vendidero\\Germanized\\Shipments\\ShipmentItem' => array(
|
462 |
+
'version' => '1.4.4.0',
|
463 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentItem.php'
|
464 |
),
|
465 |
'Vendidero\\Germanized\\Shipments\\Validation' => array(
|
466 |
+
'version' => '1.4.4.0',
|
467 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Validation.php'
|
468 |
),
|
469 |
'Vendidero\\Germanized\\Shipments\\Emails' => array(
|
470 |
+
'version' => '1.4.4.0',
|
471 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Emails.php'
|
472 |
),
|
473 |
'Vendidero\\Germanized\\Shipments\\PDFSplitter' => array(
|
474 |
+
'version' => '1.4.4.0',
|
475 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PDFSplitter.php'
|
476 |
),
|
477 |
'Vendidero\\Germanized\\Shipments\\ReturnReason' => array(
|
478 |
+
'version' => '1.4.4.0',
|
479 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ReturnReason.php'
|
480 |
),
|
481 |
'Vendidero\\Germanized\\Shipments\\Interfaces\\ShipmentReturnLabel' => array(
|
482 |
+
'version' => '1.4.4.0',
|
483 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShipmentReturnLabel.php'
|
484 |
),
|
485 |
'Vendidero\\Germanized\\Shipments\\Interfaces\\ShipmentLabel' => array(
|
486 |
+
'version' => '1.4.4.0',
|
487 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShipmentLabel.php'
|
488 |
),
|
489 |
'Vendidero\\Germanized\\DHL\\ShippingProvider\\DeutschePost' => array(
|
490 |
+
'version' => '1.4.5.0',
|
491 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php'
|
492 |
),
|
493 |
'Vendidero\\Germanized\\DHL\\ShippingProvider\\MethodDHL' => array(
|
494 |
+
'version' => '1.4.5.0',
|
495 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/MethodDHL.php'
|
496 |
),
|
497 |
'Vendidero\\Germanized\\DHL\\ShippingProvider\\DHL' => array(
|
498 |
+
'version' => '1.4.5.0',
|
499 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/DHL.php'
|
500 |
),
|
501 |
'Vendidero\\Germanized\\DHL\\ShippingProvider\\MethodDeutschePost' => array(
|
502 |
+
'version' => '1.4.5.0',
|
503 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/MethodDeutschePost.php'
|
504 |
),
|
505 |
'Vendidero\\Germanized\\DHL\\Install' => array(
|
506 |
+
'version' => '1.4.5.0',
|
507 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Install.php'
|
508 |
),
|
509 |
'Vendidero\\Germanized\\DHL\\LabelQuery' => array(
|
510 |
+
'version' => '1.4.5.0',
|
511 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/LabelQuery.php'
|
512 |
),
|
513 |
'Vendidero\\Germanized\\DHL\\ShipmentLabelWatcher' => array(
|
514 |
+
'version' => '1.4.5.0',
|
515 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShipmentLabelWatcher.php'
|
516 |
),
|
517 |
'Vendidero\\Germanized\\DHL\\Package' => array(
|
518 |
+
'version' => '1.4.5.0',
|
519 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Package.php'
|
520 |
),
|
521 |
'Vendidero\\Germanized\\DHL\\Product' => array(
|
522 |
+
'version' => '1.4.5.0',
|
523 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Product.php'
|
524 |
),
|
525 |
'Vendidero\\Germanized\\DHL\\Order' => array(
|
526 |
+
'version' => '1.4.5.0',
|
527 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Order.php'
|
528 |
),
|
529 |
'Vendidero\\Germanized\\DHL\\DataStores\\Label' => array(
|
530 |
+
'version' => '1.4.5.0',
|
531 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DataStores/Label.php'
|
532 |
),
|
533 |
'Vendidero\\Germanized\\DHL\\Ajax' => array(
|
534 |
+
'version' => '1.4.5.0',
|
535 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Ajax.php'
|
536 |
),
|
537 |
'Vendidero\\Germanized\\DHL\\Label' => array(
|
538 |
+
'version' => '1.4.5.0',
|
539 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Label.php'
|
540 |
),
|
541 |
'Vendidero\\Germanized\\DHL\\ParcelServices' => array(
|
542 |
+
'version' => '1.4.5.0',
|
543 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ParcelServices.php'
|
544 |
),
|
545 |
'Vendidero\\Germanized\\DHL\\Admin\\Importer\\Internetmarke' => array(
|
546 |
+
'version' => '1.4.5.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.5.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.5.0',
|
555 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Settings.php'
|
556 |
),
|
557 |
'Vendidero\\Germanized\\DHL\\Admin\\Status' => array(
|
558 |
+
'version' => '1.4.5.0',
|
559 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Status.php'
|
560 |
),
|
561 |
'Vendidero\\Germanized\\DHL\\Admin\\Admin' => array(
|
562 |
+
'version' => '1.4.5.0',
|
563 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Admin.php'
|
564 |
),
|
565 |
'Vendidero\\Germanized\\DHL\\ReturnLabel' => array(
|
566 |
+
'version' => '1.4.5.0',
|
567 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ReturnLabel.php'
|
568 |
),
|
569 |
'Vendidero\\Germanized\\DHL\\ParcelLocator' => array(
|
570 |
+
'version' => '1.4.5.0',
|
571 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ParcelLocator.php'
|
572 |
),
|
573 |
'Vendidero\\Germanized\\DHL\\SimpleLabel' => array(
|
574 |
+
'version' => '1.4.5.0',
|
575 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/SimpleLabel.php'
|
576 |
),
|
577 |
'Vendidero\\Germanized\\DHL\\DownloadHandler' => array(
|
578 |
+
'version' => '1.4.5.0',
|
579 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DownloadHandler.php'
|
580 |
),
|
581 |
'Vendidero\\Germanized\\DHL\\Api\\ReturnRest' => array(
|
582 |
+
'version' => '1.4.5.0',
|
583 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ReturnRest.php'
|
584 |
),
|
585 |
'Vendidero\\Germanized\\DHL\\Api\\Paket' => array(
|
586 |
+
'version' => '1.4.5.0',
|
587 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Paket.php'
|
588 |
),
|
589 |
'Vendidero\\Germanized\\DHL\\Api\\LabelSoap' => array(
|
590 |
+
'version' => '1.4.5.0',
|
591 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php'
|
592 |
),
|
593 |
'Vendidero\\Germanized\\DHL\\Api\\ImProductList' => array(
|
594 |
+
'version' => '1.4.5.0',
|
595 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImProductList.php'
|
596 |
),
|
597 |
'Vendidero\\Germanized\\DHL\\Api\\AuthSoap' => array(
|
598 |
+
'version' => '1.4.5.0',
|
599 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/AuthSoap.php'
|
600 |
),
|
601 |
'Vendidero\\Germanized\\DHL\\Api\\Internetmarke' => array(
|
602 |
+
'version' => '1.4.5.0',
|
603 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php'
|
604 |
),
|
605 |
'Vendidero\\Germanized\\DHL\\Api\\ParcelRest' => array(
|
606 |
+
'version' => '1.4.5.0',
|
607 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ParcelRest.php'
|
608 |
),
|
609 |
'Vendidero\\Germanized\\DHL\\Api\\Soap' => array(
|
610 |
+
'version' => '1.4.5.0',
|
611 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Soap.php'
|
612 |
),
|
613 |
'Vendidero\\Germanized\\DHL\\Api\\Rest' => array(
|
614 |
+
'version' => '1.4.5.0',
|
615 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Rest.php'
|
616 |
),
|
617 |
'Vendidero\\Germanized\\DHL\\Api\\ImProductsSoap' => array(
|
618 |
+
'version' => '1.4.5.0',
|
619 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImProductsSoap.php'
|
620 |
),
|
621 |
'Vendidero\\Germanized\\DHL\\Api\\FinderSoap' => array(
|
622 |
+
'version' => '1.4.5.0',
|
623 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php'
|
624 |
),
|
625 |
'Vendidero\\Germanized\\DHL\\Api\\ImRefundSoap' => array(
|
626 |
+
'version' => '1.4.5.0',
|
627 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImRefundSoap.php'
|
628 |
),
|
629 |
'Vendidero\\Germanized\\DHL\\Api\\ImWarenpostIntRest' => array(
|
630 |
+
'version' => '1.4.5.0',
|
631 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php'
|
632 |
),
|
633 |
'Vendidero\\Germanized\\DHL\\Automation' => array(
|
634 |
+
'version' => '1.4.5.0',
|
635 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Automation.php'
|
636 |
),
|
637 |
'Vendidero\\Germanized\\DHL\\DeutschePostReturnLabel' => array(
|
638 |
+
'version' => '1.4.5.0',
|
639 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DeutschePostReturnLabel.php'
|
640 |
),
|
641 |
'Vendidero\\Germanized\\DHL\\LabelFactory' => array(
|
642 |
+
'version' => '1.4.5.0',
|
643 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/LabelFactory.php'
|
644 |
),
|
645 |
'Vendidero\\Germanized\\DHL\\LabelWatcher' => array(
|
646 |
+
'version' => '1.4.5.0',
|
647 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/LabelWatcher.php'
|
648 |
),
|
649 |
'Vendidero\\Germanized\\DHL\\DeutschePostLabel' => array(
|
650 |
+
'version' => '1.4.5.0',
|
651 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DeutschePostLabel.php'
|
652 |
),
|
653 |
'Vendidero\\Germanized\\Shopmark' => array(
|
763 |
'path' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php'
|
764 |
),
|
765 |
'Composer\\Installers\\GravInstaller' => array(
|
766 |
+
'version' => '1.10.0.0',
|
767 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/GravInstaller.php'
|
768 |
),
|
769 |
'Composer\\Installers\\AttogramInstaller' => array(
|
770 |
+
'version' => '1.10.0.0',
|
771 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AttogramInstaller.php'
|
772 |
),
|
773 |
'Composer\\Installers\\DrupalInstaller' => array(
|
774 |
+
'version' => '1.10.0.0',
|
775 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DrupalInstaller.php'
|
776 |
),
|
777 |
'Composer\\Installers\\CraftInstaller' => array(
|
778 |
+
'version' => '1.10.0.0',
|
779 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CraftInstaller.php'
|
780 |
),
|
781 |
'Composer\\Installers\\CiviCrmInstaller' => array(
|
782 |
+
'version' => '1.10.0.0',
|
783 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CiviCrmInstaller.php'
|
784 |
),
|
785 |
'Composer\\Installers\\ItopInstaller' => array(
|
786 |
+
'version' => '1.10.0.0',
|
787 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ItopInstaller.php'
|
788 |
),
|
789 |
'Composer\\Installers\\ReIndexInstaller' => array(
|
790 |
+
'version' => '1.10.0.0',
|
791 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ReIndexInstaller.php'
|
792 |
),
|
793 |
'Composer\\Installers\\TheliaInstaller' => array(
|
794 |
+
'version' => '1.10.0.0',
|
795 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TheliaInstaller.php'
|
796 |
),
|
797 |
'Composer\\Installers\\SilverStripeInstaller' => array(
|
798 |
+
'version' => '1.10.0.0',
|
799 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SilverStripeInstaller.php'
|
800 |
),
|
801 |
'Composer\\Installers\\ShopwareInstaller' => array(
|
802 |
+
'version' => '1.10.0.0',
|
803 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ShopwareInstaller.php'
|
804 |
),
|
805 |
'Composer\\Installers\\DokuWikiInstaller' => array(
|
806 |
+
'version' => '1.10.0.0',
|
807 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DokuWikiInstaller.php'
|
808 |
),
|
809 |
+
'Composer\\Installers\\StarbugInstaller' => array(
|
810 |
+
'version' => '1.10.0.0',
|
811 |
+
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/StarbugInstaller.php'
|
812 |
+
),
|
813 |
+
'Composer\\Installers\\ProcessWireInstaller' => array(
|
814 |
+
'version' => '1.10.0.0',
|
815 |
+
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ProcessWireInstaller.php'
|
816 |
+
),
|
817 |
'Composer\\Installers\\SyliusInstaller' => array(
|
818 |
+
'version' => '1.10.0.0',
|
819 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SyliusInstaller.php'
|
820 |
),
|
821 |
'Composer\\Installers\\PPIInstaller' => array(
|
822 |
+
'version' => '1.10.0.0',
|
823 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PPIInstaller.php'
|
824 |
),
|
825 |
'Composer\\Installers\\KirbyInstaller' => array(
|
826 |
+
'version' => '1.10.0.0',
|
827 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KirbyInstaller.php'
|
828 |
),
|
829 |
'Composer\\Installers\\LaravelInstaller' => array(
|
830 |
+
'version' => '1.10.0.0',
|
831 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LaravelInstaller.php'
|
832 |
),
|
833 |
'Composer\\Installers\\ElggInstaller' => array(
|
834 |
+
'version' => '1.10.0.0',
|
835 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ElggInstaller.php'
|
836 |
),
|
837 |
'Composer\\Installers\\VanillaInstaller' => array(
|
838 |
+
'version' => '1.10.0.0',
|
839 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/VanillaInstaller.php'
|
840 |
),
|
841 |
'Composer\\Installers\\YawikInstaller' => array(
|
842 |
+
'version' => '1.10.0.0',
|
843 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/YawikInstaller.php'
|
844 |
),
|
845 |
'Composer\\Installers\\RoundcubeInstaller' => array(
|
846 |
+
'version' => '1.10.0.0',
|
847 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RoundcubeInstaller.php'
|
848 |
),
|
849 |
'Composer\\Installers\\VgmcpInstaller' => array(
|
850 |
+
'version' => '1.10.0.0',
|
851 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/VgmcpInstaller.php'
|
852 |
),
|
853 |
'Composer\\Installers\\UserFrostingInstaller' => array(
|
854 |
+
'version' => '1.10.0.0',
|
855 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/UserFrostingInstaller.php'
|
856 |
),
|
857 |
'Composer\\Installers\\RadPHPInstaller' => array(
|
858 |
+
'version' => '1.10.0.0',
|
859 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RadPHPInstaller.php'
|
860 |
),
|
861 |
'Composer\\Installers\\KnownInstaller' => array(
|
862 |
+
'version' => '1.10.0.0',
|
863 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KnownInstaller.php'
|
864 |
),
|
865 |
'Composer\\Installers\\SMFInstaller' => array(
|
866 |
+
'version' => '1.10.0.0',
|
867 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SMFInstaller.php'
|
868 |
),
|
869 |
'Composer\\Installers\\PhiftyInstaller' => array(
|
870 |
+
'version' => '1.10.0.0',
|
871 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PhiftyInstaller.php'
|
872 |
),
|
873 |
'Composer\\Installers\\MakoInstaller' => array(
|
874 |
+
'version' => '1.10.0.0',
|
875 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MakoInstaller.php'
|
876 |
),
|
877 |
'Composer\\Installers\\TYPO3CmsInstaller' => array(
|
878 |
+
'version' => '1.10.0.0',
|
879 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php'
|
880 |
),
|
881 |
'Composer\\Installers\\CockpitInstaller' => array(
|
882 |
+
'version' => '1.10.0.0',
|
883 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CockpitInstaller.php'
|
884 |
),
|
885 |
'Composer\\Installers\\CodeIgniterInstaller' => array(
|
886 |
+
'version' => '1.10.0.0',
|
887 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php'
|
888 |
),
|
889 |
'Composer\\Installers\\TaoInstaller' => array(
|
890 |
+
'version' => '1.10.0.0',
|
891 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TaoInstaller.php'
|
892 |
),
|
893 |
'Composer\\Installers\\AimeosInstaller' => array(
|
894 |
+
'version' => '1.10.0.0',
|
895 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AimeosInstaller.php'
|
896 |
),
|
897 |
'Composer\\Installers\\KohanaInstaller' => array(
|
898 |
+
'version' => '1.10.0.0',
|
899 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KohanaInstaller.php'
|
900 |
),
|
901 |
'Composer\\Installers\\Plugin' => array(
|
902 |
+
'version' => '1.10.0.0',
|
903 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Plugin.php'
|
904 |
),
|
905 |
'Composer\\Installers\\ExpressionEngineInstaller' => array(
|
906 |
+
'version' => '1.10.0.0',
|
907 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php'
|
908 |
),
|
909 |
'Composer\\Installers\\OctoberInstaller' => array(
|
910 |
+
'version' => '1.10.0.0',
|
911 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OctoberInstaller.php'
|
912 |
),
|
913 |
'Composer\\Installers\\WolfCMSInstaller' => array(
|
914 |
+
'version' => '1.10.0.0',
|
915 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WolfCMSInstaller.php'
|
916 |
),
|
917 |
'Composer\\Installers\\LithiumInstaller' => array(
|
918 |
+
'version' => '1.10.0.0',
|
919 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LithiumInstaller.php'
|
920 |
),
|
921 |
'Composer\\Installers\\ZendInstaller' => array(
|
922 |
+
'version' => '1.10.0.0',
|
923 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ZendInstaller.php'
|
924 |
),
|
925 |
'Composer\\Installers\\Symfony1Installer' => array(
|
926 |
+
'version' => '1.10.0.0',
|
927 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Symfony1Installer.php'
|
928 |
),
|
929 |
'Composer\\Installers\\LavaLiteInstaller' => array(
|
930 |
+
'version' => '1.10.0.0',
|
931 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LavaLiteInstaller.php'
|
932 |
),
|
933 |
'Composer\\Installers\\MoodleInstaller' => array(
|
934 |
+
'version' => '1.10.0.0',
|
935 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MoodleInstaller.php'
|
936 |
),
|
937 |
'Composer\\Installers\\HuradInstaller' => array(
|
938 |
+
'version' => '1.10.0.0',
|
939 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/HuradInstaller.php'
|
940 |
),
|
941 |
'Composer\\Installers\\BaseInstaller' => array(
|
942 |
+
'version' => '1.10.0.0',
|
943 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BaseInstaller.php'
|
944 |
),
|
945 |
'Composer\\Installers\\CakePHPInstaller' => array(
|
946 |
+
'version' => '1.10.0.0',
|
947 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CakePHPInstaller.php'
|
948 |
),
|
949 |
'Composer\\Installers\\RedaxoInstaller' => array(
|
950 |
+
'version' => '1.10.0.0',
|
951 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RedaxoInstaller.php'
|
952 |
),
|
953 |
'Composer\\Installers\\ModxInstaller' => array(
|
954 |
+
'version' => '1.10.0.0',
|
955 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ModxInstaller.php'
|
956 |
),
|
957 |
'Composer\\Installers\\MauticInstaller' => array(
|
958 |
+
'version' => '1.10.0.0',
|
959 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MauticInstaller.php'
|
960 |
),
|
961 |
'Composer\\Installers\\MagentoInstaller' => array(
|
962 |
+
'version' => '1.10.0.0',
|
963 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MagentoInstaller.php'
|
964 |
),
|
965 |
'Composer\\Installers\\Concrete5Installer' => array(
|
966 |
+
'version' => '1.10.0.0',
|
967 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Concrete5Installer.php'
|
968 |
),
|
969 |
'Composer\\Installers\\FuelphpInstaller' => array(
|
970 |
+
'version' => '1.10.0.0',
|
971 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/FuelphpInstaller.php'
|
972 |
),
|
973 |
'Composer\\Installers\\FuelInstaller' => array(
|
974 |
+
'version' => '1.10.0.0',
|
975 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/FuelInstaller.php'
|
976 |
),
|
977 |
'Composer\\Installers\\PrestashopInstaller' => array(
|
978 |
+
'version' => '1.10.0.0',
|
979 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PrestashopInstaller.php'
|
980 |
),
|
981 |
'Composer\\Installers\\OxidInstaller' => array(
|
982 |
+
'version' => '1.10.0.0',
|
983 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OxidInstaller.php'
|
984 |
),
|
985 |
'Composer\\Installers\\TuskInstaller' => array(
|
986 |
+
'version' => '1.10.0.0',
|
987 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TuskInstaller.php'
|
988 |
),
|
989 |
'Composer\\Installers\\TYPO3FlowInstaller' => array(
|
990 |
+
'version' => '1.10.0.0',
|
991 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php'
|
992 |
),
|
993 |
'Composer\\Installers\\PiwikInstaller' => array(
|
994 |
+
'version' => '1.10.0.0',
|
995 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PiwikInstaller.php'
|
996 |
),
|
997 |
'Composer\\Installers\\PuppetInstaller' => array(
|
998 |
+
'version' => '1.10.0.0',
|
999 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PuppetInstaller.php'
|
1000 |
),
|
1001 |
'Composer\\Installers\\AglInstaller' => array(
|
1002 |
+
'version' => '1.10.0.0',
|
1003 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AglInstaller.php'
|
1004 |
),
|
1005 |
'Composer\\Installers\\PimcoreInstaller' => array(
|
1006 |
+
'version' => '1.10.0.0',
|
1007 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PimcoreInstaller.php'
|
1008 |
),
|
1009 |
'Composer\\Installers\\EliasisInstaller' => array(
|
1010 |
+
'version' => '1.10.0.0',
|
1011 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/EliasisInstaller.php'
|
1012 |
),
|
1013 |
'Composer\\Installers\\Redaxo5Installer' => array(
|
1014 |
+
'version' => '1.10.0.0',
|
1015 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Redaxo5Installer.php'
|
1016 |
),
|
1017 |
'Composer\\Installers\\BitrixInstaller' => array(
|
1018 |
+
'version' => '1.10.0.0',
|
1019 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BitrixInstaller.php'
|
1020 |
),
|
1021 |
'Composer\\Installers\\AsgardInstaller' => array(
|
1022 |
+
'version' => '1.10.0.0',
|
1023 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AsgardInstaller.php'
|
1024 |
),
|
1025 |
'Composer\\Installers\\WHMCSInstaller' => array(
|
1026 |
+
'version' => '1.10.0.0',
|
1027 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WHMCSInstaller.php'
|
1028 |
),
|
1029 |
'Composer\\Installers\\KanboardInstaller' => array(
|
1030 |
+
'version' => '1.10.0.0',
|
1031 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KanboardInstaller.php'
|
1032 |
),
|
1033 |
'Composer\\Installers\\WordPressInstaller' => array(
|
1034 |
+
'version' => '1.10.0.0',
|
1035 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WordPressInstaller.php'
|
1036 |
),
|
1037 |
'Composer\\Installers\\MajimaInstaller' => array(
|
1038 |
+
'version' => '1.10.0.0',
|
1039 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MajimaInstaller.php'
|
1040 |
),
|
1041 |
'Composer\\Installers\\DframeInstaller' => array(
|
1042 |
+
'version' => '1.10.0.0',
|
1043 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DframeInstaller.php'
|
1044 |
),
|
1045 |
'Composer\\Installers\\PlentymarketsInstaller' => array(
|
1046 |
+
'version' => '1.10.0.0',
|
1047 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php'
|
1048 |
),
|
1049 |
'Composer\\Installers\\EzPlatformInstaller' => array(
|
1050 |
+
'version' => '1.10.0.0',
|
1051 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/EzPlatformInstaller.php'
|
1052 |
),
|
1053 |
'Composer\\Installers\\MODXEvoInstaller' => array(
|
1054 |
+
'version' => '1.10.0.0',
|
1055 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MODXEvoInstaller.php'
|
1056 |
),
|
1057 |
'Composer\\Installers\\OntoWikiInstaller' => array(
|
1058 |
+
'version' => '1.10.0.0',
|
1059 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OntoWikiInstaller.php'
|
1060 |
),
|
1061 |
'Composer\\Installers\\AnnotateCmsInstaller' => array(
|
1062 |
+
'version' => '1.10.0.0',
|
1063 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php'
|
1064 |
),
|
1065 |
'Composer\\Installers\\MODULEWorkInstaller' => array(
|
1066 |
+
'version' => '1.10.0.0',
|
1067 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php'
|
1068 |
),
|
1069 |
'Composer\\Installers\\OsclassInstaller' => array(
|
1070 |
+
'version' => '1.10.0.0',
|
1071 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OsclassInstaller.php'
|
1072 |
),
|
1073 |
'Composer\\Installers\\ChefInstaller' => array(
|
1074 |
+
'version' => '1.10.0.0',
|
1075 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ChefInstaller.php'
|
1076 |
),
|
1077 |
'Composer\\Installers\\JoomlaInstaller' => array(
|
1078 |
+
'version' => '1.10.0.0',
|
1079 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/JoomlaInstaller.php'
|
1080 |
),
|
1081 |
'Composer\\Installers\\Installer' => array(
|
1082 |
+
'version' => '1.10.0.0',
|
1083 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Installer.php'
|
1084 |
),
|
1085 |
'Composer\\Installers\\KodiCMSInstaller' => array(
|
1086 |
+
'version' => '1.10.0.0',
|
1087 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KodiCMSInstaller.php'
|
1088 |
),
|
1089 |
'Composer\\Installers\\PhpBBInstaller' => array(
|
1090 |
+
'version' => '1.10.0.0',
|
1091 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PhpBBInstaller.php'
|
1092 |
),
|
1093 |
'Composer\\Installers\\MediaWikiInstaller' => array(
|
1094 |
+
'version' => '1.10.0.0',
|
1095 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MediaWikiInstaller.php'
|
1096 |
),
|
1097 |
'Composer\\Installers\\ImageCMSInstaller' => array(
|
1098 |
+
'version' => '1.10.0.0',
|
1099 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ImageCMSInstaller.php'
|
1100 |
),
|
1101 |
'Composer\\Installers\\PortoInstaller' => array(
|
1102 |
+
'version' => '1.10.0.0',
|
1103 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PortoInstaller.php'
|
1104 |
),
|
1105 |
'Composer\\Installers\\DolibarrInstaller' => array(
|
1106 |
+
'version' => '1.10.0.0',
|
1107 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DolibarrInstaller.php'
|
1108 |
),
|
1109 |
'Composer\\Installers\\BonefishInstaller' => array(
|
1110 |
+
'version' => '1.10.0.0',
|
1111 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BonefishInstaller.php'
|
1112 |
),
|
1113 |
'Composer\\Installers\\MayaInstaller' => array(
|
1114 |
+
'version' => '1.10.0.0',
|
1115 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MayaInstaller.php'
|
1116 |
),
|
1117 |
'Composer\\Installers\\CroogoInstaller' => array(
|
1118 |
+
'version' => '1.10.0.0',
|
1119 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CroogoInstaller.php'
|
1120 |
),
|
1121 |
'Composer\\Installers\\PxcmsInstaller' => array(
|
1122 |
+
'version' => '1.10.0.0',
|
1123 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PxcmsInstaller.php'
|
1124 |
),
|
1125 |
'Composer\\Installers\\DecibelInstaller' => array(
|
1126 |
+
'version' => '1.10.0.0',
|
1127 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DecibelInstaller.php'
|
1128 |
),
|
1129 |
'Composer\\Installers\\SyDESInstaller' => array(
|
1130 |
+
'version' => '1.10.0.0',
|
1131 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SyDESInstaller.php'
|
1132 |
),
|
1133 |
'Composer\\Installers\\LanManagementSystemInstaller' => array(
|
1134 |
+
'version' => '1.10.0.0',
|
1135 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php'
|
1136 |
),
|
1137 |
'Composer\\Installers\\ClanCatsFrameworkInstaller' => array(
|
1138 |
+
'version' => '1.10.0.0',
|
1139 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php'
|
1140 |
),
|
1141 |
'Composer\\Installers\\ZikulaInstaller' => array(
|
1142 |
+
'version' => '1.10.0.0',
|
1143 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ZikulaInstaller.php'
|
1144 |
),
|
1145 |
'Composer\\Installers\\MantisBTInstaller' => array(
|
1146 |
+
'version' => '1.10.0.0',
|
1147 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MantisBTInstaller.php'
|
1148 |
),
|
1149 |
'Composer\\Installers\\SiteDirectInstaller' => array(
|
1150 |
+
'version' => '1.10.0.0',
|
1151 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SiteDirectInstaller.php'
|
1152 |
),
|
1153 |
'Composer\\Installers\\MicroweberInstaller' => array(
|
1154 |
+
'version' => '1.10.0.0',
|
1155 |
'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MicroweberInstaller.php'
|
1156 |
),
|
1157 |
'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => array(
|
vendor/jetpack-autoloader/class-autoloader-handler.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp63b70c83b4a124aa51b42a95c10c3d7b;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-autoloader-locator.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp63b70c83b4a124aa51b42a95c10c3d7b;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-autoloader.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp63b70c83b4a124aa51b42a95c10c3d7b;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-container.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp63b70c83b4a124aa51b42a95c10c3d7b;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-hook-manager.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp63b70c83b4a124aa51b42a95c10c3d7b;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-latest-autoloader-guard.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp63b70c83b4a124aa51b42a95c10c3d7b;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-manifest-reader.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp63b70c83b4a124aa51b42a95c10c3d7b;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-path-processor.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp63b70c83b4a124aa51b42a95c10c3d7b;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-plugin-locator.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp63b70c83b4a124aa51b42a95c10c3d7b;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-plugins-handler.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp63b70c83b4a124aa51b42a95c10c3d7b;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-version-loader.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp63b70c83b4a124aa51b42a95c10c3d7b;
|
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\
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp63b70c83b4a124aa51b42a95c10c3d7b;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
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.
|
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:
|
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.
|
73 |
|
74 |
/**
|
75 |
* @var WooCommerce_Germanized $instance of the plugin
|
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.5
|
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: 5.0
|
13 |
*
|
14 |
* Text Domain: woocommerce-germanized
|
15 |
* Domain Path: /i18n/languages/
|
69 |
*
|
70 |
* @var string
|
71 |
*/
|
72 |
+
public $version = '3.3.5';
|
73 |
|
74 |
/**
|
75 |
* @var WooCommerce_Germanized $instance of the plugin
|