WooCommerce Germanized - Version 3.8.4

Version Description

  • Improvement: Added formatted customer title to REST API
  • Improvement: Variation price detection
  • Improvement: Shipping costs refund tax precision
  • Improvement: Divi checkout module compatibility
  • Improvement: Divi product builder compatibility
  • Improvement: Unit price price observer price detection
  • Improvement: Return request parsing order ids
  • Improvement: Connection status check for DHL API
  • Fix: Allow booking DHL premium for EU and third countries
Download this release

Release Info

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

Code changes from version 3.8.3 to 3.8.4

Files changed (62) hide show
  1. assets/js/add-to-cart-variation.js +1 -1
  2. assets/js/add-to-cart-variation.min.js +1 -1
  3. assets/js/checkout.js +11 -1
  4. assets/js/checkout.min.js +1 -1
  5. assets/js/unit-price-observer.js +12 -7
  6. assets/js/unit-price-observer.min.js +1 -1
  7. i18n/languages/woocommerce-germanized-de_DE.mo +0 -0
  8. i18n/languages/woocommerce-germanized-de_DE.po +241 -217
  9. i18n/languages/woocommerce-germanized-de_DE_formal.mo +0 -0
  10. i18n/languages/woocommerce-germanized-de_DE_formal.po +241 -217
  11. includes/admin/class-wc-gzd-admin-order.php +65 -0
  12. includes/api/class-wc-gzd-rest-customers-controller.php +20 -6
  13. includes/api/class-wc-gzd-rest-orders-controller.php +20 -3
  14. includes/class-wc-gzd-emails.php +4 -2
  15. includes/class-wc-gzd-install.php +22 -22
  16. includes/compatibility/class-wc-gzd-compatibility-elementor-pro.php +12 -0
  17. includes/compatibility/class-wc-gzd-compatibility-et-builder.php +15 -0
  18. includes/compatibility/class-wc-gzd-compatibility-woocommerce-paypal-payments.php +11 -5
  19. includes/wc-gzd-cart-functions.php +4 -1
  20. includes/wc-gzd-template-hooks.php +1 -0
  21. packages/one-stop-shop-woocommerce/one-stop-shop-woocommerce.php +1 -1
  22. packages/one-stop-shop-woocommerce/readme.txt +4 -1
  23. packages/one-stop-shop-woocommerce/src/Package.php +1 -1
  24. packages/one-stop-shop-woocommerce/src/Queue.php +5 -1
  25. packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php +1 -8
  26. packages/woocommerce-germanized-dhl/src/Admin/Status.php +0 -1
  27. packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php +65 -0
  28. packages/woocommerce-germanized-dhl/src/Package.php +1 -1
  29. packages/woocommerce-germanized-dhl/src/ShippingProvider/DHL.php +20 -2
  30. packages/woocommerce-germanized-dhl/woocommerce-germanized-dhl.php +1 -1
  31. packages/woocommerce-germanized-shipments/assets/css/admin.css +16 -0
  32. packages/woocommerce-germanized-shipments/assets/css/admin.min.css +1 -1
  33. packages/woocommerce-germanized-shipments/assets/css/admin.scss +20 -0
  34. packages/woocommerce-germanized-shipments/src/FormHandler.php +23 -4
  35. packages/woocommerce-germanized-shipments/src/Package.php +1 -1
  36. packages/woocommerce-germanized-shipments/woocommerce-germanized-shipments.php +1 -1
  37. readme.txt +16 -2
  38. templates/checkboxes/default.php +2 -2
  39. templates/checkout/terms-sepa.php +9 -6
  40. templates/checkout/terms.php +2 -2
  41. vendor/autoload.php +1 -1
  42. vendor/autoload_packages.php +1 -1
  43. vendor/composer/autoload_real.php +7 -7
  44. vendor/composer/autoload_static.php +4 -4
  45. vendor/composer/installed.json +29 -29
  46. vendor/composer/installed.php +11 -11
  47. vendor/composer/jetpack_autoload_classmap.php +110 -110
  48. vendor/jetpack-autoloader/class-autoloader-handler.php +1 -1
  49. vendor/jetpack-autoloader/class-autoloader-locator.php +1 -1
  50. vendor/jetpack-autoloader/class-autoloader.php +1 -1
  51. vendor/jetpack-autoloader/class-container.php +1 -1
  52. vendor/jetpack-autoloader/class-hook-manager.php +1 -1
  53. vendor/jetpack-autoloader/class-latest-autoloader-guard.php +1 -1
  54. vendor/jetpack-autoloader/class-manifest-reader.php +1 -1
  55. vendor/jetpack-autoloader/class-path-processor.php +1 -1
  56. vendor/jetpack-autoloader/class-php-autoloader.php +1 -1
  57. vendor/jetpack-autoloader/class-plugin-locator.php +1 -1
  58. vendor/jetpack-autoloader/class-plugins-handler.php +1 -1
  59. vendor/jetpack-autoloader/class-shutdown-handler.php +1 -1
  60. vendor/jetpack-autoloader/class-version-loader.php +1 -1
  61. vendor/jetpack-autoloader/class-version-selector.php +1 -1
  62. woocommerce-germanized.php +3 -3
assets/js/add-to-cart-variation.js CHANGED
@@ -33,7 +33,7 @@
33
  * Ignore the price wrapper inside the variation form to make sure the right
34
  * price is being replaced even if the price element is located beneath the form.
35
  */
36
- return $wrapper.find( wc_gzd_add_to_cart_variation_params.price_selector + ':not(.price-unit):visible' ).not( '.variations_form .price' ).first();
37
  };
38
 
39
  /**
33
  * Ignore the price wrapper inside the variation form to make sure the right
34
  * price is being replaced even if the price element is located beneath the form.
35
  */
36
+ return $wrapper.find( wc_gzd_add_to_cart_variation_params.price_selector + ':not(.price-unit):visible' ).not( '.variations_form .single_variation .price' ).first();
37
  };
38
 
39
  /**
assets/js/add-to-cart-variation.min.js CHANGED
@@ -1 +1 @@
1
- !function(i){function t(i){var t=this;t.$form=i,t.$wrapper=i.closest(wc_gzd_add_to_cart_variation_params.wrapper),t.$product=i.closest(".product"),t.variationData=i.data("product_variations"),t.$singleVariation=i.find(".single_variation"),t.$singleVariationWrap=i.find(".single_variation_wrap"),t.$resetVariations=i.find(".reset_variations"),t.$button=i.find(".single_add_to_cart_button"),t.$wrapper.length<=0&&(t.$wrapper=t.$product),t.replacePrice=!t.$wrapper.hasClass("bundled_product")&&wc_gzd_add_to_cart_variation_params.replace_price,i.on("click",".reset_variations",{GermanizedvariationForm:t},t.onReset),i.on("reset_data",{GermanizedvariationForm:t},t.onReset),i.on("show_variation",{GermanizedvariationForm:t},t.onShowVariation)}t.prototype.getPriceElement=function(i){return i.$wrapper.find(wc_gzd_add_to_cart_variation_params.price_selector+":not(.price-unit):visible").not(".variations_form .price").first()},t.prototype.onReset=function(i){var t=i.data.GermanizedvariationForm,r=t.$wrapper;0<r.find(".org_price").length&&t.replacePrice&&r.find(wc_gzd_add_to_cart_variation_params.price_selector+".variation_modified:not(.price-unit)").html(r.find(".org_price").html()).removeClass("variation_modified").show(),0<r.find(".org_delivery_time").length&&(r.find(".delivery-time-info:first").html(r.find(".org_delivery_time").html()).removeClass("variation_modified").show(),r.find(".delivery-time-info:first").is(":empty")&&r.find(".delivery-time-info:first").addClass("wc-gzd-additional-info-placeholder").hide()),0<r.find(".org_unit_price").length&&(r.find(".price-unit:first").html(r.find(".org_unit_price").html()).removeClass("variation_modified").show(),r.find(".price-unit:first").is(":empty")&&r.find(".price-unit:first").addClass("wc-gzd-additional-info-placeholder").hide()),0<r.find(".org_tax_info").length&&(r.find(".tax-info:first").html(r.find(".org_tax_info").html()).removeClass("variation_modified").show(),r.find(".tax-info:first").is(":empty")&&r.find(".tax-info:first").addClass("wc-gzd-additional-info-placeholder").hide()),0<r.find(".org_defect_description").length&&(r.find(".defect-description:first").html(r.find(".org_defect_description").html()).removeClass("variation_modified").show(),r.find(".defect-description:first").is(":empty")&&r.find(".defect-description:first").addClass("wc-gzd-additional-info-placeholder").hide()),0<r.find(".org_shipping_costs_info").length&&(r.find(".shipping-costs-info:first").html(r.find(".org_shipping_costs_info").html()).removeClass("variation_modified").show(),r.find(".shipping-costs-info:first").is(":empty")&&r.find(".shipping-costs-info:first").addClass("wc-gzd-additional-info-placeholder").hide()),0<r.find(".org_product_units").length&&(r.find(".product-units:first").html(r.find(".org_product_units").html()).removeClass("variation_modified").show(),r.find(".product-units:first").is(":empty")&&r.find(".product-units:first").addClass("wc-gzd-additional-info-placeholder").hide()),r.find(".org_product_info").remove(),r.find(".variation_modified").remove(),i.data.GermanizedvariationForm.$form.trigger("germanized_reset_data")},t.prototype.onUpdate=function(i){setTimeout(function(){void 0!==i.data&&i.data.hasOwnProperty("GermanizedvariationForm")&&void 0!==i.data.GermanizedvariationForm&&(i.data.GermanizedvariationForm.$button.is("[disabled]")||i.data.GermanizedvariationForm.$button.hasClass("disabled"))&&i.data.GermanizedvariationForm.onReset(i)},250)},t.prototype.onShowVariation=function(i,t,r){var n=i.data.GermanizedvariationForm,d=n.$wrapper,e=t.hasOwnProperty("price_html")&&""!==t.price_html,i=t.hasOwnProperty("display_price")&&""!==t.display_price;d.find(".org_product_info").length<=0&&(d.append('<div class="org_price org_product_info">'+n.getPriceElement(n).html()+"</div>"),0<d.find(".delivery-time-info:first").length&&d.append('<div class="org_delivery_time org_product_info">'+d.find(".delivery-time-info:first").html()+"</div>"),0<d.find(".defect-description:first").length&&d.append('<div class="org_defect_description org_product_info">'+d.find(".defect-description:first").html()+"</div>"),0<d.find(".tax-info:first").length&&d.append('<div class="org_tax_info org_product_info">'+d.find(".tax-info:first").html()+"</div>"),0<d.find(".shipping-costs-info:first").length&&d.append('<div class="org_shipping_costs_info org_product_info">'+d.find(".shipping-costs-info:first").html()+"</div>"),0<d.find(".price-unit:first").length&&d.append('<div class="org_unit_price org_product_info">'+d.find(".price-unit:first").html()+"</div>"),0<d.find(".product-units:first").length&&d.append('<div class="org_product_units org_product_info">'+d.find(".product-units:first").html()+"</div>"),d.find(".org_product_info").hide()),e&&n.replacePrice&&(e=n.getPriceElement(n),n.$singleVariation.find(".price").hide(),e.html(t.price_html).addClass("variation_modified"),e.find(".price").contents().unwrap()),d.find(".delivery-time-info:first").hide(),d.find(".defect-description:first").hide(),d.find(".price-unit:first").hide(),d.find(".tax-info:first").hide(),d.find(".shipping-costs-info:first").hide(),d.find(".product-units:first").hide(),""!==t.delivery_time&&d.find("p.delivery-time-info:first").html(t.delivery_time).addClass("variation_modified").removeClass("wc-gzd-additional-info-placeholder").show(),""!==t.defect_description&&d.find(".defect-description:first").html(t.defect_description).addClass("variation_modified").removeClass("wc-gzd-additional-info-placeholder").show(),""!==t.tax_info&&i&&d.find(".tax-info:first").html(t.tax_info).addClass("variation_modified").removeClass("wc-gzd-additional-info-placeholder").show(),""!==t.shipping_costs_info&&i&&d.find(".shipping-costs-info:first").html(t.shipping_costs_info).addClass("variation_modified").removeClass("wc-gzd-additional-info-placeholder").show(),""!==t.unit_price&&i&&(d.find(".price-unit:first").length?d.find(".price-unit:first").html(t.unit_price).addClass("variation-modified").removeClass("wc-gzd-additional-info-placeholder").show():(d.find(".price-unit:first").remove(),d.find("p.price:first").after('<p class="price price-unit smaller variation_modified">'+t.unit_price+"</p>").show())),""!==t.product_units&&(d.find(".product-units:first").length?d.find(".product-units:first").html(t.product_units).addClass("variation-modified").removeClass("wc-gzd-additional-info-placeholder").show():(d.find(".product-units:first").remove(),d.find(".product_meta:first").prepend('<p class="wc-gzd-additional-info product-units-wrapper product-units variation_modified">'+t.product_units+"</p>").show())),n.$form.trigger("germanized_variation_data",t,d)},i.fn.wc_germanized_variation_form=function(){return new t(this),this},i(function(){"undefined"!=typeof wc_gzd_add_to_cart_variation_params&&i(".variations_form").each(function(){i(this).wc_germanized_variation_form()})})}(jQuery,(window,document));
1
+ !function(i){function t(i){var t=this;t.$form=i,t.$wrapper=i.closest(wc_gzd_add_to_cart_variation_params.wrapper),t.$product=i.closest(".product"),t.variationData=i.data("product_variations"),t.$singleVariation=i.find(".single_variation"),t.$singleVariationWrap=i.find(".single_variation_wrap"),t.$resetVariations=i.find(".reset_variations"),t.$button=i.find(".single_add_to_cart_button"),t.$wrapper.length<=0&&(t.$wrapper=t.$product),t.replacePrice=!t.$wrapper.hasClass("bundled_product")&&wc_gzd_add_to_cart_variation_params.replace_price,i.on("click",".reset_variations",{GermanizedvariationForm:t},t.onReset),i.on("reset_data",{GermanizedvariationForm:t},t.onReset),i.on("show_variation",{GermanizedvariationForm:t},t.onShowVariation)}t.prototype.getPriceElement=function(i){return i.$wrapper.find(wc_gzd_add_to_cart_variation_params.price_selector+":not(.price-unit):visible").not(".variations_form .single_variation .price").first()},t.prototype.onReset=function(i){var t=i.data.GermanizedvariationForm,r=t.$wrapper;0<r.find(".org_price").length&&t.replacePrice&&r.find(wc_gzd_add_to_cart_variation_params.price_selector+".variation_modified:not(.price-unit)").html(r.find(".org_price").html()).removeClass("variation_modified").show(),0<r.find(".org_delivery_time").length&&(r.find(".delivery-time-info:first").html(r.find(".org_delivery_time").html()).removeClass("variation_modified").show(),r.find(".delivery-time-info:first").is(":empty")&&r.find(".delivery-time-info:first").addClass("wc-gzd-additional-info-placeholder").hide()),0<r.find(".org_unit_price").length&&(r.find(".price-unit:first").html(r.find(".org_unit_price").html()).removeClass("variation_modified").show(),r.find(".price-unit:first").is(":empty")&&r.find(".price-unit:first").addClass("wc-gzd-additional-info-placeholder").hide()),0<r.find(".org_tax_info").length&&(r.find(".tax-info:first").html(r.find(".org_tax_info").html()).removeClass("variation_modified").show(),r.find(".tax-info:first").is(":empty")&&r.find(".tax-info:first").addClass("wc-gzd-additional-info-placeholder").hide()),0<r.find(".org_defect_description").length&&(r.find(".defect-description:first").html(r.find(".org_defect_description").html()).removeClass("variation_modified").show(),r.find(".defect-description:first").is(":empty")&&r.find(".defect-description:first").addClass("wc-gzd-additional-info-placeholder").hide()),0<r.find(".org_shipping_costs_info").length&&(r.find(".shipping-costs-info:first").html(r.find(".org_shipping_costs_info").html()).removeClass("variation_modified").show(),r.find(".shipping-costs-info:first").is(":empty")&&r.find(".shipping-costs-info:first").addClass("wc-gzd-additional-info-placeholder").hide()),0<r.find(".org_product_units").length&&(r.find(".product-units:first").html(r.find(".org_product_units").html()).removeClass("variation_modified").show(),r.find(".product-units:first").is(":empty")&&r.find(".product-units:first").addClass("wc-gzd-additional-info-placeholder").hide()),r.find(".org_product_info").remove(),r.find(".variation_modified").remove(),i.data.GermanizedvariationForm.$form.trigger("germanized_reset_data")},t.prototype.onUpdate=function(i){setTimeout(function(){void 0!==i.data&&i.data.hasOwnProperty("GermanizedvariationForm")&&void 0!==i.data.GermanizedvariationForm&&(i.data.GermanizedvariationForm.$button.is("[disabled]")||i.data.GermanizedvariationForm.$button.hasClass("disabled"))&&i.data.GermanizedvariationForm.onReset(i)},250)},t.prototype.onShowVariation=function(i,t,r){var n=i.data.GermanizedvariationForm,d=n.$wrapper,e=t.hasOwnProperty("price_html")&&""!==t.price_html,i=t.hasOwnProperty("display_price")&&""!==t.display_price;d.find(".org_product_info").length<=0&&(d.append('<div class="org_price org_product_info">'+n.getPriceElement(n).html()+"</div>"),0<d.find(".delivery-time-info:first").length&&d.append('<div class="org_delivery_time org_product_info">'+d.find(".delivery-time-info:first").html()+"</div>"),0<d.find(".defect-description:first").length&&d.append('<div class="org_defect_description org_product_info">'+d.find(".defect-description:first").html()+"</div>"),0<d.find(".tax-info:first").length&&d.append('<div class="org_tax_info org_product_info">'+d.find(".tax-info:first").html()+"</div>"),0<d.find(".shipping-costs-info:first").length&&d.append('<div class="org_shipping_costs_info org_product_info">'+d.find(".shipping-costs-info:first").html()+"</div>"),0<d.find(".price-unit:first").length&&d.append('<div class="org_unit_price org_product_info">'+d.find(".price-unit:first").html()+"</div>"),0<d.find(".product-units:first").length&&d.append('<div class="org_product_units org_product_info">'+d.find(".product-units:first").html()+"</div>"),d.find(".org_product_info").hide()),e&&n.replacePrice&&(e=n.getPriceElement(n),n.$singleVariation.find(".price").hide(),e.html(t.price_html).addClass("variation_modified"),e.find(".price").contents().unwrap()),d.find(".delivery-time-info:first").hide(),d.find(".defect-description:first").hide(),d.find(".price-unit:first").hide(),d.find(".tax-info:first").hide(),d.find(".shipping-costs-info:first").hide(),d.find(".product-units:first").hide(),""!==t.delivery_time&&d.find("p.delivery-time-info:first").html(t.delivery_time).addClass("variation_modified").removeClass("wc-gzd-additional-info-placeholder").show(),""!==t.defect_description&&d.find(".defect-description:first").html(t.defect_description).addClass("variation_modified").removeClass("wc-gzd-additional-info-placeholder").show(),""!==t.tax_info&&i&&d.find(".tax-info:first").html(t.tax_info).addClass("variation_modified").removeClass("wc-gzd-additional-info-placeholder").show(),""!==t.shipping_costs_info&&i&&d.find(".shipping-costs-info:first").html(t.shipping_costs_info).addClass("variation_modified").removeClass("wc-gzd-additional-info-placeholder").show(),""!==t.unit_price&&i&&(d.find(".price-unit:first").length?d.find(".price-unit:first").html(t.unit_price).addClass("variation-modified").removeClass("wc-gzd-additional-info-placeholder").show():(d.find(".price-unit:first").remove(),d.find("p.price:first").after('<p class="price price-unit smaller variation_modified">'+t.unit_price+"</p>").show())),""!==t.product_units&&(d.find(".product-units:first").length?d.find(".product-units:first").html(t.product_units).addClass("variation-modified").removeClass("wc-gzd-additional-info-placeholder").show():(d.find(".product-units:first").remove(),d.find(".product_meta:first").prepend('<p class="wc-gzd-additional-info product-units-wrapper product-units variation_modified">'+t.product_units+"</p>").show())),n.$form.trigger("germanized_variation_data",t,d)},i.fn.wc_germanized_variation_form=function(){return new t(this),this},i(function(){"undefined"!=typeof wc_gzd_add_to_cart_variation_params&&i(".variations_form").each(function(){i(this).wc_germanized_variation_form()})})}(jQuery,(window,document));
assets/js/checkout.js CHANGED
@@ -13,13 +13,23 @@ window.germanized = window.germanized || {};
13
  init: function() {
14
  this.params = wc_gzd_checkout_params;
15
 
 
 
 
 
 
 
 
 
 
 
16
  if ( $( '.payment_methods:first' ).parents( '#order_review' ).length ) {
17
  $( document ).on( 'change', '.payment_methods input[name="payment_method"]', this.triggerCheckoutRefresh );
18
  }
19
 
20
  $( 'body' ).bind( 'updated_checkout', this.onUpdateCheckout );
21
 
22
- if ( this.params.adjust_heading && $( 'body' ).hasClass( 'woocommerce-gzd-checkout' ) ) {
23
  var $theFirst = $( '.woocommerce-checkout' ).find( '.shop_table, #payment' ).first();
24
 
25
  if ( $( '.woocommerce-checkout' ).find( '#order_review_heading' ).length > 0 ) {
13
  init: function() {
14
  this.params = wc_gzd_checkout_params;
15
 
16
+ var checkout_adjustments_disabled = ! $( 'body' ).hasClass( 'woocommerce-gzd-checkout' ) || $( 'input#wc_gzd_checkout_disabled' ).length > 0;
17
+
18
+ /**
19
+ * Support lazy-disabling the checkout adjustments e.g. within compatibility scripts.
20
+ * Lazy-loading will lead to the input#wc_gzd_checkout_disabled to be rendered.
21
+ */
22
+ if ( checkout_adjustments_disabled ) {
23
+ $( 'body' ).removeClass( 'woocommerce-gzd-checkout' );
24
+ }
25
+
26
  if ( $( '.payment_methods:first' ).parents( '#order_review' ).length ) {
27
  $( document ).on( 'change', '.payment_methods input[name="payment_method"]', this.triggerCheckoutRefresh );
28
  }
29
 
30
  $( 'body' ).bind( 'updated_checkout', this.onUpdateCheckout );
31
 
32
+ if ( this.params.adjust_heading && ! checkout_adjustments_disabled ) {
33
  var $theFirst = $( '.woocommerce-checkout' ).find( '.shop_table, #payment' ).first();
34
 
35
  if ( $( '.woocommerce-checkout' ).find( '#order_review_heading' ).length > 0 ) {
assets/js/checkout.min.js CHANGED
@@ -1 +1 @@
1
- window.germanized=window.germanized||{},function(t,n){n.checkout={params:{},init:function(){var e;this.params=wc_gzd_checkout_params,t(".payment_methods:first").parents("#order_review").length&&t(document).on("change",'.payment_methods input[name="payment_method"]',this.triggerCheckoutRefresh),t("body").bind("updated_checkout",this.onUpdateCheckout),this.params.adjust_heading&&t("body").hasClass("woocommerce-gzd-checkout")&&(e=t(".woocommerce-checkout").find(".shop_table, #payment").first(),0<t(".woocommerce-checkout").find("#order_review_heading").length&&(0<e.length&&"payment"===e.attr("id")&&t(".woocommerce-checkout").find("#payment").after(t(".woocommerce-checkout").find("#order_review_heading")),t(".woocommerce-checkout").find("#order_review_heading").show())),this.params.has_privacy_checkbox&&t(document).on("change","input#createaccount",this.triggerCheckoutRefresh),this.params.checkbox_hidden?this.maybeSetTermsCheckbox():t(document).on("change","input#"+this.params.checkbox_id,this.onChangeLegalCheckbox)},maybeSetTermsCheckbox:function(){var e=n.checkout,o=t("input#"+e.params.checkbox_id),c=t("input[name=terms]");0<c.length&&(e.params.checkbox_hidden||o.is(":checked")?c.prop("checked",!0):c.prop("checked",!1)).trigger("change")},onChangeLegalCheckbox:function(){n.checkout.maybeSetTermsCheckbox()},triggerCheckoutRefresh:function(){t("body").trigger("update_checkout")},onUpdateCheckout:function(){var e=n.checkout;e.params.adjust_heading&&0<t(".woocommerce-checkout").find("#order_payment_heading").length&&(t(".woocommerce-checkout").find(".wc_payment_methods").length<=0?t(".woocommerce-checkout").find("#order_payment_heading").hide():t(".woocommerce-checkout").find("#order_payment_heading").show()),0<t(".wc-gzd-place-order").length&&(0<t(".place-order:not(.wc-gzd-place-order)").length&&(t(".place-order:not(.wc-gzd-place-order)").find("#_wpnonce").appendTo(".wc-gzd-place-order"),t(".place-order:not(.wc-gzd-place-order)").find("#woocommerce-process-checkout-nonce").appendTo(".wc-gzd-place-order")),t(".place-order:not(.wc-gzd-place-order)").remove()),e.maybeSetTermsCheckbox()}},t(document).ready(function(){n.checkout.init()})}(jQuery,window.germanized);
1
+ window.germanized=window.germanized||{},function(t,n){n.checkout={params:{},init:function(){this.params=wc_gzd_checkout_params;var e=!t("body").hasClass("woocommerce-gzd-checkout")||0<t("input#wc_gzd_checkout_disabled").length;e&&t("body").removeClass("woocommerce-gzd-checkout"),t(".payment_methods:first").parents("#order_review").length&&t(document).on("change",'.payment_methods input[name="payment_method"]',this.triggerCheckoutRefresh),t("body").bind("updated_checkout",this.onUpdateCheckout),this.params.adjust_heading&&!e&&(e=t(".woocommerce-checkout").find(".shop_table, #payment").first(),0<t(".woocommerce-checkout").find("#order_review_heading").length&&(0<e.length&&"payment"===e.attr("id")&&t(".woocommerce-checkout").find("#payment").after(t(".woocommerce-checkout").find("#order_review_heading")),t(".woocommerce-checkout").find("#order_review_heading").show())),this.params.has_privacy_checkbox&&t(document).on("change","input#createaccount",this.triggerCheckoutRefresh),this.params.checkbox_hidden?this.maybeSetTermsCheckbox():t(document).on("change","input#"+this.params.checkbox_id,this.onChangeLegalCheckbox)},maybeSetTermsCheckbox:function(){var e=n.checkout,o=t("input#"+e.params.checkbox_id),c=t("input[name=terms]");0<c.length&&(e.params.checkbox_hidden||o.is(":checked")?c.prop("checked",!0):c.prop("checked",!1)).trigger("change")},onChangeLegalCheckbox:function(){n.checkout.maybeSetTermsCheckbox()},triggerCheckoutRefresh:function(){t("body").trigger("update_checkout")},onUpdateCheckout:function(){var e=n.checkout;e.params.adjust_heading&&0<t(".woocommerce-checkout").find("#order_payment_heading").length&&(t(".woocommerce-checkout").find(".wc_payment_methods").length<=0?t(".woocommerce-checkout").find("#order_payment_heading").hide():t(".woocommerce-checkout").find("#order_payment_heading").show()),0<t(".wc-gzd-place-order").length&&(0<t(".place-order:not(.wc-gzd-place-order)").length&&(t(".place-order:not(.wc-gzd-place-order)").find("#_wpnonce").appendTo(".wc-gzd-place-order"),t(".place-order:not(.wc-gzd-place-order)").find("#woocommerce-process-checkout-nonce").appendTo(".wc-gzd-place-order")),t(".place-order:not(.wc-gzd-place-order)").remove()),e.maybeSetTermsCheckbox()}},t(document).ready(function(){n.checkout.init()})}(jQuery,window.germanized);
assets/js/unit-price-observer.js CHANGED
@@ -204,8 +204,13 @@
204
 
205
  if ( $price.length > 0 ) {
206
  var $unit_price = self.getUnitPriceNode( self, $price ),
207
- sale_price = '',
208
- $priceInner = $price.find( '.amount:first' ),
 
 
 
 
 
209
  $qty = $( self.params.wrapper + ' ' + quantitySelector + ':first' ),
210
  qty = 1;
211
 
@@ -218,10 +223,10 @@
218
  * search the whole element.
219
  */
220
  if ( $priceInner.length <= 0 ) {
221
- if ( $price.find( '.price' ).length > 0 ) {
222
- $priceInner = $price.find( '.price' );
223
  } else {
224
- $priceInner = $price;
225
  }
226
  }
227
 
@@ -230,9 +235,9 @@
230
  /**
231
  * Is sale?
232
  */
233
- if ( $price.find( '.amount' ).length > 1 ) {
234
  // The second .amount element is the sale price
235
- var $sale_price = $( $price.find( '.amount' )[1] );
236
 
237
  sale_price = self.getRawPrice( $sale_price, self.params.price_decimal_sep );
238
  }
204
 
205
  if ( $price.length > 0 ) {
206
  var $unit_price = self.getUnitPriceNode( self, $price ),
207
+ $priceCloned = $price.clone();
208
+
209
+ // Remove price suffix from cloned DOM element to prevent finding the wrong price within suffix
210
+ $priceCloned.find( '.woocommerce-price-suffix' ).remove();
211
+
212
+ var sale_price = '',
213
+ $priceInner = $priceCloned.find( '.amount:first' ),
214
  $qty = $( self.params.wrapper + ' ' + quantitySelector + ':first' ),
215
  qty = 1;
216
 
223
  * search the whole element.
224
  */
225
  if ( $priceInner.length <= 0 ) {
226
+ if ( $priceCloned.find( '.price' ).length > 0 ) {
227
+ $priceInner = $priceCloned.find( '.price' );
228
  } else {
229
+ $priceInner = $priceCloned;
230
  }
231
  }
232
 
235
  /**
236
  * Is sale?
237
  */
238
+ if ( $priceCloned.find( '.amount' ).length > 1 ) {
239
  // The second .amount element is the sale price
240
+ var $sale_price = $( $priceCloned.find( '.amount' )[1] );
241
 
242
  sale_price = self.getRawPrice( $sale_price, self.params.price_decimal_sep );
243
  }
assets/js/unit-price-observer.min.js CHANGED
@@ -1 +1 @@
1
- !function(p,r){function e(e){var a=this;a.$form=e,a.params=wc_gzd_unit_price_observer_params,a.$wrapper=e.closest(a.params.wrapper),a.$product=e.closest(".product"),a.requests=[],a.observer={},a.timeout=!1,a.$wrapper.length<=0&&(a.$wrapper=a.$product),("MutationObserver"in r||"WebKitMutationObserver"in r||"MozMutationObserver"in r)&&(a.$form.addClass("has-unit-price-observer"),a.initObserver(a),e.hasClass("variations_form")?(a.productId=0<e.find("input[name=product_id]").length?e.find("input[name=product_id]").val():e.data("product_id"),a.variationId=0<e.find("input[name=variation_id]").length?e.find("input[name=variation_id]").val():0,e.find("input[name=variation_id]").length<=0&&(a.variationId=0<e.find("input.variation_id").length?e.find("input.variation_id").val():0),e.on("reset_data",{GermanizedUnitPriceObserver:a},a.onResetVariation),e.on("found_variation.wc-variation-form",{GermanizedUnitPriceObserver:a},a.onFoundVariation)):a.productId=0<e.find("*[name=add-to-cart][type=submit]").length?e.find("*[name=add-to-cart][type=submit]").val():a.params.product_id,a.params.refresh_on_load&&p.each(a.params.price_selector,function(t,r){var i=!!r.hasOwnProperty("is_primary_selector")&&r.is_primary_selector,e=a.getPriceNode(a,t,i),n=a.getUnitPriceNode(a,e);0<n.length&&(a.setUnitPriceLoading(a,n),setTimeout(function(){var e=a.getCurrentPriceData(a,t,r.is_total_price,i,r.quantity_selector);e?a.refreshUnitPrice(a,e.price,e.unit_price,e.sale_price,e.quantity):0<n.length&&a.unsetUnitPriceLoading(a,n)},250))}))}e.prototype.getTextWidth=function(e){var t=e.html();e.html("<span>"+t+"</span>");var r=e.find("span:first").width();return e.html(t),r},e.prototype.getPriceNode=function(e,t,r){r=void 0!==r&&r;t=e.$wrapper.find(t+":not(.price-unit):visible:last");return t=r&&t.length<=0&&e.$form.hasClass("variations_form")?e.$wrapper.find(".woocommerce-variation-price span.price:not(.price-unit):visible:last"):t},e.prototype.getUnitPriceNode=function(e,t){return t.length<=0?[]:t.parents(e.params.wrapper).find(".price-unit:first")},e.prototype.initObserver=function(c){0===Object.keys(c.observer).length&&p.each(c.params.price_selector,function(n,a){var e,o=!!a.hasOwnProperty("is_primary_selector")&&a.is_primary_selector,s=c.getPriceNode(c,n,o),t=!1;0<s.length&&(e=function(e,t){c.timeout&&(clearTimeout(c.timeout),c.abortAjaxRequests(c));var r=c.getUnitPriceNode(c,s),i=!1;0<r.length&&c.setUnitPriceLoading(c,r),c.timeout=setTimeout(function(){var e=c.getCurrentPriceData(c,n,a.is_total_price,o,a.quantity_selector);e&&p.active<=0&&(i=!0,c.refreshUnitPrice(c,e.price,e.unit_price,e.sale_price,e.quantity)),!i&&0<r.length&&c.unsetUnitPriceLoading(c,r)},500)},"MutationObserver"in r?t=new r.MutationObserver(e):"WebKitMutationObserver"in r?t=new r.WebKitMutationObserver(e):"MozMutationObserver"in r&&(t=new r.MozMutationObserver(e)),t&&(c.observer[n]=t,c.observer[n].observe(s[0],{childList:!0,subtree:!0,characterData:!0})))})},e.prototype.cancelObserver=function(e){if(0<e.observer.length)for(var t in e.observer)e.observer.hasOwnProperty(t)&&(e.observer[t].disconnect(),delete e.observer[t])},e.prototype.abortAjaxRequests=function(e){if(0<e.requests.length)for(var t=0;t<e.requests.length;t++)e.requests[t].abort()},e.prototype.onResetVariation=function(e){e.data.GermanizedUnitPriceObserver.variationId=0},e.prototype.onFoundVariation=function(e,t){e=e.data.GermanizedUnitPriceObserver;t.hasOwnProperty("variation_id")&&(e.variationId=t.variation_id),e.initObserver(e)},e.prototype.getCurrentPriceData=function(e,t,r,i,n){n=n&&""!==n?n:e.params.qty_selector;var a=e.getPriceNode(e,t,i);if(0<a.length){var o=e.getUnitPriceNode(e,a),s="",t=a.find(".amount:first"),i=p(e.params.wrapper+" "+n+":first"),n=1;0<i.length&&(n=parseFloat(i.val())),t.length<=0&&(t=0<a.find(".price").length?a.find(".price"):a);t=e.getRawPrice(t,e.params.price_decimal_sep);if(1<a.find(".amount").length&&(a=p(a.find(".amount")[1]),s=e.getRawPrice(a,e.params.price_decimal_sep)),0<o.length&&t)return r&&(t=parseFloat(t)/n,0<s.length&&(s=parseFloat(s)/n)),{price:t,unit_price:o,sale_price:s,quantity:n}}return!1},e.prototype.getCurrentProductId=function(e){var t=e.productId;return 0<e.variationId&&(t=e.variationId),parseInt(t)},e.prototype.getRawPrice=function(t,e){var r=0<t.length?t.text():"",t=!1;try{t=accounting.unformat(r,e)}catch(e){t=!1}return t},e.prototype.setUnitPriceLoading=function(e,t){var r,i=t.html();return t.hasClass("loading")?i=t.data("org-html"):(r=e.getTextWidth(t),e=0<t.find("span").length?t.find("span").innerHeight():t.height(),t.html('<span class="wc-gzd-placeholder-loading"><span class="wc-gzd-placeholder-row" style="height: '+t.height()+'px;"><span class="wc-gzd-placeholder-row-col-4" style="width: '+r+"px; height: "+e+'px;"></span></span></span>'),t.addClass("loading"),t.data("org-html",i)),i},e.prototype.unsetUnitPriceLoading=function(e,t,r){r=r||t.data("org-html"),t.hasClass("loading")&&(t.html(r),t.removeClass("loading").show())},e.prototype.refreshUnitPrice=function(t,e,r,i,n){t.abortAjaxRequests(t);t.setUnitPriceLoading(t,r);t.requests.push(p.ajax({type:"POST",url:t.params.wc_ajax_url.toString().replace("%%endpoint%%","gzd_refresh_unit_price"),data:{security:t.params.refresh_unit_price_nonce,product_id:t.getCurrentProductId(t),price:e,price_sale:i,quantity:n},success:function(e){parseInt(e.product_id)===t.getCurrentProductId(t)&&e.hasOwnProperty("unit_price_html")?t.unsetUnitPriceLoading(t,r,e.unit_price_html):t.unsetUnitPriceLoading(t,r)},error:function(e){t.unsetUnitPriceLoading(t,r)},dataType:"json"}))},p.fn.wc_germanized_unit_price_observer=function(){return new e(this),this},p(function(){"undefined"!=typeof wc_gzd_unit_price_observer_params&&p(".variations_form, "+wc_gzd_unit_price_observer_params.wrapper+" form.cart").each(function(){p(this).wc_germanized_unit_price_observer()})})}(jQuery,window,document),window.germanized=window.germanized||{};
1
+ !function(p,r){function e(e){var a=this;a.$form=e,a.params=wc_gzd_unit_price_observer_params,a.$wrapper=e.closest(a.params.wrapper),a.$product=e.closest(".product"),a.requests=[],a.observer={},a.timeout=!1,a.$wrapper.length<=0&&(a.$wrapper=a.$product),("MutationObserver"in r||"WebKitMutationObserver"in r||"MozMutationObserver"in r)&&(a.$form.addClass("has-unit-price-observer"),a.initObserver(a),e.hasClass("variations_form")?(a.productId=0<e.find("input[name=product_id]").length?e.find("input[name=product_id]").val():e.data("product_id"),a.variationId=0<e.find("input[name=variation_id]").length?e.find("input[name=variation_id]").val():0,e.find("input[name=variation_id]").length<=0&&(a.variationId=0<e.find("input.variation_id").length?e.find("input.variation_id").val():0),e.on("reset_data",{GermanizedUnitPriceObserver:a},a.onResetVariation),e.on("found_variation.wc-variation-form",{GermanizedUnitPriceObserver:a},a.onFoundVariation)):a.productId=0<e.find("*[name=add-to-cart][type=submit]").length?e.find("*[name=add-to-cart][type=submit]").val():a.params.product_id,a.params.refresh_on_load&&p.each(a.params.price_selector,function(t,r){var i=!!r.hasOwnProperty("is_primary_selector")&&r.is_primary_selector,e=a.getPriceNode(a,t,i),n=a.getUnitPriceNode(a,e);0<n.length&&(a.setUnitPriceLoading(a,n),setTimeout(function(){var e=a.getCurrentPriceData(a,t,r.is_total_price,i,r.quantity_selector);e?a.refreshUnitPrice(a,e.price,e.unit_price,e.sale_price,e.quantity):0<n.length&&a.unsetUnitPriceLoading(a,n)},250))}))}e.prototype.getTextWidth=function(e){var t=e.html();e.html("<span>"+t+"</span>");var r=e.find("span:first").width();return e.html(t),r},e.prototype.getPriceNode=function(e,t,r){r=void 0!==r&&r;t=e.$wrapper.find(t+":not(.price-unit):visible:last");return t=r&&t.length<=0&&e.$form.hasClass("variations_form")?e.$wrapper.find(".woocommerce-variation-price span.price:not(.price-unit):visible:last"):t},e.prototype.getUnitPriceNode=function(e,t){return t.length<=0?[]:t.parents(e.params.wrapper).find(".price-unit:first")},e.prototype.initObserver=function(c){0===Object.keys(c.observer).length&&p.each(c.params.price_selector,function(n,a){var e,o=!!a.hasOwnProperty("is_primary_selector")&&a.is_primary_selector,s=c.getPriceNode(c,n,o),t=!1;0<s.length&&(e=function(e,t){c.timeout&&(clearTimeout(c.timeout),c.abortAjaxRequests(c));var r=c.getUnitPriceNode(c,s),i=!1;0<r.length&&c.setUnitPriceLoading(c,r),c.timeout=setTimeout(function(){var e=c.getCurrentPriceData(c,n,a.is_total_price,o,a.quantity_selector);e&&p.active<=0&&(i=!0,c.refreshUnitPrice(c,e.price,e.unit_price,e.sale_price,e.quantity)),!i&&0<r.length&&c.unsetUnitPriceLoading(c,r)},500)},"MutationObserver"in r?t=new r.MutationObserver(e):"WebKitMutationObserver"in r?t=new r.WebKitMutationObserver(e):"MozMutationObserver"in r&&(t=new r.MozMutationObserver(e)),t&&(c.observer[n]=t,c.observer[n].observe(s[0],{childList:!0,subtree:!0,characterData:!0})))})},e.prototype.cancelObserver=function(e){if(0<e.observer.length)for(var t in e.observer)e.observer.hasOwnProperty(t)&&(e.observer[t].disconnect(),delete e.observer[t])},e.prototype.abortAjaxRequests=function(e){if(0<e.requests.length)for(var t=0;t<e.requests.length;t++)e.requests[t].abort()},e.prototype.onResetVariation=function(e){e.data.GermanizedUnitPriceObserver.variationId=0},e.prototype.onFoundVariation=function(e,t){e=e.data.GermanizedUnitPriceObserver;t.hasOwnProperty("variation_id")&&(e.variationId=t.variation_id),e.initObserver(e)},e.prototype.getCurrentPriceData=function(e,t,r,i,n){n=n&&""!==n?n:e.params.qty_selector;var a=e.getPriceNode(e,t,i);if(0<a.length){var o=e.getUnitPriceNode(e,a),s=a.clone();s.find(".woocommerce-price-suffix").remove();t="",i=s.find(".amount:first"),a=p(e.params.wrapper+" "+n+":first"),n=1;0<a.length&&(n=parseFloat(a.val())),i.length<=0&&(i=0<s.find(".price").length?s.find(".price"):s);i=e.getRawPrice(i,e.params.price_decimal_sep);if(1<s.find(".amount").length&&(s=p(s.find(".amount")[1]),t=e.getRawPrice(s,e.params.price_decimal_sep)),0<o.length&&i)return r&&(i=parseFloat(i)/n,0<t.length&&(t=parseFloat(t)/n)),{price:i,unit_price:o,sale_price:t,quantity:n}}return!1},e.prototype.getCurrentProductId=function(e){var t=e.productId;return 0<e.variationId&&(t=e.variationId),parseInt(t)},e.prototype.getRawPrice=function(t,e){var r=0<t.length?t.text():"",t=!1;try{t=accounting.unformat(r,e)}catch(e){t=!1}return t},e.prototype.setUnitPriceLoading=function(e,t){var r,i=t.html();return t.hasClass("loading")?i=t.data("org-html"):(r=e.getTextWidth(t),e=0<t.find("span").length?t.find("span").innerHeight():t.height(),t.html('<span class="wc-gzd-placeholder-loading"><span class="wc-gzd-placeholder-row" style="height: '+t.height()+'px;"><span class="wc-gzd-placeholder-row-col-4" style="width: '+r+"px; height: "+e+'px;"></span></span></span>'),t.addClass("loading"),t.data("org-html",i)),i},e.prototype.unsetUnitPriceLoading=function(e,t,r){r=r||t.data("org-html"),t.hasClass("loading")&&(t.html(r),t.removeClass("loading").show())},e.prototype.refreshUnitPrice=function(t,e,r,i,n){t.abortAjaxRequests(t);t.setUnitPriceLoading(t,r);t.requests.push(p.ajax({type:"POST",url:t.params.wc_ajax_url.toString().replace("%%endpoint%%","gzd_refresh_unit_price"),data:{security:t.params.refresh_unit_price_nonce,product_id:t.getCurrentProductId(t),price:e,price_sale:i,quantity:n},success:function(e){parseInt(e.product_id)===t.getCurrentProductId(t)&&e.hasOwnProperty("unit_price_html")?t.unsetUnitPriceLoading(t,r,e.unit_price_html):t.unsetUnitPriceLoading(t,r)},error:function(e){t.unsetUnitPriceLoading(t,r)},dataType:"json"}))},p.fn.wc_germanized_unit_price_observer=function(){return new e(this),this},p(function(){"undefined"!=typeof wc_gzd_unit_price_observer_params&&p(".variations_form, "+wc_gzd_unit_price_observer_params.wrapper+" form.cart").each(function(){p(this).wc_germanized_unit_price_observer()})})}(jQuery,window,document),window.germanized=window.germanized||{};
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: 2022-01-28 12:09+0100\n"
6
- "PO-Revision-Date: 2022-01-28 12:10+0100\n"
7
  "Last-Translator: Dennis Nissle <info@vendidero.de>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE\n"
@@ -824,13 +824,13 @@ msgstr "Retoure #{shipment_id} zur Bestellung {order_id}"
824
  #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:222
825
  msgctxt "dhl"
826
  msgid "Return shipment #{shipment_id} to order #{order_id}"
827
- msgstr "Retourensendung #{shipment_id} zur Bestellung #{order_id}"
828
 
829
  # @ woocommerce-germanized
830
  #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:291
831
  #: woocommerce-germanized-dhl/src/ParcelLocator.php:904
832
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1071
833
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1755
834
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:38
835
  msgctxt "dhl"
836
  msgid "Packstation"
@@ -861,45 +861,45 @@ msgid "DHL Retoure Online"
861
  msgstr "DHL Retoure Online"
862
 
863
  # @ woocommerce-germanized
864
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:744
865
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:768
866
  msgctxt "dhl"
867
  msgid "DHL Paket International"
868
  msgstr "DHL Paket International"
869
 
870
  # @ woocommerce-germanized
871
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:748
872
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:774
873
  msgctxt "dhl"
874
  msgid "DHL Warenpost International"
875
  msgstr "DHL Warenpost International"
876
 
877
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:769
878
  msgctxt "dhl"
879
  msgid "DHL Paket Connect"
880
  msgstr "DHL Paket Connect"
881
 
882
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:770
883
  msgctxt "dhl"
884
  msgid "DHL Europaket (B2B)"
885
  msgstr "DHL Europaket (B2B)"
886
 
887
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:843
888
  msgctxt "dhl"
889
  msgid "DHL Paket"
890
  msgstr "DHL Paket"
891
 
892
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:844
893
  msgctxt "dhl"
894
  msgid "DHL Paket PRIO"
895
  msgstr "DHL Paket PRIO"
896
 
897
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:845
898
  msgctxt "dhl"
899
  msgid "DHL Paket Taggleich"
900
  msgstr "DHL Paket Taggleich"
901
 
902
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:846
903
  msgctxt "dhl"
904
  msgid "DHL Warenpost"
905
  msgstr "DHL Warenpost"
@@ -1006,37 +1006,37 @@ msgid "DHL & Post"
1006
  msgstr "DHL & Post"
1007
 
1008
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:31
1009
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1219
1010
  msgctxt "dhl"
1011
  msgid "Monday"
1012
  msgstr "Montag"
1013
 
1014
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:32
1015
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1231
1016
  msgctxt "dhl"
1017
  msgid "Tuesday"
1018
  msgstr "Dienstag"
1019
 
1020
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:33
1021
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1242
1022
  msgctxt "dhl"
1023
  msgid "Wednesday"
1024
  msgstr "Mittwoch"
1025
 
1026
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:34
1027
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1253
1028
  msgctxt "dhl"
1029
  msgid "Thursday"
1030
  msgstr "Donnerstag"
1031
 
1032
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:35
1033
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1264
1034
  msgctxt "dhl"
1035
  msgid "Friday"
1036
  msgstr "Freitag"
1037
 
1038
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:36
1039
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1275
1040
  msgctxt "dhl"
1041
  msgid "Saturday"
1042
  msgstr "Samstag"
@@ -1216,7 +1216,7 @@ msgid "Refund API could not be instantiated"
1216
  msgstr "Die API für Rückerstattungen konnte nicht initialisiert werden"
1217
 
1218
  #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:727
1219
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:332
1220
  #: woocommerce-germanized-dhl/src/Api/ReturnRest.php:34
1221
  #, php-format
1222
  msgctxt "dhl"
@@ -1248,7 +1248,12 @@ msgctxt "dhl"
1248
  msgid "Invalid stamp response."
1249
  msgstr "Fehlerhafte Label Rückmeldung."
1250
 
1251
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:116
 
 
 
 
 
1252
  msgctxt "dhl"
1253
  msgid ""
1254
  "Your DHL API credentials seem to be invalid. Please check your DHL settings."
@@ -1256,7 +1261,7 @@ msgstr ""
1256
  "Deine DHL API Zugangsdaten scheinen fehlerhaft zu sein. Bitte prüfe deine "
1257
  "DHL Einstellungen."
1258
 
1259
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:120
1260
  msgctxt "dhl"
1261
  msgid ""
1262
  "Your products are missing data relevant for custom declarations. Please "
@@ -1267,13 +1272,13 @@ msgstr ""
1267
  "Bitte fülle die fehlenden DHL Felder (HS Code, Herstellerland) in deinen "
1268
  "Produktdaten unter Versand aus."
1269
 
1270
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:130
1271
  #, php-format
1272
  msgctxt "dhl"
1273
  msgid "There was an error contacting the DHL API: %s."
1274
  msgstr "Beim Aufruf der DHL API gab es einen Fehler: %s."
1275
 
1276
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:133
1277
  msgctxt "dhl"
1278
  msgid ""
1279
  "An error ocurred while contacting the DHL API. Please consider enabling the "
@@ -1282,7 +1287,7 @@ msgstr ""
1282
  "Beim Aufruf der DHL API ist ein Fehler aufgetreten. Bitte erwäge den Wechsel "
1283
  "in den Sandbox-Modus."
1284
 
1285
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:155
1286
  msgctxt "dhl"
1287
  msgid ""
1288
  "There was an error generating the label. Please try again or consider "
@@ -1291,25 +1296,25 @@ msgstr ""
1291
  "Beim Erzeugen des Labels gab es einen Fehler. Bitte versuche es erneut oder "
1292
  "erwäge den Wechsel in den Sandbox-Modus."
1293
 
1294
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:235
1295
  #: woocommerce-germanized-dhl/src/Api/ReturnRest.php:155
1296
  msgctxt "dhl"
1297
  msgid "Error while creating and uploading the label"
1298
  msgstr "Fehler beim Erstellen und hochladen des Labels"
1299
 
1300
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:279
1301
  #, php-format
1302
  msgctxt "dhl"
1303
  msgid "Could not delete label - %s"
1304
  msgstr "Das Label konnte nicht gelöscht werden - %s"
1305
 
1306
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:310
1307
  msgctxt "dhl"
1308
  msgid "Could not create account number - no product number."
1309
  msgstr ""
1310
  "Die Abrechnungsnummer konnte nicht erzeugt werden. Die Teilnahmenummer fehlt."
1311
 
1312
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:543
1313
  #, php-format
1314
  msgctxt "dhl"
1315
  msgid ""
@@ -1319,7 +1324,7 @@ msgstr ""
1319
  "Deine Absenderadresse ist nicht komplett (%1$s). Bitte prüfe deine <a href="
1320
  "\"%2$s\">Einstellungen</a> und versuche es erneut."
1321
 
1322
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:647
1323
  #, php-format
1324
  msgctxt "dhl"
1325
  msgid "Only %s shipment items can be processed, your shipment has %s items."
@@ -1633,8 +1638,8 @@ msgstr "Erneut versuchen"
1633
  # @ woocommerce-germanized
1634
  #: woocommerce-germanized-dhl/src/ParcelServices.php:60
1635
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:242
1636
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1155
1637
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1708
1638
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:38
1639
  msgctxt "dhl"
1640
  msgid "Delivery day"
@@ -1649,8 +1654,8 @@ msgstr "Lieferzeit"
1649
  # @ woocommerce-germanized
1650
  #: woocommerce-germanized-dhl/src/ParcelServices.php:74
1651
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:252
1652
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1177
1653
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1736
1654
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:89
1655
  msgctxt "dhl"
1656
  msgid "Drop-off location"
@@ -1658,7 +1663,7 @@ msgstr "Ablageort"
1658
 
1659
  #: woocommerce-germanized-dhl/src/ParcelServices.php:79
1660
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:264
1661
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1186
1662
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:82
1663
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:98
1664
  msgctxt "dhl"
@@ -1728,7 +1733,7 @@ msgid "Valid address only"
1728
  msgstr "Nur valide Adressen"
1729
 
1730
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:211
1731
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1438
1732
  msgctxt "dhl"
1733
  msgid "GoGreen"
1734
  msgstr "GoGreen"
@@ -1757,7 +1762,7 @@ msgstr "Firma"
1757
 
1758
  # @ woocommerce-germanized
1759
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:308
1760
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:602
1761
  msgctxt "dhl"
1762
  msgid "Street"
1763
  msgstr "Straße"
@@ -1770,7 +1775,7 @@ msgstr "Hausnummer"
1770
 
1771
  # @ woocommerce-germanized
1772
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:330
1773
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:603
1774
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:27
1775
  msgctxt "dhl"
1776
  msgid "Postcode"
@@ -1778,7 +1783,7 @@ msgstr "Postleitzahl"
1778
 
1779
  # @ woocommerce-germanized
1780
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:339
1781
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:604
1782
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:30
1783
  msgctxt "dhl"
1784
  msgid "City"
@@ -1811,7 +1816,7 @@ msgid "No neighbor"
1811
  msgstr "Keine Nachbarschaftszustellung"
1812
 
1813
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:417
1814
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1470
1815
  msgctxt "dhl"
1816
  msgid "Named person only"
1817
  msgstr "Persönliche Übergabe"
@@ -1837,51 +1842,51 @@ msgctxt "dhl"
1837
  msgid "Minimum age"
1838
  msgstr "Mindestalter"
1839
 
1840
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:476
1841
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1520
1842
  msgctxt "dhl"
1843
  msgid "Premium"
1844
  msgstr "Premium"
1845
 
1846
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:537
1847
  msgctxt "dhl"
1848
  msgid "Receiver is missing or does not exist."
1849
  msgstr "Empfänger fehlt oder existiert nicht."
1850
 
1851
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:609
1852
  #, php-format
1853
  msgctxt "dhl"
1854
  msgid "%s of the return address is a mandatory field."
1855
  msgstr "%s der Rücksendeadresse ist ein Pflichtfeld."
1856
 
1857
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:614
1858
  msgctxt "dhl"
1859
  msgid "Please either add a return company or name."
1860
  msgstr ""
1861
  "Bitte gib entweder einen Firmennamen oder Namen für die Rücksendeadresse an."
1862
 
1863
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:634
1864
  msgctxt "dhl"
1865
  msgid "Error while parsing delivery day."
1866
  msgstr "Fehler beim Einlesen des Liefertages."
1867
 
1868
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:661
1869
  msgctxt "dhl"
1870
  msgid "The visual min age check is invalid."
1871
  msgstr "Das Alter der Alterssichtprüfung ist ungültig."
1872
 
1873
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:685
1874
  msgctxt "dhl"
1875
  msgid "The ident min age check is invalid."
1876
  msgstr "Das Alter des Ident-Checks ist ungültig."
1877
 
1878
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:690
1879
  msgctxt "dhl"
1880
  msgid "There was an error parsing the date of birth for the identity check."
1881
  msgstr ""
1882
  "Beim Einlesen des Geburtsdatums für den Ident-Check trat ein Problem auf."
1883
 
1884
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:695
1885
  msgctxt "dhl"
1886
  msgid ""
1887
  "Either a minimum age or a date of birth must be added to the ident check."
@@ -1890,19 +1895,31 @@ msgstr ""
1890
  "hinzugefügt werden."
1891
 
1892
  # @ woocommerce-germanized
1893
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:712
1894
  #, php-format
1895
  msgctxt "dhl"
1896
  msgid "%s duties element does not exist."
1897
  msgstr "%s Zollabgabe existiert nicht."
1898
 
1899
  # @ woocommerce-germanized
1900
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:969
 
 
 
 
 
 
 
 
 
 
 
 
1901
  msgctxt "dhl"
1902
  msgid "Customer Number (EKP)"
1903
  msgstr "Kundennummer (EKP)"
1904
 
1905
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:971
1906
  #, php-format
1907
  msgctxt "dhl"
1908
  msgid ""
@@ -1912,33 +1929,33 @@ msgstr ""
1912
  "Deine 10-stellige DHL Kundennummer (EKP). Finde deine %s im DHL "
1913
  "Geschäftskundenportal."
1914
 
1915
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:971
1916
  msgctxt "dhl"
1917
  msgid "customer number"
1918
  msgstr "Kundennummer"
1919
 
1920
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:980
1921
  msgctxt "dhl"
1922
  msgid "API"
1923
  msgstr "API"
1924
 
1925
  # @ woocommerce-germanized
1926
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:983
1927
  msgctxt "dhl"
1928
  msgid "Enable Sandbox"
1929
  msgstr "Sandbox aktivieren"
1930
 
1931
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:984
1932
  msgctxt "dhl"
1933
  msgid "Activate Sandbox mode for testing purposes."
1934
  msgstr "Aktiviere den Sandbox Modus."
1935
 
1936
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:991
1937
  msgctxt "dhl"
1938
  msgid "Live Username"
1939
  msgstr "Benutzer"
1940
 
1941
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:993
1942
  #, php-format
1943
  msgctxt "dhl"
1944
  msgid ""
@@ -1948,21 +1965,21 @@ msgstr ""
1948
  "Dein Benutzername (<strong>nicht</strong> die E-Mail-Adresse) zum DHL "
1949
  "Geschäftskundenportal. Bitte teste deine Zugangsdaten vorab %s."
1950
 
1951
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:993
1952
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1003
1953
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1012
1954
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1021
 
 
1955
  msgctxt "dhl"
1956
  msgid "here"
1957
  msgstr "hier"
1958
 
1959
  # @ woocommerce-germanized
1960
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1001
1961
  msgctxt "dhl"
1962
  msgid "Live Password"
1963
  msgstr "Passwort"
1964
 
1965
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1003
1966
  #, php-format
1967
  msgctxt "dhl"
1968
  msgid ""
@@ -1974,12 +1991,12 @@ msgstr ""
1974
  "Gültigkeit des Passworts nach 3 (Standard-Benutzer) bzw. 12 (System-"
1975
  "Benutzer) Monaten und teste deine Zugangsdaten vorab %s."
1976
 
1977
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1010
1978
  msgctxt "dhl"
1979
  msgid "Sandbox Username"
1980
  msgstr "Sandbox Benutzername"
1981
 
1982
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1012
1983
  #, php-format
1984
  msgctxt "dhl"
1985
  msgid ""
@@ -1989,12 +2006,12 @@ msgstr ""
1989
  "Dein Benutzername (<strong>nicht</strong> die E-Mail-Adresse) zum DHL "
1990
  "Entwicklerportal. Bitte teste deine Zugangsdaten vorab %s."
1991
 
1992
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1019
1993
  msgctxt "dhl"
1994
  msgid "Sandbox Password"
1995
  msgstr "Sandbox Passwort"
1996
 
1997
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1021
1998
  #, php-format
1999
  msgctxt "dhl"
2000
  msgid ""
@@ -2004,78 +2021,78 @@ msgstr ""
2004
  "Dein Passwort zum DHL Entwicklerportal. Bitte teste deine Zugangsdaten vorab "
2005
  "%s."
2006
 
2007
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1029
2008
  msgctxt "dhl"
2009
  msgid "Products and Participation Numbers"
2010
  msgstr "Produkte und Teilnahmenummern"
2011
 
2012
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1046
2013
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1402
2014
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1642
2015
  msgctxt "dhl"
2016
  msgid "Inlay Returns"
2017
  msgstr "Beilageretouren"
2018
 
2019
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1058
2020
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:142
2021
  msgctxt "dhl"
2022
  msgid "Tracking"
2023
  msgstr "Sendungsverfolgung"
2024
 
2025
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1072
2026
  msgctxt "dhl"
2027
  msgid "Enable delivery to Packstation."
2028
  msgstr "Aktiviere den Versand an Packstationen."
2029
 
2030
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1073
2031
  msgctxt "dhl"
2032
  msgid "Let customers choose a Packstation as delivery address."
2033
  msgstr "Kunden eine Packstation als Lieferadresse auswählen lassen."
2034
 
2035
  # @ woocommerce-germanized
2036
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1081
2037
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:50
2038
  msgctxt "dhl"
2039
  msgid "Postoffice"
2040
  msgstr "Postfiliale"
2041
 
2042
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1082
2043
  msgctxt "dhl"
2044
  msgid "Enable delivery to Post Offices."
2045
  msgstr "Aktiviere den Versand an Postfilialen."
2046
 
2047
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1083
2048
  msgctxt "dhl"
2049
  msgid "Let customers choose a Post Office as delivery address."
2050
  msgstr "Kunden eine Postfiliale als Lieferadresse auswählen lassen."
2051
 
2052
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1091
2053
  msgctxt "dhl"
2054
  msgid "Parcel Shop"
2055
  msgstr "Paketshop"
2056
 
2057
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1092
2058
  msgctxt "dhl"
2059
  msgid "Enable delivery to Parcel Shops."
2060
  msgstr "Lieferung an Paketshops aktivieren."
2061
 
2062
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1093
2063
  msgctxt "dhl"
2064
  msgid "Let customers choose a Parcel Shop as delivery address."
2065
  msgstr "Kunden einen Paketshop als Lieferadresse auswählen lassen."
2066
 
2067
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1101
2068
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1769
2069
  msgctxt "dhl"
2070
  msgid "Map"
2071
  msgstr "Karte"
2072
 
2073
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1102
2074
  msgctxt "dhl"
2075
  msgid "Let customers find a DHL location on a map."
2076
  msgstr "Lasse Kunden einen DHL Standort auf der Karte auswählen."
2077
 
2078
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1102
2079
  msgctxt "dhl"
2080
  msgid ""
2081
  "Enable this option to let your customers choose a pickup option from a map "
@@ -2086,12 +2103,12 @@ msgstr ""
2086
  "einer Karten in der Kasse zu ermöglichen. Wenn diese Option deaktiviert ist, "
2087
  "wird stattdessen auf die DHL Website verwiesen."
2088
 
2089
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1111
2090
  msgctxt "dhl"
2091
  msgid "Google Maps Key"
2092
  msgstr "Google Maps Schlüssel"
2093
 
2094
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1116
2095
  #, php-format
2096
  msgctxt "dhl"
2097
  msgid ""
@@ -2101,27 +2118,27 @@ msgstr ""
2101
  "Um eine Karte integrieren zu können, benötigst du einen gültigen API-"
2102
  "Schlüssel für Google Maps. Du kannst %s."
2103
 
2104
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1116
2105
  msgctxt "dhl"
2106
  msgid "retrieve a new one"
2107
  msgstr "hier einen neuen erstellen"
2108
 
2109
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1122
2110
  msgctxt "dhl"
2111
  msgid "Limit results"
2112
  msgstr "Suchergebnisse begrenzen"
2113
 
2114
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1127
2115
  msgctxt "dhl"
2116
  msgid "Limit the number of DHL locations shown on the map"
2117
  msgstr "Begrenzt die Anzahl der angezeigten DHL Standorte auf der Karte"
2118
 
2119
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1156
2120
  msgctxt "dhl"
2121
  msgid "Enable delivery day delivery."
2122
  msgstr "Aktiviere die Lieferung am Liefertag."
2123
 
2124
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1156
2125
  msgctxt "dhl"
2126
  msgid ""
2127
  "Enabling this option will display options for the user to select their "
@@ -2131,13 +2148,13 @@ msgstr ""
2131
  "Kasse."
2132
 
2133
  # @ woocommerce-germanized
2134
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1164
2135
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1722
2136
  msgctxt "dhl"
2137
  msgid "Fee"
2138
  msgstr "Gebühr"
2139
 
2140
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1166
2141
  msgctxt "dhl"
2142
  msgid ""
2143
  "Insert gross value as surcharge for delivery day delivery. Insert 0 to offer "
@@ -2147,12 +2164,12 @@ msgstr ""
2147
  "Setze den Wert auf 0 um den Service kostenlos anzubieten."
2148
 
2149
  # @ woocommerce-germanized
2150
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1178
2151
  msgctxt "dhl"
2152
  msgid "Enable drop-off location delivery."
2153
  msgstr "Lieferung an einen Ablageort aktivieren."
2154
 
2155
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1178
2156
  msgctxt "dhl"
2157
  msgid ""
2158
  "Enabling this option will display options for the user to select their "
@@ -2161,12 +2178,12 @@ msgstr ""
2161
  "Diese Option aktiviert die Auswahl eines Wunschorts durch den Kunden in der "
2162
  "Kasse ."
2163
 
2164
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1187
2165
  msgctxt "dhl"
2166
  msgid "Enable delivery to a neighbor."
2167
  msgstr "Lieferung an Nachbarn aktivieren."
2168
 
2169
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1187
2170
  msgctxt "dhl"
2171
  msgid ""
2172
  "Enabling this option will display options for the user to deliver to their "
@@ -2175,12 +2192,12 @@ msgstr ""
2175
  "Diese Option aktiviert die Auswahl eines Wunschnachbarn durch den Kunden in "
2176
  "der Kasse."
2177
 
2178
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1195
2179
  msgctxt "dhl"
2180
  msgid "Cut-off time"
2181
  msgstr "Cut-off-Zeit"
2182
 
2183
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1200
2184
  msgctxt "dhl"
2185
  msgid ""
2186
  "The cut-off time is the latest possible order time up to which the minimum "
@@ -2193,12 +2210,12 @@ msgstr ""
2193
  "Nach Überschreitung dieses Zeitpunktes, wird der früheste verfügbare "
2194
  "Liefertag in der Kasse um einen Tag erhöht (Tag der Bestellung + 3 Werktage)."
2195
 
2196
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1206
2197
  msgctxt "dhl"
2198
  msgid "Preparation days"
2199
  msgstr "Bearbeitungstage"
2200
 
2201
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1211
2202
  msgctxt "dhl"
2203
  msgid ""
2204
  "If you need more time to prepare your shipments you might want to add a "
@@ -2209,23 +2226,23 @@ msgstr ""
2209
  "hier eine statische Anzahl an Tagen hinterlegen, die zum frühesten "
2210
  "auswählbaren Liefertag hinzugefügt werden."
2211
 
2212
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1218
2213
  msgctxt "dhl"
2214
  msgid "Exclude days of transfer"
2215
  msgstr "Übergabetage ausschließen"
2216
 
2217
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1220
2218
  msgctxt "dhl"
2219
  msgid "Exclude days from transferring shipments to DHL."
2220
  msgstr "Schließe bestimmte Wochentage für die Übergabe an DHL aus."
2221
 
2222
  # @ woocommerce-germanized
2223
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1286
2224
  msgctxt "dhl"
2225
  msgid "Exclude gateways"
2226
  msgstr "Zahlungsarten ausschließen"
2227
 
2228
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1288
2229
  msgctxt "dhl"
2230
  msgid "Select payment gateways to be excluded from showing preferred services."
2231
  msgstr ""
@@ -2233,19 +2250,19 @@ msgstr ""
2233
  "Verfügung stehen sollen."
2234
 
2235
  # @ woocommerce-germanized
2236
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1312
2237
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:178
2238
  msgctxt "dhl"
2239
  msgid "Products"
2240
  msgstr "Produkte"
2241
 
2242
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1315
2243
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:198
2244
  msgctxt "dhl"
2245
  msgid "Domestic Default Service"
2246
  msgstr "Standard Service (national)"
2247
 
2248
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1320
2249
  msgctxt "dhl"
2250
  msgid ""
2251
  "Please select your default DHL shipping service for domestic shipments that "
@@ -2257,13 +2274,13 @@ msgstr ""
2257
  "nachträglich ändern)."
2258
 
2259
  # @ woocommerce-germanized
2260
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1326
2261
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:209
2262
  msgctxt "dhl"
2263
  msgid "EU Default Service"
2264
  msgstr "Standard Service (EU)"
2265
 
2266
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1331
2267
  msgctxt "dhl"
2268
  msgid ""
2269
  "Please select your default DHL shipping service for EU shipments that you "
@@ -2274,13 +2291,13 @@ msgstr ""
2274
  "Kunden anbietest (du kannst das Produkt für jede einzelne Sendung "
2275
  "nachträglich ändern)."
2276
 
2277
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1337
2278
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:220
2279
  msgctxt "dhl"
2280
  msgid "Int. Default Service"
2281
  msgstr "Standard Service (Int.)"
2282
 
2283
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1342
2284
  msgctxt "dhl"
2285
  msgid ""
2286
  "Please select your default DHL shipping service for cross-border shipments "
@@ -2292,27 +2309,27 @@ msgstr ""
2292
  "nachträglich ändern)."
2293
 
2294
  # @ woocommerce-germanized
2295
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1348
2296
  msgctxt "dhl"
2297
  msgid "Default Duty"
2298
  msgstr "Standard Zoll"
2299
 
2300
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1353
2301
  msgctxt "dhl"
2302
  msgid "Please select a default duty type."
2303
  msgstr "Bitte wähle eine Standard-Zollabrechnung aus."
2304
 
2305
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1360
2306
  msgctxt "dhl"
2307
  msgid "Codeable"
2308
  msgstr "Leitcodierbar"
2309
 
2310
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1361
2311
  msgctxt "dhl"
2312
  msgid "Generate label only if address can be automatically retrieved DHL."
2313
  msgstr "Erzeuge Labels nur dann, wenn die Adresse von DHL erkannt wird."
2314
 
2315
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1367
2316
  msgctxt "dhl"
2317
  msgid ""
2318
  "Choose this option if you want to make sure that by default labels are only "
@@ -2323,17 +2340,17 @@ msgstr ""
2323
  "ist."
2324
 
2325
  # @ woocommerce-germanized
2326
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1371
2327
  msgctxt "dhl"
2328
  msgid "Force email"
2329
  msgstr "E-Mail übertragen"
2330
 
2331
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1372
2332
  msgctxt "dhl"
2333
  msgid "Force transferring customer email to DHL."
2334
  msgstr "E-Mail-Adresse des Kunden immer an DHL übertragen."
2335
 
2336
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1372
2337
  #, php-format
2338
  msgctxt "dhl"
2339
  msgid ""
@@ -2353,17 +2370,17 @@ msgstr ""
2353
  "Option aktivierst."
2354
 
2355
  # @ woocommerce-germanized
2356
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1381
2357
  msgctxt "dhl"
2358
  msgid "Custom shipper"
2359
  msgstr "Individueller Absender"
2360
 
2361
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1382
2362
  msgctxt "dhl"
2363
  msgid "Use a custom shipper address managed within your DHL business profile."
2364
  msgstr "Individuelle Absenderreferenz aus dem DHL Geschäftskonto verwenden."
2365
 
2366
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1382
2367
  #, php-format
2368
  msgctxt "dhl"
2369
  msgid ""
@@ -2376,12 +2393,12 @@ msgstr ""
2376
  "verwenden möchtest."
2377
 
2378
  # @ woocommerce-germanized
2379
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1391
2380
  msgctxt "dhl"
2381
  msgid "Shipper reference"
2382
  msgstr "Absenderreferenz"
2383
 
2384
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1392
2385
  #, php-format
2386
  msgctxt "dhl"
2387
  msgid ""
@@ -2391,7 +2408,7 @@ msgstr ""
2391
  "Füge hier deine <a href=\"%s\" target=\"_blank\">individuelle "
2392
  "Absenderreferenz</a> aus dem DHL Geschäftskonto ein."
2393
 
2394
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1403
2395
  msgctxt "dhl"
2396
  msgid ""
2397
  "Additionally create inlay return labels for shipments that support returns."
@@ -2399,14 +2416,14 @@ msgstr ""
2399
  "Erzeuge zusätzlich Beilage-Retourenlabels für Sendungen die Retouren "
2400
  "unterstützen."
2401
 
2402
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1416
2403
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1419
2404
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1656
2405
  msgctxt "dhl"
2406
  msgid "Retoure"
2407
  msgstr "Retoure"
2408
 
2409
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1416
2410
  #, php-format
2411
  msgctxt "dhl"
2412
  msgid ""
@@ -2417,18 +2434,18 @@ msgstr ""
2417
  "an. Stelle sicher, dass dein %s DHL Retoure Online enthält."
2418
 
2419
  # @ woocommerce-germanized
2420
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1416
2421
  msgctxt "dhl"
2422
  msgid "contract"
2423
  msgstr "Vertrag"
2424
 
2425
  # @ woocommerce-germanized
2426
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1420
2427
  msgctxt "dhl"
2428
  msgid "Create retoure labels to return shipments."
2429
  msgstr "Retourenlabels zu Retourensendungen erstellen."
2430
 
2431
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1420
2432
  msgctxt "dhl"
2433
  msgid ""
2434
  "By enabling this option you might generate retoure labels for return "
@@ -2438,12 +2455,12 @@ msgstr ""
2438
  "Retourensendungen erstellen und diese per E-Mail an den Kunden weiterleiten."
2439
 
2440
  # @ woocommerce-germanized
2441
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1436
2442
  msgctxt "dhl"
2443
  msgid "Default Services"
2444
  msgstr "Standard-Services"
2445
 
2446
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1436
2447
  #, php-format
2448
  msgctxt "dhl"
2449
  msgid ""
@@ -2454,28 +2471,28 @@ msgstr ""
2454
  "werden sollen. Finde mehr über diese <a href=\"%s\" target=\"_blank"
2455
  "\">Services</a> heraus."
2456
 
2457
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1439
2458
  msgctxt "dhl"
2459
  msgid "Enable the GoGreen Service by default."
2460
  msgstr "Buche den GoGreen Service hinzu."
2461
 
2462
  # @ woocommerce-germanized
2463
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1446
2464
  msgctxt "dhl"
2465
  msgid "Additional Insurance"
2466
  msgstr "Transportversicherung"
2467
 
2468
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1447
2469
  msgctxt "dhl"
2470
  msgid "Add an additional insurance to labels."
2471
  msgstr "Füge eine Transportversicherung zur Sendung hinzu."
2472
 
2473
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1454
2474
  msgctxt "dhl"
2475
  msgid "Retail Outlet Routing"
2476
  msgstr "Filialrouting"
2477
 
2478
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1455
2479
  msgctxt "dhl"
2480
  msgid ""
2481
  "Send undeliverable items to nearest retail outlet instead of immediate "
@@ -2484,57 +2501,57 @@ msgstr ""
2484
  "Sende unzustellbare Sendungen in die nächstgelegene Filiale zur Abholung "
2485
  "anstelle diese direkt zurückzusenden."
2486
 
2487
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1462
2488
  msgctxt "dhl"
2489
  msgid "No Neighbor"
2490
  msgstr "Keine Nachbarschaftszustellung"
2491
 
2492
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1463
2493
  msgctxt "dhl"
2494
  msgid "Do not deliver to neighbors."
2495
  msgstr "Schließe eine Ersatzzustellung beim Nachbarn aus."
2496
 
2497
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1471
2498
  msgctxt "dhl"
2499
  msgid "Do only delivery to named person."
2500
  msgstr ""
2501
  "Lasse Pakete nur an den Empfänger persönlich oder an eine bevollmächtigte "
2502
  "Person übergeben."
2503
 
2504
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1478
2505
  msgctxt "dhl"
2506
  msgid "Bulky Goods"
2507
  msgstr "Sperrgut"
2508
 
2509
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1479
2510
  msgctxt "dhl"
2511
  msgid "Deliver as bulky goods."
2512
  msgstr "Sende Pakete als Sperrgut."
2513
 
2514
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1486
2515
  msgctxt "dhl"
2516
  msgid "Minimum age (Visual check)"
2517
  msgstr "Mindestalter (Visuell)"
2518
 
2519
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1492
2520
  msgctxt "dhl"
2521
  msgid "Choose this option if you want to let DHL check your customer's age."
2522
  msgstr ""
2523
  "Wähle diese Option aus, wenn du das Alter durch DHL prüfen lassen möchtest."
2524
 
2525
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1495
2526
  msgctxt "dhl"
2527
  msgid "Sync (Visual Check)"
2528
  msgstr "Synchronisation (Visuell)"
2529
 
2530
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1496
2531
  msgctxt "dhl"
2532
  msgid "Visually verify age if shipment contains applicable items."
2533
  msgstr ""
2534
  "Aktiviere die Alterssichtprüfung, falls die Sendung zu prüfende Positionen "
2535
  "beinhaltet."
2536
 
2537
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1496
2538
  #, php-format
2539
  msgctxt "dhl"
2540
  msgid ""
@@ -2547,18 +2564,18 @@ msgstr ""
2547
  "Alterssichtprüfung automatisch aktiviert, falls eine Sendung zu prüfenden "
2548
  "Produkte beinhaltet."
2549
 
2550
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1496
2551
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1513
2552
  msgctxt "dhl"
2553
  msgid "age verification checkbox"
2554
  msgstr "Checkbox zur Altersprüfung"
2555
 
2556
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1503
2557
  msgctxt "dhl"
2558
  msgid "Minimum age (Ident check)"
2559
  msgstr "Mindestalter (Identität)"
2560
 
2561
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1509
2562
  msgctxt "dhl"
2563
  msgid ""
2564
  "Choose this option if you want to let DHL check your customer's identity and "
@@ -2568,19 +2585,19 @@ msgstr ""
2568
  "lassen möchtest."
2569
 
2570
  # @ woocommerce-germanized
2571
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1512
2572
  msgctxt "dhl"
2573
  msgid "Sync (Ident Check)"
2574
  msgstr "Synchronisation (Identität)"
2575
 
2576
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1513
2577
  msgctxt "dhl"
2578
  msgid "Verify identity and age if shipment contains applicable items."
2579
  msgstr ""
2580
  "Aktiviere die Identitätsprüfung, falls die Sendung zu prüfende Positionen "
2581
  "beinhaltet."
2582
 
2583
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1513
2584
  #, php-format
2585
  msgctxt "dhl"
2586
  msgid ""
@@ -2593,18 +2610,18 @@ msgstr ""
2593
  "Identitätsprüfung automatisch aktiviert, falls eine Sendung zu prüfenden "
2594
  "Produkte beinhaltet."
2595
 
2596
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1521
2597
  msgctxt "dhl"
2598
  msgid "Premium delivery for international shipments."
2599
  msgstr "Premium Lieferung für internationale Sendungen."
2600
 
2601
  # @ woocommerce-germanized
2602
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1529
2603
  msgctxt "dhl"
2604
  msgid "Bank Account"
2605
  msgstr "Bankkonto"
2606
 
2607
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1529
2608
  msgctxt "dhl"
2609
  msgid "Enter your bank details needed for services that use COD."
2610
  msgstr ""
@@ -2612,36 +2629,36 @@ msgstr ""
2612
  "werden sollen."
2613
 
2614
  # @ woocommerce-germanized
2615
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1532
2616
  msgctxt "dhl"
2617
  msgid "Holder"
2618
  msgstr "Kontoinhaber"
2619
 
2620
  # @ woocommerce-germanized
2621
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1540
2622
  msgctxt "dhl"
2623
  msgid "Bank Name"
2624
  msgstr "Name der Bank"
2625
 
2626
  # @ woocommerce-germanized
2627
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1548
2628
  msgctxt "dhl"
2629
  msgid "IBAN"
2630
  msgstr "IBAN"
2631
 
2632
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1556
2633
  msgctxt "dhl"
2634
  msgid "BIC"
2635
  msgstr "BIC"
2636
 
2637
  # @ woocommerce-germanized
2638
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1564
2639
  msgctxt "dhl"
2640
  msgid "Payment Reference"
2641
  msgstr "Zahlungsreferenz"
2642
 
2643
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1569
2644
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1579
2645
  #, php-format
2646
  msgctxt "dhl"
2647
  msgid ""
@@ -2652,17 +2669,17 @@ msgstr ""
2652
  "%s. Der Text ist auf 35 Zeichen begrenzt."
2653
 
2654
  # @ woocommerce-germanized
2655
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1574
2656
  msgctxt "dhl"
2657
  msgid "Payment Reference 2"
2658
  msgstr "Zahlungsreferenz 2"
2659
 
2660
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1609
2661
  msgctxt "dhl"
2662
  msgid "Customer Number"
2663
  msgstr "Kundennummer"
2664
 
2665
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1610
2666
  msgctxt "dhl"
2667
  msgid ""
2668
  "Insert your DHL business customer number (EKP) here. If you are not yet a "
@@ -2671,12 +2688,12 @@ msgstr ""
2671
  "Füge hier deine DHL Kundennummer (EKP) ein. Wenn du noch kein Geschäftskunde "
2672
  "bist, solltest du dich zuerst als Geschäftskunde bei DHL registrieren."
2673
 
2674
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1623
2675
  msgctxt "dhl"
2676
  msgid "API Access"
2677
  msgstr "API Zugriff"
2678
 
2679
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1624
2680
  msgctxt "dhl"
2681
  msgid ""
2682
  "To create labels and embed DHL services, our software needs access to the "
@@ -2686,7 +2703,7 @@ msgstr ""
2686
  "Software Zugang zur API. Du solltest hier deine Zugangsdaten zum DHL "
2687
  "Geschäftskundenportal eingeben."
2688
 
2689
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1643
2690
  msgctxt "dhl"
2691
  msgid ""
2692
  "If you want to provide your customers with inlay return labels for your "
@@ -2695,7 +2712,7 @@ msgstr ""
2695
  "Wenn du Beilageretouren-Labels zu deinen Sendungen hinzufügen möchtest, "
2696
  "solltest du diese Funktion standardmäßig aktivieren."
2697
 
2698
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1657
2699
  msgctxt "dhl"
2700
  msgid ""
2701
  "If you want to create DHL labels to returns you should activate this "
@@ -2706,12 +2723,12 @@ msgstr ""
2706
  "aktivieren. Stelle sicher, dass DHL Online Retoure in deinem Vertrag "
2707
  "freigeschaltet ist."
2708
 
2709
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1670
2710
  msgctxt "dhl"
2711
  msgid "Age verification"
2712
  msgstr "Altersverifikation"
2713
 
2714
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1671
2715
  msgctxt "dhl"
2716
  msgid ""
2717
  "Use this feature to sync the Germanized age verification checkbox with the "
@@ -2724,12 +2741,12 @@ msgstr ""
2724
  "„Alterssichtprüfung“ von DHL automatisch aktiviert."
2725
 
2726
  # @ woocommerce-germanized
2727
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1689
2728
  msgctxt "dhl"
2729
  msgid "Automation"
2730
  msgstr "Automatisierung"
2731
 
2732
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1690
2733
  msgctxt "dhl"
2734
  msgid ""
2735
  "You might want to save some time and let Germanized generate labels "
@@ -2739,7 +2756,7 @@ msgstr ""
2739
  "automatisch erzeugen lassen, sobald eine Sendung in einen bestimmten Status "
2740
  "wechselt."
2741
 
2742
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1709
2743
  msgctxt "dhl"
2744
  msgid ""
2745
  "Let your customers choose a delivery day (if the service is available at the "
@@ -2748,7 +2765,7 @@ msgstr ""
2748
  "Lasse deine Kunden einen Liefertag (falls der Service für die Kundenadresse "
2749
  "zur Verfügung steht) für die Lieferung in der Kasse auswählen."
2750
 
2751
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1723
2752
  msgctxt "dhl"
2753
  msgid ""
2754
  "Optionally charge your customers an additional fee for preferred services "
@@ -2757,7 +2774,7 @@ msgstr ""
2757
  "Optional kannst du die Gebühr für die Auswahl des Liefertages oder anderer "
2758
  "Wunschzustellung-Services an deine Kunden weiterreichen."
2759
 
2760
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1737
2761
  msgctxt "dhl"
2762
  msgid ""
2763
  "Allow your customers to send their parcels to a drop-off location e.g. a "
@@ -2766,7 +2783,7 @@ msgstr ""
2766
  "Lasse deine Kunden einen Ablageort für die Abgabe ihres Pakets in der Kasse "
2767
  "auswählen. Dieser Service wird von DHL nicht zusätzlich berechnet."
2768
 
2769
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1756
2770
  msgctxt "dhl"
2771
  msgid ""
2772
  "Allow your customers to choose packstation (and/or other DHL location types "
@@ -2775,7 +2792,7 @@ msgstr ""
2775
  "Lasse deine Kunden eine Packstation (und/oder andere DHL Standorte, wie im "
2776
  "Folgenden konfiguriert) als Lieferadresse auswählen."
2777
 
2778
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1770
2779
  msgctxt "dhl"
2780
  msgid ""
2781
  "This option adds a map overlay view to let your customers choose a DHL "
@@ -5145,18 +5162,18 @@ msgstr ""
5145
  "Dein Rücksendeantrag wurde erfolgreich abgeschickt. Du erhältst in Kürze "
5146
  "eine E-Mail, die dich über die nächsten Schritte informiert."
5147
 
5148
- #: woocommerce-germanized-shipments/src/FormHandler.php:99
5149
- #: woocommerce-germanized-shipments/src/FormHandler.php:103
5150
  msgctxt "shipments"
5151
  msgid "Error:"
5152
  msgstr "Fehler:"
5153
 
5154
- #: woocommerce-germanized-shipments/src/FormHandler.php:99
5155
  msgctxt "shipments"
5156
  msgid "We were not able to find a matching order."
5157
  msgstr "Wir konnten leider keine passende Bestellung finden."
5158
 
5159
- #: woocommerce-germanized-shipments/src/FormHandler.php:103
5160
  msgctxt "shipments"
5161
  msgid ""
5162
  "This order is currently not eligible for returns. Please contact us for "
@@ -5165,7 +5182,7 @@ msgstr ""
5165
  "Diese Bestellung ist aktuell nicht für Rücksendungen verfügbar. Bitte "
5166
  "kontaktiere uns für weitere Details."
5167
 
5168
- #: woocommerce-germanized-shipments/src/FormHandler.php:112
5169
  msgctxt "shipments"
5170
  msgid ""
5171
  "Thank you. You'll receive an email containing a link to create a new return "
@@ -5174,7 +5191,7 @@ msgstr ""
5174
  "Vielen Dank. Du erhältst eine E-Mail mit einem Link über den du deinen "
5175
  "Rücksendeantrag stellen kannst."
5176
 
5177
- #: woocommerce-germanized-shipments/src/FormHandler.php:146
5178
  msgctxt "shipments"
5179
  msgid "You are not allowed to add returns to that order."
5180
  msgstr ""
@@ -5182,28 +5199,28 @@ msgstr ""
5182
  "hinzuzufügen."
5183
 
5184
  # @ woocommerce-germanized
5185
- #: woocommerce-germanized-shipments/src/FormHandler.php:151
5186
  msgctxt "shipments"
5187
  msgid "Sorry, but this order does not support returns any longer."
5188
  msgstr "Entschuldigung, diese Sendung kann nicht mehr zurückgesendet werden."
5189
 
5190
- #: woocommerce-germanized-shipments/src/FormHandler.php:156
5191
- #: woocommerce-germanized-shipments/src/FormHandler.php:192
5192
  msgctxt "shipments"
5193
  msgid "Please choose one or more items from the list."
5194
  msgstr "Bitte wähle ein oder mehrere Produkt(e) aus."
5195
 
5196
- #: woocommerce-germanized-shipments/src/FormHandler.php:172
5197
  msgctxt "shipments"
5198
  msgid "The return reason you have chosen does not exist."
5199
  msgstr "Der Rücksendegrund existiert nicht."
5200
 
5201
- #: woocommerce-germanized-shipments/src/FormHandler.php:175
5202
  msgctxt "shipments"
5203
  msgid "Please choose a return reason from the list."
5204
  msgstr "Bitte wähle aus der Liste einen Grund für die Rücksendung aus."
5205
 
5206
- #: woocommerce-germanized-shipments/src/FormHandler.php:180
5207
  msgctxt "shipments"
5208
  msgid ""
5209
  "Please check your item quantities. Quantities must not exceed maximum "
@@ -5211,7 +5228,7 @@ msgid ""
5211
  msgstr ""
5212
  "Bitte überprüfe deine Angaben zur Anzahl. Die angegebene Anzahl ist zu hoch."
5213
 
5214
- #: woocommerce-germanized-shipments/src/FormHandler.php:227
5215
  msgctxt "shipments"
5216
  msgid ""
5217
  "There was an error while creating the return. Please contact us for further "
@@ -7754,10 +7771,10 @@ msgstr ""
7754
  # @ woocommerce
7755
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:187
7756
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:230
7757
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:139
7758
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:146
7759
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:140
7760
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:146
7761
  #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:621
7762
  #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:634
7763
  #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:246
@@ -9672,13 +9689,20 @@ msgstr ""
9672
  "Passe Germanized an deine Bedürfnisse an. Die Einstellungen kannst du später "
9673
  "jederzeit ändern."
9674
 
9675
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:154
 
 
 
 
 
 
 
9676
  msgid "Has been activated via DOI?"
9677
  msgstr "Aktiviert via DOI?"
9678
 
9679
  # @ woocommerce-germanized
9680
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:162
9681
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:159
9682
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:39
9683
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:939
9684
  #: woocommerce-germanized/includes/gateways/direct-debit/views/html-export.php:30
@@ -9686,8 +9710,8 @@ msgid "Direct Debit"
9686
  msgstr "Lastschrift"
9687
 
9688
  # @ woocommerce-germanized
9689
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:167
9690
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:164
9691
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:87
9692
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:119
9693
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:168
@@ -9699,8 +9723,8 @@ msgid "Account Holder"
9699
  msgstr "Kontoinhaber"
9700
 
9701
  # @ woocommerce-germanized
9702
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:172
9703
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:169
9704
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:88
9705
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:120
9706
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:169
@@ -9713,8 +9737,8 @@ msgid "IBAN"
9713
  msgstr "IBAN"
9714
 
9715
  # @ woocommerce-germanized
9716
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:177
9717
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:174
9718
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:89
9719
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:121
9720
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:170
@@ -9725,12 +9749,12 @@ msgstr "IBAN"
9725
  msgid "BIC/SWIFT"
9726
  msgstr "BIC/SWIFT"
9727
 
9728
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:152
9729
  msgid "Parcel Delivery Data Transfer"
9730
  msgstr "Paketdienstleister Datenweitergabe"
9731
 
9732
  # @ woocommerce-germanized
9733
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:179
9734
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:136
9735
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:618
9736
  msgid "Mandate Reference ID"
@@ -10165,7 +10189,7 @@ msgid "Thanks for creating an account on %s."
10165
  msgstr "Danke, dass du ein Konto bei %s erstellt hast."
10166
 
10167
  # @ woocommerce-germanized
10168
- #: woocommerce-germanized/includes/class-wc-gzd-emails.php:1289
10169
  msgctxt "revocation-form"
10170
  msgid "Forward your withdrawal online"
10171
  msgstr "Deinen Widerruf online erklären"
@@ -12115,7 +12139,7 @@ msgstr "Warenkorbkurzbeschreibung"
12115
 
12116
  # @ woocommerce-germanized
12117
  #: woocommerce-germanized/templates/checkboxes/default.php:47
12118
- #: woocommerce-germanized/templates/checkout/terms-sepa.php:46
12119
  #: woocommerce-germanized/templates/checkout/terms.php:66
12120
  msgid "required"
12121
  msgstr "erforderlich"
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce Germanized\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-02-24 11:30+0100\n"
6
+ "PO-Revision-Date: 2022-02-24 11:31+0100\n"
7
  "Last-Translator: Dennis Nissle <info@vendidero.de>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE\n"
824
  #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:222
825
  msgctxt "dhl"
826
  msgid "Return shipment #{shipment_id} to order #{order_id}"
827
+ msgstr "Retoure #{shipment_id} zur Bestellung #{order_id}"
828
 
829
  # @ woocommerce-germanized
830
  #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:291
831
  #: woocommerce-germanized-dhl/src/ParcelLocator.php:904
832
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1089
833
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1773
834
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:38
835
  msgctxt "dhl"
836
  msgid "Packstation"
861
  msgstr "DHL Retoure Online"
862
 
863
  # @ woocommerce-germanized
864
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:737
865
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:761
866
  msgctxt "dhl"
867
  msgid "DHL Paket International"
868
  msgstr "DHL Paket International"
869
 
870
  # @ woocommerce-germanized
871
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:741
872
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:767
873
  msgctxt "dhl"
874
  msgid "DHL Warenpost International"
875
  msgstr "DHL Warenpost International"
876
 
877
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:762
878
  msgctxt "dhl"
879
  msgid "DHL Paket Connect"
880
  msgstr "DHL Paket Connect"
881
 
882
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:763
883
  msgctxt "dhl"
884
  msgid "DHL Europaket (B2B)"
885
  msgstr "DHL Europaket (B2B)"
886
 
887
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:836
888
  msgctxt "dhl"
889
  msgid "DHL Paket"
890
  msgstr "DHL Paket"
891
 
892
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:837
893
  msgctxt "dhl"
894
  msgid "DHL Paket PRIO"
895
  msgstr "DHL Paket PRIO"
896
 
897
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:838
898
  msgctxt "dhl"
899
  msgid "DHL Paket Taggleich"
900
  msgstr "DHL Paket Taggleich"
901
 
902
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:839
903
  msgctxt "dhl"
904
  msgid "DHL Warenpost"
905
  msgstr "DHL Warenpost"
1006
  msgstr "DHL & Post"
1007
 
1008
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:31
1009
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1237
1010
  msgctxt "dhl"
1011
  msgid "Monday"
1012
  msgstr "Montag"
1013
 
1014
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:32
1015
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1249
1016
  msgctxt "dhl"
1017
  msgid "Tuesday"
1018
  msgstr "Dienstag"
1019
 
1020
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:33
1021
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1260
1022
  msgctxt "dhl"
1023
  msgid "Wednesday"
1024
  msgstr "Mittwoch"
1025
 
1026
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:34
1027
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1271
1028
  msgctxt "dhl"
1029
  msgid "Thursday"
1030
  msgstr "Donnerstag"
1031
 
1032
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:35
1033
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1282
1034
  msgctxt "dhl"
1035
  msgid "Friday"
1036
  msgstr "Freitag"
1037
 
1038
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:36
1039
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1293
1040
  msgctxt "dhl"
1041
  msgid "Saturday"
1042
  msgstr "Samstag"
1216
  msgstr "Die API für Rückerstattungen konnte nicht initialisiert werden"
1217
 
1218
  #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:727
1219
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:397
1220
  #: woocommerce-germanized-dhl/src/Api/ReturnRest.php:34
1221
  #, php-format
1222
  msgctxt "dhl"
1248
  msgid "Invalid stamp response."
1249
  msgstr "Fehlerhafte Label Rückmeldung."
1250
 
1251
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:109
1252
+ msgctxt "dhl"
1253
+ msgid "Your DHL API credentials seem to be invalid."
1254
+ msgstr "Deine DHL API Zugangsdaten scheinen fehlerhaft zu sein."
1255
+
1256
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:181
1257
  msgctxt "dhl"
1258
  msgid ""
1259
  "Your DHL API credentials seem to be invalid. Please check your DHL settings."
1261
  "Deine DHL API Zugangsdaten scheinen fehlerhaft zu sein. Bitte prüfe deine "
1262
  "DHL Einstellungen."
1263
 
1264
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:185
1265
  msgctxt "dhl"
1266
  msgid ""
1267
  "Your products are missing data relevant for custom declarations. Please "
1272
  "Bitte fülle die fehlenden DHL Felder (HS Code, Herstellerland) in deinen "
1273
  "Produktdaten unter Versand aus."
1274
 
1275
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:195
1276
  #, php-format
1277
  msgctxt "dhl"
1278
  msgid "There was an error contacting the DHL API: %s."
1279
  msgstr "Beim Aufruf der DHL API gab es einen Fehler: %s."
1280
 
1281
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:198
1282
  msgctxt "dhl"
1283
  msgid ""
1284
  "An error ocurred while contacting the DHL API. Please consider enabling the "
1287
  "Beim Aufruf der DHL API ist ein Fehler aufgetreten. Bitte erwäge den Wechsel "
1288
  "in den Sandbox-Modus."
1289
 
1290
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:220
1291
  msgctxt "dhl"
1292
  msgid ""
1293
  "There was an error generating the label. Please try again or consider "
1296
  "Beim Erzeugen des Labels gab es einen Fehler. Bitte versuche es erneut oder "
1297
  "erwäge den Wechsel in den Sandbox-Modus."
1298
 
1299
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:300
1300
  #: woocommerce-germanized-dhl/src/Api/ReturnRest.php:155
1301
  msgctxt "dhl"
1302
  msgid "Error while creating and uploading the label"
1303
  msgstr "Fehler beim Erstellen und hochladen des Labels"
1304
 
1305
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:344
1306
  #, php-format
1307
  msgctxt "dhl"
1308
  msgid "Could not delete label - %s"
1309
  msgstr "Das Label konnte nicht gelöscht werden - %s"
1310
 
1311
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:375
1312
  msgctxt "dhl"
1313
  msgid "Could not create account number - no product number."
1314
  msgstr ""
1315
  "Die Abrechnungsnummer konnte nicht erzeugt werden. Die Teilnahmenummer fehlt."
1316
 
1317
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:608
1318
  #, php-format
1319
  msgctxt "dhl"
1320
  msgid ""
1324
  "Deine Absenderadresse ist nicht komplett (%1$s). Bitte prüfe deine <a href="
1325
  "\"%2$s\">Einstellungen</a> und versuche es erneut."
1326
 
1327
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:712
1328
  #, php-format
1329
  msgctxt "dhl"
1330
  msgid "Only %s shipment items can be processed, your shipment has %s items."
1638
  # @ woocommerce-germanized
1639
  #: woocommerce-germanized-dhl/src/ParcelServices.php:60
1640
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:242
1641
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1173
1642
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1726
1643
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:38
1644
  msgctxt "dhl"
1645
  msgid "Delivery day"
1654
  # @ woocommerce-germanized
1655
  #: woocommerce-germanized-dhl/src/ParcelServices.php:74
1656
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:252
1657
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1195
1658
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1754
1659
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:89
1660
  msgctxt "dhl"
1661
  msgid "Drop-off location"
1663
 
1664
  #: woocommerce-germanized-dhl/src/ParcelServices.php:79
1665
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:264
1666
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1204
1667
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:82
1668
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:98
1669
  msgctxt "dhl"
1733
  msgstr "Nur valide Adressen"
1734
 
1735
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:211
1736
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1456
1737
  msgctxt "dhl"
1738
  msgid "GoGreen"
1739
  msgstr "GoGreen"
1762
 
1763
  # @ woocommerce-germanized
1764
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:308
1765
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:605
1766
  msgctxt "dhl"
1767
  msgid "Street"
1768
  msgstr "Straße"
1775
 
1776
  # @ woocommerce-germanized
1777
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:330
1778
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:606
1779
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:27
1780
  msgctxt "dhl"
1781
  msgid "Postcode"
1783
 
1784
  # @ woocommerce-germanized
1785
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:339
1786
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:607
1787
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:30
1788
  msgctxt "dhl"
1789
  msgid "City"
1816
  msgstr "Keine Nachbarschaftszustellung"
1817
 
1818
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:417
1819
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1488
1820
  msgctxt "dhl"
1821
  msgid "Named person only"
1822
  msgstr "Persönliche Übergabe"
1842
  msgid "Minimum age"
1843
  msgstr "Mindestalter"
1844
 
1845
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:479
1846
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1538
1847
  msgctxt "dhl"
1848
  msgid "Premium"
1849
  msgstr "Premium"
1850
 
1851
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:540
1852
  msgctxt "dhl"
1853
  msgid "Receiver is missing or does not exist."
1854
  msgstr "Empfänger fehlt oder existiert nicht."
1855
 
1856
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:612
1857
  #, php-format
1858
  msgctxt "dhl"
1859
  msgid "%s of the return address is a mandatory field."
1860
  msgstr "%s der Rücksendeadresse ist ein Pflichtfeld."
1861
 
1862
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:617
1863
  msgctxt "dhl"
1864
  msgid "Please either add a return company or name."
1865
  msgstr ""
1866
  "Bitte gib entweder einen Firmennamen oder Namen für die Rücksendeadresse an."
1867
 
1868
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:637
1869
  msgctxt "dhl"
1870
  msgid "Error while parsing delivery day."
1871
  msgstr "Fehler beim Einlesen des Liefertages."
1872
 
1873
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:664
1874
  msgctxt "dhl"
1875
  msgid "The visual min age check is invalid."
1876
  msgstr "Das Alter der Alterssichtprüfung ist ungültig."
1877
 
1878
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:688
1879
  msgctxt "dhl"
1880
  msgid "The ident min age check is invalid."
1881
  msgstr "Das Alter des Ident-Checks ist ungültig."
1882
 
1883
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:693
1884
  msgctxt "dhl"
1885
  msgid "There was an error parsing the date of birth for the identity check."
1886
  msgstr ""
1887
  "Beim Einlesen des Geburtsdatums für den Ident-Check trat ein Problem auf."
1888
 
1889
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:698
1890
  msgctxt "dhl"
1891
  msgid ""
1892
  "Either a minimum age or a date of birth must be added to the ident check."
1895
  "hinzugefügt werden."
1896
 
1897
  # @ woocommerce-germanized
1898
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:715
1899
  #, php-format
1900
  msgctxt "dhl"
1901
  msgid "%s duties element does not exist."
1902
  msgstr "%s Zollabgabe existiert nicht."
1903
 
1904
  # @ woocommerce-germanized
1905
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:977
1906
+ #, php-format
1907
+ msgctxt "dhl"
1908
+ msgid "Status: %1$s"
1909
+ msgstr "Status: %1$s"
1910
+
1911
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:977
1912
+ msgctxt "dhl"
1913
+ msgid "Connected"
1914
+ msgstr "Verbunden"
1915
+
1916
+ # @ woocommerce-germanized
1917
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:987
1918
  msgctxt "dhl"
1919
  msgid "Customer Number (EKP)"
1920
  msgstr "Kundennummer (EKP)"
1921
 
1922
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:989
1923
  #, php-format
1924
  msgctxt "dhl"
1925
  msgid ""
1929
  "Deine 10-stellige DHL Kundennummer (EKP). Finde deine %s im DHL "
1930
  "Geschäftskundenportal."
1931
 
1932
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:989
1933
  msgctxt "dhl"
1934
  msgid "customer number"
1935
  msgstr "Kundennummer"
1936
 
1937
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:998
1938
  msgctxt "dhl"
1939
  msgid "API"
1940
  msgstr "API"
1941
 
1942
  # @ woocommerce-germanized
1943
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1001
1944
  msgctxt "dhl"
1945
  msgid "Enable Sandbox"
1946
  msgstr "Sandbox aktivieren"
1947
 
1948
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1002
1949
  msgctxt "dhl"
1950
  msgid "Activate Sandbox mode for testing purposes."
1951
  msgstr "Aktiviere den Sandbox Modus."
1952
 
1953
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1009
1954
  msgctxt "dhl"
1955
  msgid "Live Username"
1956
  msgstr "Benutzer"
1957
 
1958
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1011
1959
  #, php-format
1960
  msgctxt "dhl"
1961
  msgid ""
1965
  "Dein Benutzername (<strong>nicht</strong> die E-Mail-Adresse) zum DHL "
1966
  "Geschäftskundenportal. Bitte teste deine Zugangsdaten vorab %s."
1967
 
1968
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1011
 
 
1969
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1021
1970
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1030
1971
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1039
1972
  msgctxt "dhl"
1973
  msgid "here"
1974
  msgstr "hier"
1975
 
1976
  # @ woocommerce-germanized
1977
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1019
1978
  msgctxt "dhl"
1979
  msgid "Live Password"
1980
  msgstr "Passwort"
1981
 
1982
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1021
1983
  #, php-format
1984
  msgctxt "dhl"
1985
  msgid ""
1991
  "Gültigkeit des Passworts nach 3 (Standard-Benutzer) bzw. 12 (System-"
1992
  "Benutzer) Monaten und teste deine Zugangsdaten vorab %s."
1993
 
1994
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1028
1995
  msgctxt "dhl"
1996
  msgid "Sandbox Username"
1997
  msgstr "Sandbox Benutzername"
1998
 
1999
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1030
2000
  #, php-format
2001
  msgctxt "dhl"
2002
  msgid ""
2006
  "Dein Benutzername (<strong>nicht</strong> die E-Mail-Adresse) zum DHL "
2007
  "Entwicklerportal. Bitte teste deine Zugangsdaten vorab %s."
2008
 
2009
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1037
2010
  msgctxt "dhl"
2011
  msgid "Sandbox Password"
2012
  msgstr "Sandbox Passwort"
2013
 
2014
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1039
2015
  #, php-format
2016
  msgctxt "dhl"
2017
  msgid ""
2021
  "Dein Passwort zum DHL Entwicklerportal. Bitte teste deine Zugangsdaten vorab "
2022
  "%s."
2023
 
2024
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1047
2025
  msgctxt "dhl"
2026
  msgid "Products and Participation Numbers"
2027
  msgstr "Produkte und Teilnahmenummern"
2028
 
2029
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1064
2030
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1420
2031
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1660
2032
  msgctxt "dhl"
2033
  msgid "Inlay Returns"
2034
  msgstr "Beilageretouren"
2035
 
2036
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1076
2037
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:142
2038
  msgctxt "dhl"
2039
  msgid "Tracking"
2040
  msgstr "Sendungsverfolgung"
2041
 
2042
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1090
2043
  msgctxt "dhl"
2044
  msgid "Enable delivery to Packstation."
2045
  msgstr "Aktiviere den Versand an Packstationen."
2046
 
2047
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1091
2048
  msgctxt "dhl"
2049
  msgid "Let customers choose a Packstation as delivery address."
2050
  msgstr "Kunden eine Packstation als Lieferadresse auswählen lassen."
2051
 
2052
  # @ woocommerce-germanized
2053
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1099
2054
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:50
2055
  msgctxt "dhl"
2056
  msgid "Postoffice"
2057
  msgstr "Postfiliale"
2058
 
2059
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1100
2060
  msgctxt "dhl"
2061
  msgid "Enable delivery to Post Offices."
2062
  msgstr "Aktiviere den Versand an Postfilialen."
2063
 
2064
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1101
2065
  msgctxt "dhl"
2066
  msgid "Let customers choose a Post Office as delivery address."
2067
  msgstr "Kunden eine Postfiliale als Lieferadresse auswählen lassen."
2068
 
2069
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1109
2070
  msgctxt "dhl"
2071
  msgid "Parcel Shop"
2072
  msgstr "Paketshop"
2073
 
2074
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1110
2075
  msgctxt "dhl"
2076
  msgid "Enable delivery to Parcel Shops."
2077
  msgstr "Lieferung an Paketshops aktivieren."
2078
 
2079
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1111
2080
  msgctxt "dhl"
2081
  msgid "Let customers choose a Parcel Shop as delivery address."
2082
  msgstr "Kunden einen Paketshop als Lieferadresse auswählen lassen."
2083
 
2084
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1119
2085
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1787
2086
  msgctxt "dhl"
2087
  msgid "Map"
2088
  msgstr "Karte"
2089
 
2090
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1120
2091
  msgctxt "dhl"
2092
  msgid "Let customers find a DHL location on a map."
2093
  msgstr "Lasse Kunden einen DHL Standort auf der Karte auswählen."
2094
 
2095
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1120
2096
  msgctxt "dhl"
2097
  msgid ""
2098
  "Enable this option to let your customers choose a pickup option from a map "
2103
  "einer Karten in der Kasse zu ermöglichen. Wenn diese Option deaktiviert ist, "
2104
  "wird stattdessen auf die DHL Website verwiesen."
2105
 
2106
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1129
2107
  msgctxt "dhl"
2108
  msgid "Google Maps Key"
2109
  msgstr "Google Maps Schlüssel"
2110
 
2111
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1134
2112
  #, php-format
2113
  msgctxt "dhl"
2114
  msgid ""
2118
  "Um eine Karte integrieren zu können, benötigst du einen gültigen API-"
2119
  "Schlüssel für Google Maps. Du kannst %s."
2120
 
2121
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1134
2122
  msgctxt "dhl"
2123
  msgid "retrieve a new one"
2124
  msgstr "hier einen neuen erstellen"
2125
 
2126
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1140
2127
  msgctxt "dhl"
2128
  msgid "Limit results"
2129
  msgstr "Suchergebnisse begrenzen"
2130
 
2131
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1145
2132
  msgctxt "dhl"
2133
  msgid "Limit the number of DHL locations shown on the map"
2134
  msgstr "Begrenzt die Anzahl der angezeigten DHL Standorte auf der Karte"
2135
 
2136
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1174
2137
  msgctxt "dhl"
2138
  msgid "Enable delivery day delivery."
2139
  msgstr "Aktiviere die Lieferung am Liefertag."
2140
 
2141
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1174
2142
  msgctxt "dhl"
2143
  msgid ""
2144
  "Enabling this option will display options for the user to select their "
2148
  "Kasse."
2149
 
2150
  # @ woocommerce-germanized
2151
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1182
2152
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1740
2153
  msgctxt "dhl"
2154
  msgid "Fee"
2155
  msgstr "Gebühr"
2156
 
2157
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1184
2158
  msgctxt "dhl"
2159
  msgid ""
2160
  "Insert gross value as surcharge for delivery day delivery. Insert 0 to offer "
2164
  "Setze den Wert auf 0 um den Service kostenlos anzubieten."
2165
 
2166
  # @ woocommerce-germanized
2167
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1196
2168
  msgctxt "dhl"
2169
  msgid "Enable drop-off location delivery."
2170
  msgstr "Lieferung an einen Ablageort aktivieren."
2171
 
2172
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1196
2173
  msgctxt "dhl"
2174
  msgid ""
2175
  "Enabling this option will display options for the user to select their "
2178
  "Diese Option aktiviert die Auswahl eines Wunschorts durch den Kunden in der "
2179
  "Kasse ."
2180
 
2181
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1205
2182
  msgctxt "dhl"
2183
  msgid "Enable delivery to a neighbor."
2184
  msgstr "Lieferung an Nachbarn aktivieren."
2185
 
2186
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1205
2187
  msgctxt "dhl"
2188
  msgid ""
2189
  "Enabling this option will display options for the user to deliver to their "
2192
  "Diese Option aktiviert die Auswahl eines Wunschnachbarn durch den Kunden in "
2193
  "der Kasse."
2194
 
2195
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1213
2196
  msgctxt "dhl"
2197
  msgid "Cut-off time"
2198
  msgstr "Cut-off-Zeit"
2199
 
2200
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1218
2201
  msgctxt "dhl"
2202
  msgid ""
2203
  "The cut-off time is the latest possible order time up to which the minimum "
2210
  "Nach Überschreitung dieses Zeitpunktes, wird der früheste verfügbare "
2211
  "Liefertag in der Kasse um einen Tag erhöht (Tag der Bestellung + 3 Werktage)."
2212
 
2213
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1224
2214
  msgctxt "dhl"
2215
  msgid "Preparation days"
2216
  msgstr "Bearbeitungstage"
2217
 
2218
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1229
2219
  msgctxt "dhl"
2220
  msgid ""
2221
  "If you need more time to prepare your shipments you might want to add a "
2226
  "hier eine statische Anzahl an Tagen hinterlegen, die zum frühesten "
2227
  "auswählbaren Liefertag hinzugefügt werden."
2228
 
2229
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1236
2230
  msgctxt "dhl"
2231
  msgid "Exclude days of transfer"
2232
  msgstr "Übergabetage ausschließen"
2233
 
2234
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1238
2235
  msgctxt "dhl"
2236
  msgid "Exclude days from transferring shipments to DHL."
2237
  msgstr "Schließe bestimmte Wochentage für die Übergabe an DHL aus."
2238
 
2239
  # @ woocommerce-germanized
2240
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1304
2241
  msgctxt "dhl"
2242
  msgid "Exclude gateways"
2243
  msgstr "Zahlungsarten ausschließen"
2244
 
2245
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1306
2246
  msgctxt "dhl"
2247
  msgid "Select payment gateways to be excluded from showing preferred services."
2248
  msgstr ""
2250
  "Verfügung stehen sollen."
2251
 
2252
  # @ woocommerce-germanized
2253
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1330
2254
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:178
2255
  msgctxt "dhl"
2256
  msgid "Products"
2257
  msgstr "Produkte"
2258
 
2259
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1333
2260
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:198
2261
  msgctxt "dhl"
2262
  msgid "Domestic Default Service"
2263
  msgstr "Standard Service (national)"
2264
 
2265
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1338
2266
  msgctxt "dhl"
2267
  msgid ""
2268
  "Please select your default DHL shipping service for domestic shipments that "
2274
  "nachträglich ändern)."
2275
 
2276
  # @ woocommerce-germanized
2277
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1344
2278
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:209
2279
  msgctxt "dhl"
2280
  msgid "EU Default Service"
2281
  msgstr "Standard Service (EU)"
2282
 
2283
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1349
2284
  msgctxt "dhl"
2285
  msgid ""
2286
  "Please select your default DHL shipping service for EU shipments that you "
2291
  "Kunden anbietest (du kannst das Produkt für jede einzelne Sendung "
2292
  "nachträglich ändern)."
2293
 
2294
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1355
2295
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:220
2296
  msgctxt "dhl"
2297
  msgid "Int. Default Service"
2298
  msgstr "Standard Service (Int.)"
2299
 
2300
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1360
2301
  msgctxt "dhl"
2302
  msgid ""
2303
  "Please select your default DHL shipping service for cross-border shipments "
2309
  "nachträglich ändern)."
2310
 
2311
  # @ woocommerce-germanized
2312
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1366
2313
  msgctxt "dhl"
2314
  msgid "Default Duty"
2315
  msgstr "Standard Zoll"
2316
 
2317
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1371
2318
  msgctxt "dhl"
2319
  msgid "Please select a default duty type."
2320
  msgstr "Bitte wähle eine Standard-Zollabrechnung aus."
2321
 
2322
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1378
2323
  msgctxt "dhl"
2324
  msgid "Codeable"
2325
  msgstr "Leitcodierbar"
2326
 
2327
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1379
2328
  msgctxt "dhl"
2329
  msgid "Generate label only if address can be automatically retrieved DHL."
2330
  msgstr "Erzeuge Labels nur dann, wenn die Adresse von DHL erkannt wird."
2331
 
2332
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1385
2333
  msgctxt "dhl"
2334
  msgid ""
2335
  "Choose this option if you want to make sure that by default labels are only "
2340
  "ist."
2341
 
2342
  # @ woocommerce-germanized
2343
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1389
2344
  msgctxt "dhl"
2345
  msgid "Force email"
2346
  msgstr "E-Mail übertragen"
2347
 
2348
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1390
2349
  msgctxt "dhl"
2350
  msgid "Force transferring customer email to DHL."
2351
  msgstr "E-Mail-Adresse des Kunden immer an DHL übertragen."
2352
 
2353
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1390
2354
  #, php-format
2355
  msgctxt "dhl"
2356
  msgid ""
2370
  "Option aktivierst."
2371
 
2372
  # @ woocommerce-germanized
2373
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1399
2374
  msgctxt "dhl"
2375
  msgid "Custom shipper"
2376
  msgstr "Individueller Absender"
2377
 
2378
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1400
2379
  msgctxt "dhl"
2380
  msgid "Use a custom shipper address managed within your DHL business profile."
2381
  msgstr "Individuelle Absenderreferenz aus dem DHL Geschäftskonto verwenden."
2382
 
2383
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1400
2384
  #, php-format
2385
  msgctxt "dhl"
2386
  msgid ""
2393
  "verwenden möchtest."
2394
 
2395
  # @ woocommerce-germanized
2396
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1409
2397
  msgctxt "dhl"
2398
  msgid "Shipper reference"
2399
  msgstr "Absenderreferenz"
2400
 
2401
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1410
2402
  #, php-format
2403
  msgctxt "dhl"
2404
  msgid ""
2408
  "Füge hier deine <a href=\"%s\" target=\"_blank\">individuelle "
2409
  "Absenderreferenz</a> aus dem DHL Geschäftskonto ein."
2410
 
2411
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1421
2412
  msgctxt "dhl"
2413
  msgid ""
2414
  "Additionally create inlay return labels for shipments that support returns."
2416
  "Erzeuge zusätzlich Beilage-Retourenlabels für Sendungen die Retouren "
2417
  "unterstützen."
2418
 
2419
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1434
2420
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1437
2421
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1674
2422
  msgctxt "dhl"
2423
  msgid "Retoure"
2424
  msgstr "Retoure"
2425
 
2426
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1434
2427
  #, php-format
2428
  msgctxt "dhl"
2429
  msgid ""
2434
  "an. Stelle sicher, dass dein %s DHL Retoure Online enthält."
2435
 
2436
  # @ woocommerce-germanized
2437
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1434
2438
  msgctxt "dhl"
2439
  msgid "contract"
2440
  msgstr "Vertrag"
2441
 
2442
  # @ woocommerce-germanized
2443
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1438
2444
  msgctxt "dhl"
2445
  msgid "Create retoure labels to return shipments."
2446
  msgstr "Retourenlabels zu Retourensendungen erstellen."
2447
 
2448
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1438
2449
  msgctxt "dhl"
2450
  msgid ""
2451
  "By enabling this option you might generate retoure labels for return "
2455
  "Retourensendungen erstellen und diese per E-Mail an den Kunden weiterleiten."
2456
 
2457
  # @ woocommerce-germanized
2458
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1454
2459
  msgctxt "dhl"
2460
  msgid "Default Services"
2461
  msgstr "Standard-Services"
2462
 
2463
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1454
2464
  #, php-format
2465
  msgctxt "dhl"
2466
  msgid ""
2471
  "werden sollen. Finde mehr über diese <a href=\"%s\" target=\"_blank"
2472
  "\">Services</a> heraus."
2473
 
2474
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1457
2475
  msgctxt "dhl"
2476
  msgid "Enable the GoGreen Service by default."
2477
  msgstr "Buche den GoGreen Service hinzu."
2478
 
2479
  # @ woocommerce-germanized
2480
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1464
2481
  msgctxt "dhl"
2482
  msgid "Additional Insurance"
2483
  msgstr "Transportversicherung"
2484
 
2485
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1465
2486
  msgctxt "dhl"
2487
  msgid "Add an additional insurance to labels."
2488
  msgstr "Füge eine Transportversicherung zur Sendung hinzu."
2489
 
2490
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1472
2491
  msgctxt "dhl"
2492
  msgid "Retail Outlet Routing"
2493
  msgstr "Filialrouting"
2494
 
2495
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1473
2496
  msgctxt "dhl"
2497
  msgid ""
2498
  "Send undeliverable items to nearest retail outlet instead of immediate "
2501
  "Sende unzustellbare Sendungen in die nächstgelegene Filiale zur Abholung "
2502
  "anstelle diese direkt zurückzusenden."
2503
 
2504
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1480
2505
  msgctxt "dhl"
2506
  msgid "No Neighbor"
2507
  msgstr "Keine Nachbarschaftszustellung"
2508
 
2509
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1481
2510
  msgctxt "dhl"
2511
  msgid "Do not deliver to neighbors."
2512
  msgstr "Schließe eine Ersatzzustellung beim Nachbarn aus."
2513
 
2514
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1489
2515
  msgctxt "dhl"
2516
  msgid "Do only delivery to named person."
2517
  msgstr ""
2518
  "Lasse Pakete nur an den Empfänger persönlich oder an eine bevollmächtigte "
2519
  "Person übergeben."
2520
 
2521
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1496
2522
  msgctxt "dhl"
2523
  msgid "Bulky Goods"
2524
  msgstr "Sperrgut"
2525
 
2526
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1497
2527
  msgctxt "dhl"
2528
  msgid "Deliver as bulky goods."
2529
  msgstr "Sende Pakete als Sperrgut."
2530
 
2531
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1504
2532
  msgctxt "dhl"
2533
  msgid "Minimum age (Visual check)"
2534
  msgstr "Mindestalter (Visuell)"
2535
 
2536
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1510
2537
  msgctxt "dhl"
2538
  msgid "Choose this option if you want to let DHL check your customer's age."
2539
  msgstr ""
2540
  "Wähle diese Option aus, wenn du das Alter durch DHL prüfen lassen möchtest."
2541
 
2542
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1513
2543
  msgctxt "dhl"
2544
  msgid "Sync (Visual Check)"
2545
  msgstr "Synchronisation (Visuell)"
2546
 
2547
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1514
2548
  msgctxt "dhl"
2549
  msgid "Visually verify age if shipment contains applicable items."
2550
  msgstr ""
2551
  "Aktiviere die Alterssichtprüfung, falls die Sendung zu prüfende Positionen "
2552
  "beinhaltet."
2553
 
2554
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1514
2555
  #, php-format
2556
  msgctxt "dhl"
2557
  msgid ""
2564
  "Alterssichtprüfung automatisch aktiviert, falls eine Sendung zu prüfenden "
2565
  "Produkte beinhaltet."
2566
 
2567
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1514
2568
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1531
2569
  msgctxt "dhl"
2570
  msgid "age verification checkbox"
2571
  msgstr "Checkbox zur Altersprüfung"
2572
 
2573
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1521
2574
  msgctxt "dhl"
2575
  msgid "Minimum age (Ident check)"
2576
  msgstr "Mindestalter (Identität)"
2577
 
2578
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1527
2579
  msgctxt "dhl"
2580
  msgid ""
2581
  "Choose this option if you want to let DHL check your customer's identity and "
2585
  "lassen möchtest."
2586
 
2587
  # @ woocommerce-germanized
2588
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1530
2589
  msgctxt "dhl"
2590
  msgid "Sync (Ident Check)"
2591
  msgstr "Synchronisation (Identität)"
2592
 
2593
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1531
2594
  msgctxt "dhl"
2595
  msgid "Verify identity and age if shipment contains applicable items."
2596
  msgstr ""
2597
  "Aktiviere die Identitätsprüfung, falls die Sendung zu prüfende Positionen "
2598
  "beinhaltet."
2599
 
2600
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1531
2601
  #, php-format
2602
  msgctxt "dhl"
2603
  msgid ""
2610
  "Identitätsprüfung automatisch aktiviert, falls eine Sendung zu prüfenden "
2611
  "Produkte beinhaltet."
2612
 
2613
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1539
2614
  msgctxt "dhl"
2615
  msgid "Premium delivery for international shipments."
2616
  msgstr "Premium Lieferung für internationale Sendungen."
2617
 
2618
  # @ woocommerce-germanized
2619
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1547
2620
  msgctxt "dhl"
2621
  msgid "Bank Account"
2622
  msgstr "Bankkonto"
2623
 
2624
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1547
2625
  msgctxt "dhl"
2626
  msgid "Enter your bank details needed for services that use COD."
2627
  msgstr ""
2629
  "werden sollen."
2630
 
2631
  # @ woocommerce-germanized
2632
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1550
2633
  msgctxt "dhl"
2634
  msgid "Holder"
2635
  msgstr "Kontoinhaber"
2636
 
2637
  # @ woocommerce-germanized
2638
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1558
2639
  msgctxt "dhl"
2640
  msgid "Bank Name"
2641
  msgstr "Name der Bank"
2642
 
2643
  # @ woocommerce-germanized
2644
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1566
2645
  msgctxt "dhl"
2646
  msgid "IBAN"
2647
  msgstr "IBAN"
2648
 
2649
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1574
2650
  msgctxt "dhl"
2651
  msgid "BIC"
2652
  msgstr "BIC"
2653
 
2654
  # @ woocommerce-germanized
2655
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1582
2656
  msgctxt "dhl"
2657
  msgid "Payment Reference"
2658
  msgstr "Zahlungsreferenz"
2659
 
2660
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1587
2661
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1597
2662
  #, php-format
2663
  msgctxt "dhl"
2664
  msgid ""
2669
  "%s. Der Text ist auf 35 Zeichen begrenzt."
2670
 
2671
  # @ woocommerce-germanized
2672
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1592
2673
  msgctxt "dhl"
2674
  msgid "Payment Reference 2"
2675
  msgstr "Zahlungsreferenz 2"
2676
 
2677
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1627
2678
  msgctxt "dhl"
2679
  msgid "Customer Number"
2680
  msgstr "Kundennummer"
2681
 
2682
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1628
2683
  msgctxt "dhl"
2684
  msgid ""
2685
  "Insert your DHL business customer number (EKP) here. If you are not yet a "
2688
  "Füge hier deine DHL Kundennummer (EKP) ein. Wenn du noch kein Geschäftskunde "
2689
  "bist, solltest du dich zuerst als Geschäftskunde bei DHL registrieren."
2690
 
2691
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1641
2692
  msgctxt "dhl"
2693
  msgid "API Access"
2694
  msgstr "API Zugriff"
2695
 
2696
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1642
2697
  msgctxt "dhl"
2698
  msgid ""
2699
  "To create labels and embed DHL services, our software needs access to the "
2703
  "Software Zugang zur API. Du solltest hier deine Zugangsdaten zum DHL "
2704
  "Geschäftskundenportal eingeben."
2705
 
2706
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1661
2707
  msgctxt "dhl"
2708
  msgid ""
2709
  "If you want to provide your customers with inlay return labels for your "
2712
  "Wenn du Beilageretouren-Labels zu deinen Sendungen hinzufügen möchtest, "
2713
  "solltest du diese Funktion standardmäßig aktivieren."
2714
 
2715
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1675
2716
  msgctxt "dhl"
2717
  msgid ""
2718
  "If you want to create DHL labels to returns you should activate this "
2723
  "aktivieren. Stelle sicher, dass DHL Online Retoure in deinem Vertrag "
2724
  "freigeschaltet ist."
2725
 
2726
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1688
2727
  msgctxt "dhl"
2728
  msgid "Age verification"
2729
  msgstr "Altersverifikation"
2730
 
2731
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1689
2732
  msgctxt "dhl"
2733
  msgid ""
2734
  "Use this feature to sync the Germanized age verification checkbox with the "
2741
  "„Alterssichtprüfung“ von DHL automatisch aktiviert."
2742
 
2743
  # @ woocommerce-germanized
2744
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1707
2745
  msgctxt "dhl"
2746
  msgid "Automation"
2747
  msgstr "Automatisierung"
2748
 
2749
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1708
2750
  msgctxt "dhl"
2751
  msgid ""
2752
  "You might want to save some time and let Germanized generate labels "
2756
  "automatisch erzeugen lassen, sobald eine Sendung in einen bestimmten Status "
2757
  "wechselt."
2758
 
2759
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1727
2760
  msgctxt "dhl"
2761
  msgid ""
2762
  "Let your customers choose a delivery day (if the service is available at the "
2765
  "Lasse deine Kunden einen Liefertag (falls der Service für die Kundenadresse "
2766
  "zur Verfügung steht) für die Lieferung in der Kasse auswählen."
2767
 
2768
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1741
2769
  msgctxt "dhl"
2770
  msgid ""
2771
  "Optionally charge your customers an additional fee for preferred services "
2774
  "Optional kannst du die Gebühr für die Auswahl des Liefertages oder anderer "
2775
  "Wunschzustellung-Services an deine Kunden weiterreichen."
2776
 
2777
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1755
2778
  msgctxt "dhl"
2779
  msgid ""
2780
  "Allow your customers to send their parcels to a drop-off location e.g. a "
2783
  "Lasse deine Kunden einen Ablageort für die Abgabe ihres Pakets in der Kasse "
2784
  "auswählen. Dieser Service wird von DHL nicht zusätzlich berechnet."
2785
 
2786
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1774
2787
  msgctxt "dhl"
2788
  msgid ""
2789
  "Allow your customers to choose packstation (and/or other DHL location types "
2792
  "Lasse deine Kunden eine Packstation (und/oder andere DHL Standorte, wie im "
2793
  "Folgenden konfiguriert) als Lieferadresse auswählen."
2794
 
2795
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1788
2796
  msgctxt "dhl"
2797
  msgid ""
2798
  "This option adds a map overlay view to let your customers choose a DHL "
5162
  "Dein Rücksendeantrag wurde erfolgreich abgeschickt. Du erhältst in Kürze "
5163
  "eine E-Mail, die dich über die nächsten Schritte informiert."
5164
 
5165
+ #: woocommerce-germanized-shipments/src/FormHandler.php:118
5166
+ #: woocommerce-germanized-shipments/src/FormHandler.php:122
5167
  msgctxt "shipments"
5168
  msgid "Error:"
5169
  msgstr "Fehler:"
5170
 
5171
+ #: woocommerce-germanized-shipments/src/FormHandler.php:118
5172
  msgctxt "shipments"
5173
  msgid "We were not able to find a matching order."
5174
  msgstr "Wir konnten leider keine passende Bestellung finden."
5175
 
5176
+ #: woocommerce-germanized-shipments/src/FormHandler.php:122
5177
  msgctxt "shipments"
5178
  msgid ""
5179
  "This order is currently not eligible for returns. Please contact us for "
5182
  "Diese Bestellung ist aktuell nicht für Rücksendungen verfügbar. Bitte "
5183
  "kontaktiere uns für weitere Details."
5184
 
5185
+ #: woocommerce-germanized-shipments/src/FormHandler.php:131
5186
  msgctxt "shipments"
5187
  msgid ""
5188
  "Thank you. You'll receive an email containing a link to create a new return "
5191
  "Vielen Dank. Du erhältst eine E-Mail mit einem Link über den du deinen "
5192
  "Rücksendeantrag stellen kannst."
5193
 
5194
+ #: woocommerce-germanized-shipments/src/FormHandler.php:165
5195
  msgctxt "shipments"
5196
  msgid "You are not allowed to add returns to that order."
5197
  msgstr ""
5199
  "hinzuzufügen."
5200
 
5201
  # @ woocommerce-germanized
5202
+ #: woocommerce-germanized-shipments/src/FormHandler.php:170
5203
  msgctxt "shipments"
5204
  msgid "Sorry, but this order does not support returns any longer."
5205
  msgstr "Entschuldigung, diese Sendung kann nicht mehr zurückgesendet werden."
5206
 
5207
+ #: woocommerce-germanized-shipments/src/FormHandler.php:175
5208
+ #: woocommerce-germanized-shipments/src/FormHandler.php:211
5209
  msgctxt "shipments"
5210
  msgid "Please choose one or more items from the list."
5211
  msgstr "Bitte wähle ein oder mehrere Produkt(e) aus."
5212
 
5213
+ #: woocommerce-germanized-shipments/src/FormHandler.php:191
5214
  msgctxt "shipments"
5215
  msgid "The return reason you have chosen does not exist."
5216
  msgstr "Der Rücksendegrund existiert nicht."
5217
 
5218
+ #: woocommerce-germanized-shipments/src/FormHandler.php:194
5219
  msgctxt "shipments"
5220
  msgid "Please choose a return reason from the list."
5221
  msgstr "Bitte wähle aus der Liste einen Grund für die Rücksendung aus."
5222
 
5223
+ #: woocommerce-germanized-shipments/src/FormHandler.php:199
5224
  msgctxt "shipments"
5225
  msgid ""
5226
  "Please check your item quantities. Quantities must not exceed maximum "
5228
  msgstr ""
5229
  "Bitte überprüfe deine Angaben zur Anzahl. Die angegebene Anzahl ist zu hoch."
5230
 
5231
+ #: woocommerce-germanized-shipments/src/FormHandler.php:246
5232
  msgctxt "shipments"
5233
  msgid ""
5234
  "There was an error while creating the return. Please contact us for further "
7771
  # @ woocommerce
7772
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:187
7773
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:230
7774
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:141
7775
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:154
7776
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:143
7777
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:156
7778
  #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:621
7779
  #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:634
7780
  #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:246
9689
  "Passe Germanized an deine Bedürfnisse an. Die Einstellungen kannst du später "
9690
  "jederzeit ändern."
9691
 
9692
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:147
9693
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:160
9694
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:149
9695
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:162
9696
+ msgid "Formatted title"
9697
+ msgstr "Formatierter Titel"
9698
+
9699
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:168
9700
  msgid "Has been activated via DOI?"
9701
  msgstr "Aktiviert via DOI?"
9702
 
9703
  # @ woocommerce-germanized
9704
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:176
9705
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:176
9706
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:39
9707
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:939
9708
  #: woocommerce-germanized/includes/gateways/direct-debit/views/html-export.php:30
9710
  msgstr "Lastschrift"
9711
 
9712
  # @ woocommerce-germanized
9713
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:181
9714
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:181
9715
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:87
9716
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:119
9717
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:168
9723
  msgstr "Kontoinhaber"
9724
 
9725
  # @ woocommerce-germanized
9726
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:186
9727
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:186
9728
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:88
9729
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:120
9730
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:169
9737
  msgstr "IBAN"
9738
 
9739
  # @ woocommerce-germanized
9740
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:191
9741
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:191
9742
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:89
9743
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:121
9744
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:170
9749
  msgid "BIC/SWIFT"
9750
  msgstr "BIC/SWIFT"
9751
 
9752
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:169
9753
  msgid "Parcel Delivery Data Transfer"
9754
  msgstr "Paketdienstleister Datenweitergabe"
9755
 
9756
  # @ woocommerce-germanized
9757
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:196
9758
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:136
9759
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:618
9760
  msgid "Mandate Reference ID"
10189
  msgstr "Danke, dass du ein Konto bei %s erstellt hast."
10190
 
10191
  # @ woocommerce-germanized
10192
+ #: woocommerce-germanized/includes/class-wc-gzd-emails.php:1291
10193
  msgctxt "revocation-form"
10194
  msgid "Forward your withdrawal online"
10195
  msgstr "Deinen Widerruf online erklären"
12139
 
12140
  # @ woocommerce-germanized
12141
  #: woocommerce-germanized/templates/checkboxes/default.php:47
12142
+ #: woocommerce-germanized/templates/checkout/terms-sepa.php:48
12143
  #: woocommerce-germanized/templates/checkout/terms.php:66
12144
  msgid "required"
12145
  msgstr "erforderlich"
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: 2022-01-28 12:09+0100\n"
6
- "PO-Revision-Date: 2022-01-28 12:10+0100\n"
7
  "Last-Translator: Dennis Nissle <info@vendidero.de>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE@formal\n"
@@ -825,13 +825,13 @@ msgstr "Retoure #{shipment_id} zur Bestellung {order_id}"
825
  #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:222
826
  msgctxt "dhl"
827
  msgid "Return shipment #{shipment_id} to order #{order_id}"
828
- msgstr "Retourensendung #{shipment_id} zur Bestellung #{order_id}"
829
 
830
  # @ woocommerce-germanized
831
  #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:291
832
  #: woocommerce-germanized-dhl/src/ParcelLocator.php:904
833
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1071
834
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1755
835
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:38
836
  msgctxt "dhl"
837
  msgid "Packstation"
@@ -862,45 +862,45 @@ msgid "DHL Retoure Online"
862
  msgstr "DHL Retoure Online"
863
 
864
  # @ woocommerce-germanized
865
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:744
866
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:768
867
  msgctxt "dhl"
868
  msgid "DHL Paket International"
869
  msgstr "DHL Paket International"
870
 
871
  # @ woocommerce-germanized
872
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:748
873
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:774
874
  msgctxt "dhl"
875
  msgid "DHL Warenpost International"
876
  msgstr "DHL Warenpost International"
877
 
878
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:769
879
  msgctxt "dhl"
880
  msgid "DHL Paket Connect"
881
  msgstr "DHL Paket Connect"
882
 
883
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:770
884
  msgctxt "dhl"
885
  msgid "DHL Europaket (B2B)"
886
  msgstr "DHL Europaket (B2B)"
887
 
888
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:843
889
  msgctxt "dhl"
890
  msgid "DHL Paket"
891
  msgstr "DHL Paket"
892
 
893
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:844
894
  msgctxt "dhl"
895
  msgid "DHL Paket PRIO"
896
  msgstr "DHL Paket PRIO"
897
 
898
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:845
899
  msgctxt "dhl"
900
  msgid "DHL Paket Taggleich"
901
  msgstr "DHL Paket Taggleich"
902
 
903
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:846
904
  msgctxt "dhl"
905
  msgid "DHL Warenpost"
906
  msgstr "DHL Warenpost"
@@ -1007,37 +1007,37 @@ msgid "DHL & Post"
1007
  msgstr "DHL & Post"
1008
 
1009
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:31
1010
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1219
1011
  msgctxt "dhl"
1012
  msgid "Monday"
1013
  msgstr "Montag"
1014
 
1015
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:32
1016
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1231
1017
  msgctxt "dhl"
1018
  msgid "Tuesday"
1019
  msgstr "Dienstag"
1020
 
1021
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:33
1022
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1242
1023
  msgctxt "dhl"
1024
  msgid "Wednesday"
1025
  msgstr "Mittwoch"
1026
 
1027
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:34
1028
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1253
1029
  msgctxt "dhl"
1030
  msgid "Thursday"
1031
  msgstr "Donnerstag"
1032
 
1033
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:35
1034
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1264
1035
  msgctxt "dhl"
1036
  msgid "Friday"
1037
  msgstr "Freitag"
1038
 
1039
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:36
1040
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1275
1041
  msgctxt "dhl"
1042
  msgid "Saturday"
1043
  msgstr "Samstag"
@@ -1217,7 +1217,7 @@ msgid "Refund API could not be instantiated"
1217
  msgstr "Die API für Rückerstattungen konnte nicht initialisiert werden"
1218
 
1219
  #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:727
1220
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:332
1221
  #: woocommerce-germanized-dhl/src/Api/ReturnRest.php:34
1222
  #, php-format
1223
  msgctxt "dhl"
@@ -1249,7 +1249,12 @@ msgctxt "dhl"
1249
  msgid "Invalid stamp response."
1250
  msgstr "Fehlerhafte Label Rückmeldung."
1251
 
1252
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:116
 
 
 
 
 
1253
  msgctxt "dhl"
1254
  msgid ""
1255
  "Your DHL API credentials seem to be invalid. Please check your DHL settings."
@@ -1257,7 +1262,7 @@ msgstr ""
1257
  "Ihre DHL API Zugangsdaten scheinen fehlerhaft zu sein. Bitte prüfen Sie Ihre "
1258
  "DHL Einstellungen."
1259
 
1260
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:120
1261
  msgctxt "dhl"
1262
  msgid ""
1263
  "Your products are missing data relevant for custom declarations. Please "
@@ -1268,13 +1273,13 @@ msgstr ""
1268
  "füllen Sie die fehlenden DHL Felder (HS Code, Herstellerland) in Ihren "
1269
  "Produktdaten unter Versand aus."
1270
 
1271
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:130
1272
  #, php-format
1273
  msgctxt "dhl"
1274
  msgid "There was an error contacting the DHL API: %s."
1275
  msgstr "Beim Aufruf der DHL API gab es einen Fehler: %s."
1276
 
1277
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:133
1278
  msgctxt "dhl"
1279
  msgid ""
1280
  "An error ocurred while contacting the DHL API. Please consider enabling the "
@@ -1283,7 +1288,7 @@ msgstr ""
1283
  "Beim Aufruf der DHL API ist ein Fehler aufgetreten. Bitte erwägen Sie den "
1284
  "Wechsel in den Sandbox-Modus."
1285
 
1286
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:155
1287
  msgctxt "dhl"
1288
  msgid ""
1289
  "There was an error generating the label. Please try again or consider "
@@ -1292,25 +1297,25 @@ msgstr ""
1292
  "Beim Erzeugen des Labels gab es einen Fehler. Bitte versuchen Sie es erneut "
1293
  "oder erwägen Sie den Wechsel in den Sandbox-Modus."
1294
 
1295
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:235
1296
  #: woocommerce-germanized-dhl/src/Api/ReturnRest.php:155
1297
  msgctxt "dhl"
1298
  msgid "Error while creating and uploading the label"
1299
  msgstr "Fehler beim Erstellen und hochladen des Labels"
1300
 
1301
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:279
1302
  #, php-format
1303
  msgctxt "dhl"
1304
  msgid "Could not delete label - %s"
1305
  msgstr "Das Label konnte nicht gelöscht werden - %s"
1306
 
1307
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:310
1308
  msgctxt "dhl"
1309
  msgid "Could not create account number - no product number."
1310
  msgstr ""
1311
  "Die Abrechnungsnummer konnte nicht erzeugt werden. Die Teilnahmenummer fehlt."
1312
 
1313
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:543
1314
  #, php-format
1315
  msgctxt "dhl"
1316
  msgid ""
@@ -1320,7 +1325,7 @@ msgstr ""
1320
  "Ihre Absenderadresse ist nicht komplett (%1$s). Bitte prüfen Sie Ihre <a "
1321
  "href=\"%2$s\">Einstellungen</a> und versuchen Sie es erneut."
1322
 
1323
- #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:647
1324
  #, php-format
1325
  msgctxt "dhl"
1326
  msgid "Only %s shipment items can be processed, your shipment has %s items."
@@ -1635,8 +1640,8 @@ msgstr "Erneut versuchen"
1635
  # @ woocommerce-germanized
1636
  #: woocommerce-germanized-dhl/src/ParcelServices.php:60
1637
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:242
1638
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1155
1639
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1708
1640
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:38
1641
  msgctxt "dhl"
1642
  msgid "Delivery day"
@@ -1651,8 +1656,8 @@ msgstr "Lieferzeit"
1651
  # @ woocommerce-germanized
1652
  #: woocommerce-germanized-dhl/src/ParcelServices.php:74
1653
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:252
1654
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1177
1655
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1736
1656
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:89
1657
  msgctxt "dhl"
1658
  msgid "Drop-off location"
@@ -1660,7 +1665,7 @@ msgstr "Ablageort"
1660
 
1661
  #: woocommerce-germanized-dhl/src/ParcelServices.php:79
1662
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:264
1663
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1186
1664
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:82
1665
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:98
1666
  msgctxt "dhl"
@@ -1730,7 +1735,7 @@ msgid "Valid address only"
1730
  msgstr "Nur valide Adressen"
1731
 
1732
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:211
1733
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1438
1734
  msgctxt "dhl"
1735
  msgid "GoGreen"
1736
  msgstr "GoGreen"
@@ -1759,7 +1764,7 @@ msgstr "Firma"
1759
 
1760
  # @ woocommerce-germanized
1761
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:308
1762
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:602
1763
  msgctxt "dhl"
1764
  msgid "Street"
1765
  msgstr "Straße"
@@ -1772,7 +1777,7 @@ msgstr "Hausnummer"
1772
 
1773
  # @ woocommerce-germanized
1774
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:330
1775
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:603
1776
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:27
1777
  msgctxt "dhl"
1778
  msgid "Postcode"
@@ -1780,7 +1785,7 @@ msgstr "Postleitzahl"
1780
 
1781
  # @ woocommerce-germanized
1782
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:339
1783
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:604
1784
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:30
1785
  msgctxt "dhl"
1786
  msgid "City"
@@ -1813,7 +1818,7 @@ msgid "No neighbor"
1813
  msgstr "Keine Nachbarschaftszustellung"
1814
 
1815
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:417
1816
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1470
1817
  msgctxt "dhl"
1818
  msgid "Named person only"
1819
  msgstr "Persönliche Übergabe"
@@ -1839,52 +1844,52 @@ msgctxt "dhl"
1839
  msgid "Minimum age"
1840
  msgstr "Mindestalter"
1841
 
1842
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:476
1843
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1520
1844
  msgctxt "dhl"
1845
  msgid "Premium"
1846
  msgstr "Premium"
1847
 
1848
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:537
1849
  msgctxt "dhl"
1850
  msgid "Receiver is missing or does not exist."
1851
  msgstr "Empfänger fehlt oder existiert nicht."
1852
 
1853
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:609
1854
  #, php-format
1855
  msgctxt "dhl"
1856
  msgid "%s of the return address is a mandatory field."
1857
  msgstr "%s der Rücksendeadresse ist ein Pflichtfeld."
1858
 
1859
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:614
1860
  msgctxt "dhl"
1861
  msgid "Please either add a return company or name."
1862
  msgstr ""
1863
  "Bitte geben Sie entweder einen Firmennamen oder Namen für die "
1864
  "Rücksendeadresse an."
1865
 
1866
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:634
1867
  msgctxt "dhl"
1868
  msgid "Error while parsing delivery day."
1869
  msgstr "Fehler beim Einlesen des Liefertages."
1870
 
1871
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:661
1872
  msgctxt "dhl"
1873
  msgid "The visual min age check is invalid."
1874
  msgstr "Das Alter der Alterssichtprüfung ist ungültig."
1875
 
1876
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:685
1877
  msgctxt "dhl"
1878
  msgid "The ident min age check is invalid."
1879
  msgstr "Das Alter des Ident-Checks ist ungültig."
1880
 
1881
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:690
1882
  msgctxt "dhl"
1883
  msgid "There was an error parsing the date of birth for the identity check."
1884
  msgstr ""
1885
  "Beim Einlesen des Geburtsdatums für den Ident-Check trat ein Problem auf."
1886
 
1887
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:695
1888
  msgctxt "dhl"
1889
  msgid ""
1890
  "Either a minimum age or a date of birth must be added to the ident check."
@@ -1893,19 +1898,31 @@ msgstr ""
1893
  "hinzugefügt werden."
1894
 
1895
  # @ woocommerce-germanized
1896
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:712
1897
  #, php-format
1898
  msgctxt "dhl"
1899
  msgid "%s duties element does not exist."
1900
  msgstr "%s Zollabgabe existiert nicht."
1901
 
1902
  # @ woocommerce-germanized
1903
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:969
 
 
 
 
 
 
 
 
 
 
 
 
1904
  msgctxt "dhl"
1905
  msgid "Customer Number (EKP)"
1906
  msgstr "Kundennummer (EKP)"
1907
 
1908
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:971
1909
  #, php-format
1910
  msgctxt "dhl"
1911
  msgid ""
@@ -1915,33 +1932,33 @@ msgstr ""
1915
  "Ihre 10-stellige DHL Kundennummer (EKP). Finden Sie Ihre %s im DHL "
1916
  "Geschäftskundenportal."
1917
 
1918
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:971
1919
  msgctxt "dhl"
1920
  msgid "customer number"
1921
  msgstr "Kundennummer"
1922
 
1923
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:980
1924
  msgctxt "dhl"
1925
  msgid "API"
1926
  msgstr "API"
1927
 
1928
  # @ woocommerce-germanized
1929
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:983
1930
  msgctxt "dhl"
1931
  msgid "Enable Sandbox"
1932
  msgstr "Sandbox aktivieren"
1933
 
1934
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:984
1935
  msgctxt "dhl"
1936
  msgid "Activate Sandbox mode for testing purposes."
1937
  msgstr "Aktiviere den Sandbox Modus."
1938
 
1939
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:991
1940
  msgctxt "dhl"
1941
  msgid "Live Username"
1942
  msgstr "Benutzer"
1943
 
1944
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:993
1945
  #, php-format
1946
  msgctxt "dhl"
1947
  msgid ""
@@ -1951,21 +1968,21 @@ msgstr ""
1951
  "Ihr Benutzername (<strong>nicht</strong> die E-Mail-Adresse) zum DHL "
1952
  "Geschäftskundenportal. Bitte testen Sie Ihre Zugangsdaten vorab %s."
1953
 
1954
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:993
1955
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1003
1956
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1012
1957
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1021
 
 
1958
  msgctxt "dhl"
1959
  msgid "here"
1960
  msgstr "hier"
1961
 
1962
  # @ woocommerce-germanized
1963
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1001
1964
  msgctxt "dhl"
1965
  msgid "Live Password"
1966
  msgstr "Passwort"
1967
 
1968
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1003
1969
  #, php-format
1970
  msgctxt "dhl"
1971
  msgid ""
@@ -1977,12 +1994,12 @@ msgstr ""
1977
  "der Gültigkeit des Passworts nach 3 (Standard-Benutzer) bzw. 12 (System-"
1978
  "Benutzer) Monaten und testen Sie Ihre Zugangsdaten vorab %s."
1979
 
1980
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1010
1981
  msgctxt "dhl"
1982
  msgid "Sandbox Username"
1983
  msgstr "Sandbox Benutzername"
1984
 
1985
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1012
1986
  #, php-format
1987
  msgctxt "dhl"
1988
  msgid ""
@@ -1992,12 +2009,12 @@ msgstr ""
1992
  "Ihr Benutzername (<strong>nicht</strong> die E-Mail-Adresse) zum DHL "
1993
  "Entwicklerportal. Bitte testen Sie Ihre Zugangsdaten vorab %s."
1994
 
1995
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1019
1996
  msgctxt "dhl"
1997
  msgid "Sandbox Password"
1998
  msgstr "Sandbox Passwort"
1999
 
2000
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1021
2001
  #, php-format
2002
  msgctxt "dhl"
2003
  msgid ""
@@ -2007,78 +2024,78 @@ msgstr ""
2007
  "Ihr Passwort zum DHL Entwicklerportal. Bitte testen Sie Ihre Zugangsdaten "
2008
  "vorab %s."
2009
 
2010
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1029
2011
  msgctxt "dhl"
2012
  msgid "Products and Participation Numbers"
2013
  msgstr "Produkte und Teilnahmenummern"
2014
 
2015
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1046
2016
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1402
2017
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1642
2018
  msgctxt "dhl"
2019
  msgid "Inlay Returns"
2020
  msgstr "Beilageretouren"
2021
 
2022
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1058
2023
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:142
2024
  msgctxt "dhl"
2025
  msgid "Tracking"
2026
  msgstr "Sendungsverfolgung"
2027
 
2028
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1072
2029
  msgctxt "dhl"
2030
  msgid "Enable delivery to Packstation."
2031
  msgstr "Aktiviere den Versand an Packstationen."
2032
 
2033
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1073
2034
  msgctxt "dhl"
2035
  msgid "Let customers choose a Packstation as delivery address."
2036
  msgstr "Kunden eine Packstation als Lieferadresse auswählen lassen."
2037
 
2038
  # @ woocommerce-germanized
2039
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1081
2040
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:50
2041
  msgctxt "dhl"
2042
  msgid "Postoffice"
2043
  msgstr "Postfiliale"
2044
 
2045
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1082
2046
  msgctxt "dhl"
2047
  msgid "Enable delivery to Post Offices."
2048
  msgstr "Aktiviere den Versand an Postfilialen."
2049
 
2050
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1083
2051
  msgctxt "dhl"
2052
  msgid "Let customers choose a Post Office as delivery address."
2053
  msgstr "Kunden eine Postfiliale als Lieferadresse auswählen lassen."
2054
 
2055
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1091
2056
  msgctxt "dhl"
2057
  msgid "Parcel Shop"
2058
  msgstr "Paketshop"
2059
 
2060
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1092
2061
  msgctxt "dhl"
2062
  msgid "Enable delivery to Parcel Shops."
2063
  msgstr "Lieferung an Paketshops aktivieren."
2064
 
2065
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1093
2066
  msgctxt "dhl"
2067
  msgid "Let customers choose a Parcel Shop as delivery address."
2068
  msgstr "Kunden einen Paketshop als Lieferadresse auswählen lassen."
2069
 
2070
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1101
2071
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1769
2072
  msgctxt "dhl"
2073
  msgid "Map"
2074
  msgstr "Karte"
2075
 
2076
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1102
2077
  msgctxt "dhl"
2078
  msgid "Let customers find a DHL location on a map."
2079
  msgstr "Lasse Kunden einen DHL Standort auf der Karte auswählen."
2080
 
2081
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1102
2082
  msgctxt "dhl"
2083
  msgid ""
2084
  "Enable this option to let your customers choose a pickup option from a map "
@@ -2089,12 +2106,12 @@ msgstr ""
2089
  "anhand einer Karten in der Kasse zu ermöglichen. Wenn diese Option "
2090
  "deaktiviert ist, wird stattdessen auf die DHL Website verwiesen."
2091
 
2092
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1111
2093
  msgctxt "dhl"
2094
  msgid "Google Maps Key"
2095
  msgstr "Google Maps Schlüssel"
2096
 
2097
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1116
2098
  #, php-format
2099
  msgctxt "dhl"
2100
  msgid ""
@@ -2104,27 +2121,27 @@ msgstr ""
2104
  "Um eine Karte integrieren zu können, benötigen Siee du einen gültigen API-"
2105
  "Schlüssel für Google Maps. Sie können %s."
2106
 
2107
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1116
2108
  msgctxt "dhl"
2109
  msgid "retrieve a new one"
2110
  msgstr "hier einen neuen erstellen"
2111
 
2112
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1122
2113
  msgctxt "dhl"
2114
  msgid "Limit results"
2115
  msgstr "Suchergebnisse begrenzen"
2116
 
2117
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1127
2118
  msgctxt "dhl"
2119
  msgid "Limit the number of DHL locations shown on the map"
2120
  msgstr "Begrenzt die Anzahl der angezeigten DHL Standorte auf der Karte"
2121
 
2122
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1156
2123
  msgctxt "dhl"
2124
  msgid "Enable delivery day delivery."
2125
  msgstr "Aktiviere die Lieferung am Liefertag."
2126
 
2127
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1156
2128
  msgctxt "dhl"
2129
  msgid ""
2130
  "Enabling this option will display options for the user to select their "
@@ -2134,13 +2151,13 @@ msgstr ""
2134
  "Kasse."
2135
 
2136
  # @ woocommerce-germanized
2137
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1164
2138
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1722
2139
  msgctxt "dhl"
2140
  msgid "Fee"
2141
  msgstr "Gebühr"
2142
 
2143
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1166
2144
  msgctxt "dhl"
2145
  msgid ""
2146
  "Insert gross value as surcharge for delivery day delivery. Insert 0 to offer "
@@ -2150,12 +2167,12 @@ msgstr ""
2150
  "Setzen Sie den Wert auf 0 um den Service kostenlos anzubieten."
2151
 
2152
  # @ woocommerce-germanized
2153
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1178
2154
  msgctxt "dhl"
2155
  msgid "Enable drop-off location delivery."
2156
  msgstr "Lieferung an einen Ablageort aktivieren."
2157
 
2158
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1178
2159
  msgctxt "dhl"
2160
  msgid ""
2161
  "Enabling this option will display options for the user to select their "
@@ -2164,12 +2181,12 @@ msgstr ""
2164
  "Diese Option aktiviert die Auswahl eines Wunschorts durch den Kunden in der "
2165
  "Kasse ."
2166
 
2167
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1187
2168
  msgctxt "dhl"
2169
  msgid "Enable delivery to a neighbor."
2170
  msgstr "Lieferung an Nachbarn aktivieren."
2171
 
2172
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1187
2173
  msgctxt "dhl"
2174
  msgid ""
2175
  "Enabling this option will display options for the user to deliver to their "
@@ -2178,12 +2195,12 @@ msgstr ""
2178
  "Diese Option aktiviert die Auswahl eines Wunschnachbarn durch den Kunden in "
2179
  "der Kasse."
2180
 
2181
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1195
2182
  msgctxt "dhl"
2183
  msgid "Cut-off time"
2184
  msgstr "Cut-off-Zeit"
2185
 
2186
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1200
2187
  msgctxt "dhl"
2188
  msgid ""
2189
  "The cut-off time is the latest possible order time up to which the minimum "
@@ -2196,12 +2213,12 @@ msgstr ""
2196
  "Nach Überschreitung dieses Zeitpunktes, wird der früheste verfügbare "
2197
  "Liefertag in der Kasse um einen Tag erhöht (Tag der Bestellung + 3 Werktage)."
2198
 
2199
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1206
2200
  msgctxt "dhl"
2201
  msgid "Preparation days"
2202
  msgstr "Bearbeitungstage"
2203
 
2204
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1211
2205
  msgctxt "dhl"
2206
  msgid ""
2207
  "If you need more time to prepare your shipments you might want to add a "
@@ -2212,23 +2229,23 @@ msgstr ""
2212
  "hier eine statische Anzahl an Tagen hinterlegen, die zum frühesten "
2213
  "auswählbaren Liefertag hinzugefügt werden."
2214
 
2215
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1218
2216
  msgctxt "dhl"
2217
  msgid "Exclude days of transfer"
2218
  msgstr "Übergabetage ausschließen"
2219
 
2220
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1220
2221
  msgctxt "dhl"
2222
  msgid "Exclude days from transferring shipments to DHL."
2223
  msgstr "Schließen Sie bestimmte Wochentage für die Übergabe an DHL aus."
2224
 
2225
  # @ woocommerce-germanized
2226
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1286
2227
  msgctxt "dhl"
2228
  msgid "Exclude gateways"
2229
  msgstr "Zahlungsarten ausschließen"
2230
 
2231
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1288
2232
  msgctxt "dhl"
2233
  msgid "Select payment gateways to be excluded from showing preferred services."
2234
  msgstr ""
@@ -2236,19 +2253,19 @@ msgstr ""
2236
  "zur Verfügung stehen sollen."
2237
 
2238
  # @ woocommerce-germanized
2239
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1312
2240
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:178
2241
  msgctxt "dhl"
2242
  msgid "Products"
2243
  msgstr "Produkte"
2244
 
2245
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1315
2246
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:198
2247
  msgctxt "dhl"
2248
  msgid "Domestic Default Service"
2249
  msgstr "Nationaler Standard Service"
2250
 
2251
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1320
2252
  msgctxt "dhl"
2253
  msgid ""
2254
  "Please select your default DHL shipping service for domestic shipments that "
@@ -2260,13 +2277,13 @@ msgstr ""
2260
  "nachträglich ändern)."
2261
 
2262
  # @ woocommerce-germanized
2263
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1326
2264
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:209
2265
  msgctxt "dhl"
2266
  msgid "EU Default Service"
2267
  msgstr "Standard Service (EU)"
2268
 
2269
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1331
2270
  msgctxt "dhl"
2271
  msgid ""
2272
  "Please select your default DHL shipping service for EU shipments that you "
@@ -2277,13 +2294,13 @@ msgstr ""
2277
  "Ihre Kunden anbieten (Sie können das Produkt für jede einzelne Sendung "
2278
  "nachträglich ändern)."
2279
 
2280
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1337
2281
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:220
2282
  msgctxt "dhl"
2283
  msgid "Int. Default Service"
2284
  msgstr "Internationaler Standard Service"
2285
 
2286
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1342
2287
  msgctxt "dhl"
2288
  msgid ""
2289
  "Please select your default DHL shipping service for cross-border shipments "
@@ -2295,27 +2312,27 @@ msgstr ""
2295
  "Sendung nachträglich ändern)."
2296
 
2297
  # @ woocommerce-germanized
2298
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1348
2299
  msgctxt "dhl"
2300
  msgid "Default Duty"
2301
  msgstr "Standard Zoll"
2302
 
2303
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1353
2304
  msgctxt "dhl"
2305
  msgid "Please select a default duty type."
2306
  msgstr "Bitte wählen Sie eine Standard-Zollabrechnung aus."
2307
 
2308
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1360
2309
  msgctxt "dhl"
2310
  msgid "Codeable"
2311
  msgstr "Leitcodierbar"
2312
 
2313
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1361
2314
  msgctxt "dhl"
2315
  msgid "Generate label only if address can be automatically retrieved DHL."
2316
  msgstr "Erzeuge Labels nur dann, wenn die Adresse von DHL erkannt wird."
2317
 
2318
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1367
2319
  msgctxt "dhl"
2320
  msgid ""
2321
  "Choose this option if you want to make sure that by default labels are only "
@@ -2326,17 +2343,17 @@ msgstr ""
2326
  "ist."
2327
 
2328
  # @ woocommerce-germanized
2329
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1371
2330
  msgctxt "dhl"
2331
  msgid "Force email"
2332
  msgstr "E-Mail übertragen"
2333
 
2334
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1372
2335
  msgctxt "dhl"
2336
  msgid "Force transferring customer email to DHL."
2337
  msgstr "E-Mail-Adresse des Kunden immer an DHL übertragen."
2338
 
2339
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1372
2340
  #, php-format
2341
  msgctxt "dhl"
2342
  msgid ""
@@ -2356,17 +2373,17 @@ msgstr ""
2356
  "Sie diese Option aktivieren."
2357
 
2358
  # @ woocommerce-germanized
2359
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1381
2360
  msgctxt "dhl"
2361
  msgid "Custom shipper"
2362
  msgstr "Individueller Absender"
2363
 
2364
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1382
2365
  msgctxt "dhl"
2366
  msgid "Use a custom shipper address managed within your DHL business profile."
2367
  msgstr "Individuelle Absenderreferenz aus dem DHL Geschäftskonto verwenden."
2368
 
2369
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1382
2370
  #, php-format
2371
  msgctxt "dhl"
2372
  msgid ""
@@ -2379,12 +2396,12 @@ msgstr ""
2379
  "verwenden möchten."
2380
 
2381
  # @ woocommerce-germanized
2382
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1391
2383
  msgctxt "dhl"
2384
  msgid "Shipper reference"
2385
  msgstr "Absenderreferenz"
2386
 
2387
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1392
2388
  #, php-format
2389
  msgctxt "dhl"
2390
  msgid ""
@@ -2394,7 +2411,7 @@ msgstr ""
2394
  "Fügen Sie hier Ihre <a href=\"%s\" target=\"_blank\">individuelle "
2395
  "Absenderreferenz</a> aus dem DHL Geschäftskonto ein."
2396
 
2397
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1403
2398
  msgctxt "dhl"
2399
  msgid ""
2400
  "Additionally create inlay return labels for shipments that support returns."
@@ -2402,14 +2419,14 @@ msgstr ""
2402
  "Erzeuge zusätzlich Beilage-Retourenlabels für Sendungen die Retouren "
2403
  "unterstützen."
2404
 
2405
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1416
2406
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1419
2407
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1656
2408
  msgctxt "dhl"
2409
  msgid "Retoure"
2410
  msgstr "Retoure"
2411
 
2412
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1416
2413
  #, php-format
2414
  msgctxt "dhl"
2415
  msgid ""
@@ -2420,18 +2437,18 @@ msgstr ""
2420
  "API an. Stellen Sie sicher, dass Ihr %s DHL Retoure Online enthält."
2421
 
2422
  # @ woocommerce-germanized
2423
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1416
2424
  msgctxt "dhl"
2425
  msgid "contract"
2426
  msgstr "Vertrag"
2427
 
2428
  # @ woocommerce-germanized
2429
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1420
2430
  msgctxt "dhl"
2431
  msgid "Create retoure labels to return shipments."
2432
  msgstr "Retourenlabels zu Retourensendungen erstellen."
2433
 
2434
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1420
2435
  msgctxt "dhl"
2436
  msgid ""
2437
  "By enabling this option you might generate retoure labels for return "
@@ -2441,12 +2458,12 @@ msgstr ""
2441
  "Retourensendungen erstellen und diese per E-Mail an den Kunden weiterleiten."
2442
 
2443
  # @ woocommerce-germanized
2444
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1436
2445
  msgctxt "dhl"
2446
  msgid "Default Services"
2447
  msgstr "Standard-Services"
2448
 
2449
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1436
2450
  #, php-format
2451
  msgctxt "dhl"
2452
  msgid ""
@@ -2457,28 +2474,28 @@ msgstr ""
2457
  "werden sollen. Finden Sie mehr <a href=\"%s\" target=\"_blank\">Services</a> "
2458
  "heraus."
2459
 
2460
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1439
2461
  msgctxt "dhl"
2462
  msgid "Enable the GoGreen Service by default."
2463
  msgstr "Buche den GoGreen Service hinzu."
2464
 
2465
  # @ woocommerce-germanized
2466
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1446
2467
  msgctxt "dhl"
2468
  msgid "Additional Insurance"
2469
  msgstr "Transportversicherung"
2470
 
2471
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1447
2472
  msgctxt "dhl"
2473
  msgid "Add an additional insurance to labels."
2474
  msgstr "Füge eine Transportversicherung zur Sendung hinzu."
2475
 
2476
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1454
2477
  msgctxt "dhl"
2478
  msgid "Retail Outlet Routing"
2479
  msgstr "Filialrouting"
2480
 
2481
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1455
2482
  msgctxt "dhl"
2483
  msgid ""
2484
  "Send undeliverable items to nearest retail outlet instead of immediate "
@@ -2487,58 +2504,58 @@ msgstr ""
2487
  "Sende unzustellbare Sendungen in die nächstgelegene Filiale zur Abholung "
2488
  "anstelle diese direkt zurückzusenden."
2489
 
2490
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1462
2491
  msgctxt "dhl"
2492
  msgid "No Neighbor"
2493
  msgstr "Keine Nachbarschaftszustellung"
2494
 
2495
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1463
2496
  msgctxt "dhl"
2497
  msgid "Do not deliver to neighbors."
2498
  msgstr "Schließe eine Ersatzzustellung beim Nachbarn aus."
2499
 
2500
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1471
2501
  msgctxt "dhl"
2502
  msgid "Do only delivery to named person."
2503
  msgstr ""
2504
  "Lasse Pakete nur an den Empfänger persönlich oder an eine bevollmächtigte "
2505
  "Person übergeben."
2506
 
2507
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1478
2508
  msgctxt "dhl"
2509
  msgid "Bulky Goods"
2510
  msgstr "Sperrgut"
2511
 
2512
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1479
2513
  msgctxt "dhl"
2514
  msgid "Deliver as bulky goods."
2515
  msgstr "Sende Pakete als Sperrgut."
2516
 
2517
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1486
2518
  msgctxt "dhl"
2519
  msgid "Minimum age (Visual check)"
2520
  msgstr "Mindestalter (Visuell)"
2521
 
2522
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1492
2523
  msgctxt "dhl"
2524
  msgid "Choose this option if you want to let DHL check your customer's age."
2525
  msgstr ""
2526
  "Wählen Sie diese Option aus, wenn Sie das Alter durch DHL prüfen lassen "
2527
  "möchten."
2528
 
2529
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1495
2530
  msgctxt "dhl"
2531
  msgid "Sync (Visual Check)"
2532
  msgstr "Synchronisation (Visuell)"
2533
 
2534
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1496
2535
  msgctxt "dhl"
2536
  msgid "Visually verify age if shipment contains applicable items."
2537
  msgstr ""
2538
  "Aktiviere die Alterssichtprüfung, falls die Sendung zu prüfende Positionen "
2539
  "beinhaltet."
2540
 
2541
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1496
2542
  #, php-format
2543
  msgctxt "dhl"
2544
  msgid ""
@@ -2551,18 +2568,18 @@ msgstr ""
2551
  "Alterssichtprüfung automatisch aktiviert, falls eine Sendung zu prüfenden "
2552
  "Produkte beinhaltet."
2553
 
2554
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1496
2555
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1513
2556
  msgctxt "dhl"
2557
  msgid "age verification checkbox"
2558
  msgstr "Checkbox zur Altersprüfung"
2559
 
2560
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1503
2561
  msgctxt "dhl"
2562
  msgid "Minimum age (Ident check)"
2563
  msgstr "Mindestalter (Identität)"
2564
 
2565
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1509
2566
  msgctxt "dhl"
2567
  msgid ""
2568
  "Choose this option if you want to let DHL check your customer's identity and "
@@ -2572,19 +2589,19 @@ msgstr ""
2572
  "prüfen lassen möchten."
2573
 
2574
  # @ woocommerce-germanized
2575
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1512
2576
  msgctxt "dhl"
2577
  msgid "Sync (Ident Check)"
2578
  msgstr "Synchronisation (Identität)"
2579
 
2580
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1513
2581
  msgctxt "dhl"
2582
  msgid "Verify identity and age if shipment contains applicable items."
2583
  msgstr ""
2584
  "Aktiviere die Identitätsprüfung, falls die Sendung zu prüfende Positionen "
2585
  "beinhaltet."
2586
 
2587
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1513
2588
  #, php-format
2589
  msgctxt "dhl"
2590
  msgid ""
@@ -2597,18 +2614,18 @@ msgstr ""
2597
  "Identitätsprüfung automatisch aktiviert, falls eine Sendung zu prüfenden "
2598
  "Produkte beinhaltet."
2599
 
2600
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1521
2601
  msgctxt "dhl"
2602
  msgid "Premium delivery for international shipments."
2603
  msgstr "Premium Lieferung für internationale Sendungen."
2604
 
2605
  # @ woocommerce-germanized
2606
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1529
2607
  msgctxt "dhl"
2608
  msgid "Bank Account"
2609
  msgstr "Bankkonto"
2610
 
2611
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1529
2612
  msgctxt "dhl"
2613
  msgid "Enter your bank details needed for services that use COD."
2614
  msgstr ""
@@ -2616,36 +2633,36 @@ msgstr ""
2616
  "verwendet werden sollen."
2617
 
2618
  # @ woocommerce-germanized
2619
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1532
2620
  msgctxt "dhl"
2621
  msgid "Holder"
2622
  msgstr "Kontoinhaber"
2623
 
2624
  # @ woocommerce-germanized
2625
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1540
2626
  msgctxt "dhl"
2627
  msgid "Bank Name"
2628
  msgstr "Name der Bank"
2629
 
2630
  # @ woocommerce-germanized
2631
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1548
2632
  msgctxt "dhl"
2633
  msgid "IBAN"
2634
  msgstr "IBAN"
2635
 
2636
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1556
2637
  msgctxt "dhl"
2638
  msgid "BIC"
2639
  msgstr "BIC"
2640
 
2641
  # @ woocommerce-germanized
2642
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1564
2643
  msgctxt "dhl"
2644
  msgid "Payment Reference"
2645
  msgstr "Zahlungsreferenz"
2646
 
2647
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1569
2648
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1579
2649
  #, php-format
2650
  msgctxt "dhl"
2651
  msgid ""
@@ -2656,17 +2673,17 @@ msgstr ""
2656
  "hinzufügen: %s. Der Text ist auf 35 Zeichen begrenzt."
2657
 
2658
  # @ woocommerce-germanized
2659
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1574
2660
  msgctxt "dhl"
2661
  msgid "Payment Reference 2"
2662
  msgstr "Zahlungsreferenz 2"
2663
 
2664
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1609
2665
  msgctxt "dhl"
2666
  msgid "Customer Number"
2667
  msgstr "Kundennummer"
2668
 
2669
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1610
2670
  msgctxt "dhl"
2671
  msgid ""
2672
  "Insert your DHL business customer number (EKP) here. If you are not yet a "
@@ -2676,12 +2693,12 @@ msgstr ""
2676
  "Geschäftskunde sind, sollten Sie sich zuerst als Geschäftskunde bei DHL "
2677
  "registrieren."
2678
 
2679
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1623
2680
  msgctxt "dhl"
2681
  msgid "API Access"
2682
  msgstr "API Versionen"
2683
 
2684
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1624
2685
  msgctxt "dhl"
2686
  msgid ""
2687
  "To create labels and embed DHL services, our software needs access to the "
@@ -2691,7 +2708,7 @@ msgstr ""
2691
  "Software Zugang zur API. Sie sollten hier Ihre Zugangsdaten zum DHL "
2692
  "Geschäftskundenportal eingeben."
2693
 
2694
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1643
2695
  msgctxt "dhl"
2696
  msgid ""
2697
  "If you want to provide your customers with inlay return labels for your "
@@ -2700,7 +2717,7 @@ msgstr ""
2700
  "Wenn Sie Beilageretouren-Labels zu Ihren Sendungen hinzufügen möchten, "
2701
  "sollten Sie diese Funktion standardmäßig aktivieren."
2702
 
2703
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1657
2704
  msgctxt "dhl"
2705
  msgid ""
2706
  "If you want to create DHL labels to returns you should activate this "
@@ -2711,12 +2728,12 @@ msgstr ""
2711
  "aktivieren. Stellen Sie sicher, dass DHL Online Retoure in Ihrem Vertrag "
2712
  "freigeschaltet ist."
2713
 
2714
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1670
2715
  msgctxt "dhl"
2716
  msgid "Age verification"
2717
  msgstr "Altersverifikation"
2718
 
2719
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1671
2720
  msgctxt "dhl"
2721
  msgid ""
2722
  "Use this feature to sync the Germanized age verification checkbox with the "
@@ -2729,12 +2746,12 @@ msgstr ""
2729
  "„Alterssichtprüfung“ von DHL automatisch aktiviert."
2730
 
2731
  # @ woocommerce-germanized
2732
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1689
2733
  msgctxt "dhl"
2734
  msgid "Automation"
2735
  msgstr "Automatisierung"
2736
 
2737
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1690
2738
  msgctxt "dhl"
2739
  msgid ""
2740
  "You might want to save some time and let Germanized generate labels "
@@ -2744,7 +2761,7 @@ msgstr ""
2744
  "automatisch erzeugen lassen, sobald eine Sendung in einen bestimmten Status "
2745
  "wechselt."
2746
 
2747
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1709
2748
  msgctxt "dhl"
2749
  msgid ""
2750
  "Let your customers choose a delivery day (if the service is available at the "
@@ -2753,7 +2770,7 @@ msgstr ""
2753
  "Lassen Sie Ihre Kunden einen Liefertag (falls der Service für die "
2754
  "Kundenadresse zur Verfügung steht) für die Lieferung in der Kasse auswählen."
2755
 
2756
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1723
2757
  msgctxt "dhl"
2758
  msgid ""
2759
  "Optionally charge your customers an additional fee for preferred services "
@@ -2762,7 +2779,7 @@ msgstr ""
2762
  "Optional können Sie die Gebühr für die Auswahl des Liefertages oder anderer "
2763
  "Wunschzustellung-Services an Ihre Kunden weiterreichen."
2764
 
2765
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1737
2766
  msgctxt "dhl"
2767
  msgid ""
2768
  "Allow your customers to send their parcels to a drop-off location e.g. a "
@@ -2771,7 +2788,7 @@ msgstr ""
2771
  "Lassen Sie Ihre Kunden einen Ablageort für die Abgabe ihres Pakets in der "
2772
  "Kasse auswählen. Dieser Service wird von DHL nicht zusätzlich berechnet."
2773
 
2774
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1756
2775
  msgctxt "dhl"
2776
  msgid ""
2777
  "Allow your customers to choose packstation (and/or other DHL location types "
@@ -2780,7 +2797,7 @@ msgstr ""
2780
  "Lassen Sie Ihre Kunden eine Packstation (und/oder andere DHL Standorte, wie "
2781
  "im Folgenden konfiguriert) als Lieferadresse auswählen."
2782
 
2783
- #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1770
2784
  msgctxt "dhl"
2785
  msgid ""
2786
  "This option adds a map overlay view to let your customers choose a DHL "
@@ -5134,18 +5151,18 @@ msgstr ""
5134
  "Ihr Rücksendeantrag wurde erfolgreich abgeschickt. Sie erhalten in Kürze "
5135
  "eine E-Mail, die Sie über die nächsten Schritte informiert."
5136
 
5137
- #: woocommerce-germanized-shipments/src/FormHandler.php:99
5138
- #: woocommerce-germanized-shipments/src/FormHandler.php:103
5139
  msgctxt "shipments"
5140
  msgid "Error:"
5141
  msgstr "Fehler:"
5142
 
5143
- #: woocommerce-germanized-shipments/src/FormHandler.php:99
5144
  msgctxt "shipments"
5145
  msgid "We were not able to find a matching order."
5146
  msgstr "Wir konnten leider keine passende Bestellung finden."
5147
 
5148
- #: woocommerce-germanized-shipments/src/FormHandler.php:103
5149
  msgctxt "shipments"
5150
  msgid ""
5151
  "This order is currently not eligible for returns. Please contact us for "
@@ -5154,7 +5171,7 @@ msgstr ""
5154
  "Diese Bestellung ist aktuell nicht für Rücksendungen verfügbar. Bitte "
5155
  "kontaktieren Sie uns für weitere Details."
5156
 
5157
- #: woocommerce-germanized-shipments/src/FormHandler.php:112
5158
  msgctxt "shipments"
5159
  msgid ""
5160
  "Thank you. You'll receive an email containing a link to create a new return "
@@ -5163,7 +5180,7 @@ msgstr ""
5163
  "Vielen Dank. Sie erhalten eine E-Mail mit einem Link über den Sie Ihren "
5164
  "Rücksendeantrag stellen können."
5165
 
5166
- #: woocommerce-germanized-shipments/src/FormHandler.php:146
5167
  msgctxt "shipments"
5168
  msgid "You are not allowed to add returns to that order."
5169
  msgstr ""
@@ -5171,29 +5188,29 @@ msgstr ""
5171
  "hinzuzufügen."
5172
 
5173
  # @ woocommerce-germanized
5174
- #: woocommerce-germanized-shipments/src/FormHandler.php:151
5175
  msgctxt "shipments"
5176
  msgid "Sorry, but this order does not support returns any longer."
5177
  msgstr ""
5178
  "Entschuldigen Sie, diese Sendung kann nicht mehr zurückgesendet werden."
5179
 
5180
- #: woocommerce-germanized-shipments/src/FormHandler.php:156
5181
- #: woocommerce-germanized-shipments/src/FormHandler.php:192
5182
  msgctxt "shipments"
5183
  msgid "Please choose one or more items from the list."
5184
  msgstr "Bitte wählen Sie ein oder mehrere Produkt(e) aus."
5185
 
5186
- #: woocommerce-germanized-shipments/src/FormHandler.php:172
5187
  msgctxt "shipments"
5188
  msgid "The return reason you have chosen does not exist."
5189
  msgstr "Der Rücksendegrund existiert nicht."
5190
 
5191
- #: woocommerce-germanized-shipments/src/FormHandler.php:175
5192
  msgctxt "shipments"
5193
  msgid "Please choose a return reason from the list."
5194
  msgstr "Bitte wählen Sie aus der Liste einen Grund für die Rücksendung aus."
5195
 
5196
- #: woocommerce-germanized-shipments/src/FormHandler.php:180
5197
  msgctxt "shipments"
5198
  msgid ""
5199
  "Please check your item quantities. Quantities must not exceed maximum "
@@ -5202,7 +5219,7 @@ msgstr ""
5202
  "Bitte überprüfen Sie Ihre Angaben zur Anzahl. Die angegebene Anzahl ist zu "
5203
  "hoch."
5204
 
5205
- #: woocommerce-germanized-shipments/src/FormHandler.php:227
5206
  msgctxt "shipments"
5207
  msgid ""
5208
  "There was an error while creating the return. Please contact us for further "
@@ -7747,10 +7764,10 @@ msgstr ""
7747
  # @ woocommerce
7748
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:187
7749
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:230
7750
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:139
7751
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:146
7752
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:140
7753
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:146
7754
  #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:621
7755
  #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:634
7756
  #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:246
@@ -9672,13 +9689,20 @@ msgstr ""
9672
  "Passen Sie Germanized an Ihre Bedürfnisse an. Die Einstellungen können Sie "
9673
  "später jederzeit ändern."
9674
 
9675
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:154
 
 
 
 
 
 
 
9676
  msgid "Has been activated via DOI?"
9677
  msgstr "Aktiviert via DOI?"
9678
 
9679
  # @ woocommerce-germanized
9680
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:162
9681
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:159
9682
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:39
9683
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:939
9684
  #: woocommerce-germanized/includes/gateways/direct-debit/views/html-export.php:30
@@ -9686,8 +9710,8 @@ msgid "Direct Debit"
9686
  msgstr "Lastschrift"
9687
 
9688
  # @ woocommerce-germanized
9689
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:167
9690
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:164
9691
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:87
9692
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:119
9693
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:168
@@ -9699,8 +9723,8 @@ msgid "Account Holder"
9699
  msgstr "Kontoinhaber"
9700
 
9701
  # @ woocommerce-germanized
9702
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:172
9703
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:169
9704
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:88
9705
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:120
9706
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:169
@@ -9713,8 +9737,8 @@ msgid "IBAN"
9713
  msgstr "IBAN"
9714
 
9715
  # @ woocommerce-germanized
9716
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:177
9717
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:174
9718
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:89
9719
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:121
9720
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:170
@@ -9725,12 +9749,12 @@ msgstr "IBAN"
9725
  msgid "BIC/SWIFT"
9726
  msgstr "BIC/SWIFT"
9727
 
9728
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:152
9729
  msgid "Parcel Delivery Data Transfer"
9730
  msgstr "Paketdienstleister Datenweitergabe"
9731
 
9732
  # @ woocommerce-germanized
9733
- #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:179
9734
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:136
9735
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:618
9736
  msgid "Mandate Reference ID"
@@ -10167,7 +10191,7 @@ msgid "Thanks for creating an account on %s."
10167
  msgstr "Danke, dass Sie ein Konto bei %s erstellt haben."
10168
 
10169
  # @ woocommerce-germanized
10170
- #: woocommerce-germanized/includes/class-wc-gzd-emails.php:1289
10171
  msgctxt "revocation-form"
10172
  msgid "Forward your withdrawal online"
10173
  msgstr "Widerruf online erklären"
@@ -12122,7 +12146,7 @@ msgstr "Warenkorb Beschreibung"
12122
 
12123
  # @ woocommerce-germanized
12124
  #: woocommerce-germanized/templates/checkboxes/default.php:47
12125
- #: woocommerce-germanized/templates/checkout/terms-sepa.php:46
12126
  #: woocommerce-germanized/templates/checkout/terms.php:66
12127
  msgid "required"
12128
  msgstr "erforderlich"
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce Germanized\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-02-24 11:31+0100\n"
6
+ "PO-Revision-Date: 2022-02-24 11:31+0100\n"
7
  "Last-Translator: Dennis Nissle <info@vendidero.de>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE@formal\n"
825
  #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:222
826
  msgctxt "dhl"
827
  msgid "Return shipment #{shipment_id} to order #{order_id}"
828
+ msgstr "Retoure #{shipment_id} zur Bestellung #{order_id}"
829
 
830
  # @ woocommerce-germanized
831
  #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:291
832
  #: woocommerce-germanized-dhl/src/ParcelLocator.php:904
833
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1089
834
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1773
835
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:38
836
  msgctxt "dhl"
837
  msgid "Packstation"
862
  msgstr "DHL Retoure Online"
863
 
864
  # @ woocommerce-germanized
865
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:737
866
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:761
867
  msgctxt "dhl"
868
  msgid "DHL Paket International"
869
  msgstr "DHL Paket International"
870
 
871
  # @ woocommerce-germanized
872
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:741
873
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:767
874
  msgctxt "dhl"
875
  msgid "DHL Warenpost International"
876
  msgstr "DHL Warenpost International"
877
 
878
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:762
879
  msgctxt "dhl"
880
  msgid "DHL Paket Connect"
881
  msgstr "DHL Paket Connect"
882
 
883
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:763
884
  msgctxt "dhl"
885
  msgid "DHL Europaket (B2B)"
886
  msgstr "DHL Europaket (B2B)"
887
 
888
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:836
889
  msgctxt "dhl"
890
  msgid "DHL Paket"
891
  msgstr "DHL Paket"
892
 
893
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:837
894
  msgctxt "dhl"
895
  msgid "DHL Paket PRIO"
896
  msgstr "DHL Paket PRIO"
897
 
898
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:838
899
  msgctxt "dhl"
900
  msgid "DHL Paket Taggleich"
901
  msgstr "DHL Paket Taggleich"
902
 
903
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:839
904
  msgctxt "dhl"
905
  msgid "DHL Warenpost"
906
  msgstr "DHL Warenpost"
1007
  msgstr "DHL & Post"
1008
 
1009
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:31
1010
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1237
1011
  msgctxt "dhl"
1012
  msgid "Monday"
1013
  msgstr "Montag"
1014
 
1015
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:32
1016
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1249
1017
  msgctxt "dhl"
1018
  msgid "Tuesday"
1019
  msgstr "Dienstag"
1020
 
1021
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:33
1022
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1260
1023
  msgctxt "dhl"
1024
  msgid "Wednesday"
1025
  msgstr "Mittwoch"
1026
 
1027
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:34
1028
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1271
1029
  msgctxt "dhl"
1030
  msgid "Thursday"
1031
  msgstr "Donnerstag"
1032
 
1033
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:35
1034
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1282
1035
  msgctxt "dhl"
1036
  msgid "Friday"
1037
  msgstr "Freitag"
1038
 
1039
  #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:36
1040
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1293
1041
  msgctxt "dhl"
1042
  msgid "Saturday"
1043
  msgstr "Samstag"
1217
  msgstr "Die API für Rückerstattungen konnte nicht initialisiert werden"
1218
 
1219
  #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:727
1220
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:397
1221
  #: woocommerce-germanized-dhl/src/Api/ReturnRest.php:34
1222
  #, php-format
1223
  msgctxt "dhl"
1249
  msgid "Invalid stamp response."
1250
  msgstr "Fehlerhafte Label Rückmeldung."
1251
 
1252
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:109
1253
+ msgctxt "dhl"
1254
+ msgid "Your DHL API credentials seem to be invalid."
1255
+ msgstr "Ihre DHL API Zugangsdaten scheinen fehlerhaft zu sein."
1256
+
1257
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:181
1258
  msgctxt "dhl"
1259
  msgid ""
1260
  "Your DHL API credentials seem to be invalid. Please check your DHL settings."
1262
  "Ihre DHL API Zugangsdaten scheinen fehlerhaft zu sein. Bitte prüfen Sie Ihre "
1263
  "DHL Einstellungen."
1264
 
1265
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:185
1266
  msgctxt "dhl"
1267
  msgid ""
1268
  "Your products are missing data relevant for custom declarations. Please "
1273
  "füllen Sie die fehlenden DHL Felder (HS Code, Herstellerland) in Ihren "
1274
  "Produktdaten unter Versand aus."
1275
 
1276
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:195
1277
  #, php-format
1278
  msgctxt "dhl"
1279
  msgid "There was an error contacting the DHL API: %s."
1280
  msgstr "Beim Aufruf der DHL API gab es einen Fehler: %s."
1281
 
1282
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:198
1283
  msgctxt "dhl"
1284
  msgid ""
1285
  "An error ocurred while contacting the DHL API. Please consider enabling the "
1288
  "Beim Aufruf der DHL API ist ein Fehler aufgetreten. Bitte erwägen Sie den "
1289
  "Wechsel in den Sandbox-Modus."
1290
 
1291
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:220
1292
  msgctxt "dhl"
1293
  msgid ""
1294
  "There was an error generating the label. Please try again or consider "
1297
  "Beim Erzeugen des Labels gab es einen Fehler. Bitte versuchen Sie es erneut "
1298
  "oder erwägen Sie den Wechsel in den Sandbox-Modus."
1299
 
1300
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:300
1301
  #: woocommerce-germanized-dhl/src/Api/ReturnRest.php:155
1302
  msgctxt "dhl"
1303
  msgid "Error while creating and uploading the label"
1304
  msgstr "Fehler beim Erstellen und hochladen des Labels"
1305
 
1306
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:344
1307
  #, php-format
1308
  msgctxt "dhl"
1309
  msgid "Could not delete label - %s"
1310
  msgstr "Das Label konnte nicht gelöscht werden - %s"
1311
 
1312
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:375
1313
  msgctxt "dhl"
1314
  msgid "Could not create account number - no product number."
1315
  msgstr ""
1316
  "Die Abrechnungsnummer konnte nicht erzeugt werden. Die Teilnahmenummer fehlt."
1317
 
1318
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:608
1319
  #, php-format
1320
  msgctxt "dhl"
1321
  msgid ""
1325
  "Ihre Absenderadresse ist nicht komplett (%1$s). Bitte prüfen Sie Ihre <a "
1326
  "href=\"%2$s\">Einstellungen</a> und versuchen Sie es erneut."
1327
 
1328
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:712
1329
  #, php-format
1330
  msgctxt "dhl"
1331
  msgid "Only %s shipment items can be processed, your shipment has %s items."
1640
  # @ woocommerce-germanized
1641
  #: woocommerce-germanized-dhl/src/ParcelServices.php:60
1642
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:242
1643
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1173
1644
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1726
1645
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:38
1646
  msgctxt "dhl"
1647
  msgid "Delivery day"
1656
  # @ woocommerce-germanized
1657
  #: woocommerce-germanized-dhl/src/ParcelServices.php:74
1658
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:252
1659
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1195
1660
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1754
1661
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:89
1662
  msgctxt "dhl"
1663
  msgid "Drop-off location"
1665
 
1666
  #: woocommerce-germanized-dhl/src/ParcelServices.php:79
1667
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:264
1668
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1204
1669
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:82
1670
  #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:98
1671
  msgctxt "dhl"
1735
  msgstr "Nur valide Adressen"
1736
 
1737
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:211
1738
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1456
1739
  msgctxt "dhl"
1740
  msgid "GoGreen"
1741
  msgstr "GoGreen"
1764
 
1765
  # @ woocommerce-germanized
1766
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:308
1767
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:605
1768
  msgctxt "dhl"
1769
  msgid "Street"
1770
  msgstr "Straße"
1777
 
1778
  # @ woocommerce-germanized
1779
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:330
1780
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:606
1781
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:27
1782
  msgctxt "dhl"
1783
  msgid "Postcode"
1785
 
1786
  # @ woocommerce-germanized
1787
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:339
1788
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:607
1789
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:30
1790
  msgctxt "dhl"
1791
  msgid "City"
1818
  msgstr "Keine Nachbarschaftszustellung"
1819
 
1820
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:417
1821
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1488
1822
  msgctxt "dhl"
1823
  msgid "Named person only"
1824
  msgstr "Persönliche Übergabe"
1844
  msgid "Minimum age"
1845
  msgstr "Mindestalter"
1846
 
1847
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:479
1848
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1538
1849
  msgctxt "dhl"
1850
  msgid "Premium"
1851
  msgstr "Premium"
1852
 
1853
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:540
1854
  msgctxt "dhl"
1855
  msgid "Receiver is missing or does not exist."
1856
  msgstr "Empfänger fehlt oder existiert nicht."
1857
 
1858
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:612
1859
  #, php-format
1860
  msgctxt "dhl"
1861
  msgid "%s of the return address is a mandatory field."
1862
  msgstr "%s der Rücksendeadresse ist ein Pflichtfeld."
1863
 
1864
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:617
1865
  msgctxt "dhl"
1866
  msgid "Please either add a return company or name."
1867
  msgstr ""
1868
  "Bitte geben Sie entweder einen Firmennamen oder Namen für die "
1869
  "Rücksendeadresse an."
1870
 
1871
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:637
1872
  msgctxt "dhl"
1873
  msgid "Error while parsing delivery day."
1874
  msgstr "Fehler beim Einlesen des Liefertages."
1875
 
1876
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:664
1877
  msgctxt "dhl"
1878
  msgid "The visual min age check is invalid."
1879
  msgstr "Das Alter der Alterssichtprüfung ist ungültig."
1880
 
1881
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:688
1882
  msgctxt "dhl"
1883
  msgid "The ident min age check is invalid."
1884
  msgstr "Das Alter des Ident-Checks ist ungültig."
1885
 
1886
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:693
1887
  msgctxt "dhl"
1888
  msgid "There was an error parsing the date of birth for the identity check."
1889
  msgstr ""
1890
  "Beim Einlesen des Geburtsdatums für den Ident-Check trat ein Problem auf."
1891
 
1892
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:698
1893
  msgctxt "dhl"
1894
  msgid ""
1895
  "Either a minimum age or a date of birth must be added to the ident check."
1898
  "hinzugefügt werden."
1899
 
1900
  # @ woocommerce-germanized
1901
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:715
1902
  #, php-format
1903
  msgctxt "dhl"
1904
  msgid "%s duties element does not exist."
1905
  msgstr "%s Zollabgabe existiert nicht."
1906
 
1907
  # @ woocommerce-germanized
1908
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:977
1909
+ #, php-format
1910
+ msgctxt "dhl"
1911
+ msgid "Status: %1$s"
1912
+ msgstr "Status: %1$s"
1913
+
1914
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:977
1915
+ msgctxt "dhl"
1916
+ msgid "Connected"
1917
+ msgstr "Verbunden"
1918
+
1919
+ # @ woocommerce-germanized
1920
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:987
1921
  msgctxt "dhl"
1922
  msgid "Customer Number (EKP)"
1923
  msgstr "Kundennummer (EKP)"
1924
 
1925
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:989
1926
  #, php-format
1927
  msgctxt "dhl"
1928
  msgid ""
1932
  "Ihre 10-stellige DHL Kundennummer (EKP). Finden Sie Ihre %s im DHL "
1933
  "Geschäftskundenportal."
1934
 
1935
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:989
1936
  msgctxt "dhl"
1937
  msgid "customer number"
1938
  msgstr "Kundennummer"
1939
 
1940
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:998
1941
  msgctxt "dhl"
1942
  msgid "API"
1943
  msgstr "API"
1944
 
1945
  # @ woocommerce-germanized
1946
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1001
1947
  msgctxt "dhl"
1948
  msgid "Enable Sandbox"
1949
  msgstr "Sandbox aktivieren"
1950
 
1951
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1002
1952
  msgctxt "dhl"
1953
  msgid "Activate Sandbox mode for testing purposes."
1954
  msgstr "Aktiviere den Sandbox Modus."
1955
 
1956
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1009
1957
  msgctxt "dhl"
1958
  msgid "Live Username"
1959
  msgstr "Benutzer"
1960
 
1961
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1011
1962
  #, php-format
1963
  msgctxt "dhl"
1964
  msgid ""
1968
  "Ihr Benutzername (<strong>nicht</strong> die E-Mail-Adresse) zum DHL "
1969
  "Geschäftskundenportal. Bitte testen Sie Ihre Zugangsdaten vorab %s."
1970
 
1971
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1011
 
 
1972
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1021
1973
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1030
1974
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1039
1975
  msgctxt "dhl"
1976
  msgid "here"
1977
  msgstr "hier"
1978
 
1979
  # @ woocommerce-germanized
1980
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1019
1981
  msgctxt "dhl"
1982
  msgid "Live Password"
1983
  msgstr "Passwort"
1984
 
1985
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1021
1986
  #, php-format
1987
  msgctxt "dhl"
1988
  msgid ""
1994
  "der Gültigkeit des Passworts nach 3 (Standard-Benutzer) bzw. 12 (System-"
1995
  "Benutzer) Monaten und testen Sie Ihre Zugangsdaten vorab %s."
1996
 
1997
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1028
1998
  msgctxt "dhl"
1999
  msgid "Sandbox Username"
2000
  msgstr "Sandbox Benutzername"
2001
 
2002
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1030
2003
  #, php-format
2004
  msgctxt "dhl"
2005
  msgid ""
2009
  "Ihr Benutzername (<strong>nicht</strong> die E-Mail-Adresse) zum DHL "
2010
  "Entwicklerportal. Bitte testen Sie Ihre Zugangsdaten vorab %s."
2011
 
2012
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1037
2013
  msgctxt "dhl"
2014
  msgid "Sandbox Password"
2015
  msgstr "Sandbox Passwort"
2016
 
2017
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1039
2018
  #, php-format
2019
  msgctxt "dhl"
2020
  msgid ""
2024
  "Ihr Passwort zum DHL Entwicklerportal. Bitte testen Sie Ihre Zugangsdaten "
2025
  "vorab %s."
2026
 
2027
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1047
2028
  msgctxt "dhl"
2029
  msgid "Products and Participation Numbers"
2030
  msgstr "Produkte und Teilnahmenummern"
2031
 
2032
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1064
2033
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1420
2034
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1660
2035
  msgctxt "dhl"
2036
  msgid "Inlay Returns"
2037
  msgstr "Beilageretouren"
2038
 
2039
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1076
2040
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:142
2041
  msgctxt "dhl"
2042
  msgid "Tracking"
2043
  msgstr "Sendungsverfolgung"
2044
 
2045
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1090
2046
  msgctxt "dhl"
2047
  msgid "Enable delivery to Packstation."
2048
  msgstr "Aktiviere den Versand an Packstationen."
2049
 
2050
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1091
2051
  msgctxt "dhl"
2052
  msgid "Let customers choose a Packstation as delivery address."
2053
  msgstr "Kunden eine Packstation als Lieferadresse auswählen lassen."
2054
 
2055
  # @ woocommerce-germanized
2056
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1099
2057
  #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:50
2058
  msgctxt "dhl"
2059
  msgid "Postoffice"
2060
  msgstr "Postfiliale"
2061
 
2062
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1100
2063
  msgctxt "dhl"
2064
  msgid "Enable delivery to Post Offices."
2065
  msgstr "Aktiviere den Versand an Postfilialen."
2066
 
2067
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1101
2068
  msgctxt "dhl"
2069
  msgid "Let customers choose a Post Office as delivery address."
2070
  msgstr "Kunden eine Postfiliale als Lieferadresse auswählen lassen."
2071
 
2072
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1109
2073
  msgctxt "dhl"
2074
  msgid "Parcel Shop"
2075
  msgstr "Paketshop"
2076
 
2077
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1110
2078
  msgctxt "dhl"
2079
  msgid "Enable delivery to Parcel Shops."
2080
  msgstr "Lieferung an Paketshops aktivieren."
2081
 
2082
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1111
2083
  msgctxt "dhl"
2084
  msgid "Let customers choose a Parcel Shop as delivery address."
2085
  msgstr "Kunden einen Paketshop als Lieferadresse auswählen lassen."
2086
 
2087
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1119
2088
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1787
2089
  msgctxt "dhl"
2090
  msgid "Map"
2091
  msgstr "Karte"
2092
 
2093
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1120
2094
  msgctxt "dhl"
2095
  msgid "Let customers find a DHL location on a map."
2096
  msgstr "Lasse Kunden einen DHL Standort auf der Karte auswählen."
2097
 
2098
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1120
2099
  msgctxt "dhl"
2100
  msgid ""
2101
  "Enable this option to let your customers choose a pickup option from a map "
2106
  "anhand einer Karten in der Kasse zu ermöglichen. Wenn diese Option "
2107
  "deaktiviert ist, wird stattdessen auf die DHL Website verwiesen."
2108
 
2109
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1129
2110
  msgctxt "dhl"
2111
  msgid "Google Maps Key"
2112
  msgstr "Google Maps Schlüssel"
2113
 
2114
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1134
2115
  #, php-format
2116
  msgctxt "dhl"
2117
  msgid ""
2121
  "Um eine Karte integrieren zu können, benötigen Siee du einen gültigen API-"
2122
  "Schlüssel für Google Maps. Sie können %s."
2123
 
2124
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1134
2125
  msgctxt "dhl"
2126
  msgid "retrieve a new one"
2127
  msgstr "hier einen neuen erstellen"
2128
 
2129
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1140
2130
  msgctxt "dhl"
2131
  msgid "Limit results"
2132
  msgstr "Suchergebnisse begrenzen"
2133
 
2134
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1145
2135
  msgctxt "dhl"
2136
  msgid "Limit the number of DHL locations shown on the map"
2137
  msgstr "Begrenzt die Anzahl der angezeigten DHL Standorte auf der Karte"
2138
 
2139
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1174
2140
  msgctxt "dhl"
2141
  msgid "Enable delivery day delivery."
2142
  msgstr "Aktiviere die Lieferung am Liefertag."
2143
 
2144
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1174
2145
  msgctxt "dhl"
2146
  msgid ""
2147
  "Enabling this option will display options for the user to select their "
2151
  "Kasse."
2152
 
2153
  # @ woocommerce-germanized
2154
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1182
2155
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1740
2156
  msgctxt "dhl"
2157
  msgid "Fee"
2158
  msgstr "Gebühr"
2159
 
2160
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1184
2161
  msgctxt "dhl"
2162
  msgid ""
2163
  "Insert gross value as surcharge for delivery day delivery. Insert 0 to offer "
2167
  "Setzen Sie den Wert auf 0 um den Service kostenlos anzubieten."
2168
 
2169
  # @ woocommerce-germanized
2170
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1196
2171
  msgctxt "dhl"
2172
  msgid "Enable drop-off location delivery."
2173
  msgstr "Lieferung an einen Ablageort aktivieren."
2174
 
2175
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1196
2176
  msgctxt "dhl"
2177
  msgid ""
2178
  "Enabling this option will display options for the user to select their "
2181
  "Diese Option aktiviert die Auswahl eines Wunschorts durch den Kunden in der "
2182
  "Kasse ."
2183
 
2184
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1205
2185
  msgctxt "dhl"
2186
  msgid "Enable delivery to a neighbor."
2187
  msgstr "Lieferung an Nachbarn aktivieren."
2188
 
2189
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1205
2190
  msgctxt "dhl"
2191
  msgid ""
2192
  "Enabling this option will display options for the user to deliver to their "
2195
  "Diese Option aktiviert die Auswahl eines Wunschnachbarn durch den Kunden in "
2196
  "der Kasse."
2197
 
2198
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1213
2199
  msgctxt "dhl"
2200
  msgid "Cut-off time"
2201
  msgstr "Cut-off-Zeit"
2202
 
2203
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1218
2204
  msgctxt "dhl"
2205
  msgid ""
2206
  "The cut-off time is the latest possible order time up to which the minimum "
2213
  "Nach Überschreitung dieses Zeitpunktes, wird der früheste verfügbare "
2214
  "Liefertag in der Kasse um einen Tag erhöht (Tag der Bestellung + 3 Werktage)."
2215
 
2216
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1224
2217
  msgctxt "dhl"
2218
  msgid "Preparation days"
2219
  msgstr "Bearbeitungstage"
2220
 
2221
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1229
2222
  msgctxt "dhl"
2223
  msgid ""
2224
  "If you need more time to prepare your shipments you might want to add a "
2229
  "hier eine statische Anzahl an Tagen hinterlegen, die zum frühesten "
2230
  "auswählbaren Liefertag hinzugefügt werden."
2231
 
2232
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1236
2233
  msgctxt "dhl"
2234
  msgid "Exclude days of transfer"
2235
  msgstr "Übergabetage ausschließen"
2236
 
2237
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1238
2238
  msgctxt "dhl"
2239
  msgid "Exclude days from transferring shipments to DHL."
2240
  msgstr "Schließen Sie bestimmte Wochentage für die Übergabe an DHL aus."
2241
 
2242
  # @ woocommerce-germanized
2243
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1304
2244
  msgctxt "dhl"
2245
  msgid "Exclude gateways"
2246
  msgstr "Zahlungsarten ausschließen"
2247
 
2248
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1306
2249
  msgctxt "dhl"
2250
  msgid "Select payment gateways to be excluded from showing preferred services."
2251
  msgstr ""
2253
  "zur Verfügung stehen sollen."
2254
 
2255
  # @ woocommerce-germanized
2256
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1330
2257
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:178
2258
  msgctxt "dhl"
2259
  msgid "Products"
2260
  msgstr "Produkte"
2261
 
2262
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1333
2263
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:198
2264
  msgctxt "dhl"
2265
  msgid "Domestic Default Service"
2266
  msgstr "Nationaler Standard Service"
2267
 
2268
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1338
2269
  msgctxt "dhl"
2270
  msgid ""
2271
  "Please select your default DHL shipping service for domestic shipments that "
2277
  "nachträglich ändern)."
2278
 
2279
  # @ woocommerce-germanized
2280
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1344
2281
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:209
2282
  msgctxt "dhl"
2283
  msgid "EU Default Service"
2284
  msgstr "Standard Service (EU)"
2285
 
2286
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1349
2287
  msgctxt "dhl"
2288
  msgid ""
2289
  "Please select your default DHL shipping service for EU shipments that you "
2294
  "Ihre Kunden anbieten (Sie können das Produkt für jede einzelne Sendung "
2295
  "nachträglich ändern)."
2296
 
2297
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1355
2298
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:220
2299
  msgctxt "dhl"
2300
  msgid "Int. Default Service"
2301
  msgstr "Internationaler Standard Service"
2302
 
2303
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1360
2304
  msgctxt "dhl"
2305
  msgid ""
2306
  "Please select your default DHL shipping service for cross-border shipments "
2312
  "Sendung nachträglich ändern)."
2313
 
2314
  # @ woocommerce-germanized
2315
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1366
2316
  msgctxt "dhl"
2317
  msgid "Default Duty"
2318
  msgstr "Standard Zoll"
2319
 
2320
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1371
2321
  msgctxt "dhl"
2322
  msgid "Please select a default duty type."
2323
  msgstr "Bitte wählen Sie eine Standard-Zollabrechnung aus."
2324
 
2325
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1378
2326
  msgctxt "dhl"
2327
  msgid "Codeable"
2328
  msgstr "Leitcodierbar"
2329
 
2330
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1379
2331
  msgctxt "dhl"
2332
  msgid "Generate label only if address can be automatically retrieved DHL."
2333
  msgstr "Erzeuge Labels nur dann, wenn die Adresse von DHL erkannt wird."
2334
 
2335
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1385
2336
  msgctxt "dhl"
2337
  msgid ""
2338
  "Choose this option if you want to make sure that by default labels are only "
2343
  "ist."
2344
 
2345
  # @ woocommerce-germanized
2346
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1389
2347
  msgctxt "dhl"
2348
  msgid "Force email"
2349
  msgstr "E-Mail übertragen"
2350
 
2351
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1390
2352
  msgctxt "dhl"
2353
  msgid "Force transferring customer email to DHL."
2354
  msgstr "E-Mail-Adresse des Kunden immer an DHL übertragen."
2355
 
2356
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1390
2357
  #, php-format
2358
  msgctxt "dhl"
2359
  msgid ""
2373
  "Sie diese Option aktivieren."
2374
 
2375
  # @ woocommerce-germanized
2376
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1399
2377
  msgctxt "dhl"
2378
  msgid "Custom shipper"
2379
  msgstr "Individueller Absender"
2380
 
2381
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1400
2382
  msgctxt "dhl"
2383
  msgid "Use a custom shipper address managed within your DHL business profile."
2384
  msgstr "Individuelle Absenderreferenz aus dem DHL Geschäftskonto verwenden."
2385
 
2386
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1400
2387
  #, php-format
2388
  msgctxt "dhl"
2389
  msgid ""
2396
  "verwenden möchten."
2397
 
2398
  # @ woocommerce-germanized
2399
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1409
2400
  msgctxt "dhl"
2401
  msgid "Shipper reference"
2402
  msgstr "Absenderreferenz"
2403
 
2404
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1410
2405
  #, php-format
2406
  msgctxt "dhl"
2407
  msgid ""
2411
  "Fügen Sie hier Ihre <a href=\"%s\" target=\"_blank\">individuelle "
2412
  "Absenderreferenz</a> aus dem DHL Geschäftskonto ein."
2413
 
2414
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1421
2415
  msgctxt "dhl"
2416
  msgid ""
2417
  "Additionally create inlay return labels for shipments that support returns."
2419
  "Erzeuge zusätzlich Beilage-Retourenlabels für Sendungen die Retouren "
2420
  "unterstützen."
2421
 
2422
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1434
2423
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1437
2424
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1674
2425
  msgctxt "dhl"
2426
  msgid "Retoure"
2427
  msgstr "Retoure"
2428
 
2429
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1434
2430
  #, php-format
2431
  msgctxt "dhl"
2432
  msgid ""
2437
  "API an. Stellen Sie sicher, dass Ihr %s DHL Retoure Online enthält."
2438
 
2439
  # @ woocommerce-germanized
2440
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1434
2441
  msgctxt "dhl"
2442
  msgid "contract"
2443
  msgstr "Vertrag"
2444
 
2445
  # @ woocommerce-germanized
2446
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1438
2447
  msgctxt "dhl"
2448
  msgid "Create retoure labels to return shipments."
2449
  msgstr "Retourenlabels zu Retourensendungen erstellen."
2450
 
2451
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1438
2452
  msgctxt "dhl"
2453
  msgid ""
2454
  "By enabling this option you might generate retoure labels for return "
2458
  "Retourensendungen erstellen und diese per E-Mail an den Kunden weiterleiten."
2459
 
2460
  # @ woocommerce-germanized
2461
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1454
2462
  msgctxt "dhl"
2463
  msgid "Default Services"
2464
  msgstr "Standard-Services"
2465
 
2466
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1454
2467
  #, php-format
2468
  msgctxt "dhl"
2469
  msgid ""
2474
  "werden sollen. Finden Sie mehr <a href=\"%s\" target=\"_blank\">Services</a> "
2475
  "heraus."
2476
 
2477
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1457
2478
  msgctxt "dhl"
2479
  msgid "Enable the GoGreen Service by default."
2480
  msgstr "Buche den GoGreen Service hinzu."
2481
 
2482
  # @ woocommerce-germanized
2483
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1464
2484
  msgctxt "dhl"
2485
  msgid "Additional Insurance"
2486
  msgstr "Transportversicherung"
2487
 
2488
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1465
2489
  msgctxt "dhl"
2490
  msgid "Add an additional insurance to labels."
2491
  msgstr "Füge eine Transportversicherung zur Sendung hinzu."
2492
 
2493
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1472
2494
  msgctxt "dhl"
2495
  msgid "Retail Outlet Routing"
2496
  msgstr "Filialrouting"
2497
 
2498
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1473
2499
  msgctxt "dhl"
2500
  msgid ""
2501
  "Send undeliverable items to nearest retail outlet instead of immediate "
2504
  "Sende unzustellbare Sendungen in die nächstgelegene Filiale zur Abholung "
2505
  "anstelle diese direkt zurückzusenden."
2506
 
2507
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1480
2508
  msgctxt "dhl"
2509
  msgid "No Neighbor"
2510
  msgstr "Keine Nachbarschaftszustellung"
2511
 
2512
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1481
2513
  msgctxt "dhl"
2514
  msgid "Do not deliver to neighbors."
2515
  msgstr "Schließe eine Ersatzzustellung beim Nachbarn aus."
2516
 
2517
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1489
2518
  msgctxt "dhl"
2519
  msgid "Do only delivery to named person."
2520
  msgstr ""
2521
  "Lasse Pakete nur an den Empfänger persönlich oder an eine bevollmächtigte "
2522
  "Person übergeben."
2523
 
2524
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1496
2525
  msgctxt "dhl"
2526
  msgid "Bulky Goods"
2527
  msgstr "Sperrgut"
2528
 
2529
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1497
2530
  msgctxt "dhl"
2531
  msgid "Deliver as bulky goods."
2532
  msgstr "Sende Pakete als Sperrgut."
2533
 
2534
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1504
2535
  msgctxt "dhl"
2536
  msgid "Minimum age (Visual check)"
2537
  msgstr "Mindestalter (Visuell)"
2538
 
2539
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1510
2540
  msgctxt "dhl"
2541
  msgid "Choose this option if you want to let DHL check your customer's age."
2542
  msgstr ""
2543
  "Wählen Sie diese Option aus, wenn Sie das Alter durch DHL prüfen lassen "
2544
  "möchten."
2545
 
2546
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1513
2547
  msgctxt "dhl"
2548
  msgid "Sync (Visual Check)"
2549
  msgstr "Synchronisation (Visuell)"
2550
 
2551
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1514
2552
  msgctxt "dhl"
2553
  msgid "Visually verify age if shipment contains applicable items."
2554
  msgstr ""
2555
  "Aktiviere die Alterssichtprüfung, falls die Sendung zu prüfende Positionen "
2556
  "beinhaltet."
2557
 
2558
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1514
2559
  #, php-format
2560
  msgctxt "dhl"
2561
  msgid ""
2568
  "Alterssichtprüfung automatisch aktiviert, falls eine Sendung zu prüfenden "
2569
  "Produkte beinhaltet."
2570
 
2571
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1514
2572
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1531
2573
  msgctxt "dhl"
2574
  msgid "age verification checkbox"
2575
  msgstr "Checkbox zur Altersprüfung"
2576
 
2577
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1521
2578
  msgctxt "dhl"
2579
  msgid "Minimum age (Ident check)"
2580
  msgstr "Mindestalter (Identität)"
2581
 
2582
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1527
2583
  msgctxt "dhl"
2584
  msgid ""
2585
  "Choose this option if you want to let DHL check your customer's identity and "
2589
  "prüfen lassen möchten."
2590
 
2591
  # @ woocommerce-germanized
2592
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1530
2593
  msgctxt "dhl"
2594
  msgid "Sync (Ident Check)"
2595
  msgstr "Synchronisation (Identität)"
2596
 
2597
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1531
2598
  msgctxt "dhl"
2599
  msgid "Verify identity and age if shipment contains applicable items."
2600
  msgstr ""
2601
  "Aktiviere die Identitätsprüfung, falls die Sendung zu prüfende Positionen "
2602
  "beinhaltet."
2603
 
2604
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1531
2605
  #, php-format
2606
  msgctxt "dhl"
2607
  msgid ""
2614
  "Identitätsprüfung automatisch aktiviert, falls eine Sendung zu prüfenden "
2615
  "Produkte beinhaltet."
2616
 
2617
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1539
2618
  msgctxt "dhl"
2619
  msgid "Premium delivery for international shipments."
2620
  msgstr "Premium Lieferung für internationale Sendungen."
2621
 
2622
  # @ woocommerce-germanized
2623
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1547
2624
  msgctxt "dhl"
2625
  msgid "Bank Account"
2626
  msgstr "Bankkonto"
2627
 
2628
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1547
2629
  msgctxt "dhl"
2630
  msgid "Enter your bank details needed for services that use COD."
2631
  msgstr ""
2633
  "verwendet werden sollen."
2634
 
2635
  # @ woocommerce-germanized
2636
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1550
2637
  msgctxt "dhl"
2638
  msgid "Holder"
2639
  msgstr "Kontoinhaber"
2640
 
2641
  # @ woocommerce-germanized
2642
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1558
2643
  msgctxt "dhl"
2644
  msgid "Bank Name"
2645
  msgstr "Name der Bank"
2646
 
2647
  # @ woocommerce-germanized
2648
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1566
2649
  msgctxt "dhl"
2650
  msgid "IBAN"
2651
  msgstr "IBAN"
2652
 
2653
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1574
2654
  msgctxt "dhl"
2655
  msgid "BIC"
2656
  msgstr "BIC"
2657
 
2658
  # @ woocommerce-germanized
2659
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1582
2660
  msgctxt "dhl"
2661
  msgid "Payment Reference"
2662
  msgstr "Zahlungsreferenz"
2663
 
2664
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1587
2665
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1597
2666
  #, php-format
2667
  msgctxt "dhl"
2668
  msgid ""
2673
  "hinzufügen: %s. Der Text ist auf 35 Zeichen begrenzt."
2674
 
2675
  # @ woocommerce-germanized
2676
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1592
2677
  msgctxt "dhl"
2678
  msgid "Payment Reference 2"
2679
  msgstr "Zahlungsreferenz 2"
2680
 
2681
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1627
2682
  msgctxt "dhl"
2683
  msgid "Customer Number"
2684
  msgstr "Kundennummer"
2685
 
2686
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1628
2687
  msgctxt "dhl"
2688
  msgid ""
2689
  "Insert your DHL business customer number (EKP) here. If you are not yet a "
2693
  "Geschäftskunde sind, sollten Sie sich zuerst als Geschäftskunde bei DHL "
2694
  "registrieren."
2695
 
2696
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1641
2697
  msgctxt "dhl"
2698
  msgid "API Access"
2699
  msgstr "API Versionen"
2700
 
2701
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1642
2702
  msgctxt "dhl"
2703
  msgid ""
2704
  "To create labels and embed DHL services, our software needs access to the "
2708
  "Software Zugang zur API. Sie sollten hier Ihre Zugangsdaten zum DHL "
2709
  "Geschäftskundenportal eingeben."
2710
 
2711
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1661
2712
  msgctxt "dhl"
2713
  msgid ""
2714
  "If you want to provide your customers with inlay return labels for your "
2717
  "Wenn Sie Beilageretouren-Labels zu Ihren Sendungen hinzufügen möchten, "
2718
  "sollten Sie diese Funktion standardmäßig aktivieren."
2719
 
2720
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1675
2721
  msgctxt "dhl"
2722
  msgid ""
2723
  "If you want to create DHL labels to returns you should activate this "
2728
  "aktivieren. Stellen Sie sicher, dass DHL Online Retoure in Ihrem Vertrag "
2729
  "freigeschaltet ist."
2730
 
2731
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1688
2732
  msgctxt "dhl"
2733
  msgid "Age verification"
2734
  msgstr "Altersverifikation"
2735
 
2736
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1689
2737
  msgctxt "dhl"
2738
  msgid ""
2739
  "Use this feature to sync the Germanized age verification checkbox with the "
2746
  "„Alterssichtprüfung“ von DHL automatisch aktiviert."
2747
 
2748
  # @ woocommerce-germanized
2749
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1707
2750
  msgctxt "dhl"
2751
  msgid "Automation"
2752
  msgstr "Automatisierung"
2753
 
2754
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1708
2755
  msgctxt "dhl"
2756
  msgid ""
2757
  "You might want to save some time and let Germanized generate labels "
2761
  "automatisch erzeugen lassen, sobald eine Sendung in einen bestimmten Status "
2762
  "wechselt."
2763
 
2764
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1727
2765
  msgctxt "dhl"
2766
  msgid ""
2767
  "Let your customers choose a delivery day (if the service is available at the "
2770
  "Lassen Sie Ihre Kunden einen Liefertag (falls der Service für die "
2771
  "Kundenadresse zur Verfügung steht) für die Lieferung in der Kasse auswählen."
2772
 
2773
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1741
2774
  msgctxt "dhl"
2775
  msgid ""
2776
  "Optionally charge your customers an additional fee for preferred services "
2779
  "Optional können Sie die Gebühr für die Auswahl des Liefertages oder anderer "
2780
  "Wunschzustellung-Services an Ihre Kunden weiterreichen."
2781
 
2782
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1755
2783
  msgctxt "dhl"
2784
  msgid ""
2785
  "Allow your customers to send their parcels to a drop-off location e.g. a "
2788
  "Lassen Sie Ihre Kunden einen Ablageort für die Abgabe ihres Pakets in der "
2789
  "Kasse auswählen. Dieser Service wird von DHL nicht zusätzlich berechnet."
2790
 
2791
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1774
2792
  msgctxt "dhl"
2793
  msgid ""
2794
  "Allow your customers to choose packstation (and/or other DHL location types "
2797
  "Lassen Sie Ihre Kunden eine Packstation (und/oder andere DHL Standorte, wie "
2798
  "im Folgenden konfiguriert) als Lieferadresse auswählen."
2799
 
2800
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1788
2801
  msgctxt "dhl"
2802
  msgid ""
2803
  "This option adds a map overlay view to let your customers choose a DHL "
5151
  "Ihr Rücksendeantrag wurde erfolgreich abgeschickt. Sie erhalten in Kürze "
5152
  "eine E-Mail, die Sie über die nächsten Schritte informiert."
5153
 
5154
+ #: woocommerce-germanized-shipments/src/FormHandler.php:118
5155
+ #: woocommerce-germanized-shipments/src/FormHandler.php:122
5156
  msgctxt "shipments"
5157
  msgid "Error:"
5158
  msgstr "Fehler:"
5159
 
5160
+ #: woocommerce-germanized-shipments/src/FormHandler.php:118
5161
  msgctxt "shipments"
5162
  msgid "We were not able to find a matching order."
5163
  msgstr "Wir konnten leider keine passende Bestellung finden."
5164
 
5165
+ #: woocommerce-germanized-shipments/src/FormHandler.php:122
5166
  msgctxt "shipments"
5167
  msgid ""
5168
  "This order is currently not eligible for returns. Please contact us for "
5171
  "Diese Bestellung ist aktuell nicht für Rücksendungen verfügbar. Bitte "
5172
  "kontaktieren Sie uns für weitere Details."
5173
 
5174
+ #: woocommerce-germanized-shipments/src/FormHandler.php:131
5175
  msgctxt "shipments"
5176
  msgid ""
5177
  "Thank you. You'll receive an email containing a link to create a new return "
5180
  "Vielen Dank. Sie erhalten eine E-Mail mit einem Link über den Sie Ihren "
5181
  "Rücksendeantrag stellen können."
5182
 
5183
+ #: woocommerce-germanized-shipments/src/FormHandler.php:165
5184
  msgctxt "shipments"
5185
  msgid "You are not allowed to add returns to that order."
5186
  msgstr ""
5188
  "hinzuzufügen."
5189
 
5190
  # @ woocommerce-germanized
5191
+ #: woocommerce-germanized-shipments/src/FormHandler.php:170
5192
  msgctxt "shipments"
5193
  msgid "Sorry, but this order does not support returns any longer."
5194
  msgstr ""
5195
  "Entschuldigen Sie, diese Sendung kann nicht mehr zurückgesendet werden."
5196
 
5197
+ #: woocommerce-germanized-shipments/src/FormHandler.php:175
5198
+ #: woocommerce-germanized-shipments/src/FormHandler.php:211
5199
  msgctxt "shipments"
5200
  msgid "Please choose one or more items from the list."
5201
  msgstr "Bitte wählen Sie ein oder mehrere Produkt(e) aus."
5202
 
5203
+ #: woocommerce-germanized-shipments/src/FormHandler.php:191
5204
  msgctxt "shipments"
5205
  msgid "The return reason you have chosen does not exist."
5206
  msgstr "Der Rücksendegrund existiert nicht."
5207
 
5208
+ #: woocommerce-germanized-shipments/src/FormHandler.php:194
5209
  msgctxt "shipments"
5210
  msgid "Please choose a return reason from the list."
5211
  msgstr "Bitte wählen Sie aus der Liste einen Grund für die Rücksendung aus."
5212
 
5213
+ #: woocommerce-germanized-shipments/src/FormHandler.php:199
5214
  msgctxt "shipments"
5215
  msgid ""
5216
  "Please check your item quantities. Quantities must not exceed maximum "
5219
  "Bitte überprüfen Sie Ihre Angaben zur Anzahl. Die angegebene Anzahl ist zu "
5220
  "hoch."
5221
 
5222
+ #: woocommerce-germanized-shipments/src/FormHandler.php:246
5223
  msgctxt "shipments"
5224
  msgid ""
5225
  "There was an error while creating the return. Please contact us for further "
7764
  # @ woocommerce
7765
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:187
7766
  #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:230
7767
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:141
7768
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:154
7769
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:143
7770
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:156
7771
  #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:621
7772
  #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:634
7773
  #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:246
9689
  "Passen Sie Germanized an Ihre Bedürfnisse an. Die Einstellungen können Sie "
9690
  "später jederzeit ändern."
9691
 
9692
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:147
9693
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:160
9694
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:149
9695
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:162
9696
+ msgid "Formatted title"
9697
+ msgstr "Formatierter Titel"
9698
+
9699
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:168
9700
  msgid "Has been activated via DOI?"
9701
  msgstr "Aktiviert via DOI?"
9702
 
9703
  # @ woocommerce-germanized
9704
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:176
9705
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:176
9706
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:39
9707
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:939
9708
  #: woocommerce-germanized/includes/gateways/direct-debit/views/html-export.php:30
9710
  msgstr "Lastschrift"
9711
 
9712
  # @ woocommerce-germanized
9713
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:181
9714
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:181
9715
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:87
9716
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:119
9717
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:168
9723
  msgstr "Kontoinhaber"
9724
 
9725
  # @ woocommerce-germanized
9726
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:186
9727
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:186
9728
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:88
9729
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:120
9730
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:169
9737
  msgstr "IBAN"
9738
 
9739
  # @ woocommerce-germanized
9740
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:191
9741
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:191
9742
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:89
9743
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:121
9744
  #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:170
9749
  msgid "BIC/SWIFT"
9750
  msgstr "BIC/SWIFT"
9751
 
9752
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:169
9753
  msgid "Parcel Delivery Data Transfer"
9754
  msgstr "Paketdienstleister Datenweitergabe"
9755
 
9756
  # @ woocommerce-germanized
9757
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:196
9758
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:136
9759
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:618
9760
  msgid "Mandate Reference ID"
10191
  msgstr "Danke, dass Sie ein Konto bei %s erstellt haben."
10192
 
10193
  # @ woocommerce-germanized
10194
+ #: woocommerce-germanized/includes/class-wc-gzd-emails.php:1291
10195
  msgctxt "revocation-form"
10196
  msgid "Forward your withdrawal online"
10197
  msgstr "Widerruf online erklären"
12146
 
12147
  # @ woocommerce-germanized
12148
  #: woocommerce-germanized/templates/checkboxes/default.php:47
12149
+ #: woocommerce-germanized/templates/checkout/terms-sepa.php:48
12150
  #: woocommerce-germanized/templates/checkout/terms.php:66
12151
  msgid "required"
12152
  msgstr "erforderlich"
includes/admin/class-wc-gzd-admin-order.php CHANGED
@@ -50,6 +50,71 @@ class WC_GZD_Admin_Order {
50
  $this,
51
  'remove_shipping_total_filter'
52
  ), 500 );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  }
54
  }
55
 
50
  $this,
51
  'remove_shipping_total_filter'
52
  ), 500 );
53
+
54
+ add_action( 'woocommerce_create_refund', array(
55
+ $this,
56
+ 'fix_refund_precision'
57
+ ), 1, 2 );
58
+ }
59
+ }
60
+
61
+ /**
62
+ * WooCommerce does by default not show full precision amounts for shipping and fees in admin panel
63
+ * that's why the refund (tax) amount entered by the shop owner might differ from the actual amount (with full precision)
64
+ * in the corresponding parent item. In case the rounded amounts equal, use the higher-precision amounts from the parent item instead.
65
+ *
66
+ * @param WC_Order_Refund $refund
67
+ * @param $args
68
+ *
69
+ * @return void
70
+ */
71
+ public function fix_refund_precision( $refund, $args ) {
72
+ if ( count( $args['line_items'] ) > 0 ) {
73
+ if ( $order = wc_get_order( $refund->get_parent_id() ) ) {
74
+ $refund_needs_save = false;
75
+ $items = $order->get_items( array( 'fee', 'shipping' ) );
76
+ $refund_items = $refund->get_items( array( 'fee', 'shipping' ) );
77
+
78
+ foreach ( $refund_items as $refunded_item ) {
79
+ $item_id = absint( $refunded_item->get_meta( '_refunded_item_id' ) );
80
+
81
+ if ( isset( $items[ $item_id ] ) ) {
82
+ $item = $items[ $item_id ];
83
+ $needs_save = false;
84
+ $item_total_rounded = wc_format_decimal( $item->get_total(), '' );
85
+ $refund_total_rounded = wc_format_decimal( $refunded_item->get_total() * -1, '' );
86
+
87
+ $item_tax_rounded = wc_format_decimal( $item->get_total_tax(), '' );
88
+ $refund_tax_rounded = wc_format_decimal( $refunded_item->get_total_tax() * -1, '' );
89
+
90
+ if ( $item_total_rounded == $refund_total_rounded ) {
91
+ $needs_save = true;
92
+ $refunded_item->set_total( wc_format_refund_total( $item->get_total() ) );
93
+ }
94
+
95
+ if ( $item_tax_rounded == $refund_tax_rounded ) {
96
+ $needs_save = true;
97
+ $refunded_item->set_taxes(
98
+ array(
99
+ 'total' => array_map( 'wc_format_refund_total', $item->get_taxes()['total'] ),
100
+ 'subtotal' => array_map( 'wc_format_refund_total', isset( $item->get_taxes()['subtotal'] ) ? $item->get_taxes()['subtotal'] : $item->get_taxes()['total'] ),
101
+ )
102
+ );
103
+ }
104
+
105
+ if ( $needs_save ) {
106
+ $refund_needs_save = true;
107
+
108
+ $refunded_item->save();
109
+ }
110
+ }
111
+ }
112
+
113
+ if ( $refund_needs_save ) {
114
+ $refund->update_taxes();
115
+ $refund->calculate_totals( false );
116
+ }
117
+ }
118
  }
119
  }
120
 
includes/api/class-wc-gzd-rest-customers-controller.php CHANGED
@@ -43,8 +43,10 @@ class WC_GZD_REST_Customers_Controller {
43
  $customer = new WC_Customer( $user_data->ID );
44
  $response_customer_data = $response->get_data();
45
 
46
- $response_customer_data['billing']['title'] = $customer->get_meta( 'billing_title' );
47
- $response_customer_data['shipping']['title'] = $customer->get_meta( 'shipping_title' );
 
 
48
 
49
  $holder = $customer->get_meta( 'direct_debit_holder' );
50
  $iban = $customer->get_meta( 'direct_debit_iban' );
@@ -137,16 +139,28 @@ class WC_GZD_REST_Customers_Controller {
137
 
138
  $schema_properties['billing']['properties']['title'] = array(
139
  'description' => __( 'Title', 'woocommerce-germanized' ),
140
- 'type' => 'integer',
141
  'context' => array( 'view', 'edit' ),
142
- 'enum' => array( 1, 2 )
 
 
 
 
 
 
143
  );
144
 
145
  $schema_properties['shipping']['properties']['title'] = array(
146
  'description' => __( 'Title', 'woocommerce-germanized' ),
147
- 'type' => 'integer',
 
 
 
 
 
 
148
  'context' => array( 'view', 'edit' ),
149
- 'enum' => array( 1, 2 )
150
  );
151
 
152
  if ( WC_GZD_Customer_Helper::instance()->is_double_opt_in_enabled() ) {
43
  $customer = new WC_Customer( $user_data->ID );
44
  $response_customer_data = $response->get_data();
45
 
46
+ $response_customer_data['billing']['title'] = $customer->get_meta( 'billing_title' );
47
+ $response_customer_data['billing']['title_formatted'] = wc_gzd_get_customer_title( $customer->get_meta( 'billing_title' ) );
48
+ $response_customer_data['shipping']['title'] = $customer->get_meta( 'shipping_title' );
49
+ $response_customer_data['shipping']['title_formatted'] = wc_gzd_get_customer_title( $customer->get_meta( 'shipping_title' ) );
50
 
51
  $holder = $customer->get_meta( 'direct_debit_holder' );
52
  $iban = $customer->get_meta( 'direct_debit_iban' );
139
 
140
  $schema_properties['billing']['properties']['title'] = array(
141
  'description' => __( 'Title', 'woocommerce-germanized' ),
142
+ 'type' => 'string',
143
  'context' => array( 'view', 'edit' ),
144
+ );
145
+
146
+ $schema_properties['billing']['properties']['title_formatted'] = array(
147
+ 'description' => __( 'Formatted title', 'woocommerce-germanized' ),
148
+ 'type' => 'string',
149
+ 'context' => array( 'view', 'edit' ),
150
+ 'readonly' => true,
151
  );
152
 
153
  $schema_properties['shipping']['properties']['title'] = array(
154
  'description' => __( 'Title', 'woocommerce-germanized' ),
155
+ 'type' => 'string',
156
+ 'context' => array( 'view', 'edit' ),
157
+ );
158
+
159
+ $schema_properties['shipping']['properties']['title_formatted'] = array(
160
+ 'description' => __( 'Formatted title', 'woocommerce-germanized' ),
161
+ 'type' => 'string',
162
  'context' => array( 'view', 'edit' ),
163
+ 'readonly' => true,
164
  );
165
 
166
  if ( WC_GZD_Customer_Helper::instance()->is_double_opt_in_enabled() ) {
includes/api/class-wc-gzd-rest-orders-controller.php CHANGED
@@ -44,9 +44,12 @@ class WC_GZD_REST_Orders_Controller {
44
  $order = wc_get_order( $post );
45
  $response_order_data = $response->get_data();
46
 
47
- $response_order_data['billing']['title'] = $order->get_meta( '_billing_title' );
48
- $response_order_data['shipping']['title'] = $order->get_meta( '_shipping_title' );
49
- $response_order_data['parcel_delivery_opted_in'] = $order->get_meta( '_parcel_delivery_opted_in' );
 
 
 
50
 
51
  $holder = $order->get_meta( '_direct_debit_holder' );
52
  $iban = $order->get_meta( '_direct_debit_iban' );
@@ -142,12 +145,26 @@ class WC_GZD_REST_Orders_Controller {
142
  'context' => array( 'view', 'edit' ),
143
  );
144
 
 
 
 
 
 
 
 
145
  $schema_properties['shipping']['properties']['title'] = array(
146
  'description' => __( 'Title', 'woocommerce-germanized' ),
147
  'type' => 'string',
148
  'context' => array( 'view', 'edit' ),
149
  );
150
 
 
 
 
 
 
 
 
151
  $schema_properties['parcel_delivery_opted_in'] = array(
152
  'description' => __( 'Parcel Delivery Data Transfer', 'woocommerce-germanized' ),
153
  'type' => 'string',
44
  $order = wc_get_order( $post );
45
  $response_order_data = $response->get_data();
46
 
47
+ $response_order_data['billing']['title'] = $order->get_meta( '_billing_title' );
48
+ $response_order_data['billing']['title_formatted'] = wc_gzd_get_order_customer_title( $order );
49
+ $response_order_data['shipping']['title'] = $order->get_meta( '_shipping_title' );
50
+ $response_order_data['shipping']['title_formatted'] = wc_gzd_get_order_customer_title( $order, 'shipping' );
51
+
52
+ $response_order_data['parcel_delivery_opted_in'] = $order->get_meta( '_parcel_delivery_opted_in' );
53
 
54
  $holder = $order->get_meta( '_direct_debit_holder' );
55
  $iban = $order->get_meta( '_direct_debit_iban' );
145
  'context' => array( 'view', 'edit' ),
146
  );
147
 
148
+ $schema_properties['billing']['properties']['title_formatted'] = array(
149
+ 'description' => __( 'Formatted title', 'woocommerce-germanized' ),
150
+ 'type' => 'string',
151
+ 'readonly' => true,
152
+ 'context' => array( 'view', 'edit' ),
153
+ );
154
+
155
  $schema_properties['shipping']['properties']['title'] = array(
156
  'description' => __( 'Title', 'woocommerce-germanized' ),
157
  'type' => 'string',
158
  'context' => array( 'view', 'edit' ),
159
  );
160
 
161
+ $schema_properties['shipping']['properties']['title_formatted'] = array(
162
+ 'description' => __( 'Formatted title', 'woocommerce-germanized' ),
163
+ 'type' => 'string',
164
+ 'readonly' => true,
165
+ 'context' => array( 'view', 'edit' ),
166
+ );
167
+
168
  $schema_properties['parcel_delivery_opted_in'] = array(
169
  'description' => __( 'Parcel Delivery Data Transfer', 'woocommerce-germanized' ),
170
  'type' => 'string',
includes/class-wc-gzd-emails.php CHANGED
@@ -1052,11 +1052,12 @@ class WC_GZD_Emails {
1052
  *
1053
  * @param WC_GZD_Emails $this The email helper class.
1054
  * @param WC_Email $current The current email object.
 
1055
  *
1056
  * @since 1.9.1
1057
  *
1058
  */
1059
- do_action( 'woocommerce_gzd_before_set_email_cart_item_filters', $this, $current );
1060
 
1061
  // Add order item name actions
1062
  add_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_differential_taxation_mark', wc_gzd_get_hook_priority( 'email_product_differential_taxation' ), 2 );
@@ -1091,11 +1092,12 @@ class WC_GZD_Emails {
1091
  *
1092
  * @param WC_GZD_Emails $this The email helper class.
1093
  * @param WC_Email $current The current email object.
 
1094
  *
1095
  * @since 1.9.1
1096
  *
1097
  */
1098
- do_action( 'woocommerce_gzd_after_set_email_cart_item_filters', $this, $current );
1099
  }
1100
 
1101
  public function remove_order_email_filters() {
1052
  *
1053
  * @param WC_GZD_Emails $this The email helper class.
1054
  * @param WC_Email $current The current email object.
1055
+ * @param boolean $sent_to_admin Whether this mail is being sent to admin or not.
1056
  *
1057
  * @since 1.9.1
1058
  *
1059
  */
1060
+ do_action( 'woocommerce_gzd_before_set_email_cart_item_filters', $this, $current, $sent_to_admin );
1061
 
1062
  // Add order item name actions
1063
  add_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_differential_taxation_mark', wc_gzd_get_hook_priority( 'email_product_differential_taxation' ), 2 );
1092
  *
1093
  * @param WC_GZD_Emails $this The email helper class.
1094
  * @param WC_Email $current The current email object.
1095
+ * @param boolean $sent_to_admin Whether this mail is being sent to admin or not.
1096
  *
1097
  * @since 1.9.1
1098
  *
1099
  */
1100
+ do_action( 'woocommerce_gzd_after_set_email_cart_item_filters', $this, $current, $sent_to_admin );
1101
  }
1102
 
1103
  public function remove_order_email_filters() {
includes/class-wc-gzd-install.php CHANGED
@@ -49,15 +49,35 @@ if ( ! class_exists( 'WC_GZD_Install' ) ) :
49
  */
50
  public function __construct() {
51
  add_action( 'admin_init', array( __CLASS__, 'check_version' ), 10 );
 
 
52
  add_action( 'in_plugin_update_message-woocommerce-germanized/woocommerce-germanized.php', array(
53
  __CLASS__,
54
  'in_plugin_update_message'
55
  ) );
56
-
57
- add_action( 'admin_init', array( __CLASS__, 'redirect' ) );
58
  }
59
 
60
  public static function redirect() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  if ( get_option( '_wc_gzd_setup_wizard_redirect' ) ) {
62
 
63
  // Bail if activating from network, or bulk, or within an iFrame, or AJAX (e.g. plugins screen)
@@ -95,26 +115,6 @@ if ( ! class_exists( 'WC_GZD_Install' ) ) :
95
  wp_redirect( admin_url( 'index.php?page=wc-gzd-about' ) );
96
  exit;
97
  }
98
-
99
- if ( ! empty( $_GET['do_update_woocommerce_gzd'] ) ) {
100
- check_admin_referer( 'wc_gzd_db_update', 'wc_gzd_db_update_nonce' );
101
-
102
- self::update();
103
-
104
- // Update complete
105
- delete_option( '_wc_gzd_needs_pages' );
106
- delete_option( '_wc_gzd_needs_update' );
107
-
108
- if ( $note = WC_GZD_Admin_Notices::instance()->get_note( 'update' ) ) {
109
- $note->dismiss();
110
- }
111
-
112
- delete_transient( '_wc_gzd_activation_redirect' );
113
-
114
- // What's new redirect
115
- wp_redirect( admin_url( 'index.php?page=wc-gzd-about&wc-gzd-updated=true' ) );
116
- exit;
117
- }
118
  }
119
 
120
  /**
49
  */
50
  public function __construct() {
51
  add_action( 'admin_init', array( __CLASS__, 'check_version' ), 10 );
52
+ add_action( 'admin_init', array( __CLASS__, 'redirect' ), 15 );
53
+
54
  add_action( 'in_plugin_update_message-woocommerce-germanized/woocommerce-germanized.php', array(
55
  __CLASS__,
56
  'in_plugin_update_message'
57
  ) );
 
 
58
  }
59
 
60
  public static function redirect() {
61
+ if ( ! empty( $_GET['do_update_woocommerce_gzd'] ) && current_user_can( 'manage_woocommerce' ) ) {
62
+ check_admin_referer( 'wc_gzd_db_update', 'wc_gzd_db_update_nonce' );
63
+
64
+ self::update();
65
+
66
+ // Update complete
67
+ delete_option( '_wc_gzd_needs_pages' );
68
+ delete_option( '_wc_gzd_needs_update' );
69
+
70
+ if ( $note = WC_GZD_Admin_Notices::instance()->get_note( 'update' ) ) {
71
+ $note->dismiss();
72
+ }
73
+
74
+ delete_transient( '_wc_gzd_activation_redirect' );
75
+
76
+ // What's new redirect
77
+ wp_redirect( admin_url( 'index.php?page=wc-gzd-about&wc-gzd-updated=true' ) );
78
+ exit;
79
+ }
80
+
81
  if ( get_option( '_wc_gzd_setup_wizard_redirect' ) ) {
82
 
83
  // Bail if activating from network, or bulk, or within an iFrame, or AJAX (e.g. plugins screen)
115
  wp_redirect( admin_url( 'index.php?page=wc-gzd-about' ) );
116
  exit;
117
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
  }
119
 
120
  /**
includes/compatibility/class-wc-gzd-compatibility-elementor-pro.php CHANGED
@@ -104,6 +104,18 @@ class WC_GZD_Compatibility_Elementor_Pro extends WC_GZD_Compatibility {
104
 
105
  add_action( 'elementor/frontend/after_enqueue_styles', function() {
106
  wp_add_inline_style( 'elementor-pro', '
 
 
 
 
 
 
 
 
 
 
 
 
107
  .elementor-widget-woocommerce-checkout-page .woocommerce-checkout .place-order {
108
  display: -webkit-box;
109
  display: -ms-flexbox;
104
 
105
  add_action( 'elementor/frontend/after_enqueue_styles', function() {
106
  wp_add_inline_style( 'elementor-pro', '
107
+ .elementor-widget-woocommerce-checkout-page .woocommerce table.woocommerce-checkout-review-order-table {
108
+ border-radius: var(--sections-border-radius, 3px);
109
+ padding: var(--sections-padding, 16px 30px);
110
+ margin: var(--sections-margin, 0 0 24px 0);
111
+ border-style: var(--sections-border-type, solid);
112
+ border-color: var(--sections-border-color, #D4D4D4);
113
+ border-width: 1px;
114
+ }
115
+ .elementor-widget-woocommerce-checkout-page .woocommerce .woocommerce-checkout #payment {
116
+ border: none;
117
+ padding: 0;
118
+ }
119
  .elementor-widget-woocommerce-checkout-page .woocommerce-checkout .place-order {
120
  display: -webkit-box;
121
  display: -ms-flexbox;
includes/compatibility/class-wc-gzd-compatibility-et-builder.php CHANGED
@@ -51,6 +51,21 @@ class WC_GZD_Compatibility_ET_Builder extends WC_GZD_Compatibility {
51
  }
52
  } );
53
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  /**
55
  * Divi seems to set hooks on its own - make sure Germanized does not restore defaults
56
  */
51
  }
52
  } );
53
 
54
+ /**
55
+ * Divi has a bug: In case the summary hooks are moved within their custom logic to the actual Divi module, Divi does not recognize which hook
56
+ * adds which output. Instead, it appends the whole hook output each time the hook is being applied which leads to multiple outputs of the same content.
57
+ * Use a static priority to make sure the output is only added once until Divi fixes the problem.
58
+ *
59
+ * Last tested with Divi 4.14.7.
60
+ */
61
+ add_filter( 'et_builder_wc_relocate_single_product_summary_output_priority', function( $output_priority, $callback_name ) {
62
+ if ( strstr( $callback_name, 'woocommerce_gzd_' ) ) {
63
+ return 5;
64
+ }
65
+
66
+ return $output_priority;
67
+ }, 10, 2 );
68
+
69
  /**
70
  * Divi seems to set hooks on its own - make sure Germanized does not restore defaults
71
  */
includes/compatibility/class-wc-gzd-compatibility-woocommerce-paypal-payments.php CHANGED
@@ -23,13 +23,19 @@ class WC_GZD_Compatibility_WooCommerce_PayPal_Payments extends WC_GZD_Compatibil
23
 
24
  public function load() {
25
  add_filter( 'woocommerce_paypal_payments_checkout_button_renderer_hook', array( $this, 'move_paypal_payment_button' ), 10 );
 
 
 
 
 
 
 
 
 
 
26
  }
27
 
28
  public function move_paypal_payment_button( $filter ) {
29
- if ( ! wc_gzd_checkout_adjustments_disabled() ) {
30
- return 'woocommerce_gzd_review_order_before_submit';
31
- }
32
-
33
- return $filter;
34
  }
35
  }
23
 
24
  public function load() {
25
  add_filter( 'woocommerce_paypal_payments_checkout_button_renderer_hook', array( $this, 'move_paypal_payment_button' ), 10 );
26
+
27
+ add_action( 'woocommerce_gzd_review_order_before_submit', function() {
28
+ do_action( 'woocommerce_gzd_render_paypal_payments_smart_button' );
29
+ } );
30
+
31
+ add_action( 'woocommerce_review_order_before_submit', function() {
32
+ if ( wc_gzd_checkout_adjustments_disabled() ) {
33
+ do_action( 'woocommerce_gzd_render_paypal_payments_smart_button' );
34
+ }
35
+ } );
36
  }
37
 
38
  public function move_paypal_payment_button( $filter ) {
39
+ return 'woocommerce_gzd_render_paypal_payments_smart_button';
 
 
 
 
40
  }
41
  }
includes/wc-gzd-cart-functions.php CHANGED
@@ -969,11 +969,14 @@ function wc_gzd_maybe_disable_checkout_adjustments() {
969
  }
970
  } elseif ( ! wp_doing_ajax() && wc_gzd_checkout_adjustments_disabled() ) {
971
  add_action( 'woocommerce_review_order_before_payment', function() {
972
- echo '<input type="hidden" name="wc_gzd_checkout_disabled" value="1" />';
973
  }, 50 );
974
  }
975
 
976
  if ( wc_gzd_checkout_adjustments_disabled() ) {
 
 
 
977
  remove_action( 'woocommerce_checkout_order_review', 'woocommerce_order_review', 20 );
978
  remove_action( 'woocommerce_checkout_order_review', 'woocommerce_checkout_payment', 10 );
979
 
969
  }
970
  } elseif ( ! wp_doing_ajax() && wc_gzd_checkout_adjustments_disabled() ) {
971
  add_action( 'woocommerce_review_order_before_payment', function() {
972
+ echo '<input type="checkbox" name="wc_gzd_checkout_disabled" id="wc_gzd_checkout_disabled" value="1" checked="checked" style="display: none !important; visibility: hidden !important;" />';
973
  }, 50 );
974
  }
975
 
976
  if ( wc_gzd_checkout_adjustments_disabled() ) {
977
+ remove_action( 'woocommerce_review_order_before_cart_contents', 'woocommerce_gzd_template_checkout_table_content_replacement' );
978
+ remove_action( 'woocommerce_review_order_after_cart_contents', 'woocommerce_gzd_template_checkout_table_product_hide_filter_removal' );
979
+
980
  remove_action( 'woocommerce_checkout_order_review', 'woocommerce_order_review', 20 );
981
  remove_action( 'woocommerce_checkout_order_review', 'woocommerce_checkout_payment', 10 );
982
 
includes/wc-gzd-template-hooks.php CHANGED
@@ -214,6 +214,7 @@ add_action( 'woocommerce_pay_order_before_submit', 'woocommerce_gzd_template_che
214
 
215
  // Maybe remove checkout adjustments during AJAX requests and before rendering checkout
216
  add_action( 'woocommerce_checkout_init', 'wc_gzd_maybe_disable_checkout_adjustments', 20 );
 
217
 
218
  function woocommerce_gzd_checkout_load_ajax_relevant_hooks() {
219
  add_action( 'woocommerce_checkout_order_review', 'woocommerce_gzd_template_order_submit', wc_gzd_get_hook_priority( 'checkout_order_submit' ) );
214
 
215
  // Maybe remove checkout adjustments during AJAX requests and before rendering checkout
216
  add_action( 'woocommerce_checkout_init', 'wc_gzd_maybe_disable_checkout_adjustments', 20 );
217
+ add_action( 'woocommerce_checkout_update_order_review', 'wc_gzd_maybe_disable_checkout_adjustments', 20 );
218
 
219
  function woocommerce_gzd_checkout_load_ajax_relevant_hooks() {
220
  add_action( 'woocommerce_checkout_order_review', 'woocommerce_gzd_template_order_submit', wc_gzd_get_hook_priority( 'checkout_order_submit' ) );
packages/one-stop-shop-woocommerce/one-stop-shop-woocommerce.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Comply with the One Stop Shop procedure while using WooCommerce.
6
  * Author: vendidero
7
  * Author URI: https://vendidero.de
8
- * Version: 1.1.9
9
  * Requires PHP: 5.6
10
  * License: GPLv3
11
  * Tested up to: 5.9
5
  * Description: Comply with the One Stop Shop procedure while using WooCommerce.
6
  * Author: vendidero
7
  * Author URI: https://vendidero.de
8
+ * Version: 1.2.0
9
  * Requires PHP: 5.6
10
  * License: GPLv3
11
  * Tested up to: 5.9
packages/one-stop-shop-woocommerce/readme.txt CHANGED
@@ -5,7 +5,7 @@ Requires at least: 5.4
5
  Tested up to: 5.9
6
  WC requires at least: 3.9
7
  WC tested up to: 6.2
8
- Stable tag: 1.1.9
9
  Requires PHP: 5.6
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
@@ -60,6 +60,9 @@ Bug reports may be filed via our [GitHub repository](https://github.com/vendider
60
  3. Create a new report
61
 
62
  == Changelog ==
 
 
 
63
  = 1.1.9 =
64
  * Improvement: BOP CSV export (new format with Satzart)
65
 
5
  Tested up to: 5.9
6
  WC requires at least: 3.9
7
  WC tested up to: 6.2
8
+ Stable tag: 1.2.0
9
  Requires PHP: 5.6
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
60
  3. Create a new report
61
 
62
  == Changelog ==
63
+ = 1.2.0 =
64
+ * Improvement: Do not skip refunded parent orders
65
+
66
  = 1.1.9 =
67
  * Improvement: BOP CSV export (new format with Satzart)
68
 
packages/one-stop-shop-woocommerce/src/Package.php CHANGED
@@ -14,7 +14,7 @@ class Package {
14
  *
15
  * @var string
16
  */
17
- const VERSION = '1.1.9';
18
 
19
  /**
20
  * Init the package
14
  *
15
  * @var string
16
  */
17
+ const VERSION = '1.2.0';
18
 
19
  /**
20
  * Init the package
packages/one-stop-shop-woocommerce/src/Queue.php CHANGED
@@ -135,7 +135,11 @@ class Queue {
135
 
136
  public static function get_order_statuses() {
137
  $statuses = array_keys( wc_get_order_statuses() );
138
- $statuses = array_diff( $statuses, array( 'wc-refunded', 'wc-pending', 'wc-cancelled', 'wc-failed' ) );
 
 
 
 
139
 
140
  return apply_filters( 'oss_woocommerce_valid_order_statuses', $statuses );
141
  }
135
 
136
  public static function get_order_statuses() {
137
  $statuses = array_keys( wc_get_order_statuses() );
138
+ $statuses = array_diff( $statuses, array( 'wc-cancelled', 'wc-failed' ) );
139
+
140
+ if ( self::use_date_paid() ) {
141
+ $statuses = array_diff( $statuses, array( 'wc-pending' ) );
142
+ }
143
 
144
  return apply_filters( 'oss_woocommerce_valid_order_statuses', $statuses );
145
  }
packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php CHANGED
@@ -727,14 +727,7 @@ function wc_gzd_dhl_get_im_product_title( $product_name ) {
727
  }
728
 
729
  function wc_gzd_dhl_is_warenpost_international_available() {
730
- $now = new DateTime();
731
- $release = new DateTime( "2022-02-01" );
732
-
733
- if ( $now > $release ) {
734
- return true;
735
- }
736
-
737
- return false;
738
  }
739
 
740
  function wc_gzd_dhl_get_products_international() {
727
  }
728
 
729
  function wc_gzd_dhl_is_warenpost_international_available() {
730
+ return true;
 
 
 
 
 
 
 
731
  }
732
 
733
  function wc_gzd_dhl_get_products_international() {
packages/woocommerce-germanized-dhl/src/Admin/Status.php CHANGED
@@ -75,7 +75,6 @@ class Status {
75
 
76
  if ( Package::is_dhl_enabled() ) {
77
  $urls = array_merge( $urls, array(
78
- Package::get_gk_api_url() => 200,
79
  Package::get_rest_url() => 401,
80
  Package::get_cig_url() => 401,
81
  ) );
75
 
76
  if ( Package::is_dhl_enabled() ) {
77
  $urls = array_merge( $urls, array(
 
78
  Package::get_rest_url() => 401,
79
  Package::get_cig_url() => 401,
80
  ) );
packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php CHANGED
@@ -49,7 +49,72 @@ class LabelSoap extends Soap {
49
  }
50
 
51
  public function test_connection() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
 
 
53
  }
54
 
55
  /**
49
  }
50
 
51
  public function test_connection() {
52
+ $error = new \WP_Error();
53
+
54
+ try {
55
+ $soap_client = $this->get_access_token();
56
+ $response = $soap_client->validateShipment( array(
57
+ 'Version' => array(
58
+ 'majorRelease' => '3',
59
+ 'minorRelease' => '1'
60
+ ),
61
+ 'labelResponseType' => 'URL',
62
+ 'labelFormat' => '',
63
+ 'ShipmentOrder' => array(
64
+ 'sequenceNumber' => '',
65
+ 'Shipment' => array(
66
+ 'ShipmentDetails' => array(
67
+ 'product' => 'V01PAK',
68
+ 'accountNumber' => '12345678901234',
69
+ 'shipmentDate' => '2020-12-29',
70
+ 'ShipmentItem' => array(
71
+ 'weightInKG' => 5,
72
+ )
73
+ ),
74
+ 'Shipper' => array(
75
+ 'Name' => 'Test',
76
+ 'Address' => array(
77
+ 'streetName' => 'Street 1',
78
+ 'zip' => '12345',
79
+ 'city' => 'Berlin',
80
+ 'Origin' => array(
81
+ 'countryISOCode' => 'DE'
82
+ ),
83
+ ),
84
+ ),
85
+ 'Receiver' => array(
86
+ 'name1' => 'test1',
87
+ 'Address' => array(
88
+ 'streetName' => 'Street 2',
89
+ 'zip' => '12345',
90
+ 'city' => 'Berlin',
91
+ 'Origin' => array(
92
+ 'countryISOCode' => 'DE'
93
+ ),
94
+ ),
95
+ ),
96
+ ),
97
+ ),
98
+ )
99
+ );
100
+
101
+ if ( isset( $response->Status, $response->Status->statusCode ) ) {
102
+ if ( 1001 === (int) $response->Status->statusCode ) {
103
+ throw new \Exception( 'Unauthorized' );
104
+ }
105
+ }
106
+ } catch ( Exception $e ) {
107
+ switch( $e->getMessage() ) {
108
+ case "Unauthorized":
109
+ $error->add( 'unauthorized', _x( 'Your DHL API credentials seem to be invalid.', 'dhl', 'woocommerce-germanized' ) );
110
+ break;
111
+ default:
112
+ $error->add( $e->getCode(), $e->getMessage() );
113
+ break;
114
+ }
115
+ }
116
 
117
+ return wc_gzd_shipment_wp_error_has_errors( $error ) ? $error : true;
118
  }
119
 
120
  /**
packages/woocommerce-germanized-dhl/src/Package.php CHANGED
@@ -25,7 +25,7 @@ class Package {
25
  *
26
  * @var string
27
  */
28
- const VERSION = '1.6.8';
29
 
30
  public static $upload_dir_suffix = '';
31
 
25
  *
26
  * @var string
27
  */
28
+ const VERSION = '1.6.9';
29
 
30
  public static $upload_dir_suffix = '';
31
 
packages/woocommerce-germanized-dhl/src/ShippingProvider/DHL.php CHANGED
@@ -469,7 +469,10 @@ class DHL extends Auto {
469
  'type' => 'columns_end',
470
  ),
471
  ) );
472
- } elseif( Package::is_crossborder_shipment( $shipment->get_country(), $shipment->get_postcode() ) ) {
 
 
 
473
  $services = array_merge( $services, array(
474
  array(
475
  'id' => 'service_Premium',
@@ -961,7 +964,22 @@ class DHL extends Auto {
961
  return Package::get_available_countries();
962
  }
963
 
 
 
 
 
 
 
 
 
 
 
 
 
 
964
  protected function get_general_settings( $for_shipping_method = false ) {
 
 
965
  $settings = array(
966
  array( 'title' => '', 'type' => 'title', 'id' => 'dhl_general_options' ),
967
 
@@ -977,7 +995,7 @@ class DHL extends Auto {
977
 
978
  array( 'type' => 'sectionend', 'id' => 'dhl_general_options' ),
979
 
980
- array( 'title' => _x( 'API', 'dhl', 'woocommerce-germanized' ), 'type' => 'title', 'id' => 'dhl_api_options' ),
981
 
982
  array(
983
  'title' => _x( 'Enable Sandbox', 'dhl', 'woocommerce-germanized' ),
469
  'type' => 'columns_end',
470
  ),
471
  ) );
472
+ } else {
473
+ /**
474
+ * Premium service is only available for non-domestic shipments (e.g. Paket International, WaPo International)
475
+ */
476
  $services = array_merge( $services, array(
477
  array(
478
  'id' => 'service_Premium',
964
  return Package::get_available_countries();
965
  }
966
 
967
+ protected function get_connection_status_html() {
968
+ $username = wc_string_to_bool( $this->get_setting( 'sandbox_mode', 'no' ) ) ? $this->get_setting( 'api_sandbox_username', '' ) : $this->get_setting( 'api_username', '' );
969
+
970
+ if ( empty( $username ) ) {
971
+ return '';
972
+ }
973
+
974
+ $response = Package::get_api()->test_connection();
975
+ $has_error = is_wp_error( $response ) ? true : false;
976
+
977
+ return '<span class="wc-gzd-shipment-api-connection-status ' . ( $has_error ? 'connection-status-error' : 'connection-status-success' ) . '">' . ( sprintf( _x( 'Status: %1$s', 'dhl', 'woocommerce-germanized' ), ( $has_error ? $response->get_error_message() : _x( 'Connected', 'dhl', 'woocommerce-germanized' ) ) ) ) . '</span>';
978
+ }
979
+
980
  protected function get_general_settings( $for_shipping_method = false ) {
981
+ $connection_status_html = ( ! $for_shipping_method && $this->is_activated() ) ? $this->get_connection_status_html() : '';
982
+
983
  $settings = array(
984
  array( 'title' => '', 'type' => 'title', 'id' => 'dhl_general_options' ),
985
 
995
 
996
  array( 'type' => 'sectionend', 'id' => 'dhl_general_options' ),
997
 
998
+ array( 'title' => _x( 'API', 'dhl', 'woocommerce-germanized' ), 'type' => 'title', 'id' => 'dhl_api_options', 'desc' => $connection_status_html ),
999
 
1000
  array(
1001
  'title' => _x( 'Enable Sandbox', 'dhl', 'woocommerce-germanized' ),
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.6.8
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.6.9
9
  * Requires PHP: 5.6
10
  * License: GPLv3
11
  *
packages/woocommerce-germanized-shipments/assets/css/admin.css CHANGED
@@ -7,6 +7,19 @@
7
  font-size: 13px;
8
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); }
9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  .germanized-create-label .notice-wrapper .notice {
11
  margin: 0;
12
  margin-bottom: 1em; }
@@ -185,18 +198,21 @@ table.wc-gzd-shipping-providers {
185
  box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.4);
186
  background: #a46497;
187
  background: linear-gradient(to bottom, #a46497, #66405f), #a46497;
 
188
  transition: width 1s ease; }
189
  .woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress::-moz-progress-bar, .woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress::-moz-progress-bar {
190
  border-radius: 3px;
191
  box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.4);
192
  background: #a46497;
193
  background: linear-gradient(to bottom, #a46497, #66405f), #a46497;
 
194
  transition: width 1s ease; }
195
  .woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress::-ms-fill, .woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress::-ms-fill {
196
  border-radius: 3px;
197
  box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.4);
198
  background: #a46497;
199
  background: linear-gradient(to bottom, #a46497, #66405f), #a46497;
 
200
  transition: width 1s ease; }
201
 
202
  .woocommerce_page_wc-gzd-shipments #posts-filter.bulk-action-processing .bulk-action-wrapper, .woocommerce_page_wc-gzd-return-shipments #posts-filter.bulk-action-processing .bulk-action-wrapper {
7
  font-size: 13px;
8
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); }
9
 
10
+ .wc-gzd-admin-settings-shipping_provider .wc-gzd-shipment-api-connection-status {
11
+ padding: .2em .5em;
12
+ border-radius: 3px;
13
+ display: inline-flex;
14
+ white-space: nowrap;
15
+ border: 1px solid #CCC; }
16
+ .wc-gzd-admin-settings-shipping_provider .wc-gzd-shipment-api-connection-status.connection-status-error {
17
+ border-color: #761919;
18
+ color: #761919; }
19
+ .wc-gzd-admin-settings-shipping_provider .wc-gzd-shipment-api-connection-status.connection-status-success {
20
+ border-color: #5b841b;
21
+ color: #5b841b; }
22
+
23
  .germanized-create-label .notice-wrapper .notice {
24
  margin: 0;
25
  margin-bottom: 1em; }
198
  box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.4);
199
  background: #a46497;
200
  background: linear-gradient(to bottom, #a46497, #66405f), #a46497;
201
+ -webkit-transition: width 1s ease;
202
  transition: width 1s ease; }
203
  .woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress::-moz-progress-bar, .woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress::-moz-progress-bar {
204
  border-radius: 3px;
205
  box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.4);
206
  background: #a46497;
207
  background: linear-gradient(to bottom, #a46497, #66405f), #a46497;
208
+ -moz-transition: width 1s ease;
209
  transition: width 1s ease; }
210
  .woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress::-ms-fill, .woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress::-ms-fill {
211
  border-radius: 3px;
212
  box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.4);
213
  background: #a46497;
214
  background: linear-gradient(to bottom, #a46497, #66405f), #a46497;
215
+ -ms-transition: width 1s ease;
216
  transition: width 1s ease; }
217
 
218
  .woocommerce_page_wc-gzd-shipments #posts-filter.bulk-action-processing .bulk-action-wrapper, .woocommerce_page_wc-gzd-return-shipments #posts-filter.bulk-action-processing .bulk-action-wrapper {
packages/woocommerce-germanized-shipments/assets/css/admin.min.css CHANGED
@@ -1 +1 @@
1
- .wc-modal-shipping-method-settings .form-table td .wc-gzd-additional-desc{margin-top:1em;line-height:1.5em;background:#efefef;padding:.5em;font-style:normal;font-size:13px;box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}.germanized-create-label .notice-wrapper .notice{margin:0;margin-bottom:1em}.germanized-create-label .notice-wrapper .notice p{margin:.5em 0!important;padding:2px!important;font-size:13px;line-height:1.5}.germanized-create-label p.form-field{margin-bottom:5px!important;margin-top:5px!important}.germanized-create-label p.form-field:first-child,.germanized-create-label p.form-field:last-child{margin-bottom:5px!important;margin-top:5px!important}.germanized-create-label p.form-field:not(.column){display:inline-block;width:100%}.germanized-create-label .columns{margin-left:-.5rem!important;margin-right:-.5rem!important}.germanized-create-label .column{padding-left:.5rem!important;padding-right:.5rem!important}.germanized-create-label .hide-default,.germanized-create-label .show-if{display:none}.germanized-create-label .show-if label{color:#777}.germanized-create-label p.form-field label{width:100%;display:block;margin-bottom:5px;font-weight:700}.germanized-create-label p.form-field input[type=email],.germanized-create-label p.form-field input[type=text],.germanized-create-label p.form-field select{width:100%;max-width:100%}.germanized-create-label p.form-field.form-field-checkbox{display:flex;flex-wrap:wrap;flex-direction:row;justify-content:flex-start;margin-top:10px!important;margin-bottom:10px!important;align-items:center}.germanized-create-label p.form-field.form-field-checkbox label{width:auto;margin-left:.5em;font-weight:400;order:2;margin-bottom:0}.germanized-create-label p.form-field.form-field-checkbox input[type=checkbox]{order:1}.germanized-create-label p.form-field.form-field-checkbox .woocommerce-help-tip{order:3;margin-left:3px}.germanized-create-label p.form-field.form-field-checkbox .description{width:100%;margin-top:5px;color:#777;order:4;font-style:normal}table.wc-gzd-shipping-providers{margin-top:1.5em}table.wc-gzd-shipping-providers td,table.wc-gzd-shipping-providers th{display:table-cell!important;padding:1em!important;vertical-align:top;line-height:1.75em;font-size:14px}table.wc-gzd-shipping-providers th{font-weight:600}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-activated,table.wc-gzd-shipping-providers th.wc-gzd-shipping-provider-activated{width:1%;text-align:center}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-activated .status-disabled,table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-activated .status-enabled,table.wc-gzd-shipping-providers th.wc-gzd-shipping-provider-activated .status-disabled,table.wc-gzd-shipping-providers th.wc-gzd-shipping-provider-activated .status-enabled{display:inline-block;margin-top:3px}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-actions,table.wc-gzd-shipping-providers th.wc-gzd-shipping-provider-actions{width:15%;text-align:right}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-actions{display:flex;justify-content:flex-end;flex-wrap:wrap}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-actions .button{margin-right:5px}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-actions .button:last-child{margin-right:0}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-title,table.wc-gzd-shipping-providers th.wc-gzd-shipping-provider-title{width:30ch}table.wc-gzd-shipping-providers tr:nth-child(odd) td{background:#f9f9f9}.order-return-status,.order-shipping-status,.shipment-status{background:#eee;padding:.2em .5em;font-size:.9em;border-radius:3px;display:inline-flex;white-space:nowrap}.order-return-status.status-draft,.order-return-status.status-open,.order-return-status.status-partially-returned,.order-return-status.status-partially-shipped,.order-return-status.status-processing,.order-return-status.status-requested,.order-shipping-status.status-draft,.order-shipping-status.status-open,.order-shipping-status.status-partially-returned,.order-shipping-status.status-partially-shipped,.order-shipping-status.status-processing,.order-shipping-status.status-requested,.shipment-status.status-draft,.shipment-status.status-open,.shipment-status.status-partially-returned,.shipment-status.status-partially-shipped,.shipment-status.status-processing,.shipment-status.status-requested{background:#f8dda7;color:#94660c}.order-return-status.status-not-shipped,.order-shipping-status.status-not-shipped,.shipment-status.status-not-shipped{background:#eba3a3;color:#761919}.order-return-status.status-delivered,.order-return-status.status-returned,.order-return-status.status-shipped,.order-shipping-status.status-delivered,.order-shipping-status.status-returned,.order-shipping-status.status-shipped,.shipment-status.status-delivered,.shipment-status.status-returned,.shipment-status.status-shipped{background:#c6e1c6;color:#5b841b}.order-return-status.shipment-type-return-status.status-shipped,.order-shipping-status.shipment-type-return-status.status-shipped,.shipment-status.shipment-type-return-status.status-shipped{background:#f8dda7;color:#94660c}.woocommerce_page_wc-gzd-return-shipments .tablenav .actions,.woocommerce_page_wc-gzd-shipments .tablenav .actions{overflow:visible}.woocommerce_page_wc-gzd-return-shipments .tablenav .select2-container,.woocommerce_page_wc-gzd-shipments .tablenav .select2-container{float:left;width:240px!important;font-size:14px;vertical-align:middle;margin:1px 6px 4px 1px}.woocommerce_page_wc-gzd-return-shipments .tablenav .select2-container .select2-selection--single,.woocommerce_page_wc-gzd-shipments .tablenav .select2-container .select2-selection--single{height:32px}.woocommerce_page_wc-gzd-return-shipments .tablenav .select2-container .select2-selection--single .select2-selection__rendered,.woocommerce_page_wc-gzd-shipments .tablenav .select2-container .select2-selection--single .select2-selection__rendered{line-height:29px}.woocommerce_page_wc-gzd-return-shipments .tablenav .select2-container .select2-selection--single .select2-selection__arrow,.woocommerce_page_wc-gzd-shipments .tablenav .select2-container .select2-selection--single .select2-selection__arrow{height:30px}.woocommerce_page_wc-gzd-return-shipments .tablenav input,.woocommerce_page_wc-gzd-return-shipments .tablenav select,.woocommerce_page_wc-gzd-shipments .tablenav input,.woocommerce_page_wc-gzd-shipments .tablenav select{line-height:1;height:32px}.woocommerce_page_wc-gzd-return-shipments .tablenav input,.woocommerce_page_wc-gzd-shipments .tablenav input{height:31px}.woocommerce_page_wc-gzd-return-shipments .tablenav #shipment-query-submit,.woocommerce_page_wc-gzd-shipments .tablenav #shipment-query-submit{margin:1px 8px 0 0}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper{display:none;clear:both;margin:1em 0;float:left;width:50%}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper h4,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper h4{margin-top:0}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress{width:100%;height:42px;margin:0 auto;display:block;-webkit-appearance:none;border:none;background:#f5f5f5;border:2px solid #eee;border-radius:4px;padding:0;box-shadow:0 1px 0 0 rgba(255,255,255,.2)}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress::-webkit-progress-bar,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress::-webkit-progress-bar{background:transparent none;border:0;border-radius:4px;padding:0;box-shadow:none}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress::-webkit-progress-value,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress::-webkit-progress-value{border-radius:3px;box-shadow:inset 0 1px 1px 0 rgba(255,255,255,.4);background:#a46497;background:linear-gradient(to bottom,#a46497,#66405f),#a46497;transition:width 1s ease}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress::-moz-progress-bar,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress::-moz-progress-bar{border-radius:3px;box-shadow:inset 0 1px 1px 0 rgba(255,255,255,.4);background:#a46497;background:linear-gradient(to bottom,#a46497,#66405f),#a46497;transition:width 1s ease}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress::-ms-fill,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress::-ms-fill{border-radius:3px;box-shadow:inset 0 1px 1px 0 rgba(255,255,255,.4);background:#a46497;background:linear-gradient(to bottom,#a46497,#66405f),#a46497;transition:width 1s ease}.woocommerce_page_wc-gzd-return-shipments #posts-filter.bulk-action-processing .bulk-action-wrapper,.woocommerce_page_wc-gzd-shipments #posts-filter.bulk-action-processing .bulk-action-wrapper{display:block}.woocommerce_page_wc-gzd-return-shipments .wp-list-table,.woocommerce_page_wc-gzd-shipments .wp-list-table{margin-top:1em}.woocommerce_page_wc-gzd-return-shipments .wp-list-table td,.woocommerce_page_wc-gzd-return-shipments .wp-list-table th,.woocommerce_page_wc-gzd-shipments .wp-list-table td,.woocommerce_page_wc-gzd-shipments .wp-list-table th{padding:.5em 1em;width:10ch;vertical-align:middle}.woocommerce_page_wc-gzd-return-shipments .wp-list-table tbody th,.woocommerce_page_wc-gzd-return-shipments .wp-list-table td,.woocommerce_page_wc-gzd-shipments .wp-list-table tbody th,.woocommerce_page_wc-gzd-shipments .wp-list-table td{line-height:26px}.woocommerce_page_wc-gzd-return-shipments .wp-list-table thead th,.woocommerce_page_wc-gzd-shipments .wp-list-table thead th{padding:.5em 1em}.woocommerce_page_wc-gzd-return-shipments .wp-list-table thead th.sortable a,.woocommerce_page_wc-gzd-return-shipments .wp-list-table thead th.sorted a,.woocommerce_page_wc-gzd-shipments .wp-list-table thead th.sortable a,.woocommerce_page_wc-gzd-shipments .wp-list-table thead th.sorted a{padding:0}.woocommerce_page_wc-gzd-return-shipments .wp-list-table thead th:last-child,.woocommerce_page_wc-gzd-shipments .wp-list-table thead th:last-child{padding-right:2em}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .check-column,.woocommerce_page_wc-gzd-shipments .wp-list-table .check-column{width:16px;white-space:nowrap;padding:1em 1em 1em 1em!important;vertical-align:middle}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .check-column input,.woocommerce_page_wc-gzd-shipments .wp-list-table .check-column input{vertical-align:text-top;margin:1px 0}.woocommerce_page_wc-gzd-return-shipments .wp-list-table td.column-title,.woocommerce_page_wc-gzd-shipments .wp-list-table td.column-title{font-weight:700}.woocommerce_page_wc-gzd-return-shipments .wp-list-table td.column-title .shipment-title-meta,.woocommerce_page_wc-gzd-shipments .wp-list-table td.column-title .shipment-title-meta{margin-top:0;font-weight:400;color:#999;font-size:12px}.woocommerce_page_wc-gzd-return-shipments .wp-list-table td.column-title .shipment-title-meta .shipment-tracking-id,.woocommerce_page_wc-gzd-shipments .wp-list-table td.column-title .shipment-title-meta .shipment-tracking-id{color:#999;display:block}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-title,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-title{width:20ch}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions{width:10ch}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-order,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-order{width:10ch}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-address a,.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-sender a,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-address a,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-sender a{color:#32373c}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .shipment-status,.woocommerce_page_wc-gzd-shipments .wp-list-table .shipment-status{font-size:1em}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions{text-align:right}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button{text-indent:9999px;margin:2px 0 2px 4px;position:relative;display:inline-block;padding:0;height:2em;width:2em;overflow:hidden;vertical-align:middle}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button::after{font-family:Dashicons;margin:0;margin-top:2px;speak:none;font-weight:400;font-variant:normal;text-transform:none;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;line-height:1.85}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.processing::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.processing::after{font-family:WooCommerce;content:"\e00f"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.shipped::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.shipped::after{content:"\f147"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.delivered::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.delivered::after{content:"\f147"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.confirm::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.confirm::after{content:"\f147"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.generate::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.generate::after{content:"\f502"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.download::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.download::after{content:"\f103"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-address,.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-sender,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-address,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-sender{width:20ch}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-items,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-items{width:20ch}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview{font-size:.9em;border-spacing:0}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview thead th,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview thead th{color:#adadad;padding-top:0;font-size:1.1em}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview tr td,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview tr td{border-bottom:1px solid #ccc!important}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview tr:last-child td,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview tr:last-child td{border-bottom:none!important}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td,.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th{padding:.3em 0;vertical-align:top;line-height:20px}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-name,.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th.wc-gzd-shipment-item-column-name,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-name,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th.wc-gzd-shipment-item-column-name{width:70%}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-name small,.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th.wc-gzd-shipment-item-column-name small,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-name small,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th.wc-gzd-shipment-item-column-name small{color:#999;font-size:12px}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-quantity,.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th.wc-gzd-shipment-item-column-quantity,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-quantity,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th.wc-gzd-shipment-item-column-quantity{text-align:right;padding-right:.5em}#woocommerce-gzd-order-shipments{border-bottom:1px solid #c3c4c7!important}#woocommerce-gzd-order-shipments .inside{margin:0;padding:0;display:block!important}#woocommerce-gzd-order-shipments .handlediv,#woocommerce-gzd-order-shipments .hndle,#woocommerce-gzd-order-shipments .postbox-header{display:none}#woocommerce-gzd-order-shipments .hide-default{display:none}.germanized-shipments *{box-sizing:border-box}.germanized-shipments #panel-order-shipments{padding:23px 0 0}.germanized-shipments #panel-order-shipments .panel-inner{padding:0 24px}.germanized-shipments #panel-order-shipments .panel-title-inner{padding-left:0;margin-top:1em;padding-right:0}.germanized-shipments #panel-order-shipments .panel-title{margin-bottom:1.5em}.germanized-shipments #panel-order-shipments .panel-title h2{margin:0;font-family:HelveticaNeue-Light,"Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:21px;font-weight:400;line-height:1.2;text-shadow:1px 1px 1px #fff;padding:0}.germanized-shipments #panel-order-shipments .panel-footer{background:#f8f8f8;padding-top:1em;padding-bottom:1em;border-top:1px solid #dfdfdf;display:none}.germanized-shipments #panel-order-shipments .panel-footer .order-shipments-actions{display:flex;flex-wrap:nowrap;justify-content:space-between}.germanized-shipments #panel-order-shipments .panel-footer .order-shipments-actions .shipment-actions-left{display:flex;flex-wrap:wrap;justify-content:flex-start}.germanized-shipments #panel-order-shipments .panel-footer .order-shipments-actions .shipment-actions-left .button{margin-right:1em}.germanized-shipments #panel-order-shipments .panel-footer #order-shipments-save{display:none}.germanized-shipments #panel-order-shipments #order-return-shipment-add,.germanized-shipments #panel-order-shipments #order-shipment-add{display:none}.germanized-shipments #panel-order-shipments.needs-shipments .panel-footer{display:block}.germanized-shipments #panel-order-shipments.needs-shipments #order-shipment-add{display:block}.germanized-shipments #panel-order-shipments.needs-returns .panel-footer{display:block}.germanized-shipments #panel-order-shipments.needs-returns #order-return-shipment-add{display:block}.germanized-shipments #panel-order-shipments #order-shipments-list{margin-bottom:1.5em}.germanized-shipments #panel-order-shipments .delete{color:#a00}.germanized-shipments #panel-order-shipments .delete:hover{color:#dc3232;border:none}.germanized-shipments #panel-order-shipments .order-shipment a .woocommerce-help-tip{margin-right:3px}.germanized-shipments #panel-order-shipments .order-shipment .handlediv{display:inline-block;float:none;width:auto;height:auto}.germanized-shipments #panel-order-shipments .order-shipment .handlediv .toggle-indicator::before{content:"\f140"}.germanized-shipments #panel-order-shipments .order-shipment .wc-gzd-shipment-label h4{margin-top:0}.germanized-shipments #panel-order-shipments .order-shipment .wc-gzd-shipment-label .shipment-label-actions .shipment-label-actions-wrapper{display:flex;flex-wrap:wrap;justify-content:flex-start;margin-bottom:1em;align-items:center}.germanized-shipments #panel-order-shipments .order-shipment .wc-gzd-shipment-label .shipment-label-actions .shipment-label-actions-wrapper a{margin-right:1em}.germanized-shipments #panel-order-shipments .order-shipment .show-if{display:none}.germanized-shipments #panel-order-shipments .order-shipment.active>.shipment-content-wrapper{display:block}.germanized-shipments #panel-order-shipments .order-shipment.active>.shipment-header>.right>.handlediv .toggle-indicator::before{content:"\f142"}.germanized-shipments #panel-order-shipments .order-shipment .item-count{margin-right:1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-footer{margin-top:1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-footer .shipment-footer-inner{display:flex;flex-wrap:nowrap;justify-content:flex-end;padding:0 .5em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-footer .shipment-footer-inner a.shipment-footer-action{margin-right:1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-footer .shipment-footer-inner a.shipment-footer-action:last-child{margin-right:0}.germanized-shipments #panel-order-shipments .order-shipment .shipment-header{color:#999;background:#f8f8f8;margin:1.5em 0;padding:.5em 1em;cursor:pointer}.germanized-shipments #panel-order-shipments .order-shipment .shipment-header .shipment-status{margin-left:1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-header h3{margin:0}.germanized-shipments #panel-order-shipments .order-shipment:first-child .shipment-header{margin-top:0}.germanized-shipments #panel-order-shipments .order-shipment .shipment-header:hover,.germanized-shipments #panel-order-shipments .order-shipment.active>.shipment-header{background:#f3f3f3}.germanized-shipments #panel-order-shipments .order-shipment .shipment-content-wrapper{display:none}.germanized-shipments #panel-order-shipments .order-shipment .shipment-content{padding:1em;margin-top:-1.5em;padding-bottom:0}.germanized-shipments #panel-order-shipments .order-shipment .add-shipment-return{display:none}.germanized-shipments #panel-order-shipments .order-shipment.is-returnable .add-shipment-return{display:block}.germanized-shipments #panel-order-shipments .order-shipment p.form-row{margin-bottom:1.5em}.germanized-shipments #panel-order-shipments .order-shipment p.form-row.wc-gzd-shipment-packaging-wrapper{margin-top:0}.germanized-shipments #panel-order-shipments .order-shipment p.form-row input[type=email],.germanized-shipments #panel-order-shipments .order-shipment p.form-row input[type=number],.germanized-shipments #panel-order-shipments .order-shipment p.form-row input[type=text]{height:30px}.germanized-shipments #panel-order-shipments .order-shipment p.form-row select{line-height:30px;height:30px;padding-top:0;padding-bottom:0}.germanized-shipments #panel-order-shipments .order-shipment p.form-row label{color:#999;font-weight:600}.germanized-shipments #panel-order-shipments .order-shipment p.form-row label .woocommerce-help-tip{float:none}.germanized-shipments #panel-order-shipments .order-shipment .columns .column.column-spaced{margin:5px 0}.germanized-shipments #panel-order-shipments .order-shipment .columns .column h4{margin-bottom:.7em;color:#999}.germanized-shipments #panel-order-shipments .order-shipment .columns .column h4 a{color:#999;text-decoration:none}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item-action{text-align:right}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item-quantity input{width:60px;text-align:center}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item-name p.form-row{margin-bottom:0;margin-top:.5em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item-heading{padding:.5em;color:#999;background:#f8f8f8;font-weight:600}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item{padding:.5em;border-bottom:1px solid #dfdfdf}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item:last-child{border-bottom:none}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item:nth-child(2n){background:#f8f8f8}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item .columns{align-items:center}.germanized-shipments #panel-order-shipments .order-shipment .shipment-item-actions{display:flex;padding:.7em .5em;flex-wrap:nowrap;justify-content:flex-end;border-top:1px solid #dfdfdf}.germanized-shipments #panel-order-shipments .order-shipment .shipment-item-actions .add-items{margin-right:1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-item-actions .woocommerce-help-tip{margin-left:0}.germanized-shipments #panel-order-shipments .order-shipment .add-items{display:none}.germanized-shipments #panel-order-shipments .order-shipment .shipment-returns{margin-top:.5em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-returns .shipment-return .shipment-header{background:0 0;border-bottom:1px solid #dfdfdf;padding-left:0;padding-right:0}.germanized-shipments #panel-order-shipments .order-shipment .shipment-returns .shipment-return .shipment-header h3{font-size:1.1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-returns .shipment-return .shipment-content{padding:1em 0}.germanized-shipments #panel-order-shipments .order-shipment.needs-items .add-items{display:block}.germanized-shipments #panel-order-shipments .form-row .input-inner-wrap{clear:left;margin:0;display:flex;flex-wrap:nowrap}.germanized-shipments #panel-order-shipments .form-row .input-inner-wrap input{margin-right:1em}.germanized-shipments #panel-order-shipments .form-row .input-inner-wrap input:last-child{margin-right:0}.germanized-shipments .title-spread{display:flex;flex-wrap:nowrap;justify-content:space-between;align-items:center}.germanized-shipments .title-spread .left,.germanized-shipments .title-spread .right{display:inline-flex;align-items:center}.germanized-shipments .show-lg,.germanized-shipments .show-md,.germanized-shipments .show-sm,.germanized-shipments .show-xl,.germanized-shipments .show-xs{display:none!important}.germanized-shipments .columns{display:flex;flex-wrap:wrap;margin-left:-1rem;margin-right:-1rem}.germanized-shipments .columns.col-gapless{margin-left:0;margin-right:0}.germanized-shipments .columns.col-gapless>.column{padding-left:0;padding-right:0}.germanized-shipments .columns.col-oneline{flex-wrap:nowrap;overflow-x:auto}.germanized-shipments .column{flex:1;max-width:100%;padding-left:1rem;padding-right:1rem}.germanized-shipments .column.col-1,.germanized-shipments .column.col-10,.germanized-shipments .column.col-11,.germanized-shipments .column.col-12,.germanized-shipments .column.col-2,.germanized-shipments .column.col-3,.germanized-shipments .column.col-4,.germanized-shipments .column.col-5,.germanized-shipments .column.col-6,.germanized-shipments .column.col-7,.germanized-shipments .column.col-8,.germanized-shipments .column.col-9,.germanized-shipments .column.col-auto{flex:none}.germanized-shipments .col-12{width:100%}.germanized-shipments .col-11{width:91.66666667%}.germanized-shipments .col-10{width:83.33333333%}.germanized-shipments .col-9{width:75%}.germanized-shipments .col-8{width:66.66666667%}.germanized-shipments .col-7{width:58.33333333%}.germanized-shipments .col-6{width:50%}.germanized-shipments .col-5{width:41.66666667%}.germanized-shipments .col-4{width:33.33333333%}.germanized-shipments .col-3{width:25%}.germanized-shipments .col-2{width:16.66666667%}.germanized-shipments .col-1{width:8.33333333%}.germanized-shipments .col-auto{flex:0 0 auto;max-width:none;width:auto}.germanized-shipments .col-mx-auto{margin-left:auto;margin-right:auto}.germanized-shipments .col-ml-auto{margin-left:auto}.germanized-shipments .col-mr-auto{margin-right:auto}@media (max-width:1280px){.germanized-shipments .col-xl-1,.germanized-shipments .col-xl-10,.germanized-shipments .col-xl-11,.germanized-shipments .col-xl-12,.germanized-shipments .col-xl-2,.germanized-shipments .col-xl-3,.germanized-shipments .col-xl-4,.germanized-shipments .col-xl-5,.germanized-shipments .col-xl-6,.germanized-shipments .col-xl-7,.germanized-shipments .col-xl-8,.germanized-shipments .col-xl-9,.germanized-shipments .col-xl-auto{flex:none}.germanized-shipments .col-xl-12{width:100%}.germanized-shipments .col-xl-11{width:91.66666667%}.germanized-shipments .col-xl-10{width:83.33333333%}.germanized-shipments .col-xl-9{width:75%}.germanized-shipments .col-xl-8{width:66.66666667%}.germanized-shipments .col-xl-7{width:58.33333333%}.germanized-shipments .col-xl-6{width:50%}.germanized-shipments .col-xl-5{width:41.66666667%}.germanized-shipments .col-xl-4{width:33.33333333%}.germanized-shipments .col-xl-3{width:25%}.germanized-shipments .col-xl-2{width:16.66666667%}.germanized-shipments .col-xl-1{width:8.33333333%}.germanized-shipments .col-xl-auto{width:auto}.germanized-shipments .hide-xl{display:none!important}.germanized-shipments .show-xl{display:block!important}}@media (max-width:960px){.germanized-shipments .col-lg-1,.germanized-shipments .col-lg-10,.germanized-shipments .col-lg-11,.germanized-shipments .col-lg-12,.germanized-shipments .col-lg-2,.germanized-shipments .col-lg-3,.germanized-shipments .col-lg-4,.germanized-shipments .col-lg-5,.germanized-shipments .col-lg-6,.germanized-shipments .col-lg-7,.germanized-shipments .col-lg-8,.germanized-shipments .col-lg-9,.germanized-shipments .col-lg-auto{flex:none}.germanized-shipments .col-lg-12{width:100%}.germanized-shipments .col-lg-11{width:91.66666667%}.germanized-shipments .col-lg-10{width:83.33333333%}.germanized-shipments .col-lg-9{width:75%}.germanized-shipments .col-lg-8{width:66.66666667%}.germanized-shipments .col-lg-7{width:58.33333333%}.germanized-shipments .col-lg-6{width:50%}.germanized-shipments .col-lg-5{width:41.66666667%}.germanized-shipments .col-lg-4{width:33.33333333%}.germanized-shipments .col-lg-3{width:25%}.germanized-shipments .col-lg-2{width:16.66666667%}.germanized-shipments .col-lg-1{width:8.33333333%}.germanized-shipments .col-lg-auto{width:auto}.germanized-shipments .hide-lg{display:none!important}.germanized-shipments .show-lg{display:block!important}}@media (max-width:840px){.germanized-shipments .col-md-1,.germanized-shipments .col-md-10,.germanized-shipments .col-md-11,.germanized-shipments .col-md-12,.germanized-shipments .col-md-2,.germanized-shipments .col-md-3,.germanized-shipments .col-md-4,.germanized-shipments .col-md-5,.germanized-shipments .col-md-6,.germanized-shipments .col-md-7,.germanized-shipments .col-md-8,.germanized-shipments .col-md-9,.germanized-shipments .col-md-auto{flex:none}.germanized-shipments .col-md-12{width:100%}.germanized-shipments .col-md-11{width:91.66666667%}.germanized-shipments .col-md-10{width:83.33333333%}.germanized-shipments .col-md-9{width:75%}.germanized-shipments .col-md-8{width:66.66666667%}.germanized-shipments .col-md-7{width:58.33333333%}.germanized-shipments .col-md-6{width:50%}.germanized-shipments .col-md-5{width:41.66666667%}.germanized-shipments .col-md-4{width:33.33333333%}.germanized-shipments .col-md-3{width:25%}.germanized-shipments .col-md-2{width:16.66666667%}.germanized-shipments .col-md-1{width:8.33333333%}.germanized-shipments .col-md-auto{width:auto}.germanized-shipments .hide-md{display:none!important}.germanized-shipments .show-md{display:block!important}}@media (max-width:600px){.germanized-shipments .col-sm-1,.germanized-shipments .col-sm-10,.germanized-shipments .col-sm-11,.germanized-shipments .col-sm-12,.germanized-shipments .col-sm-2,.germanized-shipments .col-sm-3,.germanized-shipments .col-sm-4,.germanized-shipments .col-sm-5,.germanized-shipments .col-sm-6,.germanized-shipments .col-sm-7,.germanized-shipments .col-sm-8,.germanized-shipments .col-sm-9,.germanized-shipments .col-sm-auto{flex:none}.germanized-shipments .col-sm-12{width:100%}.germanized-shipments .col-sm-11{width:91.66666667%}.germanized-shipments .col-sm-10{width:83.33333333%}.germanized-shipments .col-sm-9{width:75%}.germanized-shipments .col-sm-8{width:66.66666667%}.germanized-shipments .col-sm-7{width:58.33333333%}.germanized-shipments .col-sm-6{width:50%}.germanized-shipments .col-sm-5{width:41.66666667%}.germanized-shipments .col-sm-4{width:33.33333333%}.germanized-shipments .col-sm-3{width:25%}.germanized-shipments .col-sm-2{width:16.66666667%}.germanized-shipments .col-sm-1{width:8.33333333%}.germanized-shipments .col-sm-auto{width:auto}.germanized-shipments .hide-sm{display:none!important}.germanized-shipments .show-sm{display:block!important}}@media (max-width:480px){.germanized-shipments .col-xs-1,.germanized-shipments .col-xs-10,.germanized-shipments .col-xs-11,.germanized-shipments .col-xs-12,.germanized-shipments .col-xs-2,.germanized-shipments .col-xs-3,.germanized-shipments .col-xs-4,.germanized-shipments .col-xs-5,.germanized-shipments .col-xs-6,.germanized-shipments .col-xs-7,.germanized-shipments .col-xs-8,.germanized-shipments .col-xs-9,.germanized-shipments .col-xs-auto{flex:none}.germanized-shipments .col-xs-12{width:100%}.germanized-shipments .col-xs-11{width:91.66666667%}.germanized-shipments .col-xs-10{width:83.33333333%}.germanized-shipments .col-xs-9{width:75%}.germanized-shipments .col-xs-8{width:66.66666667%}.germanized-shipments .col-xs-7{width:58.33333333%}.germanized-shipments .col-xs-6{width:50%}.germanized-shipments .col-xs-5{width:41.66666667%}.germanized-shipments .col-xs-4{width:33.33333333%}.germanized-shipments .col-xs-3{width:25%}.germanized-shipments .col-xs-2{width:16.66666667%}.germanized-shipments .col-xs-1{width:8.33333333%}.germanized-shipments .col-xs-auto{width:auto}.germanized-shipments .hide-xs{display:none!important}.germanized-shipments .show-xs{display:block!important}}
1
+ .wc-modal-shipping-method-settings .form-table td .wc-gzd-additional-desc{margin-top:1em;line-height:1.5em;background:#efefef;padding:.5em;font-style:normal;font-size:13px;box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}.wc-gzd-admin-settings-shipping_provider .wc-gzd-shipment-api-connection-status{padding:.2em .5em;border-radius:3px;display:inline-flex;white-space:nowrap;border:1px solid #ccc}.wc-gzd-admin-settings-shipping_provider .wc-gzd-shipment-api-connection-status.connection-status-error{border-color:#761919;color:#761919}.wc-gzd-admin-settings-shipping_provider .wc-gzd-shipment-api-connection-status.connection-status-success{border-color:#5b841b;color:#5b841b}.germanized-create-label .notice-wrapper .notice{margin:0;margin-bottom:1em}.germanized-create-label .notice-wrapper .notice p{margin:.5em 0!important;padding:2px!important;font-size:13px;line-height:1.5}.germanized-create-label p.form-field{margin-bottom:5px!important;margin-top:5px!important}.germanized-create-label p.form-field:first-child,.germanized-create-label p.form-field:last-child{margin-bottom:5px!important;margin-top:5px!important}.germanized-create-label p.form-field:not(.column){display:inline-block;width:100%}.germanized-create-label .columns{margin-left:-.5rem!important;margin-right:-.5rem!important}.germanized-create-label .column{padding-left:.5rem!important;padding-right:.5rem!important}.germanized-create-label .hide-default,.germanized-create-label .show-if{display:none}.germanized-create-label .show-if label{color:#777}.germanized-create-label p.form-field label{width:100%;display:block;margin-bottom:5px;font-weight:700}.germanized-create-label p.form-field input[type=email],.germanized-create-label p.form-field input[type=text],.germanized-create-label p.form-field select{width:100%;max-width:100%}.germanized-create-label p.form-field.form-field-checkbox{display:flex;flex-wrap:wrap;flex-direction:row;justify-content:flex-start;margin-top:10px!important;margin-bottom:10px!important;align-items:center}.germanized-create-label p.form-field.form-field-checkbox label{width:auto;margin-left:.5em;font-weight:400;order:2;margin-bottom:0}.germanized-create-label p.form-field.form-field-checkbox input[type=checkbox]{order:1}.germanized-create-label p.form-field.form-field-checkbox .woocommerce-help-tip{order:3;margin-left:3px}.germanized-create-label p.form-field.form-field-checkbox .description{width:100%;margin-top:5px;color:#777;order:4;font-style:normal}table.wc-gzd-shipping-providers{margin-top:1.5em}table.wc-gzd-shipping-providers td,table.wc-gzd-shipping-providers th{display:table-cell!important;padding:1em!important;vertical-align:top;line-height:1.75em;font-size:14px}table.wc-gzd-shipping-providers th{font-weight:600}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-activated,table.wc-gzd-shipping-providers th.wc-gzd-shipping-provider-activated{width:1%;text-align:center}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-activated .status-disabled,table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-activated .status-enabled,table.wc-gzd-shipping-providers th.wc-gzd-shipping-provider-activated .status-disabled,table.wc-gzd-shipping-providers th.wc-gzd-shipping-provider-activated .status-enabled{display:inline-block;margin-top:3px}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-actions,table.wc-gzd-shipping-providers th.wc-gzd-shipping-provider-actions{width:15%;text-align:right}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-actions{display:flex;justify-content:flex-end;flex-wrap:wrap}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-actions .button{margin-right:5px}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-actions .button:last-child{margin-right:0}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-title,table.wc-gzd-shipping-providers th.wc-gzd-shipping-provider-title{width:30ch}table.wc-gzd-shipping-providers tr:nth-child(odd) td{background:#f9f9f9}.order-return-status,.order-shipping-status,.shipment-status{background:#eee;padding:.2em .5em;font-size:.9em;border-radius:3px;display:inline-flex;white-space:nowrap}.order-return-status.status-draft,.order-return-status.status-open,.order-return-status.status-partially-returned,.order-return-status.status-partially-shipped,.order-return-status.status-processing,.order-return-status.status-requested,.order-shipping-status.status-draft,.order-shipping-status.status-open,.order-shipping-status.status-partially-returned,.order-shipping-status.status-partially-shipped,.order-shipping-status.status-processing,.order-shipping-status.status-requested,.shipment-status.status-draft,.shipment-status.status-open,.shipment-status.status-partially-returned,.shipment-status.status-partially-shipped,.shipment-status.status-processing,.shipment-status.status-requested{background:#f8dda7;color:#94660c}.order-return-status.status-not-shipped,.order-shipping-status.status-not-shipped,.shipment-status.status-not-shipped{background:#eba3a3;color:#761919}.order-return-status.status-delivered,.order-return-status.status-returned,.order-return-status.status-shipped,.order-shipping-status.status-delivered,.order-shipping-status.status-returned,.order-shipping-status.status-shipped,.shipment-status.status-delivered,.shipment-status.status-returned,.shipment-status.status-shipped{background:#c6e1c6;color:#5b841b}.order-return-status.shipment-type-return-status.status-shipped,.order-shipping-status.shipment-type-return-status.status-shipped,.shipment-status.shipment-type-return-status.status-shipped{background:#f8dda7;color:#94660c}.woocommerce_page_wc-gzd-return-shipments .tablenav .actions,.woocommerce_page_wc-gzd-shipments .tablenav .actions{overflow:visible}.woocommerce_page_wc-gzd-return-shipments .tablenav .select2-container,.woocommerce_page_wc-gzd-shipments .tablenav .select2-container{float:left;width:240px!important;font-size:14px;vertical-align:middle;margin:1px 6px 4px 1px}.woocommerce_page_wc-gzd-return-shipments .tablenav .select2-container .select2-selection--single,.woocommerce_page_wc-gzd-shipments .tablenav .select2-container .select2-selection--single{height:32px}.woocommerce_page_wc-gzd-return-shipments .tablenav .select2-container .select2-selection--single .select2-selection__rendered,.woocommerce_page_wc-gzd-shipments .tablenav .select2-container .select2-selection--single .select2-selection__rendered{line-height:29px}.woocommerce_page_wc-gzd-return-shipments .tablenav .select2-container .select2-selection--single .select2-selection__arrow,.woocommerce_page_wc-gzd-shipments .tablenav .select2-container .select2-selection--single .select2-selection__arrow{height:30px}.woocommerce_page_wc-gzd-return-shipments .tablenav input,.woocommerce_page_wc-gzd-return-shipments .tablenav select,.woocommerce_page_wc-gzd-shipments .tablenav input,.woocommerce_page_wc-gzd-shipments .tablenav select{line-height:1;height:32px}.woocommerce_page_wc-gzd-return-shipments .tablenav input,.woocommerce_page_wc-gzd-shipments .tablenav input{height:31px}.woocommerce_page_wc-gzd-return-shipments .tablenav #shipment-query-submit,.woocommerce_page_wc-gzd-shipments .tablenav #shipment-query-submit{margin:1px 8px 0 0}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper{display:none;clear:both;margin:1em 0;float:left;width:50%}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper h4,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper h4{margin-top:0}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress{width:100%;height:42px;margin:0 auto;display:block;-webkit-appearance:none;border:none;background:#f5f5f5;border:2px solid #eee;border-radius:4px;padding:0;box-shadow:0 1px 0 0 rgba(255,255,255,.2)}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress::-webkit-progress-bar,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress::-webkit-progress-bar{background:transparent none;border:0;border-radius:4px;padding:0;box-shadow:none}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress::-webkit-progress-value,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress::-webkit-progress-value{border-radius:3px;box-shadow:inset 0 1px 1px 0 rgba(255,255,255,.4);background:#a46497;background:linear-gradient(to bottom,#a46497,#66405f),#a46497;-webkit-transition:width 1s ease;transition:width 1s ease}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress::-moz-progress-bar,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress::-moz-progress-bar{border-radius:3px;box-shadow:inset 0 1px 1px 0 rgba(255,255,255,.4);background:#a46497;background:linear-gradient(to bottom,#a46497,#66405f),#a46497;-moz-transition:width 1s ease;transition:width 1s ease}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress::-ms-fill,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress::-ms-fill{border-radius:3px;box-shadow:inset 0 1px 1px 0 rgba(255,255,255,.4);background:#a46497;background:linear-gradient(to bottom,#a46497,#66405f),#a46497;-ms-transition:width 1s ease;transition:width 1s ease}.woocommerce_page_wc-gzd-return-shipments #posts-filter.bulk-action-processing .bulk-action-wrapper,.woocommerce_page_wc-gzd-shipments #posts-filter.bulk-action-processing .bulk-action-wrapper{display:block}.woocommerce_page_wc-gzd-return-shipments .wp-list-table,.woocommerce_page_wc-gzd-shipments .wp-list-table{margin-top:1em}.woocommerce_page_wc-gzd-return-shipments .wp-list-table td,.woocommerce_page_wc-gzd-return-shipments .wp-list-table th,.woocommerce_page_wc-gzd-shipments .wp-list-table td,.woocommerce_page_wc-gzd-shipments .wp-list-table th{padding:.5em 1em;width:10ch;vertical-align:middle}.woocommerce_page_wc-gzd-return-shipments .wp-list-table tbody th,.woocommerce_page_wc-gzd-return-shipments .wp-list-table td,.woocommerce_page_wc-gzd-shipments .wp-list-table tbody th,.woocommerce_page_wc-gzd-shipments .wp-list-table td{line-height:26px}.woocommerce_page_wc-gzd-return-shipments .wp-list-table thead th,.woocommerce_page_wc-gzd-shipments .wp-list-table thead th{padding:.5em 1em}.woocommerce_page_wc-gzd-return-shipments .wp-list-table thead th.sortable a,.woocommerce_page_wc-gzd-return-shipments .wp-list-table thead th.sorted a,.woocommerce_page_wc-gzd-shipments .wp-list-table thead th.sortable a,.woocommerce_page_wc-gzd-shipments .wp-list-table thead th.sorted a{padding:0}.woocommerce_page_wc-gzd-return-shipments .wp-list-table thead th:last-child,.woocommerce_page_wc-gzd-shipments .wp-list-table thead th:last-child{padding-right:2em}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .check-column,.woocommerce_page_wc-gzd-shipments .wp-list-table .check-column{width:16px;white-space:nowrap;padding:1em 1em 1em 1em!important;vertical-align:middle}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .check-column input,.woocommerce_page_wc-gzd-shipments .wp-list-table .check-column input{vertical-align:text-top;margin:1px 0}.woocommerce_page_wc-gzd-return-shipments .wp-list-table td.column-title,.woocommerce_page_wc-gzd-shipments .wp-list-table td.column-title{font-weight:700}.woocommerce_page_wc-gzd-return-shipments .wp-list-table td.column-title .shipment-title-meta,.woocommerce_page_wc-gzd-shipments .wp-list-table td.column-title .shipment-title-meta{margin-top:0;font-weight:400;color:#999;font-size:12px}.woocommerce_page_wc-gzd-return-shipments .wp-list-table td.column-title .shipment-title-meta .shipment-tracking-id,.woocommerce_page_wc-gzd-shipments .wp-list-table td.column-title .shipment-title-meta .shipment-tracking-id{color:#999;display:block}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-title,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-title{width:20ch}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions{width:10ch}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-order,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-order{width:10ch}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-address a,.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-sender a,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-address a,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-sender a{color:#32373c}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .shipment-status,.woocommerce_page_wc-gzd-shipments .wp-list-table .shipment-status{font-size:1em}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions{text-align:right}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button{text-indent:9999px;margin:2px 0 2px 4px;position:relative;display:inline-block;padding:0;height:2em;width:2em;overflow:hidden;vertical-align:middle}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button::after{font-family:Dashicons;margin:0;margin-top:2px;speak:none;font-weight:400;font-variant:normal;text-transform:none;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;line-height:1.85}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.processing::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.processing::after{font-family:WooCommerce;content:"\e00f"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.shipped::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.shipped::after{content:"\f147"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.delivered::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.delivered::after{content:"\f147"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.confirm::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.confirm::after{content:"\f147"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.generate::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.generate::after{content:"\f502"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.download::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.download::after{content:"\f103"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-address,.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-sender,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-address,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-sender{width:20ch}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-items,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-items{width:20ch}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview{font-size:.9em;border-spacing:0}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview thead th,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview thead th{color:#adadad;padding-top:0;font-size:1.1em}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview tr td,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview tr td{border-bottom:1px solid #ccc!important}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview tr:last-child td,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview tr:last-child td{border-bottom:none!important}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td,.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th{padding:.3em 0;vertical-align:top;line-height:20px}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-name,.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th.wc-gzd-shipment-item-column-name,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-name,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th.wc-gzd-shipment-item-column-name{width:70%}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-name small,.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th.wc-gzd-shipment-item-column-name small,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-name small,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th.wc-gzd-shipment-item-column-name small{color:#999;font-size:12px}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-quantity,.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th.wc-gzd-shipment-item-column-quantity,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-quantity,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th.wc-gzd-shipment-item-column-quantity{text-align:right;padding-right:.5em}#woocommerce-gzd-order-shipments{border-bottom:1px solid #c3c4c7!important}#woocommerce-gzd-order-shipments .inside{margin:0;padding:0;display:block!important}#woocommerce-gzd-order-shipments .handlediv,#woocommerce-gzd-order-shipments .hndle,#woocommerce-gzd-order-shipments .postbox-header{display:none}#woocommerce-gzd-order-shipments .hide-default{display:none}.germanized-shipments *{box-sizing:border-box}.germanized-shipments #panel-order-shipments{padding:23px 0 0}.germanized-shipments #panel-order-shipments .panel-inner{padding:0 24px}.germanized-shipments #panel-order-shipments .panel-title-inner{padding-left:0;margin-top:1em;padding-right:0}.germanized-shipments #panel-order-shipments .panel-title{margin-bottom:1.5em}.germanized-shipments #panel-order-shipments .panel-title h2{margin:0;font-family:HelveticaNeue-Light,"Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:21px;font-weight:400;line-height:1.2;text-shadow:1px 1px 1px #fff;padding:0}.germanized-shipments #panel-order-shipments .panel-footer{background:#f8f8f8;padding-top:1em;padding-bottom:1em;border-top:1px solid #dfdfdf;display:none}.germanized-shipments #panel-order-shipments .panel-footer .order-shipments-actions{display:flex;flex-wrap:nowrap;justify-content:space-between}.germanized-shipments #panel-order-shipments .panel-footer .order-shipments-actions .shipment-actions-left{display:flex;flex-wrap:wrap;justify-content:flex-start}.germanized-shipments #panel-order-shipments .panel-footer .order-shipments-actions .shipment-actions-left .button{margin-right:1em}.germanized-shipments #panel-order-shipments .panel-footer #order-shipments-save{display:none}.germanized-shipments #panel-order-shipments #order-return-shipment-add,.germanized-shipments #panel-order-shipments #order-shipment-add{display:none}.germanized-shipments #panel-order-shipments.needs-shipments .panel-footer{display:block}.germanized-shipments #panel-order-shipments.needs-shipments #order-shipment-add{display:block}.germanized-shipments #panel-order-shipments.needs-returns .panel-footer{display:block}.germanized-shipments #panel-order-shipments.needs-returns #order-return-shipment-add{display:block}.germanized-shipments #panel-order-shipments #order-shipments-list{margin-bottom:1.5em}.germanized-shipments #panel-order-shipments .delete{color:#a00}.germanized-shipments #panel-order-shipments .delete:hover{color:#dc3232;border:none}.germanized-shipments #panel-order-shipments .order-shipment a .woocommerce-help-tip{margin-right:3px}.germanized-shipments #panel-order-shipments .order-shipment .handlediv{display:inline-block;float:none;width:auto;height:auto}.germanized-shipments #panel-order-shipments .order-shipment .handlediv .toggle-indicator::before{content:"\f140"}.germanized-shipments #panel-order-shipments .order-shipment .wc-gzd-shipment-label h4{margin-top:0}.germanized-shipments #panel-order-shipments .order-shipment .wc-gzd-shipment-label .shipment-label-actions .shipment-label-actions-wrapper{display:flex;flex-wrap:wrap;justify-content:flex-start;margin-bottom:1em;align-items:center}.germanized-shipments #panel-order-shipments .order-shipment .wc-gzd-shipment-label .shipment-label-actions .shipment-label-actions-wrapper a{margin-right:1em}.germanized-shipments #panel-order-shipments .order-shipment .show-if{display:none}.germanized-shipments #panel-order-shipments .order-shipment.active>.shipment-content-wrapper{display:block}.germanized-shipments #panel-order-shipments .order-shipment.active>.shipment-header>.right>.handlediv .toggle-indicator::before{content:"\f142"}.germanized-shipments #panel-order-shipments .order-shipment .item-count{margin-right:1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-footer{margin-top:1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-footer .shipment-footer-inner{display:flex;flex-wrap:nowrap;justify-content:flex-end;padding:0 .5em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-footer .shipment-footer-inner a.shipment-footer-action{margin-right:1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-footer .shipment-footer-inner a.shipment-footer-action:last-child{margin-right:0}.germanized-shipments #panel-order-shipments .order-shipment .shipment-header{color:#999;background:#f8f8f8;margin:1.5em 0;padding:.5em 1em;cursor:pointer}.germanized-shipments #panel-order-shipments .order-shipment .shipment-header .shipment-status{margin-left:1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-header h3{margin:0}.germanized-shipments #panel-order-shipments .order-shipment:first-child .shipment-header{margin-top:0}.germanized-shipments #panel-order-shipments .order-shipment .shipment-header:hover,.germanized-shipments #panel-order-shipments .order-shipment.active>.shipment-header{background:#f3f3f3}.germanized-shipments #panel-order-shipments .order-shipment .shipment-content-wrapper{display:none}.germanized-shipments #panel-order-shipments .order-shipment .shipment-content{padding:1em;margin-top:-1.5em;padding-bottom:0}.germanized-shipments #panel-order-shipments .order-shipment .add-shipment-return{display:none}.germanized-shipments #panel-order-shipments .order-shipment.is-returnable .add-shipment-return{display:block}.germanized-shipments #panel-order-shipments .order-shipment p.form-row{margin-bottom:1.5em}.germanized-shipments #panel-order-shipments .order-shipment p.form-row.wc-gzd-shipment-packaging-wrapper{margin-top:0}.germanized-shipments #panel-order-shipments .order-shipment p.form-row input[type=email],.germanized-shipments #panel-order-shipments .order-shipment p.form-row input[type=number],.germanized-shipments #panel-order-shipments .order-shipment p.form-row input[type=text]{height:30px}.germanized-shipments #panel-order-shipments .order-shipment p.form-row select{line-height:30px;height:30px;padding-top:0;padding-bottom:0}.germanized-shipments #panel-order-shipments .order-shipment p.form-row label{color:#999;font-weight:600}.germanized-shipments #panel-order-shipments .order-shipment p.form-row label .woocommerce-help-tip{float:none}.germanized-shipments #panel-order-shipments .order-shipment .columns .column.column-spaced{margin:5px 0}.germanized-shipments #panel-order-shipments .order-shipment .columns .column h4{margin-bottom:.7em;color:#999}.germanized-shipments #panel-order-shipments .order-shipment .columns .column h4 a{color:#999;text-decoration:none}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item-action{text-align:right}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item-quantity input{width:60px;text-align:center}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item-name p.form-row{margin-bottom:0;margin-top:.5em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item-heading{padding:.5em;color:#999;background:#f8f8f8;font-weight:600}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item{padding:.5em;border-bottom:1px solid #dfdfdf}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item:last-child{border-bottom:none}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item:nth-child(2n){background:#f8f8f8}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item .columns{align-items:center}.germanized-shipments #panel-order-shipments .order-shipment .shipment-item-actions{display:flex;padding:.7em .5em;flex-wrap:nowrap;justify-content:flex-end;border-top:1px solid #dfdfdf}.germanized-shipments #panel-order-shipments .order-shipment .shipment-item-actions .add-items{margin-right:1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-item-actions .woocommerce-help-tip{margin-left:0}.germanized-shipments #panel-order-shipments .order-shipment .add-items{display:none}.germanized-shipments #panel-order-shipments .order-shipment .shipment-returns{margin-top:.5em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-returns .shipment-return .shipment-header{background:0 0;border-bottom:1px solid #dfdfdf;padding-left:0;padding-right:0}.germanized-shipments #panel-order-shipments .order-shipment .shipment-returns .shipment-return .shipment-header h3{font-size:1.1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-returns .shipment-return .shipment-content{padding:1em 0}.germanized-shipments #panel-order-shipments .order-shipment.needs-items .add-items{display:block}.germanized-shipments #panel-order-shipments .form-row .input-inner-wrap{clear:left;margin:0;display:flex;flex-wrap:nowrap}.germanized-shipments #panel-order-shipments .form-row .input-inner-wrap input{margin-right:1em}.germanized-shipments #panel-order-shipments .form-row .input-inner-wrap input:last-child{margin-right:0}.germanized-shipments .title-spread{display:flex;flex-wrap:nowrap;justify-content:space-between;align-items:center}.germanized-shipments .title-spread .left,.germanized-shipments .title-spread .right{display:inline-flex;align-items:center}.germanized-shipments .show-lg,.germanized-shipments .show-md,.germanized-shipments .show-sm,.germanized-shipments .show-xl,.germanized-shipments .show-xs{display:none!important}.germanized-shipments .columns{display:flex;flex-wrap:wrap;margin-left:-1rem;margin-right:-1rem}.germanized-shipments .columns.col-gapless{margin-left:0;margin-right:0}.germanized-shipments .columns.col-gapless>.column{padding-left:0;padding-right:0}.germanized-shipments .columns.col-oneline{flex-wrap:nowrap;overflow-x:auto}.germanized-shipments .column{flex:1;max-width:100%;padding-left:1rem;padding-right:1rem}.germanized-shipments .column.col-1,.germanized-shipments .column.col-10,.germanized-shipments .column.col-11,.germanized-shipments .column.col-12,.germanized-shipments .column.col-2,.germanized-shipments .column.col-3,.germanized-shipments .column.col-4,.germanized-shipments .column.col-5,.germanized-shipments .column.col-6,.germanized-shipments .column.col-7,.germanized-shipments .column.col-8,.germanized-shipments .column.col-9,.germanized-shipments .column.col-auto{flex:none}.germanized-shipments .col-12{width:100%}.germanized-shipments .col-11{width:91.66666667%}.germanized-shipments .col-10{width:83.33333333%}.germanized-shipments .col-9{width:75%}.germanized-shipments .col-8{width:66.66666667%}.germanized-shipments .col-7{width:58.33333333%}.germanized-shipments .col-6{width:50%}.germanized-shipments .col-5{width:41.66666667%}.germanized-shipments .col-4{width:33.33333333%}.germanized-shipments .col-3{width:25%}.germanized-shipments .col-2{width:16.66666667%}.germanized-shipments .col-1{width:8.33333333%}.germanized-shipments .col-auto{flex:0 0 auto;max-width:none;width:auto}.germanized-shipments .col-mx-auto{margin-left:auto;margin-right:auto}.germanized-shipments .col-ml-auto{margin-left:auto}.germanized-shipments .col-mr-auto{margin-right:auto}@media (max-width:1280px){.germanized-shipments .col-xl-1,.germanized-shipments .col-xl-10,.germanized-shipments .col-xl-11,.germanized-shipments .col-xl-12,.germanized-shipments .col-xl-2,.germanized-shipments .col-xl-3,.germanized-shipments .col-xl-4,.germanized-shipments .col-xl-5,.germanized-shipments .col-xl-6,.germanized-shipments .col-xl-7,.germanized-shipments .col-xl-8,.germanized-shipments .col-xl-9,.germanized-shipments .col-xl-auto{flex:none}.germanized-shipments .col-xl-12{width:100%}.germanized-shipments .col-xl-11{width:91.66666667%}.germanized-shipments .col-xl-10{width:83.33333333%}.germanized-shipments .col-xl-9{width:75%}.germanized-shipments .col-xl-8{width:66.66666667%}.germanized-shipments .col-xl-7{width:58.33333333%}.germanized-shipments .col-xl-6{width:50%}.germanized-shipments .col-xl-5{width:41.66666667%}.germanized-shipments .col-xl-4{width:33.33333333%}.germanized-shipments .col-xl-3{width:25%}.germanized-shipments .col-xl-2{width:16.66666667%}.germanized-shipments .col-xl-1{width:8.33333333%}.germanized-shipments .col-xl-auto{width:auto}.germanized-shipments .hide-xl{display:none!important}.germanized-shipments .show-xl{display:block!important}}@media (max-width:960px){.germanized-shipments .col-lg-1,.germanized-shipments .col-lg-10,.germanized-shipments .col-lg-11,.germanized-shipments .col-lg-12,.germanized-shipments .col-lg-2,.germanized-shipments .col-lg-3,.germanized-shipments .col-lg-4,.germanized-shipments .col-lg-5,.germanized-shipments .col-lg-6,.germanized-shipments .col-lg-7,.germanized-shipments .col-lg-8,.germanized-shipments .col-lg-9,.germanized-shipments .col-lg-auto{flex:none}.germanized-shipments .col-lg-12{width:100%}.germanized-shipments .col-lg-11{width:91.66666667%}.germanized-shipments .col-lg-10{width:83.33333333%}.germanized-shipments .col-lg-9{width:75%}.germanized-shipments .col-lg-8{width:66.66666667%}.germanized-shipments .col-lg-7{width:58.33333333%}.germanized-shipments .col-lg-6{width:50%}.germanized-shipments .col-lg-5{width:41.66666667%}.germanized-shipments .col-lg-4{width:33.33333333%}.germanized-shipments .col-lg-3{width:25%}.germanized-shipments .col-lg-2{width:16.66666667%}.germanized-shipments .col-lg-1{width:8.33333333%}.germanized-shipments .col-lg-auto{width:auto}.germanized-shipments .hide-lg{display:none!important}.germanized-shipments .show-lg{display:block!important}}@media (max-width:840px){.germanized-shipments .col-md-1,.germanized-shipments .col-md-10,.germanized-shipments .col-md-11,.germanized-shipments .col-md-12,.germanized-shipments .col-md-2,.germanized-shipments .col-md-3,.germanized-shipments .col-md-4,.germanized-shipments .col-md-5,.germanized-shipments .col-md-6,.germanized-shipments .col-md-7,.germanized-shipments .col-md-8,.germanized-shipments .col-md-9,.germanized-shipments .col-md-auto{flex:none}.germanized-shipments .col-md-12{width:100%}.germanized-shipments .col-md-11{width:91.66666667%}.germanized-shipments .col-md-10{width:83.33333333%}.germanized-shipments .col-md-9{width:75%}.germanized-shipments .col-md-8{width:66.66666667%}.germanized-shipments .col-md-7{width:58.33333333%}.germanized-shipments .col-md-6{width:50%}.germanized-shipments .col-md-5{width:41.66666667%}.germanized-shipments .col-md-4{width:33.33333333%}.germanized-shipments .col-md-3{width:25%}.germanized-shipments .col-md-2{width:16.66666667%}.germanized-shipments .col-md-1{width:8.33333333%}.germanized-shipments .col-md-auto{width:auto}.germanized-shipments .hide-md{display:none!important}.germanized-shipments .show-md{display:block!important}}@media (max-width:600px){.germanized-shipments .col-sm-1,.germanized-shipments .col-sm-10,.germanized-shipments .col-sm-11,.germanized-shipments .col-sm-12,.germanized-shipments .col-sm-2,.germanized-shipments .col-sm-3,.germanized-shipments .col-sm-4,.germanized-shipments .col-sm-5,.germanized-shipments .col-sm-6,.germanized-shipments .col-sm-7,.germanized-shipments .col-sm-8,.germanized-shipments .col-sm-9,.germanized-shipments .col-sm-auto{flex:none}.germanized-shipments .col-sm-12{width:100%}.germanized-shipments .col-sm-11{width:91.66666667%}.germanized-shipments .col-sm-10{width:83.33333333%}.germanized-shipments .col-sm-9{width:75%}.germanized-shipments .col-sm-8{width:66.66666667%}.germanized-shipments .col-sm-7{width:58.33333333%}.germanized-shipments .col-sm-6{width:50%}.germanized-shipments .col-sm-5{width:41.66666667%}.germanized-shipments .col-sm-4{width:33.33333333%}.germanized-shipments .col-sm-3{width:25%}.germanized-shipments .col-sm-2{width:16.66666667%}.germanized-shipments .col-sm-1{width:8.33333333%}.germanized-shipments .col-sm-auto{width:auto}.germanized-shipments .hide-sm{display:none!important}.germanized-shipments .show-sm{display:block!important}}@media (max-width:480px){.germanized-shipments .col-xs-1,.germanized-shipments .col-xs-10,.germanized-shipments .col-xs-11,.germanized-shipments .col-xs-12,.germanized-shipments .col-xs-2,.germanized-shipments .col-xs-3,.germanized-shipments .col-xs-4,.germanized-shipments .col-xs-5,.germanized-shipments .col-xs-6,.germanized-shipments .col-xs-7,.germanized-shipments .col-xs-8,.germanized-shipments .col-xs-9,.germanized-shipments .col-xs-auto{flex:none}.germanized-shipments .col-xs-12{width:100%}.germanized-shipments .col-xs-11{width:91.66666667%}.germanized-shipments .col-xs-10{width:83.33333333%}.germanized-shipments .col-xs-9{width:75%}.germanized-shipments .col-xs-8{width:66.66666667%}.germanized-shipments .col-xs-7{width:58.33333333%}.germanized-shipments .col-xs-6{width:50%}.germanized-shipments .col-xs-5{width:41.66666667%}.germanized-shipments .col-xs-4{width:33.33333333%}.germanized-shipments .col-xs-3{width:25%}.germanized-shipments .col-xs-2{width:16.66666667%}.germanized-shipments .col-xs-1{width:8.33333333%}.germanized-shipments .col-xs-auto{width:auto}.germanized-shipments .hide-xs{display:none!important}.germanized-shipments .show-xs{display:block!important}}
packages/woocommerce-germanized-shipments/assets/css/admin.scss CHANGED
@@ -12,6 +12,26 @@ $layout-spacing: 1rem;
12
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
13
  }
14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  .germanized-create-label {
16
  .notice-wrapper {
17
  .notice {
12
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
13
  }
14
 
15
+ .wc-gzd-admin-settings-shipping_provider {
16
+ .wc-gzd-shipment-api-connection-status {
17
+ padding: .2em .5em;
18
+ border-radius: 3px;
19
+ display: inline-flex;
20
+ white-space: nowrap;
21
+ border: 1px solid #CCC;
22
+
23
+ &.connection-status-error {
24
+ border-color: #761919;
25
+ color: #761919;
26
+ }
27
+
28
+ &.connection-status-success {
29
+ border-color: #5b841b;
30
+ color: #5b841b;
31
+ }
32
+ }
33
+ }
34
+
35
  .germanized-create-label {
36
  .notice-wrapper {
37
  .notice {
packages/woocommerce-germanized-shipments/src/FormHandler.php CHANGED
@@ -48,26 +48,45 @@ class FormHandler {
48
  return $success_message;
49
  }
50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  public static function process_return_request() {
52
  $nonce_value = isset( $_REQUEST['woocommerce-gzd-return-request-nonce'] ) ? $_REQUEST['woocommerce-gzd-return-request-nonce'] : ''; // @codingStandardsIgnoreLine.
53
 
54
  if ( isset( $_POST['return_request'], $_POST['email'], $_POST['order_id'] ) && wp_verify_nonce( $nonce_value, 'woocommerce-gzd-return-request' ) ) {
55
-
56
  try {
57
-
58
  $email = sanitize_email( $_POST['email'] );
59
  $order_id = wc_clean( $_POST['order_id'] );
 
60
  $db_order_id = false;
61
  $orders = wc_get_orders( apply_filters( 'woocommerce_gzd_return_request_order_query_args', array(
62
  'billing_email' => $email,
63
- 'post__in' => array( $order_id ),
64
  'limit' => 1,
65
  'return' => 'ids'
66
  ) ) );
67
 
68
  // Now lets try to find the order by a custom order number
69
  if ( empty( $orders ) ) {
70
-
71
  $orders = new WP_Query( apply_filters( 'woocommerce_gzd_return_request_order_query_args', array(
72
  'post_type' => 'shop_order',
73
  'post_status' => 'any',
48
  return $success_message;
49
  }
50
 
51
+ /**
52
+ * Parses a string and finds the longest, contiguous number which is assumed to be the order id.
53
+ *
54
+ * @param $order_id_str
55
+ *
56
+ * @return string
57
+ */
58
+ public static function get_order_id_from_string( $order_id_str ) {
59
+ $order_id_parsed = trim( preg_replace( '/[^0-9]/', '_', $order_id_str ) );
60
+ $order_id_comp = explode( '_', $order_id_parsed );
61
+
62
+ usort( $order_id_comp, function ( $a, $b ) {
63
+ return strlen( $a ) < strlen( $b );
64
+ });
65
+
66
+ // Prefer longer, contiguous order numbers
67
+ $order_id = reset($order_id_comp );
68
+
69
+ return apply_filters( "woocommerce_gzd_return_request_order_id_from_string", $order_id, $order_id_str );
70
+ }
71
+
72
  public static function process_return_request() {
73
  $nonce_value = isset( $_REQUEST['woocommerce-gzd-return-request-nonce'] ) ? $_REQUEST['woocommerce-gzd-return-request-nonce'] : ''; // @codingStandardsIgnoreLine.
74
 
75
  if ( isset( $_POST['return_request'], $_POST['email'], $_POST['order_id'] ) && wp_verify_nonce( $nonce_value, 'woocommerce-gzd-return-request' ) ) {
 
76
  try {
 
77
  $email = sanitize_email( $_POST['email'] );
78
  $order_id = wc_clean( $_POST['order_id'] );
79
+ $order_id_parsed = self::get_order_id_from_string( $order_id );
80
  $db_order_id = false;
81
  $orders = wc_get_orders( apply_filters( 'woocommerce_gzd_return_request_order_query_args', array(
82
  'billing_email' => $email,
83
+ 'post__in' => array( $order_id_parsed ),
84
  'limit' => 1,
85
  'return' => 'ids'
86
  ) ) );
87
 
88
  // Now lets try to find the order by a custom order number
89
  if ( empty( $orders ) ) {
 
90
  $orders = new WP_Query( apply_filters( 'woocommerce_gzd_return_request_order_query_args', array(
91
  'post_type' => 'shop_order',
92
  'post_status' => 'any',
packages/woocommerce-germanized-shipments/src/Package.php CHANGED
@@ -18,7 +18,7 @@ class Package {
18
  *
19
  * @var string
20
  */
21
- const VERSION = '1.6.6';
22
 
23
  public static $upload_dir_suffix = '';
24
 
18
  *
19
  * @var string
20
  */
21
+ const VERSION = '1.6.7';
22
 
23
  public static $upload_dir_suffix = '';
24
 
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.6.6
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.6.7
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.9
6
  WC requires at least: 3.9
7
- WC tested up to: 6.2
8
- Stable tag: 3.8.3
9
  Requires PHP: 5.6
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
@@ -155,6 +155,9 @@ The shortcode is useful to output the legal page attachments in custom email tem
155
  `[gzd_complaints]`
156
  Inserts a text that informs the customer about the EU Online Dispute Platform - this Shortcode should be inserted within your imprint. Find more information [here](http://shop.trustedshops.com/de/rechtstipps/jetzt-handeln-link-auf-eu-online-schlichtungs-plattform-ab-9.1.2016).
157
 
 
 
 
158
  `[trusted_shops_badge]`
159
  If you are a Trusted Shops Customer, you may insert this shortcode to insert the Trusted Shops Badge at your favourite place.
160
  By adjusting parameter width=55 (55 means 55px width/height) you may optionally set badge's width.
@@ -205,6 +208,17 @@ Bug reports may be filed via our [GitHub repository](https://github.com/vendider
205
  6. Edit pdf documents (Pro)
206
 
207
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
208
  = 3.8.3 =
209
  * Improvement: Prevent DHL preferred services from showing in non-shipping carts
210
  * Improvement: Prevent parcel delivery checkbox from showing in non-shipping carts
4
  Requires at least: 5.4
5
  Tested up to: 5.9
6
  WC requires at least: 3.9
7
+ WC tested up to: 6.3
8
+ Stable tag: 3.8.4
9
  Requires PHP: 5.6
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
155
  `[gzd_complaints]`
156
  Inserts a text that informs the customer about the EU Online Dispute Platform - this Shortcode should be inserted within your imprint. Find more information [here](http://shop.trustedshops.com/de/rechtstipps/jetzt-handeln-link-auf-eu-online-schlichtungs-plattform-ab-9.1.2016).
157
 
158
+ `[gzd_return_request_form]`
159
+ Insert the guest return request form which allows guests to submit [return requests](https://vendidero.de/dokument/retouren-konfigurieren-und-verwalten).
160
+
161
  `[trusted_shops_badge]`
162
  If you are a Trusted Shops Customer, you may insert this shortcode to insert the Trusted Shops Badge at your favourite place.
163
  By adjusting parameter width=55 (55 means 55px width/height) you may optionally set badge's width.
208
  6. Edit pdf documents (Pro)
209
 
210
  == Changelog ==
211
+ = 3.8.4 =
212
+ * Improvement: Added formatted customer title to REST API
213
+ * Improvement: Variation price detection
214
+ * Improvement: Shipping costs refund tax precision
215
+ * Improvement: Divi checkout module compatibility
216
+ * Improvement: Divi product builder compatibility
217
+ * Improvement: Unit price price observer price detection
218
+ * Improvement: Return request parsing order ids
219
+ * Improvement: Connection status check for DHL API
220
+ * Fix: Allow booking DHL premium for EU and third countries
221
+
222
  = 3.8.3 =
223
  * Improvement: Prevent DHL preferred services from showing in non-shipping carts
224
  * Improvement: Prevent parcel delivery checkbox from showing in non-shipping carts
templates/checkboxes/default.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.1.0
16
  */
17
  if ( ! defined( 'ABSPATH' ) ) {
18
  exit;
@@ -36,7 +36,7 @@ do_action( "woocommerce_gzd_before_legal_checkbox_{$checkbox_id}", $checkbox );
36
  <p class="<?php $checkbox->render_classes( $checkbox->get_html_wrapper_classes() ); ?>"
37
  style="<?php echo esc_attr( $checkbox->get_html_style() ); ?>">
38
  <label for="<?php echo esc_attr( $checkbox->get_html_id() ); ?>"
39
- class="woocommerce-form__label woocommerce-form__label-for-checkbox checkbox">
40
  <?php if ( ! $checkbox->hide_input() ) : ?>
41
  <input type="checkbox" class="<?php $checkbox->render_classes( $checkbox->get_html_classes() ); ?>"
42
  name="<?php echo esc_attr( $checkbox->get_html_name() ); ?>"
12
  *
13
  * @see https://github.com/vendidero/woocommerce-germanized/wiki/Overriding-Germanized-Templates
14
  * @package Germanized/Templates
15
+ * @version 1.1.1
16
  */
17
  if ( ! defined( 'ABSPATH' ) ) {
18
  exit;
36
  <p class="<?php $checkbox->render_classes( $checkbox->get_html_wrapper_classes() ); ?>"
37
  style="<?php echo esc_attr( $checkbox->get_html_style() ); ?>">
38
  <label for="<?php echo esc_attr( $checkbox->get_html_id() ); ?>"
39
+ class="woocommerce-form__label <?php echo ( ! $checkbox->hide_input() ? 'woocommerce-form__label-for-checkbox checkbox' : '' ); ?>">
40
  <?php if ( ! $checkbox->hide_input() ) : ?>
41
  <input type="checkbox" class="<?php $checkbox->render_classes( $checkbox->get_html_classes() ); ?>"
42
  name="<?php echo esc_attr( $checkbox->get_html_name() ); ?>"
templates/checkout/terms-sepa.php CHANGED
@@ -27,7 +27,7 @@ $checkbox_id = $checkbox->get_id();
27
  *
28
  * @param WC_GZD_Legal_Checkbox $checkbox The checkbox instance.
29
  *
30
- * @since 2.0.0
31
  *
32
  */
33
  do_action( "woocommerce_gzd_before_legal_checkbox_{$checkbox_id}", $checkbox );
@@ -37,15 +37,18 @@ do_action( "woocommerce_gzd_before_legal_checkbox_{$checkbox_id}", $checkbox );
37
  style="<?php echo esc_attr( $checkbox->get_html_style() ); ?>"
38
  data-checkbox="<?php echo esc_attr( $checkbox->get_id() ); ?>">
39
  <label for="<?php echo esc_attr( $checkbox->get_html_id() ); ?>"
40
- class="woocommerce-form__label woocommerce-form__label-for-checkbox checkbox">
41
- <input type="checkbox" class="<?php $checkbox->render_classes( $checkbox->get_html_classes() ); ?>"
42
- name="<?php echo esc_attr( $checkbox->get_html_name() ); ?>"
43
- id="<?php echo esc_attr( $checkbox->get_html_id() ); ?>"/>
 
 
44
  <span class="woocommerce-gzd-<?php echo esc_attr( $checkbox->get_html_id() ); ?>-checkbox-text"><?php echo $checkbox->get_label(); ?></span>
45
  <?php if ( $checkbox->is_mandatory() ) : ?>
46
  &nbsp;<abbr class="required" title="<?php echo esc_attr__( 'required', 'woocommerce-germanized' ); ?>">*</abbr>
47
  <?php endif; ?>
48
  <a href="" rel="prettyPhoto" id="show-direct-debit-pretty" class="hidden"></a>
49
- <input type="hidden" name="<?php echo esc_attr( $checkbox->get_html_name() ); ?>-field" value="1" />
50
  </label>
 
 
51
  </p>
27
  *
28
  * @param WC_GZD_Legal_Checkbox $checkbox The checkbox instance.
29
  *
30
+ * @since 2.0.1
31
  *
32
  */
33
  do_action( "woocommerce_gzd_before_legal_checkbox_{$checkbox_id}", $checkbox );
37
  style="<?php echo esc_attr( $checkbox->get_html_style() ); ?>"
38
  data-checkbox="<?php echo esc_attr( $checkbox->get_id() ); ?>">
39
  <label for="<?php echo esc_attr( $checkbox->get_html_id() ); ?>"
40
+ class="woocommerce-form__label <?php echo ( ! $checkbox->hide_input() ? 'woocommerce-form__label-for-checkbox checkbox' : '' ); ?>">
41
+ <?php if ( ! $checkbox->hide_input() ) : ?>
42
+ <input type="checkbox" class="<?php $checkbox->render_classes( $checkbox->get_html_classes() ); ?>"
43
+ name="<?php echo esc_attr( $checkbox->get_html_name() ); ?>"
44
+ id="<?php echo esc_attr( $checkbox->get_html_id() ); ?>"/>
45
+ <?php endif; ?>
46
  <span class="woocommerce-gzd-<?php echo esc_attr( $checkbox->get_html_id() ); ?>-checkbox-text"><?php echo $checkbox->get_label(); ?></span>
47
  <?php if ( $checkbox->is_mandatory() ) : ?>
48
  &nbsp;<abbr class="required" title="<?php echo esc_attr__( 'required', 'woocommerce-germanized' ); ?>">*</abbr>
49
  <?php endif; ?>
50
  <a href="" rel="prettyPhoto" id="show-direct-debit-pretty" class="hidden"></a>
 
51
  </label>
52
+
53
+ <input type="hidden" name="<?php echo esc_attr( $checkbox->get_html_name() ); ?>-field" value="1" />
54
  </p>
templates/checkout/terms.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.9.0
16
  */
17
  if ( ! defined( 'ABSPATH' ) ) {
18
  exit;
@@ -55,7 +55,7 @@ if ( apply_filters( 'woocommerce_germanized_checkout_show_terms', true ) ) : ?>
55
  <?php do_action( 'woocommerce_checkout_terms_and_conditions' ); ?>
56
 
57
  <label for="<?php echo esc_attr( $checkbox->get_html_id() ); ?>"
58
- class="woocommerce-form__label woocommerce-form__label-for-checkbox checkbox">
59
  <?php if ( ! $checkbox->hide_input() ) : ?>
60
  <input type="checkbox" class="<?php $checkbox->render_classes( $checkbox->get_html_classes() ); ?>"
61
  name="<?php echo esc_attr( $checkbox->get_html_name() ); ?>"
12
  *
13
  * @see https://github.com/vendidero/woocommerce-germanized/wiki/Overriding-Germanized-Templates
14
  * @package Germanized/Templates
15
+ * @version 1.9.1
16
  */
17
  if ( ! defined( 'ABSPATH' ) ) {
18
  exit;
55
  <?php do_action( 'woocommerce_checkout_terms_and_conditions' ); ?>
56
 
57
  <label for="<?php echo esc_attr( $checkbox->get_html_id() ); ?>"
58
+ class="woocommerce-form__label <?php echo ( ! $checkbox->hide_input() ? 'woocommerce-form__label-for-checkbox checkbox' : '' ); ?>">
59
  <?php if ( ! $checkbox->hide_input() ) : ?>
60
  <input type="checkbox" class="<?php $checkbox->render_classes( $checkbox->get_html_classes() ); ?>"
61
  name="<?php echo esc_attr( $checkbox->get_html_name() ); ?>"
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInite43d3255142b4ac6a8f9e9423722a4af::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInitdf3d0e93099c6ed316afabfbba19ad8e::getLoader();
vendor/autoload_packages.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpe43d3255142b4ac6a8f9e9423722a4af;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpdf3d0e93099c6ed316afabfbba19ad8e;
9
 
10
  // phpcs:ignore
11
 
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInite43d3255142b4ac6a8f9e9423722a4af
6
  {
7
  private static $loader;
8
 
@@ -24,15 +24,15 @@ class ComposerAutoloaderInite43d3255142b4ac6a8f9e9423722a4af
24
 
25
  require __DIR__ . '/platform_check.php';
26
 
27
- spl_autoload_register(array('ComposerAutoloaderInite43d3255142b4ac6a8f9e9423722a4af', 'loadClassLoader'), true, true);
28
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
29
- spl_autoload_unregister(array('ComposerAutoloaderInite43d3255142b4ac6a8f9e9423722a4af', '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\ComposerStaticInite43d3255142b4ac6a8f9e9423722a4af::getInitializer($loader));
36
  } else {
37
  $map = require __DIR__ . '/autoload_namespaces.php';
38
  foreach ($map as $namespace => $path) {
@@ -53,19 +53,19 @@ class ComposerAutoloaderInite43d3255142b4ac6a8f9e9423722a4af
53
  $loader->register(true);
54
 
55
  if ($useStaticLoader) {
56
- $includeFiles = Composer\Autoload\ComposerStaticInite43d3255142b4ac6a8f9e9423722a4af::$files;
57
  } else {
58
  $includeFiles = require __DIR__ . '/autoload_files.php';
59
  }
60
  foreach ($includeFiles as $fileIdentifier => $file) {
61
- composerRequiree43d3255142b4ac6a8f9e9423722a4af($fileIdentifier, $file);
62
  }
63
 
64
  return $loader;
65
  }
66
  }
67
 
68
- function composerRequiree43d3255142b4ac6a8f9e9423722a4af($fileIdentifier, $file)
69
  {
70
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
71
  require $file;
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInitdf3d0e93099c6ed316afabfbba19ad8e
6
  {
7
  private static $loader;
8
 
24
 
25
  require __DIR__ . '/platform_check.php';
26
 
27
+ spl_autoload_register(array('ComposerAutoloaderInitdf3d0e93099c6ed316afabfbba19ad8e', 'loadClassLoader'), true, true);
28
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
29
+ spl_autoload_unregister(array('ComposerAutoloaderInitdf3d0e93099c6ed316afabfbba19ad8e', '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\ComposerStaticInitdf3d0e93099c6ed316afabfbba19ad8e::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\ComposerStaticInitdf3d0e93099c6ed316afabfbba19ad8e::$files;
57
  } else {
58
  $includeFiles = require __DIR__ . '/autoload_files.php';
59
  }
60
  foreach ($includeFiles as $fileIdentifier => $file) {
61
+ composerRequiredf3d0e93099c6ed316afabfbba19ad8e($fileIdentifier, $file);
62
  }
63
 
64
  return $loader;
65
  }
66
  }
67
 
68
+ function composerRequiredf3d0e93099c6ed316afabfbba19ad8e($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 ComposerStaticInite43d3255142b4ac6a8f9e9423722a4af
8
  {
9
  public static $files = array (
10
  '6124b4c8570aa390c21fafd04a26c69f' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php',
@@ -536,9 +536,9 @@ class ComposerStaticInite43d3255142b4ac6a8f9e9423722a4af
536
  public static function getInitializer(ClassLoader $loader)
537
  {
538
  return \Closure::bind(function () use ($loader) {
539
- $loader->prefixLengthsPsr4 = ComposerStaticInite43d3255142b4ac6a8f9e9423722a4af::$prefixLengthsPsr4;
540
- $loader->prefixDirsPsr4 = ComposerStaticInite43d3255142b4ac6a8f9e9423722a4af::$prefixDirsPsr4;
541
- $loader->classMap = ComposerStaticInite43d3255142b4ac6a8f9e9423722a4af::$classMap;
542
 
543
  }, null, ClassLoader::class);
544
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInitdf3d0e93099c6ed316afabfbba19ad8e
8
  {
9
  public static $files = array (
10
  '6124b4c8570aa390c21fafd04a26c69f' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php',
536
  public static function getInitializer(ClassLoader $loader)
537
  {
538
  return \Closure::bind(function () use ($loader) {
539
+ $loader->prefixLengthsPsr4 = ComposerStaticInitdf3d0e93099c6ed316afabfbba19ad8e::$prefixLengthsPsr4;
540
+ $loader->prefixDirsPsr4 = ComposerStaticInitdf3d0e93099c6ed316afabfbba19ad8e::$prefixDirsPsr4;
541
+ $loader->classMap = ComposerStaticInitdf3d0e93099c6ed316afabfbba19ad8e::$classMap;
542
 
543
  }, null, ClassLoader::class);
544
  }
vendor/composer/installed.json CHANGED
@@ -36,12 +36,12 @@
36
  },
37
  "installation-source": "dist",
38
  "autoload": {
39
- "classmap": [
40
- "src/AutoloadGenerator.php"
41
- ],
42
  "psr-4": {
43
  "Automattic\\Jetpack\\Autoloader\\": "src"
44
- }
 
 
 
45
  },
46
  "notification-url": "https://packagist.org/downloads/",
47
  "license": [
@@ -517,12 +517,12 @@
517
  "type": "library",
518
  "installation-source": "dist",
519
  "autoload": {
520
- "psr-4": {
521
- "DeepCopy\\": "src/DeepCopy/"
522
- },
523
  "files": [
524
  "src/DeepCopy/deep_copy.php"
525
- ]
 
 
 
526
  },
527
  "notification-url": "https://packagist.org/downloads/",
528
  "license": [
@@ -780,17 +780,17 @@
780
  },
781
  {
782
  "name": "vendidero/one-stop-shop-woocommerce",
783
- "version": "v1.1.9",
784
- "version_normalized": "1.1.9.0",
785
  "source": {
786
  "type": "git",
787
  "url": "https://github.com/vendidero/one-stop-shop-woocommerce.git",
788
- "reference": "3e58f1f39d3190fed2a1297be2245c359dd12f92"
789
  },
790
  "dist": {
791
  "type": "zip",
792
- "url": "https://api.github.com/repos/vendidero/one-stop-shop-woocommerce/zipball/3e58f1f39d3190fed2a1297be2245c359dd12f92",
793
- "reference": "3e58f1f39d3190fed2a1297be2245c359dd12f92",
794
  "shasum": ""
795
  },
796
  "require": {
@@ -799,7 +799,7 @@
799
  "require-dev": {
800
  "phpunit/phpunit": "6.5.14"
801
  },
802
- "time": "2022-01-21T14:11:01+00:00",
803
  "type": "wordpress-plugin",
804
  "installation-source": "dist",
805
  "autoload": {
@@ -821,24 +821,24 @@
821
  "description": "One Stop Shop Helper for WooCommerce",
822
  "homepage": "https://github.com/vendidero/one-stop-shop-woocommerce",
823
  "support": {
824
- "source": "https://github.com/vendidero/one-stop-shop-woocommerce/tree/v1.1.9",
825
  "issues": "https://github.com/vendidero/one-stop-shop-woocommerce/issues"
826
  },
827
  "install-path": "../../packages/one-stop-shop-woocommerce"
828
  },
829
  {
830
  "name": "vendidero/woocommerce-germanized-dhl",
831
- "version": "v1.6.8",
832
- "version_normalized": "1.6.8.0",
833
  "source": {
834
  "type": "git",
835
  "url": "https://github.com/vendidero/woocommerce-germanized-dhl.git",
836
- "reference": "932fb74388d2027f9ed15e24f268d19b2f312b8d"
837
  },
838
  "dist": {
839
  "type": "zip",
840
- "url": "https://api.github.com/repos/vendidero/woocommerce-germanized-dhl/zipball/932fb74388d2027f9ed15e24f268d19b2f312b8d",
841
- "reference": "932fb74388d2027f9ed15e24f268d19b2f312b8d",
842
  "shasum": ""
843
  },
844
  "require": {
@@ -851,7 +851,7 @@
851
  "require-dev": {
852
  "phpunit/phpunit": "7.5.14"
853
  },
854
- "time": "2022-01-28T11:03:31+00:00",
855
  "type": "wordpress-plugin",
856
  "installation-source": "dist",
857
  "autoload": {
@@ -875,24 +875,24 @@
875
  "description": "The Germanized DHL implementation.",
876
  "homepage": "https://github.com/vendidero/woocommerce-germanized-dhl",
877
  "support": {
878
- "source": "https://github.com/vendidero/woocommerce-germanized-dhl/tree/v1.6.8",
879
  "issues": "https://github.com/vendidero/woocommerce-germanized-dhl/issues"
880
  },
881
  "install-path": "../../packages/woocommerce-germanized-dhl"
882
  },
883
  {
884
  "name": "vendidero/woocommerce-germanized-shipments",
885
- "version": "v1.6.6",
886
- "version_normalized": "1.6.6.0",
887
  "source": {
888
  "type": "git",
889
  "url": "https://github.com/vendidero/woocommerce-germanized-shipments.git",
890
- "reference": "92201ddba7d1943b178caec2d6b513ddbe2e627d"
891
  },
892
  "dist": {
893
  "type": "zip",
894
- "url": "https://api.github.com/repos/vendidero/woocommerce-germanized-shipments/zipball/92201ddba7d1943b178caec2d6b513ddbe2e627d",
895
- "reference": "92201ddba7d1943b178caec2d6b513ddbe2e627d",
896
  "shasum": ""
897
  },
898
  "require": {
@@ -905,7 +905,7 @@
905
  "phpunit/phpunit": "7.5.14",
906
  "yoast/phpunit-polyfills": "^1.0"
907
  },
908
- "time": "2022-01-21T14:21:18+00:00",
909
  "type": "wordpress-plugin",
910
  "installation-source": "dist",
911
  "autoload": {
@@ -927,7 +927,7 @@
927
  "description": "The Germanized Shipments implementation.",
928
  "homepage": "https://github.com/vendidero/woocommerce-germanized-shipments",
929
  "support": {
930
- "source": "https://github.com/vendidero/woocommerce-germanized-shipments/tree/v1.6.6",
931
  "issues": "https://github.com/vendidero/woocommerce-germanized-shipments/issues"
932
  },
933
  "install-path": "../../packages/woocommerce-germanized-shipments"
36
  },
37
  "installation-source": "dist",
38
  "autoload": {
 
 
 
39
  "psr-4": {
40
  "Automattic\\Jetpack\\Autoloader\\": "src"
41
+ },
42
+ "classmap": [
43
+ "src/AutoloadGenerator.php"
44
+ ]
45
  },
46
  "notification-url": "https://packagist.org/downloads/",
47
  "license": [
517
  "type": "library",
518
  "installation-source": "dist",
519
  "autoload": {
 
 
 
520
  "files": [
521
  "src/DeepCopy/deep_copy.php"
522
+ ],
523
+ "psr-4": {
524
+ "DeepCopy\\": "src/DeepCopy/"
525
+ }
526
  },
527
  "notification-url": "https://packagist.org/downloads/",
528
  "license": [
780
  },
781
  {
782
  "name": "vendidero/one-stop-shop-woocommerce",
783
+ "version": "v1.2.0",
784
+ "version_normalized": "1.2.0.0",
785
  "source": {
786
  "type": "git",
787
  "url": "https://github.com/vendidero/one-stop-shop-woocommerce.git",
788
+ "reference": "e5fd7e3f05937a9b967531143d8ebf30f6ee78d3"
789
  },
790
  "dist": {
791
  "type": "zip",
792
+ "url": "https://api.github.com/repos/vendidero/one-stop-shop-woocommerce/zipball/e5fd7e3f05937a9b967531143d8ebf30f6ee78d3",
793
+ "reference": "e5fd7e3f05937a9b967531143d8ebf30f6ee78d3",
794
  "shasum": ""
795
  },
796
  "require": {
799
  "require-dev": {
800
  "phpunit/phpunit": "6.5.14"
801
  },
802
+ "time": "2022-02-21T12:00:19+00:00",
803
  "type": "wordpress-plugin",
804
  "installation-source": "dist",
805
  "autoload": {
821
  "description": "One Stop Shop Helper for WooCommerce",
822
  "homepage": "https://github.com/vendidero/one-stop-shop-woocommerce",
823
  "support": {
824
+ "source": "https://github.com/vendidero/one-stop-shop-woocommerce/tree/v1.2.0",
825
  "issues": "https://github.com/vendidero/one-stop-shop-woocommerce/issues"
826
  },
827
  "install-path": "../../packages/one-stop-shop-woocommerce"
828
  },
829
  {
830
  "name": "vendidero/woocommerce-germanized-dhl",
831
+ "version": "v1.6.9",
832
+ "version_normalized": "1.6.9.0",
833
  "source": {
834
  "type": "git",
835
  "url": "https://github.com/vendidero/woocommerce-germanized-dhl.git",
836
+ "reference": "2b87aaa89b42441f25e4cbd3777e29476aff32de"
837
  },
838
  "dist": {
839
  "type": "zip",
840
+ "url": "https://api.github.com/repos/vendidero/woocommerce-germanized-dhl/zipball/2b87aaa89b42441f25e4cbd3777e29476aff32de",
841
+ "reference": "2b87aaa89b42441f25e4cbd3777e29476aff32de",
842
  "shasum": ""
843
  },
844
  "require": {
851
  "require-dev": {
852
  "phpunit/phpunit": "7.5.14"
853
  },
854
+ "time": "2022-02-24T10:29:12+00:00",
855
  "type": "wordpress-plugin",
856
  "installation-source": "dist",
857
  "autoload": {
875
  "description": "The Germanized DHL implementation.",
876
  "homepage": "https://github.com/vendidero/woocommerce-germanized-dhl",
877
  "support": {
878
+ "source": "https://github.com/vendidero/woocommerce-germanized-dhl/tree/v1.6.9",
879
  "issues": "https://github.com/vendidero/woocommerce-germanized-dhl/issues"
880
  },
881
  "install-path": "../../packages/woocommerce-germanized-dhl"
882
  },
883
  {
884
  "name": "vendidero/woocommerce-germanized-shipments",
885
+ "version": "v1.6.7",
886
+ "version_normalized": "1.6.7.0",
887
  "source": {
888
  "type": "git",
889
  "url": "https://github.com/vendidero/woocommerce-germanized-shipments.git",
890
+ "reference": "21beacc0ef8b915446c0e26e3547143d28f4bf13"
891
  },
892
  "dist": {
893
  "type": "zip",
894
+ "url": "https://api.github.com/repos/vendidero/woocommerce-germanized-shipments/zipball/21beacc0ef8b915446c0e26e3547143d28f4bf13",
895
+ "reference": "21beacc0ef8b915446c0e26e3547143d28f4bf13",
896
  "shasum": ""
897
  },
898
  "require": {
905
  "phpunit/phpunit": "7.5.14",
906
  "yoast/phpunit-polyfills": "^1.0"
907
  },
908
+ "time": "2022-02-24T10:11:22+00:00",
909
  "type": "wordpress-plugin",
910
  "installation-source": "dist",
911
  "autoload": {
927
  "description": "The Germanized Shipments implementation.",
928
  "homepage": "https://github.com/vendidero/woocommerce-germanized-shipments",
929
  "support": {
930
+ "source": "https://github.com/vendidero/woocommerce-germanized-shipments/tree/v1.6.7",
931
  "issues": "https://github.com/vendidero/woocommerce-germanized-shipments/issues"
932
  },
933
  "install-path": "../../packages/woocommerce-germanized-shipments"
vendor/composer/installed.php CHANGED
@@ -5,7 +5,7 @@
5
  'type' => 'wordpress-plugin',
6
  'install_path' => __DIR__ . '/../../',
7
  'aliases' => array(),
8
- 'reference' => '606a8c1861ca48e7364afb3f8509d51500125a3b',
9
  'name' => 'vendidero/woocommerce-germanized',
10
  'dev' => false,
11
  ),
@@ -134,12 +134,12 @@
134
  ),
135
  ),
136
  'vendidero/one-stop-shop-woocommerce' => array(
137
- 'pretty_version' => 'v1.1.9',
138
- 'version' => '1.1.9.0',
139
  'type' => 'wordpress-plugin',
140
  'install_path' => __DIR__ . '/../../packages/one-stop-shop-woocommerce',
141
  'aliases' => array(),
142
- 'reference' => '3e58f1f39d3190fed2a1297be2245c359dd12f92',
143
  'dev_requirement' => false,
144
  ),
145
  'vendidero/woocommerce-germanized' => array(
@@ -148,25 +148,25 @@
148
  'type' => 'wordpress-plugin',
149
  'install_path' => __DIR__ . '/../../',
150
  'aliases' => array(),
151
- 'reference' => '606a8c1861ca48e7364afb3f8509d51500125a3b',
152
  'dev_requirement' => false,
153
  ),
154
  'vendidero/woocommerce-germanized-dhl' => array(
155
- 'pretty_version' => 'v1.6.8',
156
- 'version' => '1.6.8.0',
157
  'type' => 'wordpress-plugin',
158
  'install_path' => __DIR__ . '/../../packages/woocommerce-germanized-dhl',
159
  'aliases' => array(),
160
- 'reference' => '932fb74388d2027f9ed15e24f268d19b2f312b8d',
161
  'dev_requirement' => false,
162
  ),
163
  'vendidero/woocommerce-germanized-shipments' => array(
164
- 'pretty_version' => 'v1.6.6',
165
- 'version' => '1.6.6.0',
166
  'type' => 'wordpress-plugin',
167
  'install_path' => __DIR__ . '/../../packages/woocommerce-germanized-shipments',
168
  'aliases' => array(),
169
- 'reference' => '92201ddba7d1943b178caec2d6b513ddbe2e627d',
170
  'dev_requirement' => false,
171
  ),
172
  'vendidero/woocommerce-trusted-shops' => array(
5
  'type' => 'wordpress-plugin',
6
  'install_path' => __DIR__ . '/../../',
7
  'aliases' => array(),
8
+ 'reference' => '5f800e26d241ce199727b2250fbdd40a115c4f66',
9
  'name' => 'vendidero/woocommerce-germanized',
10
  'dev' => false,
11
  ),
134
  ),
135
  ),
136
  'vendidero/one-stop-shop-woocommerce' => array(
137
+ 'pretty_version' => 'v1.2.0',
138
+ 'version' => '1.2.0.0',
139
  'type' => 'wordpress-plugin',
140
  'install_path' => __DIR__ . '/../../packages/one-stop-shop-woocommerce',
141
  'aliases' => array(),
142
+ 'reference' => 'e5fd7e3f05937a9b967531143d8ebf30f6ee78d3',
143
  'dev_requirement' => false,
144
  ),
145
  'vendidero/woocommerce-germanized' => array(
148
  'type' => 'wordpress-plugin',
149
  'install_path' => __DIR__ . '/../../',
150
  'aliases' => array(),
151
+ 'reference' => '5f800e26d241ce199727b2250fbdd40a115c4f66',
152
  'dev_requirement' => false,
153
  ),
154
  'vendidero/woocommerce-germanized-dhl' => array(
155
+ 'pretty_version' => 'v1.6.9',
156
+ 'version' => '1.6.9.0',
157
  'type' => 'wordpress-plugin',
158
  'install_path' => __DIR__ . '/../../packages/woocommerce-germanized-dhl',
159
  'aliases' => array(),
160
+ 'reference' => '2b87aaa89b42441f25e4cbd3777e29476aff32de',
161
  'dev_requirement' => false,
162
  ),
163
  'vendidero/woocommerce-germanized-shipments' => array(
164
+ 'pretty_version' => 'v1.6.7',
165
+ 'version' => '1.6.7.0',
166
  'type' => 'wordpress-plugin',
167
  'install_path' => __DIR__ . '/../../packages/woocommerce-germanized-shipments',
168
  'aliases' => array(),
169
+ 'reference' => '21beacc0ef8b915446c0e26e3547143d28f4bf13',
170
  'dev_requirement' => false,
171
  ),
172
  'vendidero/woocommerce-trusted-shops' => array(
vendor/composer/jetpack_autoload_classmap.php CHANGED
@@ -323,443 +323,443 @@ return array(
323
  'path' => $baseDir . '/packages/woocommerce-trusted-shops/src/Package.php'
324
  ),
325
  'Vendidero\\OneStopShop\\SettingsPage' => array(
326
- 'version' => '1.1.9.0',
327
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/SettingsPage.php'
328
  ),
329
  'Vendidero\\OneStopShop\\Install' => array(
330
- 'version' => '1.1.9.0',
331
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/Install.php'
332
  ),
333
  'Vendidero\\OneStopShop\\Settings' => array(
334
- 'version' => '1.1.9.0',
335
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/Settings.php'
336
  ),
337
  'Vendidero\\OneStopShop\\CSVExporterBOP' => array(
338
- 'version' => '1.1.9.0',
339
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/CSVExporterBOP.php'
340
  ),
341
  'Vendidero\\OneStopShop\\Package' => array(
342
- 'version' => '1.1.9.0',
343
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/Package.php'
344
  ),
345
  'Vendidero\\OneStopShop\\ReportTable' => array(
346
- 'version' => '1.1.9.0',
347
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/ReportTable.php'
348
  ),
349
  'Vendidero\\OneStopShop\\CSVExporter' => array(
350
- 'version' => '1.1.9.0',
351
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/CSVExporter.php'
352
  ),
353
  'Vendidero\\OneStopShop\\DeliveryThresholdEmailNotification' => array(
354
- 'version' => '1.1.9.0',
355
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/DeliveryThresholdEmailNotification.php'
356
  ),
357
  'Vendidero\\OneStopShop\\Queue' => array(
358
- 'version' => '1.1.9.0',
359
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/Queue.php'
360
  ),
361
  'Vendidero\\OneStopShop\\Tax' => array(
362
- 'version' => '1.1.9.0',
363
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/Tax.php'
364
  ),
365
  'Vendidero\\OneStopShop\\AsyncReportGenerator' => array(
366
- 'version' => '1.1.9.0',
367
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/AsyncReportGenerator.php'
368
  ),
369
  'Vendidero\\OneStopShop\\DeliveryThresholdWarning' => array(
370
- 'version' => '1.1.9.0',
371
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/DeliveryThresholdWarning.php'
372
  ),
373
  'Vendidero\\OneStopShop\\Admin' => array(
374
- 'version' => '1.1.9.0',
375
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/Admin.php'
376
  ),
377
  'Vendidero\\OneStopShop\\AdminNote' => array(
378
- 'version' => '1.1.9.0',
379
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/AdminNote.php'
380
  ),
381
  'Vendidero\\OneStopShop\\Report' => array(
382
- 'version' => '1.1.9.0',
383
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/Report.php'
384
  ),
385
  'Vendidero\\Germanized\\Shipments\\Shipment' => array(
386
- 'version' => '1.6.6.0',
387
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Shipment.php'
388
  ),
389
  'Vendidero\\Germanized\\Shipments\\ShippingProvider\\Auto' => array(
390
- 'version' => '1.6.6.0',
391
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProvider/Auto.php'
392
  ),
393
  'Vendidero\\Germanized\\Shipments\\ShippingProvider\\Method' => array(
394
- 'version' => '1.6.6.0',
395
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProvider/Method.php'
396
  ),
397
  'Vendidero\\Germanized\\Shipments\\ShippingProvider\\Simple' => array(
398
- 'version' => '1.6.6.0',
399
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProvider/Simple.php'
400
  ),
401
  'Vendidero\\Germanized\\Shipments\\ShippingProvider\\Helper' => array(
402
- 'version' => '1.6.6.0',
403
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProvider/Helper.php'
404
  ),
405
  'Vendidero\\Germanized\\Shipments\\ShippingProvider\\MethodPlaceholder' => array(
406
- 'version' => '1.6.6.0',
407
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProvider/MethodPlaceholder.php'
408
  ),
409
  'Vendidero\\Germanized\\Shipments\\Install' => array(
410
- 'version' => '1.6.6.0',
411
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Install.php'
412
  ),
413
  'Vendidero\\Germanized\\Shipments\\SimpleShipment' => array(
414
- 'version' => '1.6.6.0',
415
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/SimpleShipment.php'
416
  ),
417
  'Vendidero\\Germanized\\Shipments\\Package' => array(
418
- 'version' => '1.6.6.0',
419
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Package.php'
420
  ),
421
  'Vendidero\\Germanized\\Shipments\\Product' => array(
422
- 'version' => '1.6.6.0',
423
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Product.php'
424
  ),
425
  'Vendidero\\Germanized\\Shipments\\Order' => array(
426
- 'version' => '1.6.6.0',
427
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Order.php'
428
  ),
429
  'Vendidero\\Germanized\\Shipments\\DataStores\\Shipment' => array(
430
- 'version' => '1.6.6.0',
431
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/Shipment.php'
432
  ),
433
  'Vendidero\\Germanized\\Shipments\\DataStores\\Label' => array(
434
- 'version' => '1.6.6.0',
435
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/Label.php'
436
  ),
437
  'Vendidero\\Germanized\\Shipments\\DataStores\\ShippingProvider' => array(
438
- 'version' => '1.6.6.0',
439
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/ShippingProvider.php'
440
  ),
441
  'Vendidero\\Germanized\\Shipments\\DataStores\\Packaging' => array(
442
- 'version' => '1.6.6.0',
443
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/Packaging.php'
444
  ),
445
  'Vendidero\\Germanized\\Shipments\\DataStores\\ShipmentItem' => array(
446
- 'version' => '1.6.6.0',
447
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/ShipmentItem.php'
448
  ),
449
  'Vendidero\\Germanized\\Shipments\\PackagingFactory' => array(
450
- 'version' => '1.6.6.0',
451
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PackagingFactory.php'
452
  ),
453
  'Vendidero\\Germanized\\Shipments\\Ajax' => array(
454
- 'version' => '1.6.6.0',
455
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Ajax.php'
456
  ),
457
  'Vendidero\\Germanized\\Shipments\\ReturnShipment' => array(
458
- 'version' => '1.6.6.0',
459
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ReturnShipment.php'
460
  ),
461
  'Vendidero\\Germanized\\Shipments\\AddressSplitter' => array(
462
- 'version' => '1.6.6.0',
463
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/AddressSplitter.php'
464
  ),
465
  'Vendidero\\Germanized\\Shipments\\Admin\\BulkLabel' => array(
466
- 'version' => '1.6.6.0',
467
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php'
468
  ),
469
  'Vendidero\\Germanized\\Shipments\\Admin\\Settings' => array(
470
- 'version' => '1.6.6.0',
471
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Settings.php'
472
  ),
473
  'Vendidero\\Germanized\\Shipments\\Admin\\MetaBox' => array(
474
- 'version' => '1.6.6.0',
475
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/MetaBox.php'
476
  ),
477
  'Vendidero\\Germanized\\Shipments\\Admin\\ProviderSettings' => array(
478
- 'version' => '1.6.6.0',
479
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/ProviderSettings.php'
480
  ),
481
  'Vendidero\\Germanized\\Shipments\\Admin\\ReturnTable' => array(
482
- 'version' => '1.6.6.0',
483
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php'
484
  ),
485
  'Vendidero\\Germanized\\Shipments\\Admin\\BulkActionHandler' => array(
486
- 'version' => '1.6.6.0',
487
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/BulkActionHandler.php'
488
  ),
489
  'Vendidero\\Germanized\\Shipments\\Admin\\Admin' => array(
490
- 'version' => '1.6.6.0',
491
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Admin.php'
492
  ),
493
  'Vendidero\\Germanized\\Shipments\\Admin\\Table' => array(
494
- 'version' => '1.6.6.0',
495
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Table.php'
496
  ),
497
  'Vendidero\\Germanized\\Shipments\\Labels\\Factory' => array(
498
- 'version' => '1.6.6.0',
499
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Labels/Factory.php'
500
  ),
501
  'Vendidero\\Germanized\\Shipments\\Labels\\Label' => array(
502
- 'version' => '1.6.6.0',
503
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Labels/Label.php'
504
  ),
505
  'Vendidero\\Germanized\\Shipments\\Labels\\ReturnLabel' => array(
506
- 'version' => '1.6.6.0',
507
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Labels/ReturnLabel.php'
508
  ),
509
  'Vendidero\\Germanized\\Shipments\\Labels\\DownloadHandler' => array(
510
- 'version' => '1.6.6.0',
511
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Labels/DownloadHandler.php'
512
  ),
513
  'Vendidero\\Germanized\\Shipments\\Labels\\Automation' => array(
514
- 'version' => '1.6.6.0',
515
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Labels/Automation.php'
516
  ),
517
  'Vendidero\\Germanized\\Shipments\\Labels\\Query' => array(
518
- 'version' => '1.6.6.0',
519
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Labels/Query.php'
520
  ),
521
  'Vendidero\\Germanized\\Shipments\\ShipmentQuery' => array(
522
- 'version' => '1.6.6.0',
523
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentQuery.php'
524
  ),
525
  'Vendidero\\Germanized\\Shipments\\WPMLHelper' => array(
526
- 'version' => '1.6.6.0',
527
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/WPMLHelper.php'
528
  ),
529
  'Vendidero\\Germanized\\Shipments\\ShipmentReturnItem' => array(
530
- 'version' => '1.6.6.0',
531
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentReturnItem.php'
532
  ),
533
  'Vendidero\\Germanized\\Shipments\\FormHandler' => array(
534
- 'version' => '1.6.6.0',
535
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/FormHandler.php'
536
  ),
537
  'Vendidero\\Germanized\\Shipments\\PDFMerger' => array(
538
- 'version' => '1.6.6.0',
539
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PDFMerger.php'
540
  ),
541
  'Vendidero\\Germanized\\Shipments\\ShipmentFactory' => array(
542
- 'version' => '1.6.6.0',
543
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentFactory.php'
544
  ),
545
  'Vendidero\\Germanized\\Shipments\\Automation' => array(
546
- 'version' => '1.6.6.0',
547
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Automation.php'
548
  ),
549
  'Vendidero\\Germanized\\Shipments\\Packaging' => array(
550
- 'version' => '1.6.6.0',
551
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Packaging.php'
552
  ),
553
  'Vendidero\\Germanized\\Shipments\\Api' => array(
554
- 'version' => '1.6.6.0',
555
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Api.php'
556
  ),
557
  'Vendidero\\Germanized\\Shipments\\ShipmentItem' => array(
558
- 'version' => '1.6.6.0',
559
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentItem.php'
560
  ),
561
  'Vendidero\\Germanized\\Shipments\\Validation' => array(
562
- 'version' => '1.6.6.0',
563
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Validation.php'
564
  ),
565
  'Vendidero\\Germanized\\Shipments\\Emails' => array(
566
- 'version' => '1.6.6.0',
567
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Emails.php'
568
  ),
569
  'Vendidero\\Germanized\\Shipments\\PDFSplitter' => array(
570
- 'version' => '1.6.6.0',
571
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PDFSplitter.php'
572
  ),
573
  'Vendidero\\Germanized\\Shipments\\ReturnReason' => array(
574
- 'version' => '1.6.6.0',
575
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ReturnReason.php'
576
  ),
577
  'Vendidero\\Germanized\\Shipments\\Interfaces\\ShippingProviderAuto' => array(
578
- 'version' => '1.6.6.0',
579
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShippingProviderAuto.php'
580
  ),
581
  'Vendidero\\Germanized\\Shipments\\Interfaces\\ShippingProvider' => array(
582
- 'version' => '1.6.6.0',
583
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShippingProvider.php'
584
  ),
585
  'Vendidero\\Germanized\\Shipments\\Interfaces\\ShipmentReturnLabel' => array(
586
- 'version' => '1.6.6.0',
587
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShipmentReturnLabel.php'
588
  ),
589
  'Vendidero\\Germanized\\Shipments\\Interfaces\\ShipmentLabel' => array(
590
- 'version' => '1.6.6.0',
591
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShipmentLabel.php'
592
  ),
593
  'Vendidero\\Germanized\\Shipments\\Packing\\PackagingBox' => array(
594
- 'version' => '1.6.6.0',
595
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Packing/PackagingBox.php'
596
  ),
597
  'Vendidero\\Germanized\\Shipments\\Packing\\OrderItem' => array(
598
- 'version' => '1.6.6.0',
599
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Packing/OrderItem.php'
600
  ),
601
  'Vendidero\\Germanized\\Shipments\\Packing\\Helper' => array(
602
- 'version' => '1.6.6.0',
603
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Packing/Helper.php'
604
  ),
605
  'Vendidero\\Germanized\\Shipments\\Packing\\ShipmentItem' => array(
606
- 'version' => '1.6.6.0',
607
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Packing/ShipmentItem.php'
608
  ),
609
  'Vendidero\\Germanized\\DHL\\ShippingProvider\\DeutschePost' => array(
610
- 'version' => '1.6.8.0',
611
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php'
612
  ),
613
  'Vendidero\\Germanized\\DHL\\ShippingProvider\\ShippingMethod' => array(
614
- 'version' => '1.6.8.0',
615
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/ShippingMethod.php'
616
  ),
617
  'Vendidero\\Germanized\\DHL\\ShippingProvider\\DHL' => array(
618
- 'version' => '1.6.8.0',
619
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/DHL.php'
620
  ),
621
  'Vendidero\\Germanized\\DHL\\Install' => array(
622
- 'version' => '1.6.8.0',
623
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Install.php'
624
  ),
625
  'Vendidero\\Germanized\\DHL\\Package' => array(
626
- 'version' => '1.6.8.0',
627
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Package.php'
628
  ),
629
  'Vendidero\\Germanized\\DHL\\Product' => array(
630
- 'version' => '1.6.8.0',
631
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Product.php'
632
  ),
633
  'Vendidero\\Germanized\\DHL\\Order' => array(
634
- 'version' => '1.6.8.0',
635
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Order.php'
636
  ),
637
  'Vendidero\\Germanized\\DHL\\Ajax' => array(
638
- 'version' => '1.6.8.0',
639
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Ajax.php'
640
  ),
641
  'Vendidero\\Germanized\\DHL\\ParcelServices' => array(
642
- 'version' => '1.6.8.0',
643
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ParcelServices.php'
644
  ),
645
  'Vendidero\\Germanized\\DHL\\Admin\\Importer\\Internetmarke' => array(
646
- 'version' => '1.6.8.0',
647
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Importer/Internetmarke.php'
648
  ),
649
  'Vendidero\\Germanized\\DHL\\Admin\\Importer\\DHL' => array(
650
- 'version' => '1.6.8.0',
651
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Importer/DHL.php'
652
  ),
653
  'Vendidero\\Germanized\\DHL\\Admin\\Status' => array(
654
- 'version' => '1.6.8.0',
655
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Status.php'
656
  ),
657
  'Vendidero\\Germanized\\DHL\\Admin\\Admin' => array(
658
- 'version' => '1.6.8.0',
659
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Admin.php'
660
  ),
661
  'Vendidero\\Germanized\\DHL\\Label\\DHLInlayReturn' => array(
662
- 'version' => '1.6.8.0',
663
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Label/DHLInlayReturn.php'
664
  ),
665
  'Vendidero\\Germanized\\DHL\\Label\\Label' => array(
666
- 'version' => '1.6.8.0',
667
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Label/Label.php'
668
  ),
669
  'Vendidero\\Germanized\\DHL\\Label\\DHLReturn' => array(
670
- 'version' => '1.6.8.0',
671
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Label/DHLReturn.php'
672
  ),
673
  'Vendidero\\Germanized\\DHL\\Label\\ReturnLabel' => array(
674
- 'version' => '1.6.8.0',
675
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Label/ReturnLabel.php'
676
  ),
677
  'Vendidero\\Germanized\\DHL\\Label\\DeutschePost' => array(
678
- 'version' => '1.6.8.0',
679
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Label/DeutschePost.php'
680
  ),
681
  'Vendidero\\Germanized\\DHL\\Label\\DHL' => array(
682
- 'version' => '1.6.8.0',
683
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Label/DHL.php'
684
  ),
685
  'Vendidero\\Germanized\\DHL\\Label\\DeutschePostReturn' => array(
686
- 'version' => '1.6.8.0',
687
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Label/DeutschePostReturn.php'
688
  ),
689
  'Vendidero\\Germanized\\DHL\\Legacy\\LabelQuery' => array(
690
- 'version' => '1.6.8.0',
691
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Legacy/LabelQuery.php'
692
  ),
693
  'Vendidero\\Germanized\\DHL\\Legacy\\DataStores\\Label' => array(
694
- 'version' => '1.6.8.0',
695
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Legacy/DataStores/Label.php'
696
  ),
697
  'Vendidero\\Germanized\\DHL\\Legacy\\DownloadHandler' => array(
698
- 'version' => '1.6.8.0',
699
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Legacy/DownloadHandler.php'
700
  ),
701
  'Vendidero\\Germanized\\DHL\\Legacy\\LabelFactory' => array(
702
- 'version' => '1.6.8.0',
703
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Legacy/LabelFactory.php'
704
  ),
705
  'Vendidero\\Germanized\\DHL\\ParcelLocator' => array(
706
- 'version' => '1.6.8.0',
707
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ParcelLocator.php'
708
  ),
709
  'Vendidero\\Germanized\\DHL\\Api\\ReturnRest' => array(
710
- 'version' => '1.6.8.0',
711
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ReturnRest.php'
712
  ),
713
  'Vendidero\\Germanized\\DHL\\Api\\Paket' => array(
714
- 'version' => '1.6.8.0',
715
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Paket.php'
716
  ),
717
  'Vendidero\\Germanized\\DHL\\Api\\LabelSoap' => array(
718
- 'version' => '1.6.8.0',
719
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php'
720
  ),
721
  'Vendidero\\Germanized\\DHL\\Api\\ImProductList' => array(
722
- 'version' => '1.6.8.0',
723
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImProductList.php'
724
  ),
725
  'Vendidero\\Germanized\\DHL\\Api\\AuthSoap' => array(
726
- 'version' => '1.6.8.0',
727
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/AuthSoap.php'
728
  ),
729
  'Vendidero\\Germanized\\DHL\\Api\\Internetmarke' => array(
730
- 'version' => '1.6.8.0',
731
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php'
732
  ),
733
  'Vendidero\\Germanized\\DHL\\Api\\ParcelRest' => array(
734
- 'version' => '1.6.8.0',
735
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ParcelRest.php'
736
  ),
737
  'Vendidero\\Germanized\\DHL\\Api\\ImPartnerInformation' => array(
738
- 'version' => '1.6.8.0',
739
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImPartnerInformation.php'
740
  ),
741
  'Vendidero\\Germanized\\DHL\\Api\\Soap' => array(
742
- 'version' => '1.6.8.0',
743
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Soap.php'
744
  ),
745
  'Vendidero\\Germanized\\DHL\\Api\\Rest' => array(
746
- 'version' => '1.6.8.0',
747
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Rest.php'
748
  ),
749
  'Vendidero\\Germanized\\DHL\\Api\\ImProductsSoap' => array(
750
- 'version' => '1.6.8.0',
751
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImProductsSoap.php'
752
  ),
753
  'Vendidero\\Germanized\\DHL\\Api\\FinderSoap' => array(
754
- 'version' => '1.6.8.0',
755
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php'
756
  ),
757
  'Vendidero\\Germanized\\DHL\\Api\\ImRefundSoap' => array(
758
- 'version' => '1.6.8.0',
759
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImRefundSoap.php'
760
  ),
761
  'Vendidero\\Germanized\\DHL\\Api\\ImWarenpostIntRest' => array(
762
- 'version' => '1.6.8.0',
763
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php'
764
  ),
765
  'Vendidero\\Germanized\\Shopmark' => array(
323
  'path' => $baseDir . '/packages/woocommerce-trusted-shops/src/Package.php'
324
  ),
325
  'Vendidero\\OneStopShop\\SettingsPage' => array(
326
+ 'version' => '1.2.0.0',
327
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/SettingsPage.php'
328
  ),
329
  'Vendidero\\OneStopShop\\Install' => array(
330
+ 'version' => '1.2.0.0',
331
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/Install.php'
332
  ),
333
  'Vendidero\\OneStopShop\\Settings' => array(
334
+ 'version' => '1.2.0.0',
335
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/Settings.php'
336
  ),
337
  'Vendidero\\OneStopShop\\CSVExporterBOP' => array(
338
+ 'version' => '1.2.0.0',
339
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/CSVExporterBOP.php'
340
  ),
341
  'Vendidero\\OneStopShop\\Package' => array(
342
+ 'version' => '1.2.0.0',
343
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/Package.php'
344
  ),
345
  'Vendidero\\OneStopShop\\ReportTable' => array(
346
+ 'version' => '1.2.0.0',
347
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/ReportTable.php'
348
  ),
349
  'Vendidero\\OneStopShop\\CSVExporter' => array(
350
+ 'version' => '1.2.0.0',
351
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/CSVExporter.php'
352
  ),
353
  'Vendidero\\OneStopShop\\DeliveryThresholdEmailNotification' => array(
354
+ 'version' => '1.2.0.0',
355
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/DeliveryThresholdEmailNotification.php'
356
  ),
357
  'Vendidero\\OneStopShop\\Queue' => array(
358
+ 'version' => '1.2.0.0',
359
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/Queue.php'
360
  ),
361
  'Vendidero\\OneStopShop\\Tax' => array(
362
+ 'version' => '1.2.0.0',
363
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/Tax.php'
364
  ),
365
  'Vendidero\\OneStopShop\\AsyncReportGenerator' => array(
366
+ 'version' => '1.2.0.0',
367
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/AsyncReportGenerator.php'
368
  ),
369
  'Vendidero\\OneStopShop\\DeliveryThresholdWarning' => array(
370
+ 'version' => '1.2.0.0',
371
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/DeliveryThresholdWarning.php'
372
  ),
373
  'Vendidero\\OneStopShop\\Admin' => array(
374
+ 'version' => '1.2.0.0',
375
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/Admin.php'
376
  ),
377
  'Vendidero\\OneStopShop\\AdminNote' => array(
378
+ 'version' => '1.2.0.0',
379
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/AdminNote.php'
380
  ),
381
  'Vendidero\\OneStopShop\\Report' => array(
382
+ 'version' => '1.2.0.0',
383
  'path' => $baseDir . '/packages/one-stop-shop-woocommerce/src/Report.php'
384
  ),
385
  'Vendidero\\Germanized\\Shipments\\Shipment' => array(
386
+ 'version' => '1.6.7.0',
387
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Shipment.php'
388
  ),
389
  'Vendidero\\Germanized\\Shipments\\ShippingProvider\\Auto' => array(
390
+ 'version' => '1.6.7.0',
391
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProvider/Auto.php'
392
  ),
393
  'Vendidero\\Germanized\\Shipments\\ShippingProvider\\Method' => array(
394
+ 'version' => '1.6.7.0',
395
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProvider/Method.php'
396
  ),
397
  'Vendidero\\Germanized\\Shipments\\ShippingProvider\\Simple' => array(
398
+ 'version' => '1.6.7.0',
399
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProvider/Simple.php'
400
  ),
401
  'Vendidero\\Germanized\\Shipments\\ShippingProvider\\Helper' => array(
402
+ 'version' => '1.6.7.0',
403
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProvider/Helper.php'
404
  ),
405
  'Vendidero\\Germanized\\Shipments\\ShippingProvider\\MethodPlaceholder' => array(
406
+ 'version' => '1.6.7.0',
407
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProvider/MethodPlaceholder.php'
408
  ),
409
  'Vendidero\\Germanized\\Shipments\\Install' => array(
410
+ 'version' => '1.6.7.0',
411
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Install.php'
412
  ),
413
  'Vendidero\\Germanized\\Shipments\\SimpleShipment' => array(
414
+ 'version' => '1.6.7.0',
415
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/SimpleShipment.php'
416
  ),
417
  'Vendidero\\Germanized\\Shipments\\Package' => array(
418
+ 'version' => '1.6.7.0',
419
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Package.php'
420
  ),
421
  'Vendidero\\Germanized\\Shipments\\Product' => array(
422
+ 'version' => '1.6.7.0',
423
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Product.php'
424
  ),
425
  'Vendidero\\Germanized\\Shipments\\Order' => array(
426
+ 'version' => '1.6.7.0',
427
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Order.php'
428
  ),
429
  'Vendidero\\Germanized\\Shipments\\DataStores\\Shipment' => array(
430
+ 'version' => '1.6.7.0',
431
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/Shipment.php'
432
  ),
433
  'Vendidero\\Germanized\\Shipments\\DataStores\\Label' => array(
434
+ 'version' => '1.6.7.0',
435
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/Label.php'
436
  ),
437
  'Vendidero\\Germanized\\Shipments\\DataStores\\ShippingProvider' => array(
438
+ 'version' => '1.6.7.0',
439
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/ShippingProvider.php'
440
  ),
441
  'Vendidero\\Germanized\\Shipments\\DataStores\\Packaging' => array(
442
+ 'version' => '1.6.7.0',
443
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/Packaging.php'
444
  ),
445
  'Vendidero\\Germanized\\Shipments\\DataStores\\ShipmentItem' => array(
446
+ 'version' => '1.6.7.0',
447
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/ShipmentItem.php'
448
  ),
449
  'Vendidero\\Germanized\\Shipments\\PackagingFactory' => array(
450
+ 'version' => '1.6.7.0',
451
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PackagingFactory.php'
452
  ),
453
  'Vendidero\\Germanized\\Shipments\\Ajax' => array(
454
+ 'version' => '1.6.7.0',
455
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Ajax.php'
456
  ),
457
  'Vendidero\\Germanized\\Shipments\\ReturnShipment' => array(
458
+ 'version' => '1.6.7.0',
459
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ReturnShipment.php'
460
  ),
461
  'Vendidero\\Germanized\\Shipments\\AddressSplitter' => array(
462
+ 'version' => '1.6.7.0',
463
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/AddressSplitter.php'
464
  ),
465
  'Vendidero\\Germanized\\Shipments\\Admin\\BulkLabel' => array(
466
+ 'version' => '1.6.7.0',
467
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php'
468
  ),
469
  'Vendidero\\Germanized\\Shipments\\Admin\\Settings' => array(
470
+ 'version' => '1.6.7.0',
471
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Settings.php'
472
  ),
473
  'Vendidero\\Germanized\\Shipments\\Admin\\MetaBox' => array(
474
+ 'version' => '1.6.7.0',
475
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/MetaBox.php'
476
  ),
477
  'Vendidero\\Germanized\\Shipments\\Admin\\ProviderSettings' => array(
478
+ 'version' => '1.6.7.0',
479
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/ProviderSettings.php'
480
  ),
481
  'Vendidero\\Germanized\\Shipments\\Admin\\ReturnTable' => array(
482
+ 'version' => '1.6.7.0',
483
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php'
484
  ),
485
  'Vendidero\\Germanized\\Shipments\\Admin\\BulkActionHandler' => array(
486
+ 'version' => '1.6.7.0',
487
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/BulkActionHandler.php'
488
  ),
489
  'Vendidero\\Germanized\\Shipments\\Admin\\Admin' => array(
490
+ 'version' => '1.6.7.0',
491
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Admin.php'
492
  ),
493
  'Vendidero\\Germanized\\Shipments\\Admin\\Table' => array(
494
+ 'version' => '1.6.7.0',
495
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Table.php'
496
  ),
497
  'Vendidero\\Germanized\\Shipments\\Labels\\Factory' => array(
498
+ 'version' => '1.6.7.0',
499
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Labels/Factory.php'
500
  ),
501
  'Vendidero\\Germanized\\Shipments\\Labels\\Label' => array(
502
+ 'version' => '1.6.7.0',
503
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Labels/Label.php'
504
  ),
505
  'Vendidero\\Germanized\\Shipments\\Labels\\ReturnLabel' => array(
506
+ 'version' => '1.6.7.0',
507
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Labels/ReturnLabel.php'
508
  ),
509
  'Vendidero\\Germanized\\Shipments\\Labels\\DownloadHandler' => array(
510
+ 'version' => '1.6.7.0',
511
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Labels/DownloadHandler.php'
512
  ),
513
  'Vendidero\\Germanized\\Shipments\\Labels\\Automation' => array(
514
+ 'version' => '1.6.7.0',
515
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Labels/Automation.php'
516
  ),
517
  'Vendidero\\Germanized\\Shipments\\Labels\\Query' => array(
518
+ 'version' => '1.6.7.0',
519
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Labels/Query.php'
520
  ),
521
  'Vendidero\\Germanized\\Shipments\\ShipmentQuery' => array(
522
+ 'version' => '1.6.7.0',
523
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentQuery.php'
524
  ),
525
  'Vendidero\\Germanized\\Shipments\\WPMLHelper' => array(
526
+ 'version' => '1.6.7.0',
527
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/WPMLHelper.php'
528
  ),
529
  'Vendidero\\Germanized\\Shipments\\ShipmentReturnItem' => array(
530
+ 'version' => '1.6.7.0',
531
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentReturnItem.php'
532
  ),
533
  'Vendidero\\Germanized\\Shipments\\FormHandler' => array(
534
+ 'version' => '1.6.7.0',
535
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/FormHandler.php'
536
  ),
537
  'Vendidero\\Germanized\\Shipments\\PDFMerger' => array(
538
+ 'version' => '1.6.7.0',
539
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PDFMerger.php'
540
  ),
541
  'Vendidero\\Germanized\\Shipments\\ShipmentFactory' => array(
542
+ 'version' => '1.6.7.0',
543
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentFactory.php'
544
  ),
545
  'Vendidero\\Germanized\\Shipments\\Automation' => array(
546
+ 'version' => '1.6.7.0',
547
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Automation.php'
548
  ),
549
  'Vendidero\\Germanized\\Shipments\\Packaging' => array(
550
+ 'version' => '1.6.7.0',
551
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Packaging.php'
552
  ),
553
  'Vendidero\\Germanized\\Shipments\\Api' => array(
554
+ 'version' => '1.6.7.0',
555
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Api.php'
556
  ),
557
  'Vendidero\\Germanized\\Shipments\\ShipmentItem' => array(
558
+ 'version' => '1.6.7.0',
559
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentItem.php'
560
  ),
561
  'Vendidero\\Germanized\\Shipments\\Validation' => array(
562
+ 'version' => '1.6.7.0',
563
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Validation.php'
564
  ),
565
  'Vendidero\\Germanized\\Shipments\\Emails' => array(
566
+ 'version' => '1.6.7.0',
567
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Emails.php'
568
  ),
569
  'Vendidero\\Germanized\\Shipments\\PDFSplitter' => array(
570
+ 'version' => '1.6.7.0',
571
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PDFSplitter.php'
572
  ),
573
  'Vendidero\\Germanized\\Shipments\\ReturnReason' => array(
574
+ 'version' => '1.6.7.0',
575
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ReturnReason.php'
576
  ),
577
  'Vendidero\\Germanized\\Shipments\\Interfaces\\ShippingProviderAuto' => array(
578
+ 'version' => '1.6.7.0',
579
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShippingProviderAuto.php'
580
  ),
581
  'Vendidero\\Germanized\\Shipments\\Interfaces\\ShippingProvider' => array(
582
+ 'version' => '1.6.7.0',
583
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShippingProvider.php'
584
  ),
585
  'Vendidero\\Germanized\\Shipments\\Interfaces\\ShipmentReturnLabel' => array(
586
+ 'version' => '1.6.7.0',
587
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShipmentReturnLabel.php'
588
  ),
589
  'Vendidero\\Germanized\\Shipments\\Interfaces\\ShipmentLabel' => array(
590
+ 'version' => '1.6.7.0',
591
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShipmentLabel.php'
592
  ),
593
  'Vendidero\\Germanized\\Shipments\\Packing\\PackagingBox' => array(
594
+ 'version' => '1.6.7.0',
595
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Packing/PackagingBox.php'
596
  ),
597
  'Vendidero\\Germanized\\Shipments\\Packing\\OrderItem' => array(
598
+ 'version' => '1.6.7.0',
599
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Packing/OrderItem.php'
600
  ),
601
  'Vendidero\\Germanized\\Shipments\\Packing\\Helper' => array(
602
+ 'version' => '1.6.7.0',
603
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Packing/Helper.php'
604
  ),
605
  'Vendidero\\Germanized\\Shipments\\Packing\\ShipmentItem' => array(
606
+ 'version' => '1.6.7.0',
607
  'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Packing/ShipmentItem.php'
608
  ),
609
  'Vendidero\\Germanized\\DHL\\ShippingProvider\\DeutschePost' => array(
610
+ 'version' => '1.6.9.0',
611
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php'
612
  ),
613
  'Vendidero\\Germanized\\DHL\\ShippingProvider\\ShippingMethod' => array(
614
+ 'version' => '1.6.9.0',
615
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/ShippingMethod.php'
616
  ),
617
  'Vendidero\\Germanized\\DHL\\ShippingProvider\\DHL' => array(
618
+ 'version' => '1.6.9.0',
619
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProvider/DHL.php'
620
  ),
621
  'Vendidero\\Germanized\\DHL\\Install' => array(
622
+ 'version' => '1.6.9.0',
623
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Install.php'
624
  ),
625
  'Vendidero\\Germanized\\DHL\\Package' => array(
626
+ 'version' => '1.6.9.0',
627
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Package.php'
628
  ),
629
  'Vendidero\\Germanized\\DHL\\Product' => array(
630
+ 'version' => '1.6.9.0',
631
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Product.php'
632
  ),
633
  'Vendidero\\Germanized\\DHL\\Order' => array(
634
+ 'version' => '1.6.9.0',
635
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Order.php'
636
  ),
637
  'Vendidero\\Germanized\\DHL\\Ajax' => array(
638
+ 'version' => '1.6.9.0',
639
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Ajax.php'
640
  ),
641
  'Vendidero\\Germanized\\DHL\\ParcelServices' => array(
642
+ 'version' => '1.6.9.0',
643
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ParcelServices.php'
644
  ),
645
  'Vendidero\\Germanized\\DHL\\Admin\\Importer\\Internetmarke' => array(
646
+ 'version' => '1.6.9.0',
647
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Importer/Internetmarke.php'
648
  ),
649
  'Vendidero\\Germanized\\DHL\\Admin\\Importer\\DHL' => array(
650
+ 'version' => '1.6.9.0',
651
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Importer/DHL.php'
652
  ),
653
  'Vendidero\\Germanized\\DHL\\Admin\\Status' => array(
654
+ 'version' => '1.6.9.0',
655
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Status.php'
656
  ),
657
  'Vendidero\\Germanized\\DHL\\Admin\\Admin' => array(
658
+ 'version' => '1.6.9.0',
659
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Admin.php'
660
  ),
661
  'Vendidero\\Germanized\\DHL\\Label\\DHLInlayReturn' => array(
662
+ 'version' => '1.6.9.0',
663
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Label/DHLInlayReturn.php'
664
  ),
665
  'Vendidero\\Germanized\\DHL\\Label\\Label' => array(
666
+ 'version' => '1.6.9.0',
667
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Label/Label.php'
668
  ),
669
  'Vendidero\\Germanized\\DHL\\Label\\DHLReturn' => array(
670
+ 'version' => '1.6.9.0',
671
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Label/DHLReturn.php'
672
  ),
673
  'Vendidero\\Germanized\\DHL\\Label\\ReturnLabel' => array(
674
+ 'version' => '1.6.9.0',
675
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Label/ReturnLabel.php'
676
  ),
677
  'Vendidero\\Germanized\\DHL\\Label\\DeutschePost' => array(
678
+ 'version' => '1.6.9.0',
679
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Label/DeutschePost.php'
680
  ),
681
  'Vendidero\\Germanized\\DHL\\Label\\DHL' => array(
682
+ 'version' => '1.6.9.0',
683
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Label/DHL.php'
684
  ),
685
  'Vendidero\\Germanized\\DHL\\Label\\DeutschePostReturn' => array(
686
+ 'version' => '1.6.9.0',
687
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Label/DeutschePostReturn.php'
688
  ),
689
  'Vendidero\\Germanized\\DHL\\Legacy\\LabelQuery' => array(
690
+ 'version' => '1.6.9.0',
691
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Legacy/LabelQuery.php'
692
  ),
693
  'Vendidero\\Germanized\\DHL\\Legacy\\DataStores\\Label' => array(
694
+ 'version' => '1.6.9.0',
695
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Legacy/DataStores/Label.php'
696
  ),
697
  'Vendidero\\Germanized\\DHL\\Legacy\\DownloadHandler' => array(
698
+ 'version' => '1.6.9.0',
699
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Legacy/DownloadHandler.php'
700
  ),
701
  'Vendidero\\Germanized\\DHL\\Legacy\\LabelFactory' => array(
702
+ 'version' => '1.6.9.0',
703
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Legacy/LabelFactory.php'
704
  ),
705
  'Vendidero\\Germanized\\DHL\\ParcelLocator' => array(
706
+ 'version' => '1.6.9.0',
707
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ParcelLocator.php'
708
  ),
709
  'Vendidero\\Germanized\\DHL\\Api\\ReturnRest' => array(
710
+ 'version' => '1.6.9.0',
711
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ReturnRest.php'
712
  ),
713
  'Vendidero\\Germanized\\DHL\\Api\\Paket' => array(
714
+ 'version' => '1.6.9.0',
715
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Paket.php'
716
  ),
717
  'Vendidero\\Germanized\\DHL\\Api\\LabelSoap' => array(
718
+ 'version' => '1.6.9.0',
719
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php'
720
  ),
721
  'Vendidero\\Germanized\\DHL\\Api\\ImProductList' => array(
722
+ 'version' => '1.6.9.0',
723
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImProductList.php'
724
  ),
725
  'Vendidero\\Germanized\\DHL\\Api\\AuthSoap' => array(
726
+ 'version' => '1.6.9.0',
727
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/AuthSoap.php'
728
  ),
729
  'Vendidero\\Germanized\\DHL\\Api\\Internetmarke' => array(
730
+ 'version' => '1.6.9.0',
731
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php'
732
  ),
733
  'Vendidero\\Germanized\\DHL\\Api\\ParcelRest' => array(
734
+ 'version' => '1.6.9.0',
735
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ParcelRest.php'
736
  ),
737
  'Vendidero\\Germanized\\DHL\\Api\\ImPartnerInformation' => array(
738
+ 'version' => '1.6.9.0',
739
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImPartnerInformation.php'
740
  ),
741
  'Vendidero\\Germanized\\DHL\\Api\\Soap' => array(
742
+ 'version' => '1.6.9.0',
743
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Soap.php'
744
  ),
745
  'Vendidero\\Germanized\\DHL\\Api\\Rest' => array(
746
+ 'version' => '1.6.9.0',
747
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Rest.php'
748
  ),
749
  'Vendidero\\Germanized\\DHL\\Api\\ImProductsSoap' => array(
750
+ 'version' => '1.6.9.0',
751
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImProductsSoap.php'
752
  ),
753
  'Vendidero\\Germanized\\DHL\\Api\\FinderSoap' => array(
754
+ 'version' => '1.6.9.0',
755
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php'
756
  ),
757
  'Vendidero\\Germanized\\DHL\\Api\\ImRefundSoap' => array(
758
+ 'version' => '1.6.9.0',
759
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImRefundSoap.php'
760
  ),
761
  'Vendidero\\Germanized\\DHL\\Api\\ImWarenpostIntRest' => array(
762
+ 'version' => '1.6.9.0',
763
  'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php'
764
  ),
765
  'Vendidero\\Germanized\\Shopmark' => 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\jpe43d3255142b4ac6a8f9e9423722a4af;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpdf3d0e93099c6ed316afabfbba19ad8e;
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\jpe43d3255142b4ac6a8f9e9423722a4af;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpdf3d0e93099c6ed316afabfbba19ad8e;
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\jpe43d3255142b4ac6a8f9e9423722a4af;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpdf3d0e93099c6ed316afabfbba19ad8e;
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\jpe43d3255142b4ac6a8f9e9423722a4af;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpdf3d0e93099c6ed316afabfbba19ad8e;
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\jpe43d3255142b4ac6a8f9e9423722a4af;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpdf3d0e93099c6ed316afabfbba19ad8e;
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\jpe43d3255142b4ac6a8f9e9423722a4af;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpdf3d0e93099c6ed316afabfbba19ad8e;
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\jpe43d3255142b4ac6a8f9e9423722a4af;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpdf3d0e93099c6ed316afabfbba19ad8e;
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\jpe43d3255142b4ac6a8f9e9423722a4af;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpdf3d0e93099c6ed316afabfbba19ad8e;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-php-autoloader.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpe43d3255142b4ac6a8f9e9423722a4af;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpdf3d0e93099c6ed316afabfbba19ad8e;
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\jpe43d3255142b4ac6a8f9e9423722a4af;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpdf3d0e93099c6ed316afabfbba19ad8e;
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\jpe43d3255142b4ac6a8f9e9423722a4af;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpdf3d0e93099c6ed316afabfbba19ad8e;
9
 
10
  // phpcs:ignore
11
 
vendor/jetpack-autoloader/class-shutdown-handler.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpe43d3255142b4ac6a8f9e9423722a4af;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpdf3d0e93099c6ed316afabfbba19ad8e;
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\jpe43d3255142b4ac6a8f9e9423722a4af;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpdf3d0e93099c6ed316afabfbba19ad8e;
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\jpe43d3255142b4ac6a8f9e9423722a4af;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jpdf3d0e93099c6ed316afabfbba19ad8e;
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.8.3
7
  * Author: vendidero
8
  * Author URI: https://vendidero.de
9
  * Requires at least: 5.4
10
  * Tested up to: 5.9
11
  * WC requires at least: 3.9
12
- * WC tested up to: 6.2
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.8.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.8.4
7
  * Author: vendidero
8
  * Author URI: https://vendidero.de
9
  * Requires at least: 5.4
10
  * Tested up to: 5.9
11
  * WC requires at least: 3.9
12
+ * WC tested up to: 6.3
13
  *
14
  * Text Domain: woocommerce-germanized
15
  * Domain Path: /i18n/languages/
69
  *
70
  * @var string
71
  */
72
+ public $version = '3.8.4';
73
 
74
  /**
75
  * @var WooCommerce_Germanized $instance of the plugin