WooCommerce Germanized - Version 3.5.1

Version Description

  • Improvement: Unit price observer now uses MutationObserver
  • Improvement: Move product customs options from DHL to shipments package for general usage
  • Improvement: Added shipping domestic, EU and international detection to shipments package
  • Improvement: Updated OSS plugin to 1. - for a changelog see: https://wordpress.org/plugins/one-stop-shop-woocommerce/#developers
  • Fix: Prevent infinite loops while empty price checking for shopmarks within get_product_html filter
  • Fix: Prevent duplicate feature plugin loading (e.g. OSS)
Download this release

Release Info

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

Code changes from version 3.5.0 to 3.5.1

Files changed (43) hide show
  1. assets/js/single-product.js +67 -60
  2. assets/js/single-product.min.js +1 -1
  3. i18n/languages/woocommerce-germanized-de_DE.mo +0 -0
  4. i18n/languages/woocommerce-germanized-de_DE.po +258 -222
  5. i18n/languages/woocommerce-germanized-de_DE_formal.mo +0 -0
  6. i18n/languages/woocommerce-germanized-de_DE_formal.po +258 -212
  7. i18n/languages/woocommerce-germanized.pot +5285 -5372
  8. includes/abstracts/abstract-wc-gzd-product.php +8 -2
  9. includes/admin/class-wc-gzd-admin-order.php +45 -0
  10. includes/class-wc-gzd-customer-helper.php +1 -1
  11. includes/gateways/direct-debit/assets/js/direct-debit.js +15 -13
  12. includes/gateways/direct-debit/assets/js/direct-debit.min.js +1 -1
  13. includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php +41 -26
  14. packages/one-stop-shop-woocommerce/assets/css/admin.css +5 -0
  15. packages/one-stop-shop-woocommerce/assets/css/admin.min.css +1 -1
  16. packages/one-stop-shop-woocommerce/assets/css/admin.scss +6 -0
  17. packages/one-stop-shop-woocommerce/docs/_config.yml +0 -8
  18. packages/one-stop-shop-woocommerce/docs/_includes/footer_custom.html +0 -4
  19. packages/one-stop-shop-woocommerce/docs/_layouts/default.html +0 -217
  20. packages/one-stop-shop-woocommerce/docs/_sass/color_schemes/oss.scss +0 -12
  21. packages/one-stop-shop-woocommerce/docs/_sass/custom/custom.scss +0 -0
  22. packages/one-stop-shop-woocommerce/i18n/languages/oss-woocommerce-de_DE.mo +0 -0
  23. packages/one-stop-shop-woocommerce/i18n/languages/oss-woocommerce-de_DE.po +168 -709
  24. packages/one-stop-shop-woocommerce/i18n/languages/oss-woocommerce-de_DE_formal.mo +0 -0
  25. packages/one-stop-shop-woocommerce/i18n/languages/oss-woocommerce-de_DE_formal.po +168 -709
  26. packages/one-stop-shop-woocommerce/i18n/languages/oss-woocommerce.pot +131 -702
  27. packages/one-stop-shop-woocommerce/one-stop-shop-woocommerce.php +4 -5
  28. packages/one-stop-shop-woocommerce/readme.txt +15 -1
  29. packages/one-stop-shop-woocommerce/src/Admin.php +4 -4
  30. packages/one-stop-shop-woocommerce/src/AsyncReportGenerator.php +106 -50
  31. packages/one-stop-shop-woocommerce/src/Package.php +41 -38
  32. packages/one-stop-shop-woocommerce/src/Queue.php +96 -18
  33. packages/one-stop-shop-woocommerce/src/Report.php +12 -1
  34. packages/one-stop-shop-woocommerce/src/Settings.php +15 -3
  35. packages/one-stop-shop-woocommerce/src/Tax.php +366 -137
  36. packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php +27 -20
  37. packages/woocommerce-germanized-dhl/src/Admin/Admin.php +0 -27
  38. packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php +8 -8
  39. packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php +1 -1
  40. packages/woocommerce-germanized-dhl/src/Api/ReturnRest.php +1 -1
  41. packages/woocommerce-germanized-dhl/src/Legacy/LabelFactory.php +2 -2
  42. packages/woocommerce-germanized-dhl/src/Package.php +32 -73
  43. packages/woocommerce-germanized-dhl/src/Product.php +0 -25
assets/js/single-product.js CHANGED
@@ -1,4 +1,4 @@
1
- /*global wc_gzd_single_product_params */
2
  ;(function ( $, window, document, undefined ) {
3
  var GermanizedSingleProductWatcher = function( $form ) {
4
  var self = this;
@@ -8,21 +8,78 @@
8
  self.$wrapper = $form.closest( wc_gzd_single_product_params.wrapper );
9
  self.$product = $form.closest( '.product' );
10
  self.requests = [];
 
 
11
 
12
  if ( self.$wrapper.length <= 0 ) {
13
  self.$wrapper = self.$product;
14
  }
15
 
16
- self.$wrapper.find( self.params.price_selector + ':not(.price-unit):visible' ).on( 'DOMSubtreeModified', { GermanizedSingleProductWatcher: self }, self.onChangePrice );
 
17
 
18
- if ( $form.hasClass( 'variations_form' ) ) {
19
- self.productId = $form.find( 'input[name=product_id]' ).length > 0 ? $form.find( 'input[name=product_id]' ).val() : self.params.product_id;
20
- self.variatonId = $form.find( 'input[name=variation_id]' ).length > 0 ? $form.find( 'input[name=variation_id]' ).val() : 0;
21
 
22
- $form.on( 'reset_data', { GermanizedSingleProductWatcher: self }, self.onResetVariation );
23
- $form.on( 'found_variation.wc-variation-form', { GermanizedSingleProductWatcher: self }, self.onFoundVariation );
24
- } else {
25
- self.productId = $form.find( '*[name=add-to-cart][type=submit]' ).length > 0 ? $form.find( '*[name=add-to-cart][type=submit]' ).val() : self.params.product_id;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  }
27
  };
28
 
@@ -81,51 +138,6 @@
81
  return false;
82
  };
83
 
84
- GermanizedSingleProductWatcher.prototype.onChangePrice = function( event ) {
85
- var self = event.data.GermanizedSingleProductWatcher;
86
-
87
- /**
88
- * Need to use a tweak here to make sure our variation listener
89
- * has already adjusted the variationId (in case necessary).
90
- */
91
- setTimeout(function() {
92
- var priceData = self.getCurrentPriceData( self );
93
- event.preventDefault();
94
-
95
- if ( priceData ) {
96
- /**
97
- * Unbind the event because using :first selectors will trigger DOMSubtreeModified again (infinite loop)
98
- */
99
- self.$wrapper.find( self.params.price_selector + ':not(.price-unit):visible' ).off( 'DOMSubtreeModified', { GermanizedSingleProductWatcher: self }, self.onChangePrice );
100
-
101
- /**
102
- * In case AJAX requests are still running (e.g. price refreshes of other plugins) wait for them to finish
103
- */
104
- if ( $.active > 0 ) {
105
- /**
106
- * Do not listen to our own requests
107
- */
108
- if ( self.requests.length <= 0 ) {
109
- $ ( document ).on( 'ajaxStop', { GermanizedSingleProductWatcher: self }, self.onAjaxStopRefresh );
110
- }
111
- } else {
112
- self.refreshUnitPrice( self, priceData.price, priceData.unit_price, priceData.sale_price );
113
- }
114
- }
115
- }, 500 );
116
- };
117
-
118
- GermanizedSingleProductWatcher.prototype.onAjaxStopRefresh = function( event ) {
119
- var self = event.data.GermanizedSingleProductWatcher;
120
- var priceData = self.getCurrentPriceData( self );
121
-
122
- if ( priceData ) {
123
- self.refreshUnitPrice( self, priceData.price, priceData.unit_price, priceData.sale_price );
124
- }
125
-
126
- $ ( document ).off( 'ajaxStop', { GermanizedSingleProductWatcher: self }, self.onAjaxStopRefresh );
127
- };
128
-
129
  GermanizedSingleProductWatcher.prototype.getCurrentProductId = function( self ) {
130
  var productId = self.productId;
131
 
@@ -171,11 +183,6 @@
171
  $unit_price.html( data.unit_price_html );
172
  }
173
  }
174
-
175
- /**
176
- * Rebind the event
177
- */
178
- self.$wrapper.find( self.params.price_selector + ':not(.price-unit):visible' ).on( 'DOMSubtreeModified', { GermanizedSingleProductWatcher: self }, self.onChangePrice );
179
  },
180
  error: function( data ) {},
181
  dataType: 'json'
@@ -192,7 +199,7 @@
192
 
193
  $( function() {
194
  if ( typeof wc_gzd_single_product_params !== 'undefined' ) {
195
- $( '.variations_form, ' + wc_gzd_single_product_params.wrapper + ' .cart' ).each( function() {
196
  $( this ).wc_germanized_single_product_watch();
197
  });
198
  }
1
+ /*global wc_gzd_single_product_params, accounting */
2
  ;(function ( $, window, document, undefined ) {
3
  var GermanizedSingleProductWatcher = function( $form ) {
4
  var self = this;
8
  self.$wrapper = $form.closest( wc_gzd_single_product_params.wrapper );
9
  self.$product = $form.closest( '.product' );
10
  self.requests = [];
11
+ self.observer = false;
12
+ self.timeout = false;
13
 
14
  if ( self.$wrapper.length <= 0 ) {
15
  self.$wrapper = self.$product;
16
  }
17
 
18
+ if ( "MutationObserver" in window || "WebKitMutationObserver" in window || "MozMutationObserver" in window ) {
19
+ self.initObserver( self );
20
 
21
+ if ( $form.hasClass( 'variations_form' ) ) {
22
+ self.productId = $form.find( 'input[name=product_id]' ).length > 0 ? $form.find( 'input[name=product_id]' ).val() : self.params.product_id;
23
+ self.variatonId = $form.find( 'input[name=variation_id]' ).length > 0 ? $form.find( 'input[name=variation_id]' ).val() : 0;
24
 
25
+ $form.on( 'reset_data', { GermanizedSingleProductWatcher: self }, self.onResetVariation );
26
+ $form.on( 'found_variation.wc-variation-form', { GermanizedSingleProductWatcher: self }, self.onFoundVariation );
27
+ } else {
28
+ self.productId = $form.find( '*[name=add-to-cart][type=submit]' ).length > 0 ? $form.find( '*[name=add-to-cart][type=submit]' ).val() : self.params.product_id;
29
+ }
30
+ }
31
+ };
32
+
33
+ GermanizedSingleProductWatcher.prototype.initObserver = function( self ) {
34
+ var $node = self.$wrapper.find( self.params.price_selector + ':not(.price-unit):visible' );
35
+
36
+ if ( $node.length > 0 && ! self.observer ) {
37
+
38
+ // Callback function to execute when mutations are observed
39
+ var callback = function( mutationsList, observer ) {
40
+ /**
41
+ * Clear the timeout and abort open AJAX requests as
42
+ * a new mutation has been observed
43
+ */
44
+ if ( self.timeout ) {
45
+ clearTimeout( self.timeout );
46
+ self.abortAjaxRequests( self );
47
+ }
48
+
49
+ /**
50
+ * Need to use a tweak here to make sure our variation listener
51
+ * has already adjusted the variationId (in case necessary).
52
+ */
53
+ self.timeout = setTimeout(function() {
54
+ var priceData = self.getCurrentPriceData( self );
55
+
56
+ if ( priceData ) {
57
+ /**
58
+ * Do only fire AJAX requests in case no other requests (e.g. from other plugins) are currently running.
59
+ */
60
+ if ( $.active <= 0 ) {
61
+ self.refreshUnitPrice( self, priceData.price, priceData.unit_price, priceData.sale_price );
62
+ }
63
+ }
64
+ }, 500 );
65
+ };
66
+
67
+ if ( "MutationObserver" in window ) {
68
+ self.observer = new window.MutationObserver( callback );
69
+ } else if ( "WebKitMutationObserver" in window ) {
70
+ self.observer = new window.WebKitMutationObserver( callback );
71
+ } else if ( "MozMutationObserver" in window ) {
72
+ self.observer = new window.MozMutationObserver( callback );
73
+ }
74
+
75
+ self.observer.observe( $node[0], { childList: true, subtree: true, characterData: true } );
76
+ }
77
+ };
78
+
79
+ GermanizedSingleProductWatcher.prototype.cancelObserver = function( self ) {
80
+ if ( self.observer ) {
81
+ self.observer.disconnect();
82
+ self.observer = false;
83
  }
84
  };
85
 
138
  return false;
139
  };
140
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
141
  GermanizedSingleProductWatcher.prototype.getCurrentProductId = function( self ) {
142
  var productId = self.productId;
143
 
183
  $unit_price.html( data.unit_price_html );
184
  }
185
  }
 
 
 
 
 
186
  },
187
  error: function( data ) {},
188
  dataType: 'json'
199
 
200
  $( function() {
201
  if ( typeof wc_gzd_single_product_params !== 'undefined' ) {
202
+ $( 'form.variations_form, ' + wc_gzd_single_product_params.wrapper + ' form.cart' ).each( function() {
203
  $( this ).wc_germanized_single_product_watch();
204
  });
205
  }
assets/js/single-product.min.js CHANGED
@@ -1 +1 @@
1
- !function(n,i){function e(e){var r=this;r.$form=e,r.params=wc_gzd_single_product_params,r.$wrapper=e.closest(wc_gzd_single_product_params.wrapper),r.$product=e.closest(".product"),r.requests=[],r.$wrapper.length<=0&&(r.$wrapper=r.$product),r.$wrapper.find(r.params.price_selector+":not(.price-unit):visible").on("DOMSubtreeModified",{GermanizedSingleProductWatcher:r},r.onChangePrice),e.hasClass("variations_form")?(r.productId=0<e.find("input[name=product_id]").length?e.find("input[name=product_id]").val():r.params.product_id,r.variatonId=0<e.find("input[name=variation_id]").length?e.find("input[name=variation_id]").val():0,e.on("reset_data",{GermanizedSingleProductWatcher:r},r.onResetVariation),e.on("found_variation.wc-variation-form",{GermanizedSingleProductWatcher:r},r.onFoundVariation)):r.productId=0<e.find("*[name=add-to-cart][type=submit]").length?e.find("*[name=add-to-cart][type=submit]").val():r.params.product_id}e.prototype.abortAjaxRequests=function(e){if(0<e.requests.length)for(var r=0;r<e.requests.length;r++)e.requests[r].abort()},e.prototype.onResetVariation=function(e){e.data.GermanizedSingleProductWatcher.variationId=0},e.prototype.onFoundVariation=function(e,r){e=e.data.GermanizedSingleProductWatcher;r.hasOwnProperty("variation_id")&&(e.variationId=r.variation_id)},e.prototype.getCurrentPriceData=function(e){var r=n(e.params.wrapper+" "+e.params.price_selector+":not(.price-unit):visible");if(0<r.length){var t=r.parents(e.params.wrapper).find(".price-unit:first"),i=e.getRawPrice(r.find(".amount:first"),e.params.price_decimal_sep),a="";if(1<r.find(".amount").length&&(a=e.getRawPrice(r.find(".amount:last"),e.params.price_decimal_sep)),0<t.length&&i)return{price:i,unit_price:t,sale_price:a}}return!1},e.prototype.onChangePrice=function(r){var t=r.data.GermanizedSingleProductWatcher;setTimeout(function(){var e=t.getCurrentPriceData(t);r.preventDefault(),e&&(t.$wrapper.find(t.params.price_selector+":not(.price-unit):visible").off("DOMSubtreeModified",{GermanizedSingleProductWatcher:t},t.onChangePrice),0<n.active?t.requests.length<=0&&n(i).on("ajaxStop",{GermanizedSingleProductWatcher:t},t.onAjaxStopRefresh):t.refreshUnitPrice(t,e.price,e.unit_price,e.sale_price))},500)},e.prototype.onAjaxStopRefresh=function(e){var r=e.data.GermanizedSingleProductWatcher,e=r.getCurrentPriceData(r);e&&r.refreshUnitPrice(r,e.price,e.unit_price,e.sale_price),n(i).off("ajaxStop",{GermanizedSingleProductWatcher:r},r.onAjaxStopRefresh)},e.prototype.getCurrentProductId=function(e){var r=e.productId;return 0<e.variationId&&(r=e.variationId),parseInt(r)},e.prototype.getRawPrice=function(r,e){var t=0<r.length?r.text():"",r=!1;try{r=accounting.unformat(t,e)}catch(e){r=!1}return r},e.prototype.refreshUnitPrice=function(r,e,t,i){r.abortAjaxRequests(r),r.requests.push(n.ajax({type:"POST",url:r.params.wc_ajax_url.toString().replace("%%endpoint%%","gzd_refresh_unit_price"),data:{security:r.params.refresh_unit_price_nonce,product_id:r.getCurrentProductId(r),price:e,price_sale:i},success:function(e){parseInt(e.product_id)===r.getCurrentProductId(r)&&e.hasOwnProperty("unit_price_html")&&t.html(e.unit_price_html),r.$wrapper.find(r.params.price_selector+":not(.price-unit):visible").on("DOMSubtreeModified",{GermanizedSingleProductWatcher:r},r.onChangePrice)},error:function(e){},dataType:"json"}))},n.fn.wc_germanized_single_product_watch=function(){return new e(this),this},n(function(){"undefined"!=typeof wc_gzd_single_product_params&&n(".variations_form, "+wc_gzd_single_product_params.wrapper+" .cart").each(function(){n(this).wc_germanized_single_product_watch()})})}(jQuery,(window,document)),window.germanized=window.germanized||{};
1
+ !function(a,i){function r(r){var e=this;e.$form=r,e.params=wc_gzd_single_product_params,e.$wrapper=r.closest(wc_gzd_single_product_params.wrapper),e.$product=r.closest(".product"),e.requests=[],e.observer=!1,e.timeout=!1,e.$wrapper.length<=0&&(e.$wrapper=e.$product),("MutationObserver"in i||"WebKitMutationObserver"in i||"MozMutationObserver"in i)&&(e.initObserver(e),r.hasClass("variations_form")?(e.productId=0<r.find("input[name=product_id]").length?r.find("input[name=product_id]").val():e.params.product_id,e.variatonId=0<r.find("input[name=variation_id]").length?r.find("input[name=variation_id]").val():0,r.on("reset_data",{GermanizedSingleProductWatcher:e},e.onResetVariation),r.on("found_variation.wc-variation-form",{GermanizedSingleProductWatcher:e},e.onFoundVariation)):e.productId=0<r.find("*[name=add-to-cart][type=submit]").length?r.find("*[name=add-to-cart][type=submit]").val():e.params.product_id)}r.prototype.initObserver=function(t){var r,e=t.$wrapper.find(t.params.price_selector+":not(.price-unit):visible");0<e.length&&!t.observer&&(r=function(r,e){t.timeout&&(clearTimeout(t.timeout),t.abortAjaxRequests(t)),t.timeout=setTimeout(function(){var r=t.getCurrentPriceData(t);r&&a.active<=0&&t.refreshUnitPrice(t,r.price,r.unit_price,r.sale_price)},500)},"MutationObserver"in i?t.observer=new i.MutationObserver(r):"WebKitMutationObserver"in i?t.observer=new i.WebKitMutationObserver(r):"MozMutationObserver"in i&&(t.observer=new i.MozMutationObserver(r)),t.observer.observe(e[0],{childList:!0,subtree:!0,characterData:!0}))},r.prototype.cancelObserver=function(r){r.observer&&(r.observer.disconnect(),r.observer=!1)},r.prototype.abortAjaxRequests=function(r){if(0<r.requests.length)for(var e=0;e<r.requests.length;e++)r.requests[e].abort()},r.prototype.onResetVariation=function(r){r.data.GermanizedSingleProductWatcher.variationId=0},r.prototype.onFoundVariation=function(r,e){r=r.data.GermanizedSingleProductWatcher;e.hasOwnProperty("variation_id")&&(r.variationId=e.variation_id)},r.prototype.getCurrentPriceData=function(r){var e=a(r.params.wrapper+" "+r.params.price_selector+":not(.price-unit):visible");if(0<e.length){var t=e.parents(r.params.wrapper).find(".price-unit:first"),i=r.getRawPrice(e.find(".amount:first"),r.params.price_decimal_sep),n="";if(1<e.find(".amount").length&&(n=r.getRawPrice(e.find(".amount:last"),r.params.price_decimal_sep)),0<t.length&&i)return{price:i,unit_price:t,sale_price:n}}return!1},r.prototype.getCurrentProductId=function(r){var e=r.productId;return 0<r.variationId&&(e=r.variationId),parseInt(e)},r.prototype.getRawPrice=function(e,r){var t=0<e.length?e.text():"",e=!1;try{e=accounting.unformat(t,r)}catch(r){e=!1}return e},r.prototype.refreshUnitPrice=function(e,r,t,i){e.abortAjaxRequests(e),e.requests.push(a.ajax({type:"POST",url:e.params.wc_ajax_url.toString().replace("%%endpoint%%","gzd_refresh_unit_price"),data:{security:e.params.refresh_unit_price_nonce,product_id:e.getCurrentProductId(e),price:r,price_sale:i},success:function(r){parseInt(r.product_id)===e.getCurrentProductId(e)&&r.hasOwnProperty("unit_price_html")&&t.html(r.unit_price_html)},error:function(r){},dataType:"json"}))},a.fn.wc_germanized_single_product_watch=function(){return new r(this),this},a(function(){"undefined"!=typeof wc_gzd_single_product_params&&a("form.variations_form, "+wc_gzd_single_product_params.wrapper+" form.cart").each(function(){a(this).wc_germanized_single_product_watch()})})}(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: 2021-06-28 16:17+0200\n"
6
- "PO-Revision-Date: 2021-06-28 16:35+0200\n"
7
  "Last-Translator: holzhannes <holzhannes@posteo.de>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE\n"
@@ -107,14 +107,14 @@ msgid "One Stop Shop"
107
  msgstr "One Stop Shop"
108
 
109
  #: one-stop-shop-woocommerce/src/Admin.php:453
110
- #: one-stop-shop-woocommerce/src/Package.php:269
111
  #, php-format
112
  msgctxt "oss"
113
  msgid "Q%1$s/%2$s"
114
  msgstr "Q%1$s/%2$s"
115
 
116
  #: one-stop-shop-woocommerce/src/Admin.php:462
117
- #: one-stop-shop-woocommerce/src/Package.php:274
118
  #, php-format
119
  msgctxt "oss"
120
  msgid "%1$s/%2$s"
@@ -131,22 +131,22 @@ msgid "Type"
131
  msgstr "Typ"
132
 
133
  #: one-stop-shop-woocommerce/src/Admin.php:489
134
- msgctxt "storeabill-core"
135
  msgid "Year"
136
  msgstr "Jahr"
137
 
138
  #: one-stop-shop-woocommerce/src/Admin.php:501
139
- msgctxt "storeabill-core"
140
  msgid "Quarter"
141
  msgstr "Quartal"
142
 
143
  #: one-stop-shop-woocommerce/src/Admin.php:513
144
- msgctxt "storeabill-core"
145
  msgid "Month"
146
  msgstr "Monat"
147
 
148
  #: one-stop-shop-woocommerce/src/Admin.php:525
149
- msgctxt "storeabill-core"
150
  msgid "Date range"
151
  msgstr "Zeitraum"
152
 
@@ -238,7 +238,7 @@ msgctxt "oss"
238
  msgid "Dismiss"
239
  msgstr "Ausblenden"
240
 
241
- #: one-stop-shop-woocommerce/src/AsyncReportGenerator.php:195
242
  msgctxt "oss"
243
  msgid "No orders found."
244
  msgstr "Keine Bestellungen gefunden."
@@ -292,7 +292,7 @@ msgctxt "oss"
292
  msgid "See details"
293
  msgstr "Details ansehen"
294
 
295
- #: one-stop-shop-woocommerce/src/Package.php:85
296
  msgctxt "oss"
297
  msgid ""
298
  "To use the OSS for WooCommerce plugin please make sure that WooCommerce is "
@@ -301,66 +301,66 @@ msgstr ""
301
  "Um das OSS für WooCommerce Plugin nutzen zu können muss WooCommerce "
302
  "installiert und aktiviert sein."
303
 
304
- #: one-stop-shop-woocommerce/src/Package.php:254
305
  #: one-stop-shop-woocommerce/src/ReportTable.php:40
306
  msgctxt "oss"
307
  msgid "Report"
308
  msgstr "Bericht"
309
 
310
- #: one-stop-shop-woocommerce/src/Package.php:278
311
  #, php-format
312
  msgctxt "oss"
313
  msgid "%1$s"
314
  msgstr "%1$s"
315
 
316
- #: one-stop-shop-woocommerce/src/Package.php:283
317
  #, php-format
318
  msgctxt "oss"
319
  msgid "%1$s - %2$s"
320
  msgstr "%1$s - %2$s"
321
 
322
- #: one-stop-shop-woocommerce/src/Package.php:288
323
  #, php-format
324
  msgctxt "oss"
325
  msgid "Observer %1$s"
326
  msgstr "Beobachter %1$s"
327
 
328
- #: one-stop-shop-woocommerce/src/Package.php:465
329
  msgctxt "oss"
330
  msgid "Quarterly"
331
  msgstr "Quartalsweise"
332
 
333
- #: one-stop-shop-woocommerce/src/Package.php:466
334
  msgctxt "oss"
335
  msgid "Yearly"
336
  msgstr "Jährlich"
337
 
338
- #: one-stop-shop-woocommerce/src/Package.php:467
339
  msgctxt "oss"
340
  msgid "Monthly"
341
  msgstr "Monatlich"
342
 
343
- #: one-stop-shop-woocommerce/src/Package.php:468
344
  msgctxt "oss"
345
  msgid "Custom"
346
  msgstr "Individuell"
347
 
348
- #: one-stop-shop-woocommerce/src/Package.php:472
349
  msgctxt "oss"
350
  msgid "Observer"
351
  msgstr "Beobachter"
352
 
353
- #: one-stop-shop-woocommerce/src/Package.php:486
354
  msgctxt "oss"
355
  msgid "Pending"
356
  msgstr "In Bearbeitung"
357
 
358
- #: one-stop-shop-woocommerce/src/Package.php:487
359
  msgctxt "oss"
360
  msgid "Completed"
361
  msgstr "Fertiggestellt"
362
 
363
- #: one-stop-shop-woocommerce/src/Package.php:488
364
  msgctxt "oss"
365
  msgid "Failed"
366
  msgstr "Fehlgeschlagen"
@@ -506,27 +506,46 @@ msgctxt "oss"
506
  msgid "Participation"
507
  msgstr "Teilnahme"
508
 
509
- #: one-stop-shop-woocommerce/src/Settings.php:80
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
510
  msgctxt "oss"
511
  msgid "Are you sure? Please backup your tax rates before proceeding."
512
  msgstr "Bist du sicher? Bitte erstelle vorab ein Backup deiner Steuersätze."
513
 
514
- #: one-stop-shop-woocommerce/src/Settings.php:80
515
  msgctxt "oss"
516
  msgid "End OSS participation"
517
  msgstr "OSS Teilnahme beenden"
518
 
519
- #: one-stop-shop-woocommerce/src/Settings.php:80
520
  msgctxt "oss"
521
  msgid "Start OSS participation"
522
  msgstr "OSS Teilnahme starten"
523
 
524
- #: one-stop-shop-woocommerce/src/Settings.php:81
525
  msgctxt "oss"
526
  msgid "learn more"
527
  msgstr "Mehr erfahren"
528
 
529
- #: one-stop-shop-woocommerce/src/Settings.php:83
530
  msgctxt "oss"
531
  msgid ""
532
  "Use this option to automatically adjust tax-related options in WooCommerce. "
@@ -537,39 +556,45 @@ msgstr ""
537
  "anpassen zu lassen. Achtung: Diese Option löscht deine aktuellen Steuersätze "
538
  "und fügt neue Steuersätze basierend auf deinem OSS Status hinzu."
539
 
540
- #: one-stop-shop-woocommerce/src/Settings.php:115
541
  msgctxt "oss"
542
  msgid "See status"
543
  msgstr "Status ansehen"
544
 
545
- #: one-stop-shop-woocommerce/src/Settings.php:115
546
  msgctxt "oss"
547
  msgid "Start initial report"
548
  msgstr "Initialen Bericht erstellen"
549
 
550
- #: one-stop-shop-woocommerce/src/Settings.php:116
551
  #, php-format
552
  msgctxt "oss"
553
  msgid "Report not yet completed. %s"
554
  msgstr "Bericht noch nicht abgeschlossen. %s"
555
 
556
- #: one-stop-shop-woocommerce/src/Settings.php:116
557
  #, php-format
558
  msgctxt "oss"
559
  msgid "Report not yet started. %s"
560
  msgstr "Bericht noch nicht gestartet. %s"
561
 
562
- #: one-stop-shop-woocommerce/src/Settings.php:134
563
  msgctxt "oss-amounts"
564
  msgid "of"
565
  msgstr "von"
566
 
567
- #: one-stop-shop-woocommerce/src/Settings.php:134
 
 
 
 
 
 
568
  msgctxt "oss"
569
  msgid "see details"
570
  msgstr "Details ansehen"
571
 
572
- #: one-stop-shop-woocommerce/src/Settings.php:135
573
  #, php-format
574
  msgctxt "oss"
575
  msgid ""
@@ -589,60 +614,80 @@ msgctxt "oss"
589
  msgid "Learn More"
590
  msgstr "Mehr erfahren"
591
 
592
- #: one-stop-shop-woocommerce/src/Tax.php:212
593
- #: one-stop-shop-woocommerce/src/Tax.php:270
594
  #, php-format
595
  msgctxt "oss"
596
  msgid "Tax class (%s)"
597
  msgstr "Steuerklasse (%s)"
598
 
599
- #: one-stop-shop-woocommerce/src/Tax.php:213
600
  msgctxt "oss"
601
  msgid "Same as parent"
602
  msgstr "Gleiche wie übergeordnet"
603
 
604
- #: one-stop-shop-woocommerce/src/Tax.php:215
605
- #: one-stop-shop-woocommerce/src/Tax.php:248
606
- #: one-stop-shop-woocommerce/src/Tax.php:272
607
- #: one-stop-shop-woocommerce/src/Tax.php:306
608
  msgctxt "oss"
609
  msgid "remove"
610
  msgstr "Löschen"
611
 
612
- #: one-stop-shop-woocommerce/src/Tax.php:225
613
- #: one-stop-shop-woocommerce/src/Tax.php:283
614
  msgctxt "oss"
615
  msgid "Add country specific tax class (OSS)"
616
  msgstr "Länderspezifische Steuerklasse hinzufügen (OSS)"
617
 
618
- #: one-stop-shop-woocommerce/src/Tax.php:232
619
- #: one-stop-shop-woocommerce/src/Tax.php:290
620
  msgctxt "oss"
621
  msgid "Select country"
622
  msgstr "Land auswählen"
623
 
624
- #: one-stop-shop-woocommerce/src/Tax.php:385
625
- #: one-stop-shop-woocommerce/src/Tax.php:464
626
  msgid "Reduced rate"
627
  msgstr ""
628
 
629
- #: one-stop-shop-woocommerce/src/Tax.php:388
630
- #: one-stop-shop-woocommerce/src/Tax.php:456
631
  msgctxt "oss"
632
  msgid "Greater reduced rate"
633
  msgstr "Zusätzlicher reduzierter Preis"
634
 
635
- #: one-stop-shop-woocommerce/src/Tax.php:391
636
- #: one-stop-shop-woocommerce/src/Tax.php:460
637
  msgctxt "oss"
638
  msgid "Super reduced rate"
639
  msgstr "Stark reduzierter Preis"
640
 
641
- #: one-stop-shop-woocommerce/src/Tax.php:651
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
642
  #, php-format
643
  msgctxt "oss-tax-rate-import"
644
- msgid "VAT %s"
645
- msgstr "MwSt. %s"
646
 
647
  #: one-stop-shop-woocommerce/templates/emails/admin-delivery-threshold.php:19
648
  #, php-format
@@ -725,23 +770,23 @@ msgctxt "dhl"
725
  msgid "Minimum age of 18"
726
  msgstr "Mindestens 18 Jahre"
727
 
728
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:297
729
  msgctxt "dhl"
730
  msgid "Shipment #{shipment_id} to order {order_id}"
731
  msgstr "Sendung #{shipment_id} zur Bestellung {order_id}"
732
 
733
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:333
734
  msgctxt "dhl"
735
  msgid "Return #{shipment_id} to order {order_id}"
736
  msgstr "Retoure #{shipment_id} zur Bestellung {order_id}"
737
 
738
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:349
739
  msgctxt "dhl"
740
  msgid "Return shipment #{shipment_id} to order #{order_id}"
741
  msgstr "Retourensendung #{shipment_id} zur Bestellung #{order_id}"
742
 
743
  # @ woocommerce-germanized
744
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:422
745
  #: woocommerce-germanized-dhl/src/ParcelLocator.php:890
746
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1055
747
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1717
@@ -751,72 +796,72 @@ msgid "Packstation"
751
  msgstr "Packstation"
752
 
753
  # @ woocommerce-germanized
754
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:423
755
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:424
756
  msgctxt "dhl"
757
  msgid "Postfiliale"
758
  msgstr "Postfiliale"
759
 
760
  # @ woocommerce-germanized
761
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:829
762
  msgctxt "dhl"
763
  msgid "DHL Retoure International A"
764
  msgstr "DHL Retoure International A"
765
 
766
  # @ woocommerce-germanized
767
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:830
768
  msgctxt "dhl"
769
  msgid "DHL Retoure International B"
770
  msgstr "DHL Retoure International B"
771
 
772
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:839
773
  msgctxt "dhl"
774
  msgid "DHL Retoure Online"
775
  msgstr "DHL Retoure Online"
776
 
777
  # @ woocommerce-germanized
778
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:855
779
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:875
780
  msgctxt "dhl"
781
  msgid "DHL Paket International"
782
  msgstr "DHL Paket International"
783
 
784
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:876
785
  msgctxt "dhl"
786
  msgid "DHL Paket Connect"
787
  msgstr "DHL Paket Connect"
788
 
789
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:877
790
  msgctxt "dhl"
791
  msgid "DHL Europaket (B2B)"
792
  msgstr "DHL Europaket (B2B)"
793
 
794
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:946
795
  msgctxt "dhl"
796
  msgid "DHL Paket"
797
  msgstr "DHL Paket"
798
 
799
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:947
800
  msgctxt "dhl"
801
  msgid "DHL Paket PRIO"
802
  msgstr "DHL Paket PRIO"
803
 
804
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:948
805
  msgctxt "dhl"
806
  msgid "DHL Paket Taggleich"
807
  msgstr "DHL Paket Taggleich"
808
 
809
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:949
810
  msgctxt "dhl"
811
  msgid "DHL Warenpost"
812
  msgstr "DHL Warenpost"
813
 
814
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:48
815
  msgctxt "dhl"
816
  msgid "Refreshed data successfully."
817
  msgstr "Daten erfolgreich aktualisiert."
818
 
819
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:48
820
  #, php-format
821
  msgctxt "dhl"
822
  msgid ""
@@ -827,90 +872,56 @@ msgstr ""
827
  "\">erreichbar</a> ist."
828
 
829
  # @ woocommerce-germanized
830
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:121
831
  msgctxt "dhl"
832
  msgid "Receiver Ids"
833
  msgstr "Empfänger IDs"
834
 
835
  # @ woocommerce-germanized
836
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:128
837
  msgctxt "dhl"
838
  msgid "Receiver Id"
839
  msgstr "Empfänger ID"
840
 
841
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:128
842
  msgctxt "dhl"
843
  msgid "Find your Receiver Ids within your DHL contract data."
844
  msgstr "Die Empfänger IDs findest du im DHL Geschäftskundenportal."
845
 
846
  # @ woocommerce-germanized
847
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:129
848
  msgctxt "dhl"
849
  msgid "Country Code"
850
  msgstr "Ländercode"
851
 
852
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:129
853
  msgctxt "dhl"
854
  msgid "Leave empty to use the Receiver Id as fallback."
855
  msgstr "Leer lassen, um diese Empfänger ID als Fallback zu verwenden."
856
 
857
  # @ woocommerce-germanized
858
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:147
859
  msgctxt "dhl"
860
  msgid "+ Add receiver"
861
  msgstr "+ Empfänger hinzufügen"
862
 
863
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:147
864
  msgctxt "dhl"
865
  msgid "Remove selected receiver(s)"
866
  msgstr "Ausgewählte Empfänger löschen"
867
 
868
- # @ woocommerce-germanized
869
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:183
870
- msgctxt "dhl"
871
- msgid "Select a country"
872
- msgstr "Land auswählen"
873
-
874
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:185
875
- msgctxt "dhl"
876
- msgid "HS-Code (DHL)"
877
- msgstr "Zolltarifnummer (HS-Code, DHL)"
878
-
879
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:185
880
- msgctxt "dhl"
881
- msgid ""
882
- "The HS Code is a number assigned to every possible commodity that can be "
883
- "imported or exported from any country."
884
- msgstr ""
885
- "Das Harmonisierte System (HS) der Zollnomenklatur ist ein international "
886
- "standardisiertes System von Namen und Nummern zur Klassifizierung "
887
- "gehandelter Produkte."
888
-
889
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:186
890
- msgctxt "dhl"
891
- msgid "Country of manufacture (DHL)"
892
- msgstr "Herstellungsland (DHL)"
893
-
894
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:186
895
- msgctxt "dhl"
896
- msgid ""
897
- "The country of manufacture is needed for customs of international shipping."
898
- msgstr ""
899
- "Das Herstellungsland wird für die Zollabwicklung bei internationalen "
900
- "Sendungen benötigt."
901
-
902
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:200
903
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:23
904
  msgctxt "dhl"
905
  msgid "DHL"
906
  msgstr "DHL"
907
 
908
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:215
909
  msgctxt "dhl"
910
  msgid "DHL Label"
911
  msgstr "DHL Label"
912
 
913
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:227
914
  msgctxt "dhl"
915
  msgid ""
916
  "This label has been generated by the DHL for WooCommerce Plugin and is shown "
@@ -920,7 +931,7 @@ msgstr ""
920
  "Kompatibilitäts-Gründen angezeigt."
921
 
922
  # @ woocommerce-germanized
923
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:228
924
  msgctxt "dhl"
925
  msgid "Download label"
926
  msgstr "Label downloaden"
@@ -1081,7 +1092,7 @@ msgstr "Fehler beim API Zugriff: %s"
1081
 
1082
  #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:65
1083
  #: woocommerce-germanized-dhl/src/Api/Soap.php:54
1084
- #: woocommerce-germanized-dhl/src/Package.php:101
1085
  #, php-format
1086
  msgctxt "dhl"
1087
  msgid ""
@@ -1406,7 +1417,7 @@ msgid "Invalid label."
1406
  msgstr "Ungültiges Label."
1407
 
1408
  # @ woocommerce-germanized
1409
- #: woocommerce-germanized-dhl/src/Package.php:1029
1410
  msgctxt "dhl"
1411
  msgid "Germany"
1412
  msgstr "Deutschland"
@@ -2832,7 +2843,7 @@ msgid "The minimum amount is %s"
2832
  msgstr "Der Minimalbetrag beträgt %s"
2833
 
2834
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:374
2835
- #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:573
2836
  #, php-format
2837
  msgctxt "dhl"
2838
  msgid ""
@@ -2850,12 +2861,12 @@ msgctxt "dhl"
2850
  msgid "Page Format"
2851
  msgstr "Seitenformat"
2852
 
2853
- #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:551
2854
  msgctxt "dhl"
2855
  msgid "The services chosen are not available for the current product."
2856
  msgstr "Die ausgewählten Services sind für dieses Produkt nicht verfügbar."
2857
 
2858
- #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:600
2859
  #, php-format
2860
  msgctxt "dhl"
2861
  msgid "Deutsche Post product is missing for %s."
@@ -3119,14 +3130,14 @@ msgstr "Position hinzufügen"
3119
 
3120
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:189
3121
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:45
3122
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:170
3123
  msgctxt "shipments"
3124
  msgid "Item"
3125
  msgstr "Position"
3126
 
3127
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:190
3128
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:46
3129
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:175
3130
  #: woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:55
3131
  #: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:37
3132
  #: woocommerce-germanized-shipments/templates/shipment/shipment-details.php:59
@@ -3206,9 +3217,9 @@ msgstr "Löschen"
3206
 
3207
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-list.php:22
3208
  #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:84
3209
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:157
3210
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:562
3211
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:683
3212
  #: woocommerce-germanized-shipments/src/Admin/Settings.php:75
3213
  #: woocommerce-germanized-shipments/src/Admin/Settings.php:172
3214
  #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:267
@@ -3239,10 +3250,10 @@ msgstr "%s #%s"
3239
  # @ woocommerce-germanized
3240
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:19
3241
  #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:77
3242
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:492
3243
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:561
3244
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:649
3245
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:716
3246
  #: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:20
3247
  msgctxt "shipments"
3248
  msgid "Shipments"
@@ -3273,15 +3284,15 @@ msgstr "Speichern"
3273
  #: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:11
3274
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:22
3275
  #: woocommerce-germanized-shipments/src/Admin/Table.php:687
3276
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:749
3277
  msgctxt "shipments"
3278
  msgid "Title"
3279
  msgstr "Titel"
3280
 
3281
  # @ woocommerce-germanized
3282
  #: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:12
3283
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:398
3284
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:758
3285
  msgctxt "shipments"
3286
  msgid "Description"
3287
  msgstr "Beschreibung"
@@ -3344,7 +3355,7 @@ msgid "Download"
3344
  msgstr "Download"
3345
 
3346
  #: woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:41
3347
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:780
3348
  msgctxt "shipments"
3349
  msgid "Create new label"
3350
  msgstr "Neues Label erstellen"
@@ -3715,7 +3726,7 @@ msgstr "Sendungsverfolgung"
3715
 
3716
  # @ woocommerce-germanized
3717
  #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1076
3718
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:180
3719
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:30
3720
  #: woocommerce-germanized-shipments/src/Admin/Table.php:696
3721
  msgctxt "shipments"
@@ -3767,7 +3778,41 @@ msgctxt "shipments"
3767
  msgid "View order"
3768
  msgstr "Bestellung ansehen"
3769
 
3770
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3771
  #, php-format
3772
  msgctxt "shipments"
3773
  msgid ""
@@ -3779,57 +3824,57 @@ msgstr ""
3779
  "beschreibbar ist."
3780
 
3781
  # @ woocommerce-germanized
3782
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:108
3783
  msgctxt "shipments"
3784
  msgid "View Shipments"
3785
  msgstr "Sendung anzeigen"
3786
 
3787
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:109
3788
  msgctxt "shipments"
3789
  msgid "Endpoint for the \"My account &rarr; View shipments\" page."
3790
  msgstr "Endpunkt für die „Mein Konto &rarr; Sendungen“ Seite."
3791
 
3792
  # @ woocommerce-germanized
3793
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:116
3794
  msgctxt "shipments"
3795
  msgid "View shipment"
3796
  msgstr "Sendung anzeigen"
3797
 
3798
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:117
3799
  msgctxt "shipments"
3800
  msgid "Endpoint for the \"My account &rarr; View shipment\" page."
3801
  msgstr "Endpunkt für die „Mein Konto &rarr; Sendung“ Seite."
3802
 
3803
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:124
3804
  msgctxt "shipments"
3805
  msgid "Add Return Shipment"
3806
  msgstr "Rücksendung"
3807
 
3808
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:125
3809
  msgctxt "shipments"
3810
  msgid "Endpoint for the \"My account &rarr; Add return shipment\" page."
3811
  msgstr "Endpunkt für die „Mein Konto &rarr; Rücksendung“ Seite."
3812
 
3813
  # @ woocommerce-germanized
3814
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:188
3815
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:323
3816
  #: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:36
3817
  msgctxt "shipments"
3818
  msgid "Reason"
3819
  msgstr "Rücksendegrund"
3820
 
3821
  # @ woocommerce-germanized
3822
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:315
3823
  msgctxt "shipments"
3824
  msgid "Return reasons"
3825
  msgstr "Rücksendegründe"
3826
 
3827
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:322
3828
  msgctxt "shipments"
3829
  msgid "Reason code"
3830
  msgstr "Rücksendegrund (Code)"
3831
 
3832
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:322
3833
  msgctxt "shipments"
3834
  msgid "The reason code is used to identify the reason."
3835
  msgstr ""
@@ -3837,61 +3882,61 @@ msgstr ""
3837
  "identifizieren zu können."
3838
 
3839
  # @ woocommerce-germanized
3840
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:323
3841
  msgctxt "shipments"
3842
  msgid "Choose a reason text."
3843
  msgstr "Beschreibung für den Grund."
3844
 
3845
  # @ woocommerce-germanized
3846
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:342
3847
  msgctxt "shipments"
3848
  msgid "+ Add reason"
3849
  msgstr "+ Grund hinzufügen"
3850
 
3851
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:342
3852
  msgctxt "shipments"
3853
  msgid "Remove selected reason(s)"
3854
  msgstr "Ausgewählte Gründe löschen"
3855
 
3856
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:375
3857
  msgctxt "shipments"
3858
  msgid "Available Packaging"
3859
  msgstr "Verfügbare Verpackungen"
3860
 
3861
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:398
3862
  msgctxt "shipments"
3863
  msgid "A description to help you identify the packaging."
3864
  msgstr "Eine Beschreibung die dir dabei hilft Verpackungen zu identifizieren."
3865
 
3866
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:399
3867
  msgctxt "shipments"
3868
  msgid "Type"
3869
  msgstr "Typ"
3870
 
3871
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:400
3872
  #, php-format
3873
  msgctxt "shipments"
3874
  msgid "Weight (%s)"
3875
  msgstr "Gewicht (%s)"
3876
 
3877
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:400
3878
  msgctxt "shipments"
3879
  msgid "The weight of the packaging."
3880
  msgstr "Das Gewicht der Verpackung."
3881
 
3882
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:401
3883
  #, php-format
3884
  msgctxt "shipments"
3885
  msgid "Dimensions (LxWxH, %s)"
3886
  msgstr "Abmessungen (LxBxH, %s)"
3887
 
3888
  # @ woocommerce-germanized
3889
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:402
3890
  msgctxt "shipments"
3891
  msgid "Max weight (kg)"
3892
  msgstr "Max. Gewicht (kg)"
3893
 
3894
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:402
3895
  msgctxt "shipments"
3896
  msgid ""
3897
  "The maximum weight this packaging can hold. Leave empty to not restrict "
@@ -3900,68 +3945,68 @@ msgstr ""
3900
  "Das maximale Gewicht, das diese Verpackung tragen kann. Leer lassen um das "
3901
  "Gewicht nicht zu begrenzen."
3902
 
3903
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:427
3904
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:468
3905
  msgctxt "shipments"
3906
  msgid "Length"
3907
  msgstr "Länge"
3908
 
3909
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:428
3910
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:469
3911
  msgctxt "shipments"
3912
  msgid "Width"
3913
  msgstr "Breite"
3914
 
3915
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:429
3916
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:470
3917
  msgctxt "shipments"
3918
  msgid "Height"
3919
  msgstr "Höhe"
3920
 
3921
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:442
3922
  msgctxt "shipments"
3923
  msgid "+ Add packaging"
3924
  msgstr "+ Verpackung hinzufügen"
3925
 
3926
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:442
3927
  msgctxt "shipments"
3928
  msgid "Remove selected packaging"
3929
  msgstr "Ausgewählte Verpackung löschen"
3930
 
3931
  # @ woocommerce-germanized
3932
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:546
3933
  msgctxt "shipments"
3934
  msgid "Create shipments"
3935
  msgstr "Sendungen erstellen"
3936
 
3937
  # @ woocommerce-germanized
3938
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:661
3939
  msgctxt "shipments"
3940
  msgid "Search shipments"
3941
  msgstr "Sendungen suchen"
3942
 
3943
  # @ woocommerce-germanized
3944
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:695
3945
  msgctxt "shipments"
3946
  msgid "Search returns"
3947
  msgstr "Retouren suchen"
3948
 
3949
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:773
3950
  msgctxt "shipments"
3951
  msgid "Do you really want to delete the shipment?"
3952
  msgstr "Möchtest du die Sendung wirklich löschen?"
3953
 
3954
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:779
3955
  msgctxt "shipments"
3956
  msgid "Do you really want to delete the label?"
3957
  msgstr "Möchtest du das Label wirklich löschen?"
3958
 
3959
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:781
3960
  msgctxt "shipments"
3961
  msgid "Please save the shipment before creating a new label"
3962
  msgstr "Bitte speichere die Sendung bevor du ein neues Label erzeugst"
3963
 
3964
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:831
3965
  msgctxt "shipments"
3966
  msgid ""
3967
  "Do you really want to delete the shipping provider? Some of your existing "
@@ -4477,7 +4522,7 @@ msgstr ""
4477
  # @ woocommerce-germanized
4478
  #: woocommerce-germanized-shipments/src/Admin/Settings.php:415
4479
  #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:344
4480
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:1070
4481
  msgctxt "shipments"
4482
  msgid "General"
4483
  msgstr "Allgemein"
@@ -4944,7 +4989,7 @@ msgctxt "shipments"
4944
  msgid "Invalid packaging."
4945
  msgstr "Verpackung nicht verfügbar."
4946
 
4947
- #: woocommerce-germanized-shipments/src/DataStores/ShipmentItem.php:198
4948
  msgctxt "shipments"
4949
  msgid "Invalid shipment item."
4950
  msgstr "Ungültige Sendungsposition."
@@ -5123,7 +5168,9 @@ msgid "%1$s (%2$s, %3$s)"
5123
  msgstr "%1$s (%2$s, %3$s)"
5124
 
5125
  #: woocommerce-germanized-shipments/src/ReturnShipment.php:362
5126
- #: woocommerce-germanized-shipments/src/Shipment.php:1021
 
 
5127
  #, php-format
5128
  msgctxt "full name"
5129
  msgid "%1$s %2$s"
@@ -5253,22 +5300,22 @@ msgstr ""
5253
  "die Paketverfolgungsdaten zum Zeitpunkt des Erhalts dieser E-Mail noch nicht "
5254
  "den neuesten Stand wiedergeben."
5255
 
5256
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:750
5257
  msgctxt "shipments"
5258
  msgid "Choose a title for the shipping provider."
5259
  msgstr "Wähle einen Titel für den Versanddienstleister."
5260
 
5261
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:759
5262
  msgctxt "shipments"
5263
  msgid "Choose a description for the shipping provider."
5264
  msgstr "Wähle eine Beschreibung für den Versanddienstleister."
5265
 
5266
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:771
5267
  msgctxt "shipments"
5268
  msgid "Tracking URL"
5269
  msgstr "Sendungsverfolgung URL"
5270
 
5271
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:772
5272
  #, php-format
5273
  msgctxt "shipments"
5274
  msgid ""
@@ -5282,12 +5329,12 @@ msgstr ""
5282
  "einzufügen: %s"
5283
 
5284
  # @ woocommerce-germanized
5285
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:782
5286
  msgctxt "shipments"
5287
  msgid "Tracking description"
5288
  msgstr "Sendungsverfolgung Hinweis"
5289
 
5290
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:783
5291
  #, php-format
5292
  msgctxt "shipments"
5293
  msgid ""
@@ -5302,17 +5349,17 @@ msgstr ""
5302
  "einzufügen: %s"
5303
 
5304
  # @ woocommerce-germanized
5305
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:927
5306
  msgctxt "shipments"
5307
  msgid "Customer returns"
5308
  msgstr "Rücksendungen"
5309
 
5310
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:928
5311
  msgctxt "shipments"
5312
  msgid "Allow customers to submit return requests to shipments."
5313
  msgstr "Erlaube Kunden eine Rücksendung zu einer Sendung zu beantragen."
5314
 
5315
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:928
5316
  #, php-format
5317
  msgctxt "shipments"
5318
  msgid ""
@@ -5326,27 +5373,27 @@ msgstr ""
5326
  "Gästen zu erfahren, lese bitte die %s."
5327
 
5328
  # @ woocommerce-germanized
5329
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:928
5330
  msgctxt "shipments"
5331
  msgid "Return Dashboard"
5332
  msgstr "Retouren-Dashboard"
5333
 
5334
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:928
5335
  msgctxt "shipments"
5336
  msgid "docs"
5337
  msgstr "Dokumentation"
5338
 
5339
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:937
5340
  msgctxt "shipments"
5341
  msgid "Guest returns"
5342
  msgstr "Retouren für Gäste"
5343
 
5344
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:938
5345
  msgctxt "shipments"
5346
  msgid "Allow guests to submit return requests to shipments."
5347
  msgstr "Erlaube Gästen Rücksendeanträge zu Bestellungen zu beantragen."
5348
 
5349
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:938
5350
  #, php-format
5351
  msgctxt "shipments"
5352
  msgid ""
@@ -5360,18 +5407,18 @@ msgstr ""
5360
  "Rücksende-Formular für Gäste auf deiner Seite zu platzieren."
5361
 
5362
  # @ woocommerce-germanized
5363
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:949
5364
  msgctxt "shipments"
5365
  msgid "Manual confirmation"
5366
  msgstr "Manuelle Bestätigung"
5367
 
5368
  # @ woocommerce-germanized
5369
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:950
5370
  msgctxt "shipments"
5371
  msgid "Return requests need manual confirmation."
5372
  msgstr "Rücksendeanträge benötigen eine manuelle Bestätigung."
5373
 
5374
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:950
5375
  msgctxt "shipments"
5376
  msgid ""
5377
  "By default return request need manual confirmation e.g. a shop manager needs "
@@ -5388,12 +5435,12 @@ msgstr ""
5388
  "Mail-Bestätigung samt Retouren-Label."
5389
 
5390
  # @ woocommerce-germanized
5391
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:962
5392
  msgctxt "shipments"
5393
  msgid "Return instructions"
5394
  msgstr "Rücksende-Anweisungen"
5395
 
5396
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:963
5397
  msgctxt "shipments"
5398
  msgid ""
5399
  "Provide your customer with instructions on how to return the shipment after "
@@ -5406,7 +5453,7 @@ msgstr ""
5406
  "kann, solltest du deine Kunden darüber informieren, woher ein Label für die "
5407
  "Rücksendung bezogen werden kann."
5408
 
5409
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:1049
5410
  #, php-format
5411
  msgctxt "shipments"
5412
  msgid ""
@@ -5418,12 +5465,12 @@ msgstr ""
5418
  "Einstellungen</a>. Passe diese Einstellungen nur dann an, wenn du explizit "
5419
  "Abweichungen speziell für diese Versandmethode konfigurieren willst."
5420
 
5421
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:1074
5422
  msgctxt "shipments"
5423
  msgid "Return Requests"
5424
  msgstr "Rücksendeanträge"
5425
 
5426
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:1105
5427
  msgctxt "shipments"
5428
  msgid "This shipping provider does not support creating labels."
5429
  msgstr "Dieser Versanddienstleister unterstützt keine Label-Erzeugung."
@@ -5795,8 +5842,8 @@ msgid "l"
5795
  msgstr "l"
5796
 
5797
  # @ woocommerce-germanized
5798
- #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:559
5799
- #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:569
5800
  #: woocommerce-germanized/includes/wc-gzd-core-functions.php:453
5801
  #: woocommerce-germanized/includes/wc-gzd-template-functions.php:597
5802
  #: woocommerce-germanized/includes/wc-gzd-template-functions.php:605
@@ -5804,19 +5851,19 @@ msgid "incl. VAT"
5804
  msgstr "inkl. MwSt."
5805
 
5806
  # @ woocommerce-germanized
5807
- #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:559
5808
  msgid "excl. VAT"
5809
  msgstr "exkl. MwSt."
5810
 
5811
  # @ woocommerce-germanized
5812
- #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:561
5813
  #: woocommerce-germanized/includes/wc-gzd-core-functions.php:453
5814
  #, php-format
5815
  msgid "incl. %s%% VAT"
5816
  msgstr "inkl. %s %% MwSt."
5817
 
5818
  # @ woocommerce-germanized
5819
- #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:561
5820
  #, php-format
5821
  msgid "excl. %s%% VAT"
5822
  msgstr "exkl. %s %% MwSt."
@@ -10904,7 +10951,7 @@ msgstr ""
10904
  "%s ein."
10905
 
10906
  # @ woocommerce-germanized
10907
- #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:797
10908
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:844
10909
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:877
10910
  msgid "a single payment"
@@ -11184,7 +11231,7 @@ msgid "is invalid"
11184
  msgstr "ist ungültig"
11185
 
11186
  # @ woocommerce-germanized
11187
- #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1296
11188
  msgid "Awaiting Direct Debit Payment"
11189
  msgstr "Zahlung per Lastschrift ausstehend"
11190
 
@@ -11419,7 +11466,7 @@ msgid "Place order"
11419
  msgstr "Jetzt kaufen"
11420
 
11421
  #: woocommerce-germanized/src/Autoloader.php:50
11422
- #: woocommerce-germanized/src/Packages.php:95
11423
  msgid ""
11424
  "Your installation of Germanized is incomplete. If you installed Germanized "
11425
  "from GitHub, please refer to this document to set up your development "
@@ -11432,7 +11479,7 @@ msgstr ""
11432
  "germanized/wiki/How-to-set-up-a-Germanized-development-environment"
11433
 
11434
  #: woocommerce-germanized/src/Autoloader.php:62
11435
- #: woocommerce-germanized/src/Packages.php:117
11436
  #, php-format
11437
  msgid ""
11438
  "Your installation of Germanized is incomplete. If you installed Germanized "
@@ -11443,8 +11490,8 @@ msgstr ""
11443
  "GitHub installiert hast, %1$sschaue dir bitte dieses Dokument an%2$s um eine "
11444
  "Entwicklungsumgebung aufzusetzen."
11445
 
11446
- #: woocommerce-germanized/src/Packages.php:93
11447
- #: woocommerce-germanized/src/Packages.php:108
11448
  #, php-format
11449
  msgid "Missing the Germanized %s package"
11450
  msgstr "Das Germanized %s Paket fehlt"
@@ -12996,7 +13043,6 @@ msgstr ""
12996
  "Deine Installation des Germanized Trusted Shops Plugins ist unvollständig. "
12997
  "Bitte führe %1$s im %2$s Verzeichnis aus."
12998
 
12999
- # ## OSS Plugin translations end ###
13000
  #. Plugin URI of the plugin/theme
13001
  msgid "https://www.vendidero.de/woocommerce-germanized"
13002
  msgstr "https://www.vendidero.de/woocommerce-germanized"
@@ -13044,16 +13090,6 @@ msgstr "https://vendidero.de"
13044
  #~ msgid "Data Security"
13045
  #~ msgstr "Datenschutzerklärung"
13046
 
13047
- #~ msgctxt "oss"
13048
- #~ msgid ""
13049
- #~ "Find useful options regarding the <a href=\"https://ec.europa.eu/"
13050
- #~ "taxation_customs/business/vat/modernising-vat-cross-border-ecommerce_en\" "
13051
- #~ "target=\"_blank\" rel=\"noopener\">One Stop Shop procedure</a> here."
13052
- #~ msgstr ""
13053
- #~ "Finde hier nützliche Optionen zum <a href=\"https://ec.europa.eu/"
13054
- #~ "taxation_customs/business/vat/modernising-vat-cross-border-ecommerce_de\" "
13055
- #~ "target=\"_blank\" rel=\"noopener\">One Stop Shop Verfahren</a>."
13056
-
13057
  #, php-format
13058
  #~ msgid "Shipment %d of %d"
13059
  #~ msgstr "Sendung %d von %d"
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce Germanized\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-07-08 14:19+0200\n"
6
+ "PO-Revision-Date: 2021-07-08 14:20+0200\n"
7
  "Last-Translator: holzhannes <holzhannes@posteo.de>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE\n"
107
  msgstr "One Stop Shop"
108
 
109
  #: one-stop-shop-woocommerce/src/Admin.php:453
110
+ #: one-stop-shop-woocommerce/src/Package.php:264
111
  #, php-format
112
  msgctxt "oss"
113
  msgid "Q%1$s/%2$s"
114
  msgstr "Q%1$s/%2$s"
115
 
116
  #: one-stop-shop-woocommerce/src/Admin.php:462
117
+ #: one-stop-shop-woocommerce/src/Package.php:269
118
  #, php-format
119
  msgctxt "oss"
120
  msgid "%1$s/%2$s"
131
  msgstr "Typ"
132
 
133
  #: one-stop-shop-woocommerce/src/Admin.php:489
134
+ msgctxt "oss"
135
  msgid "Year"
136
  msgstr "Jahr"
137
 
138
  #: one-stop-shop-woocommerce/src/Admin.php:501
139
+ msgctxt "oss"
140
  msgid "Quarter"
141
  msgstr "Quartal"
142
 
143
  #: one-stop-shop-woocommerce/src/Admin.php:513
144
+ msgctxt "oss"
145
  msgid "Month"
146
  msgstr "Monat"
147
 
148
  #: one-stop-shop-woocommerce/src/Admin.php:525
149
+ msgctxt "oss"
150
  msgid "Date range"
151
  msgstr "Zeitraum"
152
 
238
  msgid "Dismiss"
239
  msgstr "Ausblenden"
240
 
241
+ #: one-stop-shop-woocommerce/src/AsyncReportGenerator.php:244
242
  msgctxt "oss"
243
  msgid "No orders found."
244
  msgstr "Keine Bestellungen gefunden."
292
  msgid "See details"
293
  msgstr "Details ansehen"
294
 
295
+ #: one-stop-shop-woocommerce/src/Package.php:80
296
  msgctxt "oss"
297
  msgid ""
298
  "To use the OSS for WooCommerce plugin please make sure that WooCommerce is "
301
  "Um das OSS für WooCommerce Plugin nutzen zu können muss WooCommerce "
302
  "installiert und aktiviert sein."
303
 
304
+ #: one-stop-shop-woocommerce/src/Package.php:249
305
  #: one-stop-shop-woocommerce/src/ReportTable.php:40
306
  msgctxt "oss"
307
  msgid "Report"
308
  msgstr "Bericht"
309
 
310
+ #: one-stop-shop-woocommerce/src/Package.php:273
311
  #, php-format
312
  msgctxt "oss"
313
  msgid "%1$s"
314
  msgstr "%1$s"
315
 
316
+ #: one-stop-shop-woocommerce/src/Package.php:278
317
  #, php-format
318
  msgctxt "oss"
319
  msgid "%1$s - %2$s"
320
  msgstr "%1$s - %2$s"
321
 
322
+ #: one-stop-shop-woocommerce/src/Package.php:283
323
  #, php-format
324
  msgctxt "oss"
325
  msgid "Observer %1$s"
326
  msgstr "Beobachter %1$s"
327
 
328
+ #: one-stop-shop-woocommerce/src/Package.php:482
329
  msgctxt "oss"
330
  msgid "Quarterly"
331
  msgstr "Quartalsweise"
332
 
333
+ #: one-stop-shop-woocommerce/src/Package.php:483
334
  msgctxt "oss"
335
  msgid "Yearly"
336
  msgstr "Jährlich"
337
 
338
+ #: one-stop-shop-woocommerce/src/Package.php:484
339
  msgctxt "oss"
340
  msgid "Monthly"
341
  msgstr "Monatlich"
342
 
343
+ #: one-stop-shop-woocommerce/src/Package.php:485
344
  msgctxt "oss"
345
  msgid "Custom"
346
  msgstr "Individuell"
347
 
348
+ #: one-stop-shop-woocommerce/src/Package.php:489
349
  msgctxt "oss"
350
  msgid "Observer"
351
  msgstr "Beobachter"
352
 
353
+ #: one-stop-shop-woocommerce/src/Package.php:503
354
  msgctxt "oss"
355
  msgid "Pending"
356
  msgstr "In Bearbeitung"
357
 
358
+ #: one-stop-shop-woocommerce/src/Package.php:504
359
  msgctxt "oss"
360
  msgid "Completed"
361
  msgstr "Fertiggestellt"
362
 
363
+ #: one-stop-shop-woocommerce/src/Package.php:505
364
  msgctxt "oss"
365
  msgid "Failed"
366
  msgstr "Fehlgeschlagen"
506
  msgid "Participation"
507
  msgstr "Teilnahme"
508
 
509
+ #: one-stop-shop-woocommerce/src/Settings.php:70
510
+ msgctxt "oss"
511
+ msgid "Fixed gross prices"
512
+ msgstr "Feste Bruttopreise"
513
+
514
+ #: one-stop-shop-woocommerce/src/Settings.php:71
515
+ msgctxt "oss"
516
+ msgid "Apply the same gross price regardless of the tax rate."
517
+ msgstr "Verwende den Bruttopreis unabhängig vom Steuersatz."
518
+
519
+ #: one-stop-shop-woocommerce/src/Settings.php:71
520
+ msgctxt "oss"
521
+ msgid ""
522
+ "This option will make sure that your customers pay the same price no matter "
523
+ "the tax rate (based on the country chosen) to be applied."
524
+ msgstr ""
525
+ "Diese Option bewirkt, dass Kunden, unabhängig vom Land und damit vom "
526
+ "Steuersatz den selben Bruttopreis bezahlen."
527
+
528
+ #: one-stop-shop-woocommerce/src/Settings.php:92
529
  msgctxt "oss"
530
  msgid "Are you sure? Please backup your tax rates before proceeding."
531
  msgstr "Bist du sicher? Bitte erstelle vorab ein Backup deiner Steuersätze."
532
 
533
+ #: one-stop-shop-woocommerce/src/Settings.php:92
534
  msgctxt "oss"
535
  msgid "End OSS participation"
536
  msgstr "OSS Teilnahme beenden"
537
 
538
+ #: one-stop-shop-woocommerce/src/Settings.php:92
539
  msgctxt "oss"
540
  msgid "Start OSS participation"
541
  msgstr "OSS Teilnahme starten"
542
 
543
+ #: one-stop-shop-woocommerce/src/Settings.php:93
544
  msgctxt "oss"
545
  msgid "learn more"
546
  msgstr "Mehr erfahren"
547
 
548
+ #: one-stop-shop-woocommerce/src/Settings.php:95
549
  msgctxt "oss"
550
  msgid ""
551
  "Use this option to automatically adjust tax-related options in WooCommerce. "
556
  "anpassen zu lassen. Achtung: Diese Option löscht deine aktuellen Steuersätze "
557
  "und fügt neue Steuersätze basierend auf deinem OSS Status hinzu."
558
 
559
+ #: one-stop-shop-woocommerce/src/Settings.php:127
560
  msgctxt "oss"
561
  msgid "See status"
562
  msgstr "Status ansehen"
563
 
564
+ #: one-stop-shop-woocommerce/src/Settings.php:127
565
  msgctxt "oss"
566
  msgid "Start initial report"
567
  msgstr "Initialen Bericht erstellen"
568
 
569
+ #: one-stop-shop-woocommerce/src/Settings.php:128
570
  #, php-format
571
  msgctxt "oss"
572
  msgid "Report not yet completed. %s"
573
  msgstr "Bericht noch nicht abgeschlossen. %s"
574
 
575
+ #: one-stop-shop-woocommerce/src/Settings.php:128
576
  #, php-format
577
  msgctxt "oss"
578
  msgid "Report not yet started. %s"
579
  msgstr "Bericht noch nicht gestartet. %s"
580
 
581
+ #: one-stop-shop-woocommerce/src/Settings.php:146
582
  msgctxt "oss-amounts"
583
  msgid "of"
584
  msgstr "von"
585
 
586
+ #: one-stop-shop-woocommerce/src/Settings.php:146
587
+ #, php-format
588
+ msgctxt "oss"
589
+ msgid "As of: %s"
590
+ msgstr "Stand: %s"
591
+
592
+ #: one-stop-shop-woocommerce/src/Settings.php:146
593
  msgctxt "oss"
594
  msgid "see details"
595
  msgstr "Details ansehen"
596
 
597
+ #: one-stop-shop-woocommerce/src/Settings.php:147
598
  #, php-format
599
  msgctxt "oss"
600
  msgid ""
614
  msgid "Learn More"
615
  msgstr "Mehr erfahren"
616
 
617
+ #: one-stop-shop-woocommerce/src/Tax.php:278
618
+ #: one-stop-shop-woocommerce/src/Tax.php:336
619
  #, php-format
620
  msgctxt "oss"
621
  msgid "Tax class (%s)"
622
  msgstr "Steuerklasse (%s)"
623
 
624
+ #: one-stop-shop-woocommerce/src/Tax.php:279
625
  msgctxt "oss"
626
  msgid "Same as parent"
627
  msgstr "Gleiche wie übergeordnet"
628
 
629
+ #: one-stop-shop-woocommerce/src/Tax.php:281
630
+ #: one-stop-shop-woocommerce/src/Tax.php:314
631
+ #: one-stop-shop-woocommerce/src/Tax.php:338
632
+ #: one-stop-shop-woocommerce/src/Tax.php:372
633
  msgctxt "oss"
634
  msgid "remove"
635
  msgstr "Löschen"
636
 
637
+ #: one-stop-shop-woocommerce/src/Tax.php:291
638
+ #: one-stop-shop-woocommerce/src/Tax.php:349
639
  msgctxt "oss"
640
  msgid "Add country specific tax class (OSS)"
641
  msgstr "Länderspezifische Steuerklasse hinzufügen (OSS)"
642
 
643
+ #: one-stop-shop-woocommerce/src/Tax.php:298
644
+ #: one-stop-shop-woocommerce/src/Tax.php:356
645
  msgctxt "oss"
646
  msgid "Select country"
647
  msgstr "Land auswählen"
648
 
649
+ #: one-stop-shop-woocommerce/src/Tax.php:452
650
+ #: one-stop-shop-woocommerce/src/Tax.php:579
651
  msgid "Reduced rate"
652
  msgstr ""
653
 
654
+ #: one-stop-shop-woocommerce/src/Tax.php:455
655
+ #: one-stop-shop-woocommerce/src/Tax.php:571
656
  msgctxt "oss"
657
  msgid "Greater reduced rate"
658
  msgstr "Zusätzlicher reduzierter Preis"
659
 
660
+ #: one-stop-shop-woocommerce/src/Tax.php:458
661
+ #: one-stop-shop-woocommerce/src/Tax.php:575
662
  msgctxt "oss"
663
  msgid "Super reduced rate"
664
  msgstr "Stark reduzierter Preis"
665
 
666
+ #: one-stop-shop-woocommerce/src/Tax.php:751
667
+ msgctxt "oss"
668
+ msgid "Madeira"
669
+ msgstr "Madeira"
670
+
671
+ #: one-stop-shop-woocommerce/src/Tax.php:758
672
+ msgctxt "oss"
673
+ msgid "Acores"
674
+ msgstr "Azoren"
675
+
676
+ #: one-stop-shop-woocommerce/src/Tax.php:794
677
+ msgctxt "oss"
678
+ msgid "Northern Ireland"
679
+ msgstr "Nordirland"
680
+
681
+ #: one-stop-shop-woocommerce/src/Tax.php:807
682
+ msgctxt "oss-tax-rate-import"
683
+ msgid "Exempt"
684
+ msgstr "Ausnahme"
685
+
686
+ #: one-stop-shop-woocommerce/src/Tax.php:873
687
  #, php-format
688
  msgctxt "oss-tax-rate-import"
689
+ msgid "VAT %1$s %% %2$s"
690
+ msgstr "MwSt. %1$s %% %2$s"
691
 
692
  #: one-stop-shop-woocommerce/templates/emails/admin-delivery-threshold.php:19
693
  #, php-format
770
  msgid "Minimum age of 18"
771
  msgstr "Mindestens 18 Jahre"
772
 
773
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:303
774
  msgctxt "dhl"
775
  msgid "Shipment #{shipment_id} to order {order_id}"
776
  msgstr "Sendung #{shipment_id} zur Bestellung {order_id}"
777
 
778
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:339
779
  msgctxt "dhl"
780
  msgid "Return #{shipment_id} to order {order_id}"
781
  msgstr "Retoure #{shipment_id} zur Bestellung {order_id}"
782
 
783
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:355
784
  msgctxt "dhl"
785
  msgid "Return shipment #{shipment_id} to order #{order_id}"
786
  msgstr "Retourensendung #{shipment_id} zur Bestellung #{order_id}"
787
 
788
  # @ woocommerce-germanized
789
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:428
790
  #: woocommerce-germanized-dhl/src/ParcelLocator.php:890
791
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1055
792
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1717
796
  msgstr "Packstation"
797
 
798
  # @ woocommerce-germanized
799
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:429
800
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:430
801
  msgctxt "dhl"
802
  msgid "Postfiliale"
803
  msgstr "Postfiliale"
804
 
805
  # @ woocommerce-germanized
806
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:836
807
  msgctxt "dhl"
808
  msgid "DHL Retoure International A"
809
  msgstr "DHL Retoure International A"
810
 
811
  # @ woocommerce-germanized
812
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:837
813
  msgctxt "dhl"
814
  msgid "DHL Retoure International B"
815
  msgstr "DHL Retoure International B"
816
 
817
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:846
818
  msgctxt "dhl"
819
  msgid "DHL Retoure Online"
820
  msgstr "DHL Retoure Online"
821
 
822
  # @ woocommerce-germanized
823
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:862
824
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:882
825
  msgctxt "dhl"
826
  msgid "DHL Paket International"
827
  msgstr "DHL Paket International"
828
 
829
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:883
830
  msgctxt "dhl"
831
  msgid "DHL Paket Connect"
832
  msgstr "DHL Paket Connect"
833
 
834
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:884
835
  msgctxt "dhl"
836
  msgid "DHL Europaket (B2B)"
837
  msgstr "DHL Europaket (B2B)"
838
 
839
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:953
840
  msgctxt "dhl"
841
  msgid "DHL Paket"
842
  msgstr "DHL Paket"
843
 
844
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:954
845
  msgctxt "dhl"
846
  msgid "DHL Paket PRIO"
847
  msgstr "DHL Paket PRIO"
848
 
849
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:955
850
  msgctxt "dhl"
851
  msgid "DHL Paket Taggleich"
852
  msgstr "DHL Paket Taggleich"
853
 
854
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:956
855
  msgctxt "dhl"
856
  msgid "DHL Warenpost"
857
  msgstr "DHL Warenpost"
858
 
859
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:44
860
  msgctxt "dhl"
861
  msgid "Refreshed data successfully."
862
  msgstr "Daten erfolgreich aktualisiert."
863
 
864
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:44
865
  #, php-format
866
  msgctxt "dhl"
867
  msgid ""
872
  "\">erreichbar</a> ist."
873
 
874
  # @ woocommerce-germanized
875
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:117
876
  msgctxt "dhl"
877
  msgid "Receiver Ids"
878
  msgstr "Empfänger IDs"
879
 
880
  # @ woocommerce-germanized
881
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:124
882
  msgctxt "dhl"
883
  msgid "Receiver Id"
884
  msgstr "Empfänger ID"
885
 
886
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:124
887
  msgctxt "dhl"
888
  msgid "Find your Receiver Ids within your DHL contract data."
889
  msgstr "Die Empfänger IDs findest du im DHL Geschäftskundenportal."
890
 
891
  # @ woocommerce-germanized
892
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:125
893
  msgctxt "dhl"
894
  msgid "Country Code"
895
  msgstr "Ländercode"
896
 
897
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:125
898
  msgctxt "dhl"
899
  msgid "Leave empty to use the Receiver Id as fallback."
900
  msgstr "Leer lassen, um diese Empfänger ID als Fallback zu verwenden."
901
 
902
  # @ woocommerce-germanized
903
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:143
904
  msgctxt "dhl"
905
  msgid "+ Add receiver"
906
  msgstr "+ Empfänger hinzufügen"
907
 
908
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:143
909
  msgctxt "dhl"
910
  msgid "Remove selected receiver(s)"
911
  msgstr "Ausgewählte Empfänger löschen"
912
 
913
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:173
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
914
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:23
915
  msgctxt "dhl"
916
  msgid "DHL"
917
  msgstr "DHL"
918
 
919
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:188
920
  msgctxt "dhl"
921
  msgid "DHL Label"
922
  msgstr "DHL Label"
923
 
924
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:200
925
  msgctxt "dhl"
926
  msgid ""
927
  "This label has been generated by the DHL for WooCommerce Plugin and is shown "
931
  "Kompatibilitäts-Gründen angezeigt."
932
 
933
  # @ woocommerce-germanized
934
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:201
935
  msgctxt "dhl"
936
  msgid "Download label"
937
  msgstr "Label downloaden"
1092
 
1093
  #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:65
1094
  #: woocommerce-germanized-dhl/src/Api/Soap.php:54
1095
+ #: woocommerce-germanized-dhl/src/Package.php:105
1096
  #, php-format
1097
  msgctxt "dhl"
1098
  msgid ""
1417
  msgstr "Ungültiges Label."
1418
 
1419
  # @ woocommerce-germanized
1420
+ #: woocommerce-germanized-dhl/src/Package.php:1004
1421
  msgctxt "dhl"
1422
  msgid "Germany"
1423
  msgstr "Deutschland"
2843
  msgstr "Der Minimalbetrag beträgt %s"
2844
 
2845
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:374
2846
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:575
2847
  #, php-format
2848
  msgctxt "dhl"
2849
  msgid ""
2861
  msgid "Page Format"
2862
  msgstr "Seitenformat"
2863
 
2864
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:553
2865
  msgctxt "dhl"
2866
  msgid "The services chosen are not available for the current product."
2867
  msgstr "Die ausgewählten Services sind für dieses Produkt nicht verfügbar."
2868
 
2869
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:602
2870
  #, php-format
2871
  msgctxt "dhl"
2872
  msgid "Deutsche Post product is missing for %s."
3130
 
3131
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:189
3132
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:45
3133
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:224
3134
  msgctxt "shipments"
3135
  msgid "Item"
3136
  msgstr "Position"
3137
 
3138
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:190
3139
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:46
3140
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:229
3141
  #: woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:55
3142
  #: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:37
3143
  #: woocommerce-germanized-shipments/templates/shipment/shipment-details.php:59
3217
 
3218
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-list.php:22
3219
  #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:84
3220
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:211
3221
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:616
3222
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:737
3223
  #: woocommerce-germanized-shipments/src/Admin/Settings.php:75
3224
  #: woocommerce-germanized-shipments/src/Admin/Settings.php:172
3225
  #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:267
3250
  # @ woocommerce-germanized
3251
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:19
3252
  #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:77
3253
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:546
3254
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:615
3255
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:703
3256
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:770
3257
  #: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:20
3258
  msgctxt "shipments"
3259
  msgid "Shipments"
3284
  #: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:11
3285
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:22
3286
  #: woocommerce-germanized-shipments/src/Admin/Table.php:687
3287
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:773
3288
  msgctxt "shipments"
3289
  msgid "Title"
3290
  msgstr "Titel"
3291
 
3292
  # @ woocommerce-germanized
3293
  #: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:12
3294
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:452
3295
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:782
3296
  msgctxt "shipments"
3297
  msgid "Description"
3298
  msgstr "Beschreibung"
3355
  msgstr "Download"
3356
 
3357
  #: woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:41
3358
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:834
3359
  msgctxt "shipments"
3360
  msgid "Create new label"
3361
  msgstr "Neues Label erstellen"
3726
 
3727
  # @ woocommerce-germanized
3728
  #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1076
3729
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:234
3730
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:30
3731
  #: woocommerce-germanized-shipments/src/Admin/Table.php:696
3732
  msgctxt "shipments"
3778
  msgid "View order"
3779
  msgstr "Bestellung ansehen"
3780
 
3781
+ # @ woocommerce-germanized
3782
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:73
3783
+ msgctxt "shipments"
3784
+ msgid "Select a country"
3785
+ msgstr "Land auswählen"
3786
+
3787
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:77
3788
+ msgctxt "shipments"
3789
+ msgid "HS-Code (Customs)"
3790
+ msgstr "Zolltarifnummer (HS-Code, Zoll)"
3791
+
3792
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:79
3793
+ msgctxt "shipments"
3794
+ msgid ""
3795
+ "The HS Code is a number assigned to every possible commodity that can be "
3796
+ "imported or exported from any country."
3797
+ msgstr ""
3798
+ "Das Harmonisierte System (HS) der Zollnomenklatur ist ein international "
3799
+ "standardisiertes System von Namen und Nummern zur Klassifizierung "
3800
+ "gehandelter Produkte."
3801
+
3802
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:86
3803
+ msgctxt "shipments"
3804
+ msgid "Country of manufacture (Customs)"
3805
+ msgstr "Herstellungsland (Zoll)"
3806
+
3807
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:88
3808
+ msgctxt "shipments"
3809
+ msgid ""
3810
+ "The country of manufacture is needed for customs of international shipping."
3811
+ msgstr ""
3812
+ "Das Herstellungsland wird für die Zollabwicklung bei internationalen "
3813
+ "Sendungen benötigt."
3814
+
3815
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:125
3816
  #, php-format
3817
  msgctxt "shipments"
3818
  msgid ""
3824
  "beschreibbar ist."
3825
 
3826
  # @ woocommerce-germanized
3827
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:162
3828
  msgctxt "shipments"
3829
  msgid "View Shipments"
3830
  msgstr "Sendung anzeigen"
3831
 
3832
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:163
3833
  msgctxt "shipments"
3834
  msgid "Endpoint for the \"My account &rarr; View shipments\" page."
3835
  msgstr "Endpunkt für die „Mein Konto &rarr; Sendungen“ Seite."
3836
 
3837
  # @ woocommerce-germanized
3838
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:170
3839
  msgctxt "shipments"
3840
  msgid "View shipment"
3841
  msgstr "Sendung anzeigen"
3842
 
3843
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:171
3844
  msgctxt "shipments"
3845
  msgid "Endpoint for the \"My account &rarr; View shipment\" page."
3846
  msgstr "Endpunkt für die „Mein Konto &rarr; Sendung“ Seite."
3847
 
3848
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:178
3849
  msgctxt "shipments"
3850
  msgid "Add Return Shipment"
3851
  msgstr "Rücksendung"
3852
 
3853
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:179
3854
  msgctxt "shipments"
3855
  msgid "Endpoint for the \"My account &rarr; Add return shipment\" page."
3856
  msgstr "Endpunkt für die „Mein Konto &rarr; Rücksendung“ Seite."
3857
 
3858
  # @ woocommerce-germanized
3859
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:242
3860
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:377
3861
  #: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:36
3862
  msgctxt "shipments"
3863
  msgid "Reason"
3864
  msgstr "Rücksendegrund"
3865
 
3866
  # @ woocommerce-germanized
3867
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:369
3868
  msgctxt "shipments"
3869
  msgid "Return reasons"
3870
  msgstr "Rücksendegründe"
3871
 
3872
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:376
3873
  msgctxt "shipments"
3874
  msgid "Reason code"
3875
  msgstr "Rücksendegrund (Code)"
3876
 
3877
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:376
3878
  msgctxt "shipments"
3879
  msgid "The reason code is used to identify the reason."
3880
  msgstr ""
3882
  "identifizieren zu können."
3883
 
3884
  # @ woocommerce-germanized
3885
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:377
3886
  msgctxt "shipments"
3887
  msgid "Choose a reason text."
3888
  msgstr "Beschreibung für den Grund."
3889
 
3890
  # @ woocommerce-germanized
3891
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:396
3892
  msgctxt "shipments"
3893
  msgid "+ Add reason"
3894
  msgstr "+ Grund hinzufügen"
3895
 
3896
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:396
3897
  msgctxt "shipments"
3898
  msgid "Remove selected reason(s)"
3899
  msgstr "Ausgewählte Gründe löschen"
3900
 
3901
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:429
3902
  msgctxt "shipments"
3903
  msgid "Available Packaging"
3904
  msgstr "Verfügbare Verpackungen"
3905
 
3906
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:452
3907
  msgctxt "shipments"
3908
  msgid "A description to help you identify the packaging."
3909
  msgstr "Eine Beschreibung die dir dabei hilft Verpackungen zu identifizieren."
3910
 
3911
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:453
3912
  msgctxt "shipments"
3913
  msgid "Type"
3914
  msgstr "Typ"
3915
 
3916
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:454
3917
  #, php-format
3918
  msgctxt "shipments"
3919
  msgid "Weight (%s)"
3920
  msgstr "Gewicht (%s)"
3921
 
3922
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:454
3923
  msgctxt "shipments"
3924
  msgid "The weight of the packaging."
3925
  msgstr "Das Gewicht der Verpackung."
3926
 
3927
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:455
3928
  #, php-format
3929
  msgctxt "shipments"
3930
  msgid "Dimensions (LxWxH, %s)"
3931
  msgstr "Abmessungen (LxBxH, %s)"
3932
 
3933
  # @ woocommerce-germanized
3934
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:456
3935
  msgctxt "shipments"
3936
  msgid "Max weight (kg)"
3937
  msgstr "Max. Gewicht (kg)"
3938
 
3939
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:456
3940
  msgctxt "shipments"
3941
  msgid ""
3942
  "The maximum weight this packaging can hold. Leave empty to not restrict "
3945
  "Das maximale Gewicht, das diese Verpackung tragen kann. Leer lassen um das "
3946
  "Gewicht nicht zu begrenzen."
3947
 
3948
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:481
3949
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:522
3950
  msgctxt "shipments"
3951
  msgid "Length"
3952
  msgstr "Länge"
3953
 
3954
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:482
3955
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:523
3956
  msgctxt "shipments"
3957
  msgid "Width"
3958
  msgstr "Breite"
3959
 
3960
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:483
3961
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:524
3962
  msgctxt "shipments"
3963
  msgid "Height"
3964
  msgstr "Höhe"
3965
 
3966
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:496
3967
  msgctxt "shipments"
3968
  msgid "+ Add packaging"
3969
  msgstr "+ Verpackung hinzufügen"
3970
 
3971
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:496
3972
  msgctxt "shipments"
3973
  msgid "Remove selected packaging"
3974
  msgstr "Ausgewählte Verpackung löschen"
3975
 
3976
  # @ woocommerce-germanized
3977
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:600
3978
  msgctxt "shipments"
3979
  msgid "Create shipments"
3980
  msgstr "Sendungen erstellen"
3981
 
3982
  # @ woocommerce-germanized
3983
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:715
3984
  msgctxt "shipments"
3985
  msgid "Search shipments"
3986
  msgstr "Sendungen suchen"
3987
 
3988
  # @ woocommerce-germanized
3989
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:749
3990
  msgctxt "shipments"
3991
  msgid "Search returns"
3992
  msgstr "Retouren suchen"
3993
 
3994
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:827
3995
  msgctxt "shipments"
3996
  msgid "Do you really want to delete the shipment?"
3997
  msgstr "Möchtest du die Sendung wirklich löschen?"
3998
 
3999
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:833
4000
  msgctxt "shipments"
4001
  msgid "Do you really want to delete the label?"
4002
  msgstr "Möchtest du das Label wirklich löschen?"
4003
 
4004
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:835
4005
  msgctxt "shipments"
4006
  msgid "Please save the shipment before creating a new label"
4007
  msgstr "Bitte speichere die Sendung bevor du ein neues Label erzeugst"
4008
 
4009
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:885
4010
  msgctxt "shipments"
4011
  msgid ""
4012
  "Do you really want to delete the shipping provider? Some of your existing "
4522
  # @ woocommerce-germanized
4523
  #: woocommerce-germanized-shipments/src/Admin/Settings.php:415
4524
  #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:344
4525
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:1094
4526
  msgctxt "shipments"
4527
  msgid "General"
4528
  msgstr "Allgemein"
4989
  msgid "Invalid packaging."
4990
  msgstr "Verpackung nicht verfügbar."
4991
 
4992
+ #: woocommerce-germanized-shipments/src/DataStores/ShipmentItem.php:200
4993
  msgctxt "shipments"
4994
  msgid "Invalid shipment item."
4995
  msgstr "Ungültige Sendungsposition."
5168
  msgstr "%1$s (%2$s, %3$s)"
5169
 
5170
  #: woocommerce-germanized-shipments/src/ReturnShipment.php:362
5171
+ #: woocommerce-germanized-shipments/src/Shipment.php:1047
5172
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:361
5173
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:425
5174
  #, php-format
5175
  msgctxt "full name"
5176
  msgid "%1$s %2$s"
5300
  "die Paketverfolgungsdaten zum Zeitpunkt des Erhalts dieser E-Mail noch nicht "
5301
  "den neuesten Stand wiedergeben."
5302
 
5303
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:774
5304
  msgctxt "shipments"
5305
  msgid "Choose a title for the shipping provider."
5306
  msgstr "Wähle einen Titel für den Versanddienstleister."
5307
 
5308
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:783
5309
  msgctxt "shipments"
5310
  msgid "Choose a description for the shipping provider."
5311
  msgstr "Wähle eine Beschreibung für den Versanddienstleister."
5312
 
5313
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:795
5314
  msgctxt "shipments"
5315
  msgid "Tracking URL"
5316
  msgstr "Sendungsverfolgung URL"
5317
 
5318
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:796
5319
  #, php-format
5320
  msgctxt "shipments"
5321
  msgid ""
5329
  "einzufügen: %s"
5330
 
5331
  # @ woocommerce-germanized
5332
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:806
5333
  msgctxt "shipments"
5334
  msgid "Tracking description"
5335
  msgstr "Sendungsverfolgung Hinweis"
5336
 
5337
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:807
5338
  #, php-format
5339
  msgctxt "shipments"
5340
  msgid ""
5349
  "einzufügen: %s"
5350
 
5351
  # @ woocommerce-germanized
5352
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:951
5353
  msgctxt "shipments"
5354
  msgid "Customer returns"
5355
  msgstr "Rücksendungen"
5356
 
5357
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:952
5358
  msgctxt "shipments"
5359
  msgid "Allow customers to submit return requests to shipments."
5360
  msgstr "Erlaube Kunden eine Rücksendung zu einer Sendung zu beantragen."
5361
 
5362
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:952
5363
  #, php-format
5364
  msgctxt "shipments"
5365
  msgid ""
5373
  "Gästen zu erfahren, lese bitte die %s."
5374
 
5375
  # @ woocommerce-germanized
5376
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:952
5377
  msgctxt "shipments"
5378
  msgid "Return Dashboard"
5379
  msgstr "Retouren-Dashboard"
5380
 
5381
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:952
5382
  msgctxt "shipments"
5383
  msgid "docs"
5384
  msgstr "Dokumentation"
5385
 
5386
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:961
5387
  msgctxt "shipments"
5388
  msgid "Guest returns"
5389
  msgstr "Retouren für Gäste"
5390
 
5391
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:962
5392
  msgctxt "shipments"
5393
  msgid "Allow guests to submit return requests to shipments."
5394
  msgstr "Erlaube Gästen Rücksendeanträge zu Bestellungen zu beantragen."
5395
 
5396
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:962
5397
  #, php-format
5398
  msgctxt "shipments"
5399
  msgid ""
5407
  "Rücksende-Formular für Gäste auf deiner Seite zu platzieren."
5408
 
5409
  # @ woocommerce-germanized
5410
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:973
5411
  msgctxt "shipments"
5412
  msgid "Manual confirmation"
5413
  msgstr "Manuelle Bestätigung"
5414
 
5415
  # @ woocommerce-germanized
5416
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:974
5417
  msgctxt "shipments"
5418
  msgid "Return requests need manual confirmation."
5419
  msgstr "Rücksendeanträge benötigen eine manuelle Bestätigung."
5420
 
5421
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:974
5422
  msgctxt "shipments"
5423
  msgid ""
5424
  "By default return request need manual confirmation e.g. a shop manager needs "
5435
  "Mail-Bestätigung samt Retouren-Label."
5436
 
5437
  # @ woocommerce-germanized
5438
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:986
5439
  msgctxt "shipments"
5440
  msgid "Return instructions"
5441
  msgstr "Rücksende-Anweisungen"
5442
 
5443
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:987
5444
  msgctxt "shipments"
5445
  msgid ""
5446
  "Provide your customer with instructions on how to return the shipment after "
5453
  "kann, solltest du deine Kunden darüber informieren, woher ein Label für die "
5454
  "Rücksendung bezogen werden kann."
5455
 
5456
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:1073
5457
  #, php-format
5458
  msgctxt "shipments"
5459
  msgid ""
5465
  "Einstellungen</a>. Passe diese Einstellungen nur dann an, wenn du explizit "
5466
  "Abweichungen speziell für diese Versandmethode konfigurieren willst."
5467
 
5468
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:1098
5469
  msgctxt "shipments"
5470
  msgid "Return Requests"
5471
  msgstr "Rücksendeanträge"
5472
 
5473
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:1129
5474
  msgctxt "shipments"
5475
  msgid "This shipping provider does not support creating labels."
5476
  msgstr "Dieser Versanddienstleister unterstützt keine Label-Erzeugung."
5842
  msgstr "l"
5843
 
5844
  # @ woocommerce-germanized
5845
+ #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:566
5846
+ #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:576
5847
  #: woocommerce-germanized/includes/wc-gzd-core-functions.php:453
5848
  #: woocommerce-germanized/includes/wc-gzd-template-functions.php:597
5849
  #: woocommerce-germanized/includes/wc-gzd-template-functions.php:605
5851
  msgstr "inkl. MwSt."
5852
 
5853
  # @ woocommerce-germanized
5854
+ #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:566
5855
  msgid "excl. VAT"
5856
  msgstr "exkl. MwSt."
5857
 
5858
  # @ woocommerce-germanized
5859
+ #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:568
5860
  #: woocommerce-germanized/includes/wc-gzd-core-functions.php:453
5861
  #, php-format
5862
  msgid "incl. %s%% VAT"
5863
  msgstr "inkl. %s %% MwSt."
5864
 
5865
  # @ woocommerce-germanized
5866
+ #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:568
5867
  #, php-format
5868
  msgid "excl. %s%% VAT"
5869
  msgstr "exkl. %s %% MwSt."
10951
  "%s ein."
10952
 
10953
  # @ woocommerce-germanized
10954
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:798
10955
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:844
10956
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:877
10957
  msgid "a single payment"
11231
  msgstr "ist ungültig"
11232
 
11233
  # @ woocommerce-germanized
11234
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1311
11235
  msgid "Awaiting Direct Debit Payment"
11236
  msgstr "Zahlung per Lastschrift ausstehend"
11237
 
11466
  msgstr "Jetzt kaufen"
11467
 
11468
  #: woocommerce-germanized/src/Autoloader.php:50
11469
+ #: woocommerce-germanized/src/Packages.php:101
11470
  msgid ""
11471
  "Your installation of Germanized is incomplete. If you installed Germanized "
11472
  "from GitHub, please refer to this document to set up your development "
11479
  "germanized/wiki/How-to-set-up-a-Germanized-development-environment"
11480
 
11481
  #: woocommerce-germanized/src/Autoloader.php:62
11482
+ #: woocommerce-germanized/src/Packages.php:123
11483
  #, php-format
11484
  msgid ""
11485
  "Your installation of Germanized is incomplete. If you installed Germanized "
11490
  "GitHub installiert hast, %1$sschaue dir bitte dieses Dokument an%2$s um eine "
11491
  "Entwicklungsumgebung aufzusetzen."
11492
 
11493
+ #: woocommerce-germanized/src/Packages.php:99
11494
+ #: woocommerce-germanized/src/Packages.php:114
11495
  #, php-format
11496
  msgid "Missing the Germanized %s package"
11497
  msgstr "Das Germanized %s Paket fehlt"
13043
  "Deine Installation des Germanized Trusted Shops Plugins ist unvollständig. "
13044
  "Bitte führe %1$s im %2$s Verzeichnis aus."
13045
 
 
13046
  #. Plugin URI of the plugin/theme
13047
  msgid "https://www.vendidero.de/woocommerce-germanized"
13048
  msgstr "https://www.vendidero.de/woocommerce-germanized"
13090
  #~ msgid "Data Security"
13091
  #~ msgstr "Datenschutzerklärung"
13092
 
 
 
 
 
 
 
 
 
 
 
13093
  #, php-format
13094
  #~ msgid "Shipment %d of %d"
13095
  #~ msgstr "Sendung %d von %d"
i18n/languages/woocommerce-germanized-de_DE_formal.mo CHANGED
Binary file
i18n/languages/woocommerce-germanized-de_DE_formal.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce Germanized\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2021-06-28 16:24+0200\n"
6
- "PO-Revision-Date: 2021-06-28 16:35+0200\n"
7
  "Last-Translator: holzhannes <holzhannes@posteo.de>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE@formal\n"
@@ -107,14 +107,14 @@ msgid "One Stop Shop"
107
  msgstr "One Stop Shop"
108
 
109
  #: one-stop-shop-woocommerce/src/Admin.php:453
110
- #: one-stop-shop-woocommerce/src/Package.php:269
111
  #, php-format
112
  msgctxt "oss"
113
  msgid "Q%1$s/%2$s"
114
  msgstr "Q%1$s/%2$s"
115
 
116
  #: one-stop-shop-woocommerce/src/Admin.php:462
117
- #: one-stop-shop-woocommerce/src/Package.php:274
118
  #, php-format
119
  msgctxt "oss"
120
  msgid "%1$s/%2$s"
@@ -131,22 +131,22 @@ msgid "Type"
131
  msgstr "Typ"
132
 
133
  #: one-stop-shop-woocommerce/src/Admin.php:489
134
- msgctxt "storeabill-core"
135
  msgid "Year"
136
  msgstr "Jahr"
137
 
138
  #: one-stop-shop-woocommerce/src/Admin.php:501
139
- msgctxt "storeabill-core"
140
  msgid "Quarter"
141
  msgstr "Quartal"
142
 
143
  #: one-stop-shop-woocommerce/src/Admin.php:513
144
- msgctxt "storeabill-core"
145
  msgid "Month"
146
  msgstr "Monat"
147
 
148
  #: one-stop-shop-woocommerce/src/Admin.php:525
149
- msgctxt "storeabill-core"
150
  msgid "Date range"
151
  msgstr "Zeitraum"
152
 
@@ -238,7 +238,7 @@ msgctxt "oss"
238
  msgid "Dismiss"
239
  msgstr "Ausblenden"
240
 
241
- #: one-stop-shop-woocommerce/src/AsyncReportGenerator.php:195
242
  msgctxt "oss"
243
  msgid "No orders found."
244
  msgstr "Keine Bestellungen gefunden."
@@ -292,7 +292,7 @@ msgctxt "oss"
292
  msgid "See details"
293
  msgstr "Details ansehen"
294
 
295
- #: one-stop-shop-woocommerce/src/Package.php:85
296
  msgctxt "oss"
297
  msgid ""
298
  "To use the OSS for WooCommerce plugin please make sure that WooCommerce is "
@@ -301,66 +301,66 @@ msgstr ""
301
  "Um das OSS für WooCommerce Plugin nutzen zu können muss WooCommerce "
302
  "installiert und aktiviert sein."
303
 
304
- #: one-stop-shop-woocommerce/src/Package.php:254
305
  #: one-stop-shop-woocommerce/src/ReportTable.php:40
306
  msgctxt "oss"
307
  msgid "Report"
308
  msgstr "Bericht"
309
 
310
- #: one-stop-shop-woocommerce/src/Package.php:278
311
  #, php-format
312
  msgctxt "oss"
313
  msgid "%1$s"
314
  msgstr "%1$s"
315
 
316
- #: one-stop-shop-woocommerce/src/Package.php:283
317
  #, php-format
318
  msgctxt "oss"
319
  msgid "%1$s - %2$s"
320
  msgstr "%1$s - %2$s"
321
 
322
- #: one-stop-shop-woocommerce/src/Package.php:288
323
  #, php-format
324
  msgctxt "oss"
325
  msgid "Observer %1$s"
326
  msgstr "Beobachter %1$s"
327
 
328
- #: one-stop-shop-woocommerce/src/Package.php:465
329
  msgctxt "oss"
330
  msgid "Quarterly"
331
  msgstr "Quartalsweise"
332
 
333
- #: one-stop-shop-woocommerce/src/Package.php:466
334
  msgctxt "oss"
335
  msgid "Yearly"
336
  msgstr "Jährlich"
337
 
338
- #: one-stop-shop-woocommerce/src/Package.php:467
339
  msgctxt "oss"
340
  msgid "Monthly"
341
  msgstr "Monatlich"
342
 
343
- #: one-stop-shop-woocommerce/src/Package.php:468
344
  msgctxt "oss"
345
  msgid "Custom"
346
  msgstr "Individuell"
347
 
348
- #: one-stop-shop-woocommerce/src/Package.php:472
349
  msgctxt "oss"
350
  msgid "Observer"
351
  msgstr "Beobachter"
352
 
353
- #: one-stop-shop-woocommerce/src/Package.php:486
354
  msgctxt "oss"
355
  msgid "Pending"
356
  msgstr "In Bearbeitung"
357
 
358
- #: one-stop-shop-woocommerce/src/Package.php:487
359
  msgctxt "oss"
360
  msgid "Completed"
361
  msgstr "Fertiggestellt"
362
 
363
- #: one-stop-shop-woocommerce/src/Package.php:488
364
  msgctxt "oss"
365
  msgid "Failed"
366
  msgstr "Fehlgeschlagen"
@@ -506,28 +506,47 @@ msgctxt "oss"
506
  msgid "Participation"
507
  msgstr "Teilnahme"
508
 
509
- #: one-stop-shop-woocommerce/src/Settings.php:80
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
510
  msgctxt "oss"
511
  msgid "Are you sure? Please backup your tax rates before proceeding."
512
  msgstr ""
513
  "Sind Sie sicher? Bitte erstellen Sie vorab ein Backup Ihrer Steuersätze."
514
 
515
- #: one-stop-shop-woocommerce/src/Settings.php:80
516
  msgctxt "oss"
517
  msgid "End OSS participation"
518
  msgstr "OSS Teilnahme beenden"
519
 
520
- #: one-stop-shop-woocommerce/src/Settings.php:80
521
  msgctxt "oss"
522
  msgid "Start OSS participation"
523
  msgstr "OSS Teilnahme starten"
524
 
525
- #: one-stop-shop-woocommerce/src/Settings.php:81
526
  msgctxt "oss"
527
  msgid "learn more"
528
  msgstr "Mehr erfahren"
529
 
530
- #: one-stop-shop-woocommerce/src/Settings.php:83
531
  msgctxt "oss"
532
  msgid ""
533
  "Use this option to automatically adjust tax-related options in WooCommerce. "
@@ -538,39 +557,45 @@ msgstr ""
538
  "automatisch anpassen zu lassen. Achtung: Diese Option löscht Ihre aktuellen "
539
  "Steuersätze und fügt neue Steuersätze basierend auf Ihrem OSS Status hinzu."
540
 
541
- #: one-stop-shop-woocommerce/src/Settings.php:115
542
  msgctxt "oss"
543
  msgid "See status"
544
  msgstr "Status ansehen"
545
 
546
- #: one-stop-shop-woocommerce/src/Settings.php:115
547
  msgctxt "oss"
548
  msgid "Start initial report"
549
  msgstr "Initialen Bericht erstellen"
550
 
551
- #: one-stop-shop-woocommerce/src/Settings.php:116
552
  #, php-format
553
  msgctxt "oss"
554
  msgid "Report not yet completed. %s"
555
  msgstr "Bericht noch nicht abgeschlossen. %s"
556
 
557
- #: one-stop-shop-woocommerce/src/Settings.php:116
558
  #, php-format
559
  msgctxt "oss"
560
  msgid "Report not yet started. %s"
561
  msgstr "Bericht noch nicht gestartet. %s"
562
 
563
- #: one-stop-shop-woocommerce/src/Settings.php:134
564
  msgctxt "oss-amounts"
565
  msgid "of"
566
  msgstr "von"
567
 
568
- #: one-stop-shop-woocommerce/src/Settings.php:134
 
 
 
 
 
 
569
  msgctxt "oss"
570
  msgid "see details"
571
  msgstr "Details ansehen"
572
 
573
- #: one-stop-shop-woocommerce/src/Settings.php:135
574
  #, php-format
575
  msgctxt "oss"
576
  msgid ""
@@ -590,60 +615,80 @@ msgctxt "oss"
590
  msgid "Learn More"
591
  msgstr "Mehr erfahren"
592
 
593
- #: one-stop-shop-woocommerce/src/Tax.php:212
594
- #: one-stop-shop-woocommerce/src/Tax.php:270
595
  #, php-format
596
  msgctxt "oss"
597
  msgid "Tax class (%s)"
598
  msgstr "Steuerklasse (%s)"
599
 
600
- #: one-stop-shop-woocommerce/src/Tax.php:213
601
  msgctxt "oss"
602
  msgid "Same as parent"
603
  msgstr "Gleiche wie übergeordnet"
604
 
605
- #: one-stop-shop-woocommerce/src/Tax.php:215
606
- #: one-stop-shop-woocommerce/src/Tax.php:248
607
- #: one-stop-shop-woocommerce/src/Tax.php:272
608
- #: one-stop-shop-woocommerce/src/Tax.php:306
609
  msgctxt "oss"
610
  msgid "remove"
611
  msgstr "Löschen"
612
 
613
- #: one-stop-shop-woocommerce/src/Tax.php:225
614
- #: one-stop-shop-woocommerce/src/Tax.php:283
615
  msgctxt "oss"
616
  msgid "Add country specific tax class (OSS)"
617
  msgstr "Länderspezifische Steuerklasse hinzufügen (OSS)"
618
 
619
- #: one-stop-shop-woocommerce/src/Tax.php:232
620
- #: one-stop-shop-woocommerce/src/Tax.php:290
621
  msgctxt "oss"
622
  msgid "Select country"
623
  msgstr "Land auswählen"
624
 
625
- #: one-stop-shop-woocommerce/src/Tax.php:385
626
- #: one-stop-shop-woocommerce/src/Tax.php:464
627
  msgid "Reduced rate"
628
  msgstr ""
629
 
630
- #: one-stop-shop-woocommerce/src/Tax.php:388
631
- #: one-stop-shop-woocommerce/src/Tax.php:456
632
  msgctxt "oss"
633
  msgid "Greater reduced rate"
634
  msgstr "Zusätzlicher reduzierter Preis"
635
 
636
- #: one-stop-shop-woocommerce/src/Tax.php:391
637
- #: one-stop-shop-woocommerce/src/Tax.php:460
638
  msgctxt "oss"
639
  msgid "Super reduced rate"
640
  msgstr "Stark reduzierter Preis"
641
 
642
- #: one-stop-shop-woocommerce/src/Tax.php:651
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
643
  #, php-format
644
  msgctxt "oss-tax-rate-import"
645
- msgid "VAT %s"
646
- msgstr "MwSt. %s"
647
 
648
  #: one-stop-shop-woocommerce/templates/emails/admin-delivery-threshold.php:19
649
  #, php-format
@@ -726,23 +771,23 @@ msgctxt "dhl"
726
  msgid "Minimum age of 18"
727
  msgstr "Mindestens 18 Jahre"
728
 
729
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:297
730
  msgctxt "dhl"
731
  msgid "Shipment #{shipment_id} to order {order_id}"
732
  msgstr "Sendung #{shipment_id} zur Bestellung {order_id}"
733
 
734
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:333
735
  msgctxt "dhl"
736
  msgid "Return #{shipment_id} to order {order_id}"
737
  msgstr "Retoure #{shipment_id} zur Bestellung {order_id}"
738
 
739
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:349
740
  msgctxt "dhl"
741
  msgid "Return shipment #{shipment_id} to order #{order_id}"
742
  msgstr "Retourensendung #{shipment_id} zur Bestellung #{order_id}"
743
 
744
  # @ woocommerce-germanized
745
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:422
746
  #: woocommerce-germanized-dhl/src/ParcelLocator.php:890
747
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1055
748
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1717
@@ -752,72 +797,72 @@ msgid "Packstation"
752
  msgstr "Packstation"
753
 
754
  # @ woocommerce-germanized
755
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:423
756
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:424
757
  msgctxt "dhl"
758
  msgid "Postfiliale"
759
  msgstr "Postfiliale"
760
 
761
  # @ woocommerce-germanized
762
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:829
763
  msgctxt "dhl"
764
  msgid "DHL Retoure International A"
765
  msgstr "DHL Retoure International A"
766
 
767
  # @ woocommerce-germanized
768
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:830
769
  msgctxt "dhl"
770
  msgid "DHL Retoure International B"
771
  msgstr "DHL Retoure International B"
772
 
773
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:839
774
  msgctxt "dhl"
775
  msgid "DHL Retoure Online"
776
  msgstr "DHL Retoure Online"
777
 
778
  # @ woocommerce-germanized
779
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:855
780
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:875
781
  msgctxt "dhl"
782
  msgid "DHL Paket International"
783
  msgstr "DHL Paket International"
784
 
785
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:876
786
  msgctxt "dhl"
787
  msgid "DHL Paket Connect"
788
  msgstr "DHL Paket Connect"
789
 
790
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:877
791
  msgctxt "dhl"
792
  msgid "DHL Europaket (B2B)"
793
  msgstr "DHL Europaket (B2B)"
794
 
795
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:946
796
  msgctxt "dhl"
797
  msgid "DHL Paket"
798
  msgstr "DHL Paket"
799
 
800
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:947
801
  msgctxt "dhl"
802
  msgid "DHL Paket PRIO"
803
  msgstr "DHL Paket PRIO"
804
 
805
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:948
806
  msgctxt "dhl"
807
  msgid "DHL Paket Taggleich"
808
  msgstr "DHL Paket Taggleich"
809
 
810
- #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:949
811
  msgctxt "dhl"
812
  msgid "DHL Warenpost"
813
  msgstr "DHL Warenpost"
814
 
815
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:48
816
  msgctxt "dhl"
817
  msgid "Refreshed data successfully."
818
  msgstr "Daten erfolgreich aktualisiert."
819
 
820
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:48
821
  #, php-format
822
  msgctxt "dhl"
823
  msgid ""
@@ -828,90 +873,56 @@ msgstr ""
828
  "href=\"%s\">erreichbar</a> ist."
829
 
830
  # @ woocommerce-germanized
831
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:121
832
  msgctxt "dhl"
833
  msgid "Receiver Ids"
834
  msgstr "Empfänger IDs"
835
 
836
  # @ woocommerce-germanized
837
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:128
838
  msgctxt "dhl"
839
  msgid "Receiver Id"
840
  msgstr "Empfänger ID"
841
 
842
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:128
843
  msgctxt "dhl"
844
  msgid "Find your Receiver Ids within your DHL contract data."
845
  msgstr "Die Empfänger IDs finden Sie im DHL Geschäftskundenportal."
846
 
847
  # @ woocommerce-germanized
848
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:129
849
  msgctxt "dhl"
850
  msgid "Country Code"
851
  msgstr "Ländercode"
852
 
853
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:129
854
  msgctxt "dhl"
855
  msgid "Leave empty to use the Receiver Id as fallback."
856
  msgstr "Leer lassen, um diese Empfänger ID als Fallback zu verwenden."
857
 
858
  # @ woocommerce-germanized
859
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:147
860
  msgctxt "dhl"
861
  msgid "+ Add receiver"
862
  msgstr "+ Empfänger hinzufügen"
863
 
864
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:147
865
  msgctxt "dhl"
866
  msgid "Remove selected receiver(s)"
867
  msgstr "Ausgewählte Empfänger löschen"
868
 
869
- # @ woocommerce-germanized
870
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:183
871
- msgctxt "dhl"
872
- msgid "Select a country"
873
- msgstr "Land auswählen"
874
-
875
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:185
876
- msgctxt "dhl"
877
- msgid "HS-Code (DHL)"
878
- msgstr "Zolltarifnummer (HS-Code, DHL)"
879
-
880
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:185
881
- msgctxt "dhl"
882
- msgid ""
883
- "The HS Code is a number assigned to every possible commodity that can be "
884
- "imported or exported from any country."
885
- msgstr ""
886
- "Das Harmonisierte System (HS) der Zollnomenklatur ist ein international "
887
- "standardisiertes System von Namen und Nummern zur Klassifizierung "
888
- "gehandelter Produkte."
889
-
890
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:186
891
- msgctxt "dhl"
892
- msgid "Country of manufacture (DHL)"
893
- msgstr "Herstellungsland (DHL)"
894
-
895
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:186
896
- msgctxt "dhl"
897
- msgid ""
898
- "The country of manufacture is needed for customs of international shipping."
899
- msgstr ""
900
- "Das Herstellungsland wird für die Zollabwicklung bei internationalen "
901
- "Sendungen benötigt."
902
-
903
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:200
904
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:23
905
  msgctxt "dhl"
906
  msgid "DHL"
907
  msgstr "DHL"
908
 
909
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:215
910
  msgctxt "dhl"
911
  msgid "DHL Label"
912
  msgstr "DHL Label"
913
 
914
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:227
915
  msgctxt "dhl"
916
  msgid ""
917
  "This label has been generated by the DHL for WooCommerce Plugin and is shown "
@@ -921,7 +932,7 @@ msgstr ""
921
  "Kompatibilitäts-Gründen angezeigt."
922
 
923
  # @ woocommerce-germanized
924
- #: woocommerce-germanized-dhl/src/Admin/Admin.php:228
925
  msgctxt "dhl"
926
  msgid "Download label"
927
  msgstr "Label downloaden"
@@ -1082,7 +1093,7 @@ msgstr "Fehler beim API Zugriff: %s"
1082
 
1083
  #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:65
1084
  #: woocommerce-germanized-dhl/src/Api/Soap.php:54
1085
- #: woocommerce-germanized-dhl/src/Package.php:101
1086
  #, php-format
1087
  msgctxt "dhl"
1088
  msgid ""
@@ -1407,7 +1418,7 @@ msgid "Invalid label."
1407
  msgstr "Ungültiges Label."
1408
 
1409
  # @ woocommerce-germanized
1410
- #: woocommerce-germanized-dhl/src/Package.php:1029
1411
  msgctxt "dhl"
1412
  msgid "Germany"
1413
  msgstr "Deutschland"
@@ -2836,7 +2847,7 @@ msgid "The minimum amount is %s"
2836
  msgstr "Der Minimalbetrag beträgt %s"
2837
 
2838
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:374
2839
- #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:573
2840
  #, php-format
2841
  msgctxt "dhl"
2842
  msgid ""
@@ -2854,12 +2865,12 @@ msgctxt "dhl"
2854
  msgid "Page Format"
2855
  msgstr "Seitenformat"
2856
 
2857
- #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:551
2858
  msgctxt "dhl"
2859
  msgid "The services chosen are not available for the current product."
2860
  msgstr "Die ausgewählten Services sind für dieses Produkt nicht verfügbar."
2861
 
2862
- #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:600
2863
  #, php-format
2864
  msgctxt "dhl"
2865
  msgid "Deutsche Post product is missing for %s."
@@ -3123,14 +3134,14 @@ msgstr "Position hinzufügen"
3123
 
3124
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:189
3125
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:45
3126
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:170
3127
  msgctxt "shipments"
3128
  msgid "Item"
3129
  msgstr "Position"
3130
 
3131
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:190
3132
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:46
3133
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:175
3134
  #: woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:55
3135
  #: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:37
3136
  #: woocommerce-germanized-shipments/templates/shipment/shipment-details.php:59
@@ -3210,9 +3221,9 @@ msgstr "Löschen"
3210
 
3211
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-list.php:22
3212
  #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:84
3213
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:157
3214
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:562
3215
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:683
3216
  #: woocommerce-germanized-shipments/src/Admin/Settings.php:75
3217
  #: woocommerce-germanized-shipments/src/Admin/Settings.php:172
3218
  #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:267
@@ -3243,10 +3254,10 @@ msgstr "%s #%s"
3243
  # @ woocommerce-germanized
3244
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:19
3245
  #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:77
3246
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:492
3247
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:561
3248
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:649
3249
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:716
3250
  #: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:20
3251
  msgctxt "shipments"
3252
  msgid "Shipments"
@@ -3277,15 +3288,15 @@ msgstr "Speichern"
3277
  #: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:11
3278
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:22
3279
  #: woocommerce-germanized-shipments/src/Admin/Table.php:687
3280
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:749
3281
  msgctxt "shipments"
3282
  msgid "Title"
3283
  msgstr "Titel"
3284
 
3285
  # @ woocommerce-germanized
3286
  #: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:12
3287
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:398
3288
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:758
3289
  msgctxt "shipments"
3290
  msgid "Description"
3291
  msgstr "Beschreibung"
@@ -3348,7 +3359,7 @@ msgid "Download"
3348
  msgstr "Download"
3349
 
3350
  #: woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:41
3351
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:780
3352
  msgctxt "shipments"
3353
  msgid "Create new label"
3354
  msgstr "Neues Label erstellen"
@@ -3719,7 +3730,7 @@ msgstr "Sendungsverfolgung"
3719
 
3720
  # @ woocommerce-germanized
3721
  #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1076
3722
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:180
3723
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:30
3724
  #: woocommerce-germanized-shipments/src/Admin/Table.php:696
3725
  msgctxt "shipments"
@@ -3771,7 +3782,41 @@ msgctxt "shipments"
3771
  msgid "View order"
3772
  msgstr "Bestellung ansehen"
3773
 
3774
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3775
  #, php-format
3776
  msgctxt "shipments"
3777
  msgid ""
@@ -3782,56 +3827,56 @@ msgstr ""
3782
  "erstellen Sie den Ordner %s manuell und stellen Sie sicher, dass der Ordner "
3783
  "beschreibbar ist."
3784
 
3785
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:108
3786
  msgctxt "shipments"
3787
  msgid "View Shipments"
3788
  msgstr "Sendung anzeigen"
3789
 
3790
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:109
3791
  msgctxt "shipments"
3792
  msgid "Endpoint for the \"My account &rarr; View shipments\" page."
3793
  msgstr "Endpunkt für die „Mein Konto &rarr; Sendungen“ Seite."
3794
 
3795
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:116
3796
  msgctxt "shipments"
3797
  msgid "View shipment"
3798
  msgstr "Sendung anzeigen"
3799
 
3800
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:117
3801
  msgctxt "shipments"
3802
  msgid "Endpoint for the \"My account &rarr; View shipment\" page."
3803
  msgstr "Endpunkt für die „Mein Konto &rarr; Sendung“ Seite."
3804
 
3805
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:124
3806
  msgctxt "shipments"
3807
  msgid "Add Return Shipment"
3808
  msgstr "Rücksendung"
3809
 
3810
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:125
3811
  msgctxt "shipments"
3812
  msgid "Endpoint for the \"My account &rarr; Add return shipment\" page."
3813
  msgstr "Endpunkt für die „Mein Konto &rarr; Rücksendung“ Seite."
3814
 
3815
  # @ woocommerce-germanized
3816
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:188
3817
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:323
3818
  #: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:36
3819
  msgctxt "shipments"
3820
  msgid "Reason"
3821
  msgstr "Rücksendegrund"
3822
 
3823
  # @ woocommerce-germanized
3824
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:315
3825
  msgctxt "shipments"
3826
  msgid "Return reasons"
3827
  msgstr "Rücksendegründe"
3828
 
3829
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:322
3830
  msgctxt "shipments"
3831
  msgid "Reason code"
3832
  msgstr "Rücksendegrund (Code)"
3833
 
3834
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:322
3835
  msgctxt "shipments"
3836
  msgid "The reason code is used to identify the reason."
3837
  msgstr ""
@@ -3839,62 +3884,62 @@ msgstr ""
3839
  "identifizieren zu können."
3840
 
3841
  # @ woocommerce-germanized
3842
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:323
3843
  msgctxt "shipments"
3844
  msgid "Choose a reason text."
3845
  msgstr "Beschreibung für den Grund."
3846
 
3847
  # @ woocommerce-germanized
3848
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:342
3849
  msgctxt "shipments"
3850
  msgid "+ Add reason"
3851
  msgstr "+ Grund hinzufügen"
3852
 
3853
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:342
3854
  msgctxt "shipments"
3855
  msgid "Remove selected reason(s)"
3856
  msgstr "Ausgewählte Gründe löschen"
3857
 
3858
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:375
3859
  msgctxt "shipments"
3860
  msgid "Available Packaging"
3861
  msgstr "Verfügbare Verpackungen"
3862
 
3863
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:398
3864
  msgctxt "shipments"
3865
  msgid "A description to help you identify the packaging."
3866
  msgstr ""
3867
  "Eine Beschreibung die Ihnen dabei hilft Verpackungen zu identifizieren."
3868
 
3869
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:399
3870
  msgctxt "shipments"
3871
  msgid "Type"
3872
  msgstr "Typ"
3873
 
3874
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:400
3875
  #, php-format
3876
  msgctxt "shipments"
3877
  msgid "Weight (%s)"
3878
  msgstr "Gewicht (%s)"
3879
 
3880
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:400
3881
  msgctxt "shipments"
3882
  msgid "The weight of the packaging."
3883
  msgstr "Das Gewicht der Verpackung."
3884
 
3885
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:401
3886
  #, php-format
3887
  msgctxt "shipments"
3888
  msgid "Dimensions (LxWxH, %s)"
3889
  msgstr "Abmessungen (LxBxH, %s)"
3890
 
3891
  # @ woocommerce-germanized
3892
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:402
3893
  msgctxt "shipments"
3894
  msgid "Max weight (kg)"
3895
  msgstr "Max. Gewicht (kg)"
3896
 
3897
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:402
3898
  msgctxt "shipments"
3899
  msgid ""
3900
  "The maximum weight this packaging can hold. Leave empty to not restrict "
@@ -3903,68 +3948,68 @@ msgstr ""
3903
  "Das maximale Gewicht, das diese Verpackung tragen kann. Leer lassen um das "
3904
  "Gewicht nicht zu begrenzen."
3905
 
3906
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:427
3907
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:468
3908
  msgctxt "shipments"
3909
  msgid "Length"
3910
  msgstr "Länge"
3911
 
3912
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:428
3913
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:469
3914
  msgctxt "shipments"
3915
  msgid "Width"
3916
  msgstr "Breite"
3917
 
3918
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:429
3919
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:470
3920
  msgctxt "shipments"
3921
  msgid "Height"
3922
  msgstr "Höhe"
3923
 
3924
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:442
3925
  msgctxt "shipments"
3926
  msgid "+ Add packaging"
3927
  msgstr "+ Verpackung hinzufügen"
3928
 
3929
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:442
3930
  msgctxt "shipments"
3931
  msgid "Remove selected packaging"
3932
  msgstr "Ausgewählte Verpackung löschen"
3933
 
3934
  # @ woocommerce-germanized
3935
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:546
3936
  msgctxt "shipments"
3937
  msgid "Create shipments"
3938
  msgstr "Sendungen erstellen"
3939
 
3940
  # @ woocommerce-germanized
3941
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:661
3942
  msgctxt "shipments"
3943
  msgid "Search shipments"
3944
  msgstr "Sendungen suchen"
3945
 
3946
  # @ woocommerce-germanized
3947
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:695
3948
  msgctxt "shipments"
3949
  msgid "Search returns"
3950
  msgstr "Retouren suchen"
3951
 
3952
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:773
3953
  msgctxt "shipments"
3954
  msgid "Do you really want to delete the shipment?"
3955
  msgstr "Möchten Sie die Sendung wirklich löschen?"
3956
 
3957
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:779
3958
  msgctxt "shipments"
3959
  msgid "Do you really want to delete the label?"
3960
  msgstr "Möchten Sie das Label wirklich löschen?"
3961
 
3962
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:781
3963
  msgctxt "shipments"
3964
  msgid "Please save the shipment before creating a new label"
3965
  msgstr "Bitte speichern Sie die Sendung bevor Sie ein neues Label erstellen"
3966
 
3967
- #: woocommerce-germanized-shipments/src/Admin/Admin.php:831
3968
  msgctxt "shipments"
3969
  msgid ""
3970
  "Do you really want to delete the shipping provider? Some of your existing "
@@ -4476,7 +4521,7 @@ msgstr ""
4476
  # @ woocommerce-germanized
4477
  #: woocommerce-germanized-shipments/src/Admin/Settings.php:415
4478
  #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:344
4479
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:1070
4480
  msgctxt "shipments"
4481
  msgid "General"
4482
  msgstr "Allgemein"
@@ -4933,7 +4978,7 @@ msgctxt "shipments"
4933
  msgid "Invalid packaging."
4934
  msgstr "Verpackung nicht verfügbar."
4935
 
4936
- #: woocommerce-germanized-shipments/src/DataStores/ShipmentItem.php:198
4937
  msgctxt "shipments"
4938
  msgid "Invalid shipment item."
4939
  msgstr "Ungültige Sendungsposition."
@@ -5114,7 +5159,9 @@ msgid "%1$s (%2$s, %3$s)"
5114
  msgstr "%1$s (%2$s, %3$s)"
5115
 
5116
  #: woocommerce-germanized-shipments/src/ReturnShipment.php:362
5117
- #: woocommerce-germanized-shipments/src/Shipment.php:1021
 
 
5118
  #, php-format
5119
  msgctxt "full name"
5120
  msgid "%1$s %2$s"
@@ -5246,22 +5293,22 @@ msgstr ""
5246
  "die Paketverfolgungsdaten zum Zeitpunkt des Erhalts dieser E-Mail noch nicht "
5247
  "den neuesten Stand wiedergeben."
5248
 
5249
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:750
5250
  msgctxt "shipments"
5251
  msgid "Choose a title for the shipping provider."
5252
  msgstr "Wählen Sie einen Titel für den Versanddienstleister."
5253
 
5254
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:759
5255
  msgctxt "shipments"
5256
  msgid "Choose a description for the shipping provider."
5257
  msgstr "Wählen Sie eine Beschreibung für den Versanddienstleister."
5258
 
5259
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:771
5260
  msgctxt "shipments"
5261
  msgid "Tracking URL"
5262
  msgstr "Sendungsverfolgung URL"
5263
 
5264
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:772
5265
  #, php-format
5266
  msgctxt "shipments"
5267
  msgid ""
@@ -5275,12 +5322,12 @@ msgstr ""
5275
  "einzufügen: %s"
5276
 
5277
  # @ woocommerce-germanized
5278
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:782
5279
  msgctxt "shipments"
5280
  msgid "Tracking description"
5281
  msgstr "Sendungsverfolgung Hinweis"
5282
 
5283
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:783
5284
  #, php-format
5285
  msgctxt "shipments"
5286
  msgid ""
@@ -5295,17 +5342,17 @@ msgstr ""
5295
  "dynamische Daten einzufügen: %s"
5296
 
5297
  # @ woocommerce-germanized
5298
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:927
5299
  msgctxt "shipments"
5300
  msgid "Customer returns"
5301
  msgstr "Rücksendungen"
5302
 
5303
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:928
5304
  msgctxt "shipments"
5305
  msgid "Allow customers to submit return requests to shipments."
5306
  msgstr "Erlauben Sie Kunden eine Rücksendung zu einer Sendung zu beantragen."
5307
 
5308
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:928
5309
  #, php-format
5310
  msgctxt "shipments"
5311
  msgid ""
@@ -5319,27 +5366,27 @@ msgstr ""
5319
  "Gästen zu erfahren, lesen Sie bitte die %s."
5320
 
5321
  # @ woocommerce-germanized
5322
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:928
5323
  msgctxt "shipments"
5324
  msgid "Return Dashboard"
5325
  msgstr "Retouren-Dashboard"
5326
 
5327
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:928
5328
  msgctxt "shipments"
5329
  msgid "docs"
5330
  msgstr "Dokumentation"
5331
 
5332
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:937
5333
  msgctxt "shipments"
5334
  msgid "Guest returns"
5335
  msgstr "Retouren für Gäste"
5336
 
5337
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:938
5338
  msgctxt "shipments"
5339
  msgid "Allow guests to submit return requests to shipments."
5340
  msgstr "Erlauben Sie Gästen Rücksendeanträge zu Bestellungen zu beantragen."
5341
 
5342
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:938
5343
  #, php-format
5344
  msgctxt "shipments"
5345
  msgid ""
@@ -5353,18 +5400,18 @@ msgstr ""
5353
  "Rücksende-Formular für Gäste auf Ihrer Seite zu platzieren."
5354
 
5355
  # @ woocommerce-germanized
5356
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:949
5357
  msgctxt "shipments"
5358
  msgid "Manual confirmation"
5359
  msgstr "Manuelle Bestätigung"
5360
 
5361
  # @ woocommerce-germanized
5362
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:950
5363
  msgctxt "shipments"
5364
  msgid "Return requests need manual confirmation."
5365
  msgstr "Rücksendeanträge benötigen eine manuelle Bestätigung."
5366
 
5367
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:950
5368
  msgctxt "shipments"
5369
  msgid ""
5370
  "By default return request need manual confirmation e.g. a shop manager needs "
@@ -5381,12 +5428,12 @@ msgstr ""
5381
  "Mail-Bestätigung samt Retouren-Label."
5382
 
5383
  # @ woocommerce-germanized
5384
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:962
5385
  msgctxt "shipments"
5386
  msgid "Return instructions"
5387
  msgstr "Rücksende-Anweisungen"
5388
 
5389
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:963
5390
  msgctxt "shipments"
5391
  msgid ""
5392
  "Provide your customer with instructions on how to return the shipment after "
@@ -5399,7 +5446,7 @@ msgstr ""
5399
  "kann, sollten Sie Ihre Kunden darüber informieren, woher ein Label für die "
5400
  "Rücksendung bezogen werden kann."
5401
 
5402
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:1049
5403
  #, php-format
5404
  msgctxt "shipments"
5405
  msgid ""
@@ -5411,12 +5458,12 @@ msgstr ""
5411
  "Einstellungen</a>. Passen Sie diese Einstellungen nur dann an, wenn Sie "
5412
  "explizit Abweichungen speziell für diese Versandmethode konfigurieren wollen."
5413
 
5414
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:1074
5415
  msgctxt "shipments"
5416
  msgid "Return Requests"
5417
  msgstr "Rücksendeanträge"
5418
 
5419
- #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:1105
5420
  msgctxt "shipments"
5421
  msgid "This shipping provider does not support creating labels."
5422
  msgstr "Dieser Versanddienstleister unterstützt keine Label-Erzeugung."
@@ -5785,8 +5832,8 @@ msgid "l"
5785
  msgstr "l"
5786
 
5787
  # @ woocommerce-germanized
5788
- #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:559
5789
- #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:569
5790
  #: woocommerce-germanized/includes/wc-gzd-core-functions.php:453
5791
  #: woocommerce-germanized/includes/wc-gzd-template-functions.php:597
5792
  #: woocommerce-germanized/includes/wc-gzd-template-functions.php:605
@@ -5794,19 +5841,19 @@ msgid "incl. VAT"
5794
  msgstr "inkl. MwSt."
5795
 
5796
  # @ woocommerce-germanized
5797
- #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:559
5798
  msgid "excl. VAT"
5799
  msgstr "exkl. MwSt."
5800
 
5801
  # @ woocommerce-germanized
5802
- #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:561
5803
  #: woocommerce-germanized/includes/wc-gzd-core-functions.php:453
5804
  #, php-format
5805
  msgid "incl. %s%% VAT"
5806
  msgstr "inkl. %s %% MwSt."
5807
 
5808
  # @ woocommerce-germanized
5809
- #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:561
5810
  #, php-format
5811
  msgid "excl. %s%% VAT"
5812
  msgstr "exkl. %s %% MwSt."
@@ -10908,7 +10955,7 @@ msgstr ""
10908
  "%s ein."
10909
 
10910
  # @ woocommerce-germanized
10911
- #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:797
10912
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:844
10913
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:877
10914
  msgid "a single payment"
@@ -11190,7 +11237,7 @@ msgid "is invalid"
11190
  msgstr "ist ungültig"
11191
 
11192
  # @ woocommerce-germanized
11193
- #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1296
11194
  msgid "Awaiting Direct Debit Payment"
11195
  msgstr "Zahlung per Lastschrift ausstehend"
11196
 
@@ -11425,7 +11472,7 @@ msgid "Place order"
11425
  msgstr "Jetzt kaufen"
11426
 
11427
  #: woocommerce-germanized/src/Autoloader.php:50
11428
- #: woocommerce-germanized/src/Packages.php:95
11429
  msgid ""
11430
  "Your installation of Germanized is incomplete. If you installed Germanized "
11431
  "from GitHub, please refer to this document to set up your development "
@@ -11439,7 +11486,7 @@ msgstr ""
11439
  "environment"
11440
 
11441
  #: woocommerce-germanized/src/Autoloader.php:62
11442
- #: woocommerce-germanized/src/Packages.php:117
11443
  #, php-format
11444
  msgid ""
11445
  "Your installation of Germanized is incomplete. If you installed Germanized "
@@ -11450,8 +11497,8 @@ msgstr ""
11450
  "GitHub installiert haben, %1$sschauen Sie sich bitte dieses Dokument an%2$s "
11451
  "um eine Entwicklungsumgebung aufzusetzen."
11452
 
11453
- #: woocommerce-germanized/src/Packages.php:93
11454
- #: woocommerce-germanized/src/Packages.php:108
11455
  #, php-format
11456
  msgid "Missing the Germanized %s package"
11457
  msgstr "Das Germanized %s Paket fehlt"
@@ -13010,7 +13057,6 @@ msgstr ""
13010
  "Ihre Installation des Trustbadge Reviews for WooCommerce Plugin ist "
13011
  "unvollständig. Bitte führen Sie %1$s im %2$s Verzeichnis aus."
13012
 
13013
- # ## OSS Plugin translations end ###
13014
  #. Plugin URI of the plugin/theme
13015
  msgid "https://www.vendidero.de/woocommerce-germanized"
13016
  msgstr "https://www.vendidero.de/woocommerce-germanized"
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce Germanized\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-07-08 14:19+0200\n"
6
+ "PO-Revision-Date: 2021-07-08 14:20+0200\n"
7
  "Last-Translator: holzhannes <holzhannes@posteo.de>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE@formal\n"
107
  msgstr "One Stop Shop"
108
 
109
  #: one-stop-shop-woocommerce/src/Admin.php:453
110
+ #: one-stop-shop-woocommerce/src/Package.php:264
111
  #, php-format
112
  msgctxt "oss"
113
  msgid "Q%1$s/%2$s"
114
  msgstr "Q%1$s/%2$s"
115
 
116
  #: one-stop-shop-woocommerce/src/Admin.php:462
117
+ #: one-stop-shop-woocommerce/src/Package.php:269
118
  #, php-format
119
  msgctxt "oss"
120
  msgid "%1$s/%2$s"
131
  msgstr "Typ"
132
 
133
  #: one-stop-shop-woocommerce/src/Admin.php:489
134
+ msgctxt "oss"
135
  msgid "Year"
136
  msgstr "Jahr"
137
 
138
  #: one-stop-shop-woocommerce/src/Admin.php:501
139
+ msgctxt "oss"
140
  msgid "Quarter"
141
  msgstr "Quartal"
142
 
143
  #: one-stop-shop-woocommerce/src/Admin.php:513
144
+ msgctxt "oss"
145
  msgid "Month"
146
  msgstr "Monat"
147
 
148
  #: one-stop-shop-woocommerce/src/Admin.php:525
149
+ msgctxt "oss"
150
  msgid "Date range"
151
  msgstr "Zeitraum"
152
 
238
  msgid "Dismiss"
239
  msgstr "Ausblenden"
240
 
241
+ #: one-stop-shop-woocommerce/src/AsyncReportGenerator.php:244
242
  msgctxt "oss"
243
  msgid "No orders found."
244
  msgstr "Keine Bestellungen gefunden."
292
  msgid "See details"
293
  msgstr "Details ansehen"
294
 
295
+ #: one-stop-shop-woocommerce/src/Package.php:80
296
  msgctxt "oss"
297
  msgid ""
298
  "To use the OSS for WooCommerce plugin please make sure that WooCommerce is "
301
  "Um das OSS für WooCommerce Plugin nutzen zu können muss WooCommerce "
302
  "installiert und aktiviert sein."
303
 
304
+ #: one-stop-shop-woocommerce/src/Package.php:249
305
  #: one-stop-shop-woocommerce/src/ReportTable.php:40
306
  msgctxt "oss"
307
  msgid "Report"
308
  msgstr "Bericht"
309
 
310
+ #: one-stop-shop-woocommerce/src/Package.php:273
311
  #, php-format
312
  msgctxt "oss"
313
  msgid "%1$s"
314
  msgstr "%1$s"
315
 
316
+ #: one-stop-shop-woocommerce/src/Package.php:278
317
  #, php-format
318
  msgctxt "oss"
319
  msgid "%1$s - %2$s"
320
  msgstr "%1$s - %2$s"
321
 
322
+ #: one-stop-shop-woocommerce/src/Package.php:283
323
  #, php-format
324
  msgctxt "oss"
325
  msgid "Observer %1$s"
326
  msgstr "Beobachter %1$s"
327
 
328
+ #: one-stop-shop-woocommerce/src/Package.php:482
329
  msgctxt "oss"
330
  msgid "Quarterly"
331
  msgstr "Quartalsweise"
332
 
333
+ #: one-stop-shop-woocommerce/src/Package.php:483
334
  msgctxt "oss"
335
  msgid "Yearly"
336
  msgstr "Jährlich"
337
 
338
+ #: one-stop-shop-woocommerce/src/Package.php:484
339
  msgctxt "oss"
340
  msgid "Monthly"
341
  msgstr "Monatlich"
342
 
343
+ #: one-stop-shop-woocommerce/src/Package.php:485
344
  msgctxt "oss"
345
  msgid "Custom"
346
  msgstr "Individuell"
347
 
348
+ #: one-stop-shop-woocommerce/src/Package.php:489
349
  msgctxt "oss"
350
  msgid "Observer"
351
  msgstr "Beobachter"
352
 
353
+ #: one-stop-shop-woocommerce/src/Package.php:503
354
  msgctxt "oss"
355
  msgid "Pending"
356
  msgstr "In Bearbeitung"
357
 
358
+ #: one-stop-shop-woocommerce/src/Package.php:504
359
  msgctxt "oss"
360
  msgid "Completed"
361
  msgstr "Fertiggestellt"
362
 
363
+ #: one-stop-shop-woocommerce/src/Package.php:505
364
  msgctxt "oss"
365
  msgid "Failed"
366
  msgstr "Fehlgeschlagen"
506
  msgid "Participation"
507
  msgstr "Teilnahme"
508
 
509
+ #: one-stop-shop-woocommerce/src/Settings.php:70
510
+ msgctxt "oss"
511
+ msgid "Fixed gross prices"
512
+ msgstr "Feste Bruttopreise"
513
+
514
+ #: one-stop-shop-woocommerce/src/Settings.php:71
515
+ msgctxt "oss"
516
+ msgid "Apply the same gross price regardless of the tax rate."
517
+ msgstr "Verwende den Bruttopreis unabhängig vom Steuersatz."
518
+
519
+ #: one-stop-shop-woocommerce/src/Settings.php:71
520
+ msgctxt "oss"
521
+ msgid ""
522
+ "This option will make sure that your customers pay the same price no matter "
523
+ "the tax rate (based on the country chosen) to be applied."
524
+ msgstr ""
525
+ "Diese Option bewirkt, dass Kunden, unabhängig vom Land und damit vom "
526
+ "Steuersatz den selben Bruttopreis bezahlen."
527
+
528
+ #: one-stop-shop-woocommerce/src/Settings.php:92
529
  msgctxt "oss"
530
  msgid "Are you sure? Please backup your tax rates before proceeding."
531
  msgstr ""
532
  "Sind Sie sicher? Bitte erstellen Sie vorab ein Backup Ihrer Steuersätze."
533
 
534
+ #: one-stop-shop-woocommerce/src/Settings.php:92
535
  msgctxt "oss"
536
  msgid "End OSS participation"
537
  msgstr "OSS Teilnahme beenden"
538
 
539
+ #: one-stop-shop-woocommerce/src/Settings.php:92
540
  msgctxt "oss"
541
  msgid "Start OSS participation"
542
  msgstr "OSS Teilnahme starten"
543
 
544
+ #: one-stop-shop-woocommerce/src/Settings.php:93
545
  msgctxt "oss"
546
  msgid "learn more"
547
  msgstr "Mehr erfahren"
548
 
549
+ #: one-stop-shop-woocommerce/src/Settings.php:95
550
  msgctxt "oss"
551
  msgid ""
552
  "Use this option to automatically adjust tax-related options in WooCommerce. "
557
  "automatisch anpassen zu lassen. Achtung: Diese Option löscht Ihre aktuellen "
558
  "Steuersätze und fügt neue Steuersätze basierend auf Ihrem OSS Status hinzu."
559
 
560
+ #: one-stop-shop-woocommerce/src/Settings.php:127
561
  msgctxt "oss"
562
  msgid "See status"
563
  msgstr "Status ansehen"
564
 
565
+ #: one-stop-shop-woocommerce/src/Settings.php:127
566
  msgctxt "oss"
567
  msgid "Start initial report"
568
  msgstr "Initialen Bericht erstellen"
569
 
570
+ #: one-stop-shop-woocommerce/src/Settings.php:128
571
  #, php-format
572
  msgctxt "oss"
573
  msgid "Report not yet completed. %s"
574
  msgstr "Bericht noch nicht abgeschlossen. %s"
575
 
576
+ #: one-stop-shop-woocommerce/src/Settings.php:128
577
  #, php-format
578
  msgctxt "oss"
579
  msgid "Report not yet started. %s"
580
  msgstr "Bericht noch nicht gestartet. %s"
581
 
582
+ #: one-stop-shop-woocommerce/src/Settings.php:146
583
  msgctxt "oss-amounts"
584
  msgid "of"
585
  msgstr "von"
586
 
587
+ #: one-stop-shop-woocommerce/src/Settings.php:146
588
+ #, php-format
589
+ msgctxt "oss"
590
+ msgid "As of: %s"
591
+ msgstr "Stand: %s"
592
+
593
+ #: one-stop-shop-woocommerce/src/Settings.php:146
594
  msgctxt "oss"
595
  msgid "see details"
596
  msgstr "Details ansehen"
597
 
598
+ #: one-stop-shop-woocommerce/src/Settings.php:147
599
  #, php-format
600
  msgctxt "oss"
601
  msgid ""
615
  msgid "Learn More"
616
  msgstr "Mehr erfahren"
617
 
618
+ #: one-stop-shop-woocommerce/src/Tax.php:278
619
+ #: one-stop-shop-woocommerce/src/Tax.php:336
620
  #, php-format
621
  msgctxt "oss"
622
  msgid "Tax class (%s)"
623
  msgstr "Steuerklasse (%s)"
624
 
625
+ #: one-stop-shop-woocommerce/src/Tax.php:279
626
  msgctxt "oss"
627
  msgid "Same as parent"
628
  msgstr "Gleiche wie übergeordnet"
629
 
630
+ #: one-stop-shop-woocommerce/src/Tax.php:281
631
+ #: one-stop-shop-woocommerce/src/Tax.php:314
632
+ #: one-stop-shop-woocommerce/src/Tax.php:338
633
+ #: one-stop-shop-woocommerce/src/Tax.php:372
634
  msgctxt "oss"
635
  msgid "remove"
636
  msgstr "Löschen"
637
 
638
+ #: one-stop-shop-woocommerce/src/Tax.php:291
639
+ #: one-stop-shop-woocommerce/src/Tax.php:349
640
  msgctxt "oss"
641
  msgid "Add country specific tax class (OSS)"
642
  msgstr "Länderspezifische Steuerklasse hinzufügen (OSS)"
643
 
644
+ #: one-stop-shop-woocommerce/src/Tax.php:298
645
+ #: one-stop-shop-woocommerce/src/Tax.php:356
646
  msgctxt "oss"
647
  msgid "Select country"
648
  msgstr "Land auswählen"
649
 
650
+ #: one-stop-shop-woocommerce/src/Tax.php:452
651
+ #: one-stop-shop-woocommerce/src/Tax.php:579
652
  msgid "Reduced rate"
653
  msgstr ""
654
 
655
+ #: one-stop-shop-woocommerce/src/Tax.php:455
656
+ #: one-stop-shop-woocommerce/src/Tax.php:571
657
  msgctxt "oss"
658
  msgid "Greater reduced rate"
659
  msgstr "Zusätzlicher reduzierter Preis"
660
 
661
+ #: one-stop-shop-woocommerce/src/Tax.php:458
662
+ #: one-stop-shop-woocommerce/src/Tax.php:575
663
  msgctxt "oss"
664
  msgid "Super reduced rate"
665
  msgstr "Stark reduzierter Preis"
666
 
667
+ #: one-stop-shop-woocommerce/src/Tax.php:751
668
+ msgctxt "oss"
669
+ msgid "Madeira"
670
+ msgstr "Madeira"
671
+
672
+ #: one-stop-shop-woocommerce/src/Tax.php:758
673
+ msgctxt "oss"
674
+ msgid "Acores"
675
+ msgstr "Azoren"
676
+
677
+ #: one-stop-shop-woocommerce/src/Tax.php:794
678
+ msgctxt "oss"
679
+ msgid "Northern Ireland"
680
+ msgstr "Nordirland"
681
+
682
+ #: one-stop-shop-woocommerce/src/Tax.php:807
683
+ msgctxt "oss-tax-rate-import"
684
+ msgid "Exempt"
685
+ msgstr "Ausnahme"
686
+
687
+ #: one-stop-shop-woocommerce/src/Tax.php:873
688
  #, php-format
689
  msgctxt "oss-tax-rate-import"
690
+ msgid "VAT %1$s %% %2$s"
691
+ msgstr "MwSt. %1$s %% %2$s"
692
 
693
  #: one-stop-shop-woocommerce/templates/emails/admin-delivery-threshold.php:19
694
  #, php-format
771
  msgid "Minimum age of 18"
772
  msgstr "Mindestens 18 Jahre"
773
 
774
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:303
775
  msgctxt "dhl"
776
  msgid "Shipment #{shipment_id} to order {order_id}"
777
  msgstr "Sendung #{shipment_id} zur Bestellung {order_id}"
778
 
779
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:339
780
  msgctxt "dhl"
781
  msgid "Return #{shipment_id} to order {order_id}"
782
  msgstr "Retoure #{shipment_id} zur Bestellung {order_id}"
783
 
784
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:355
785
  msgctxt "dhl"
786
  msgid "Return shipment #{shipment_id} to order #{order_id}"
787
  msgstr "Retourensendung #{shipment_id} zur Bestellung #{order_id}"
788
 
789
  # @ woocommerce-germanized
790
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:428
791
  #: woocommerce-germanized-dhl/src/ParcelLocator.php:890
792
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1055
793
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1717
797
  msgstr "Packstation"
798
 
799
  # @ woocommerce-germanized
800
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:429
801
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:430
802
  msgctxt "dhl"
803
  msgid "Postfiliale"
804
  msgstr "Postfiliale"
805
 
806
  # @ woocommerce-germanized
807
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:836
808
  msgctxt "dhl"
809
  msgid "DHL Retoure International A"
810
  msgstr "DHL Retoure International A"
811
 
812
  # @ woocommerce-germanized
813
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:837
814
  msgctxt "dhl"
815
  msgid "DHL Retoure International B"
816
  msgstr "DHL Retoure International B"
817
 
818
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:846
819
  msgctxt "dhl"
820
  msgid "DHL Retoure Online"
821
  msgstr "DHL Retoure Online"
822
 
823
  # @ woocommerce-germanized
824
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:862
825
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:882
826
  msgctxt "dhl"
827
  msgid "DHL Paket International"
828
  msgstr "DHL Paket International"
829
 
830
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:883
831
  msgctxt "dhl"
832
  msgid "DHL Paket Connect"
833
  msgstr "DHL Paket Connect"
834
 
835
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:884
836
  msgctxt "dhl"
837
  msgid "DHL Europaket (B2B)"
838
  msgstr "DHL Europaket (B2B)"
839
 
840
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:953
841
  msgctxt "dhl"
842
  msgid "DHL Paket"
843
  msgstr "DHL Paket"
844
 
845
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:954
846
  msgctxt "dhl"
847
  msgid "DHL Paket PRIO"
848
  msgstr "DHL Paket PRIO"
849
 
850
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:955
851
  msgctxt "dhl"
852
  msgid "DHL Paket Taggleich"
853
  msgstr "DHL Paket Taggleich"
854
 
855
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:956
856
  msgctxt "dhl"
857
  msgid "DHL Warenpost"
858
  msgstr "DHL Warenpost"
859
 
860
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:44
861
  msgctxt "dhl"
862
  msgid "Refreshed data successfully."
863
  msgstr "Daten erfolgreich aktualisiert."
864
 
865
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:44
866
  #, php-format
867
  msgctxt "dhl"
868
  msgid ""
873
  "href=\"%s\">erreichbar</a> ist."
874
 
875
  # @ woocommerce-germanized
876
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:117
877
  msgctxt "dhl"
878
  msgid "Receiver Ids"
879
  msgstr "Empfänger IDs"
880
 
881
  # @ woocommerce-germanized
882
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:124
883
  msgctxt "dhl"
884
  msgid "Receiver Id"
885
  msgstr "Empfänger ID"
886
 
887
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:124
888
  msgctxt "dhl"
889
  msgid "Find your Receiver Ids within your DHL contract data."
890
  msgstr "Die Empfänger IDs finden Sie im DHL Geschäftskundenportal."
891
 
892
  # @ woocommerce-germanized
893
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:125
894
  msgctxt "dhl"
895
  msgid "Country Code"
896
  msgstr "Ländercode"
897
 
898
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:125
899
  msgctxt "dhl"
900
  msgid "Leave empty to use the Receiver Id as fallback."
901
  msgstr "Leer lassen, um diese Empfänger ID als Fallback zu verwenden."
902
 
903
  # @ woocommerce-germanized
904
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:143
905
  msgctxt "dhl"
906
  msgid "+ Add receiver"
907
  msgstr "+ Empfänger hinzufügen"
908
 
909
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:143
910
  msgctxt "dhl"
911
  msgid "Remove selected receiver(s)"
912
  msgstr "Ausgewählte Empfänger löschen"
913
 
914
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:173
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
915
  #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:23
916
  msgctxt "dhl"
917
  msgid "DHL"
918
  msgstr "DHL"
919
 
920
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:188
921
  msgctxt "dhl"
922
  msgid "DHL Label"
923
  msgstr "DHL Label"
924
 
925
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:200
926
  msgctxt "dhl"
927
  msgid ""
928
  "This label has been generated by the DHL for WooCommerce Plugin and is shown "
932
  "Kompatibilitäts-Gründen angezeigt."
933
 
934
  # @ woocommerce-germanized
935
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:201
936
  msgctxt "dhl"
937
  msgid "Download label"
938
  msgstr "Label downloaden"
1093
 
1094
  #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:65
1095
  #: woocommerce-germanized-dhl/src/Api/Soap.php:54
1096
+ #: woocommerce-germanized-dhl/src/Package.php:105
1097
  #, php-format
1098
  msgctxt "dhl"
1099
  msgid ""
1418
  msgstr "Ungültiges Label."
1419
 
1420
  # @ woocommerce-germanized
1421
+ #: woocommerce-germanized-dhl/src/Package.php:1004
1422
  msgctxt "dhl"
1423
  msgid "Germany"
1424
  msgstr "Deutschland"
2847
  msgstr "Der Minimalbetrag beträgt %s"
2848
 
2849
  #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:374
2850
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:575
2851
  #, php-format
2852
  msgctxt "dhl"
2853
  msgid ""
2865
  msgid "Page Format"
2866
  msgstr "Seitenformat"
2867
 
2868
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:553
2869
  msgctxt "dhl"
2870
  msgid "The services chosen are not available for the current product."
2871
  msgstr "Die ausgewählten Services sind für dieses Produkt nicht verfügbar."
2872
 
2873
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:602
2874
  #, php-format
2875
  msgctxt "dhl"
2876
  msgid "Deutsche Post product is missing for %s."
3134
 
3135
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:189
3136
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:45
3137
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:224
3138
  msgctxt "shipments"
3139
  msgid "Item"
3140
  msgstr "Position"
3141
 
3142
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:190
3143
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:46
3144
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:229
3145
  #: woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:55
3146
  #: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:37
3147
  #: woocommerce-germanized-shipments/templates/shipment/shipment-details.php:59
3221
 
3222
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-list.php:22
3223
  #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:84
3224
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:211
3225
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:616
3226
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:737
3227
  #: woocommerce-germanized-shipments/src/Admin/Settings.php:75
3228
  #: woocommerce-germanized-shipments/src/Admin/Settings.php:172
3229
  #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:267
3254
  # @ woocommerce-germanized
3255
  #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:19
3256
  #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:77
3257
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:546
3258
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:615
3259
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:703
3260
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:770
3261
  #: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:20
3262
  msgctxt "shipments"
3263
  msgid "Shipments"
3288
  #: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:11
3289
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:22
3290
  #: woocommerce-germanized-shipments/src/Admin/Table.php:687
3291
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:773
3292
  msgctxt "shipments"
3293
  msgid "Title"
3294
  msgstr "Titel"
3295
 
3296
  # @ woocommerce-germanized
3297
  #: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:12
3298
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:452
3299
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:782
3300
  msgctxt "shipments"
3301
  msgid "Description"
3302
  msgstr "Beschreibung"
3359
  msgstr "Download"
3360
 
3361
  #: woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:41
3362
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:834
3363
  msgctxt "shipments"
3364
  msgid "Create new label"
3365
  msgstr "Neues Label erstellen"
3730
 
3731
  # @ woocommerce-germanized
3732
  #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1076
3733
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:234
3734
  #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:30
3735
  #: woocommerce-germanized-shipments/src/Admin/Table.php:696
3736
  msgctxt "shipments"
3782
  msgid "View order"
3783
  msgstr "Bestellung ansehen"
3784
 
3785
+ # @ woocommerce-germanized
3786
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:73
3787
+ msgctxt "shipments"
3788
+ msgid "Select a country"
3789
+ msgstr "Land auswählen"
3790
+
3791
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:77
3792
+ msgctxt "shipments"
3793
+ msgid "HS-Code (Customs)"
3794
+ msgstr "Zolltarifnummer (HS-Code, Zoll)"
3795
+
3796
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:79
3797
+ msgctxt "shipments"
3798
+ msgid ""
3799
+ "The HS Code is a number assigned to every possible commodity that can be "
3800
+ "imported or exported from any country."
3801
+ msgstr ""
3802
+ "Das Harmonisierte System (HS) der Zollnomenklatur ist ein international "
3803
+ "standardisiertes System von Namen und Nummern zur Klassifizierung "
3804
+ "gehandelter Produkte."
3805
+
3806
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:86
3807
+ msgctxt "shipments"
3808
+ msgid "Country of manufacture (Customs)"
3809
+ msgstr "Herstellungsland (Zoll)"
3810
+
3811
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:88
3812
+ msgctxt "shipments"
3813
+ msgid ""
3814
+ "The country of manufacture is needed for customs of international shipping."
3815
+ msgstr ""
3816
+ "Das Herstellungsland wird für die Zollabwicklung bei internationalen "
3817
+ "Sendungen benötigt."
3818
+
3819
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:125
3820
  #, php-format
3821
  msgctxt "shipments"
3822
  msgid ""
3827
  "erstellen Sie den Ordner %s manuell und stellen Sie sicher, dass der Ordner "
3828
  "beschreibbar ist."
3829
 
3830
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:162
3831
  msgctxt "shipments"
3832
  msgid "View Shipments"
3833
  msgstr "Sendung anzeigen"
3834
 
3835
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:163
3836
  msgctxt "shipments"
3837
  msgid "Endpoint for the \"My account &rarr; View shipments\" page."
3838
  msgstr "Endpunkt für die „Mein Konto &rarr; Sendungen“ Seite."
3839
 
3840
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:170
3841
  msgctxt "shipments"
3842
  msgid "View shipment"
3843
  msgstr "Sendung anzeigen"
3844
 
3845
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:171
3846
  msgctxt "shipments"
3847
  msgid "Endpoint for the \"My account &rarr; View shipment\" page."
3848
  msgstr "Endpunkt für die „Mein Konto &rarr; Sendung“ Seite."
3849
 
3850
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:178
3851
  msgctxt "shipments"
3852
  msgid "Add Return Shipment"
3853
  msgstr "Rücksendung"
3854
 
3855
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:179
3856
  msgctxt "shipments"
3857
  msgid "Endpoint for the \"My account &rarr; Add return shipment\" page."
3858
  msgstr "Endpunkt für die „Mein Konto &rarr; Rücksendung“ Seite."
3859
 
3860
  # @ woocommerce-germanized
3861
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:242
3862
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:377
3863
  #: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:36
3864
  msgctxt "shipments"
3865
  msgid "Reason"
3866
  msgstr "Rücksendegrund"
3867
 
3868
  # @ woocommerce-germanized
3869
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:369
3870
  msgctxt "shipments"
3871
  msgid "Return reasons"
3872
  msgstr "Rücksendegründe"
3873
 
3874
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:376
3875
  msgctxt "shipments"
3876
  msgid "Reason code"
3877
  msgstr "Rücksendegrund (Code)"
3878
 
3879
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:376
3880
  msgctxt "shipments"
3881
  msgid "The reason code is used to identify the reason."
3882
  msgstr ""
3884
  "identifizieren zu können."
3885
 
3886
  # @ woocommerce-germanized
3887
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:377
3888
  msgctxt "shipments"
3889
  msgid "Choose a reason text."
3890
  msgstr "Beschreibung für den Grund."
3891
 
3892
  # @ woocommerce-germanized
3893
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:396
3894
  msgctxt "shipments"
3895
  msgid "+ Add reason"
3896
  msgstr "+ Grund hinzufügen"
3897
 
3898
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:396
3899
  msgctxt "shipments"
3900
  msgid "Remove selected reason(s)"
3901
  msgstr "Ausgewählte Gründe löschen"
3902
 
3903
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:429
3904
  msgctxt "shipments"
3905
  msgid "Available Packaging"
3906
  msgstr "Verfügbare Verpackungen"
3907
 
3908
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:452
3909
  msgctxt "shipments"
3910
  msgid "A description to help you identify the packaging."
3911
  msgstr ""
3912
  "Eine Beschreibung die Ihnen dabei hilft Verpackungen zu identifizieren."
3913
 
3914
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:453
3915
  msgctxt "shipments"
3916
  msgid "Type"
3917
  msgstr "Typ"
3918
 
3919
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:454
3920
  #, php-format
3921
  msgctxt "shipments"
3922
  msgid "Weight (%s)"
3923
  msgstr "Gewicht (%s)"
3924
 
3925
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:454
3926
  msgctxt "shipments"
3927
  msgid "The weight of the packaging."
3928
  msgstr "Das Gewicht der Verpackung."
3929
 
3930
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:455
3931
  #, php-format
3932
  msgctxt "shipments"
3933
  msgid "Dimensions (LxWxH, %s)"
3934
  msgstr "Abmessungen (LxBxH, %s)"
3935
 
3936
  # @ woocommerce-germanized
3937
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:456
3938
  msgctxt "shipments"
3939
  msgid "Max weight (kg)"
3940
  msgstr "Max. Gewicht (kg)"
3941
 
3942
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:456
3943
  msgctxt "shipments"
3944
  msgid ""
3945
  "The maximum weight this packaging can hold. Leave empty to not restrict "
3948
  "Das maximale Gewicht, das diese Verpackung tragen kann. Leer lassen um das "
3949
  "Gewicht nicht zu begrenzen."
3950
 
3951
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:481
3952
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:522
3953
  msgctxt "shipments"
3954
  msgid "Length"
3955
  msgstr "Länge"
3956
 
3957
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:482
3958
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:523
3959
  msgctxt "shipments"
3960
  msgid "Width"
3961
  msgstr "Breite"
3962
 
3963
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:483
3964
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:524
3965
  msgctxt "shipments"
3966
  msgid "Height"
3967
  msgstr "Höhe"
3968
 
3969
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:496
3970
  msgctxt "shipments"
3971
  msgid "+ Add packaging"
3972
  msgstr "+ Verpackung hinzufügen"
3973
 
3974
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:496
3975
  msgctxt "shipments"
3976
  msgid "Remove selected packaging"
3977
  msgstr "Ausgewählte Verpackung löschen"
3978
 
3979
  # @ woocommerce-germanized
3980
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:600
3981
  msgctxt "shipments"
3982
  msgid "Create shipments"
3983
  msgstr "Sendungen erstellen"
3984
 
3985
  # @ woocommerce-germanized
3986
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:715
3987
  msgctxt "shipments"
3988
  msgid "Search shipments"
3989
  msgstr "Sendungen suchen"
3990
 
3991
  # @ woocommerce-germanized
3992
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:749
3993
  msgctxt "shipments"
3994
  msgid "Search returns"
3995
  msgstr "Retouren suchen"
3996
 
3997
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:827
3998
  msgctxt "shipments"
3999
  msgid "Do you really want to delete the shipment?"
4000
  msgstr "Möchten Sie die Sendung wirklich löschen?"
4001
 
4002
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:833
4003
  msgctxt "shipments"
4004
  msgid "Do you really want to delete the label?"
4005
  msgstr "Möchten Sie das Label wirklich löschen?"
4006
 
4007
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:835
4008
  msgctxt "shipments"
4009
  msgid "Please save the shipment before creating a new label"
4010
  msgstr "Bitte speichern Sie die Sendung bevor Sie ein neues Label erstellen"
4011
 
4012
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:885
4013
  msgctxt "shipments"
4014
  msgid ""
4015
  "Do you really want to delete the shipping provider? Some of your existing "
4521
  # @ woocommerce-germanized
4522
  #: woocommerce-germanized-shipments/src/Admin/Settings.php:415
4523
  #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:344
4524
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:1094
4525
  msgctxt "shipments"
4526
  msgid "General"
4527
  msgstr "Allgemein"
4978
  msgid "Invalid packaging."
4979
  msgstr "Verpackung nicht verfügbar."
4980
 
4981
+ #: woocommerce-germanized-shipments/src/DataStores/ShipmentItem.php:200
4982
  msgctxt "shipments"
4983
  msgid "Invalid shipment item."
4984
  msgstr "Ungültige Sendungsposition."
5159
  msgstr "%1$s (%2$s, %3$s)"
5160
 
5161
  #: woocommerce-germanized-shipments/src/ReturnShipment.php:362
5162
+ #: woocommerce-germanized-shipments/src/Shipment.php:1047
5163
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:361
5164
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:425
5165
  #, php-format
5166
  msgctxt "full name"
5167
  msgid "%1$s %2$s"
5293
  "die Paketverfolgungsdaten zum Zeitpunkt des Erhalts dieser E-Mail noch nicht "
5294
  "den neuesten Stand wiedergeben."
5295
 
5296
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:774
5297
  msgctxt "shipments"
5298
  msgid "Choose a title for the shipping provider."
5299
  msgstr "Wählen Sie einen Titel für den Versanddienstleister."
5300
 
5301
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:783
5302
  msgctxt "shipments"
5303
  msgid "Choose a description for the shipping provider."
5304
  msgstr "Wählen Sie eine Beschreibung für den Versanddienstleister."
5305
 
5306
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:795
5307
  msgctxt "shipments"
5308
  msgid "Tracking URL"
5309
  msgstr "Sendungsverfolgung URL"
5310
 
5311
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:796
5312
  #, php-format
5313
  msgctxt "shipments"
5314
  msgid ""
5322
  "einzufügen: %s"
5323
 
5324
  # @ woocommerce-germanized
5325
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:806
5326
  msgctxt "shipments"
5327
  msgid "Tracking description"
5328
  msgstr "Sendungsverfolgung Hinweis"
5329
 
5330
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:807
5331
  #, php-format
5332
  msgctxt "shipments"
5333
  msgid ""
5342
  "dynamische Daten einzufügen: %s"
5343
 
5344
  # @ woocommerce-germanized
5345
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:951
5346
  msgctxt "shipments"
5347
  msgid "Customer returns"
5348
  msgstr "Rücksendungen"
5349
 
5350
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:952
5351
  msgctxt "shipments"
5352
  msgid "Allow customers to submit return requests to shipments."
5353
  msgstr "Erlauben Sie Kunden eine Rücksendung zu einer Sendung zu beantragen."
5354
 
5355
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:952
5356
  #, php-format
5357
  msgctxt "shipments"
5358
  msgid ""
5366
  "Gästen zu erfahren, lesen Sie bitte die %s."
5367
 
5368
  # @ woocommerce-germanized
5369
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:952
5370
  msgctxt "shipments"
5371
  msgid "Return Dashboard"
5372
  msgstr "Retouren-Dashboard"
5373
 
5374
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:952
5375
  msgctxt "shipments"
5376
  msgid "docs"
5377
  msgstr "Dokumentation"
5378
 
5379
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:961
5380
  msgctxt "shipments"
5381
  msgid "Guest returns"
5382
  msgstr "Retouren für Gäste"
5383
 
5384
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:962
5385
  msgctxt "shipments"
5386
  msgid "Allow guests to submit return requests to shipments."
5387
  msgstr "Erlauben Sie Gästen Rücksendeanträge zu Bestellungen zu beantragen."
5388
 
5389
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:962
5390
  #, php-format
5391
  msgctxt "shipments"
5392
  msgid ""
5400
  "Rücksende-Formular für Gäste auf Ihrer Seite zu platzieren."
5401
 
5402
  # @ woocommerce-germanized
5403
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:973
5404
  msgctxt "shipments"
5405
  msgid "Manual confirmation"
5406
  msgstr "Manuelle Bestätigung"
5407
 
5408
  # @ woocommerce-germanized
5409
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:974
5410
  msgctxt "shipments"
5411
  msgid "Return requests need manual confirmation."
5412
  msgstr "Rücksendeanträge benötigen eine manuelle Bestätigung."
5413
 
5414
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:974
5415
  msgctxt "shipments"
5416
  msgid ""
5417
  "By default return request need manual confirmation e.g. a shop manager needs "
5428
  "Mail-Bestätigung samt Retouren-Label."
5429
 
5430
  # @ woocommerce-germanized
5431
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:986
5432
  msgctxt "shipments"
5433
  msgid "Return instructions"
5434
  msgstr "Rücksende-Anweisungen"
5435
 
5436
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:987
5437
  msgctxt "shipments"
5438
  msgid ""
5439
  "Provide your customer with instructions on how to return the shipment after "
5446
  "kann, sollten Sie Ihre Kunden darüber informieren, woher ein Label für die "
5447
  "Rücksendung bezogen werden kann."
5448
 
5449
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:1073
5450
  #, php-format
5451
  msgctxt "shipments"
5452
  msgid ""
5458
  "Einstellungen</a>. Passen Sie diese Einstellungen nur dann an, wenn Sie "
5459
  "explizit Abweichungen speziell für diese Versandmethode konfigurieren wollen."
5460
 
5461
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:1098
5462
  msgctxt "shipments"
5463
  msgid "Return Requests"
5464
  msgstr "Rücksendeanträge"
5465
 
5466
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:1129
5467
  msgctxt "shipments"
5468
  msgid "This shipping provider does not support creating labels."
5469
  msgstr "Dieser Versanddienstleister unterstützt keine Label-Erzeugung."
5832
  msgstr "l"
5833
 
5834
  # @ woocommerce-germanized
5835
+ #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:566
5836
+ #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:576
5837
  #: woocommerce-germanized/includes/wc-gzd-core-functions.php:453
5838
  #: woocommerce-germanized/includes/wc-gzd-template-functions.php:597
5839
  #: woocommerce-germanized/includes/wc-gzd-template-functions.php:605
5841
  msgstr "inkl. MwSt."
5842
 
5843
  # @ woocommerce-germanized
5844
+ #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:566
5845
  msgid "excl. VAT"
5846
  msgstr "exkl. MwSt."
5847
 
5848
  # @ woocommerce-germanized
5849
+ #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:568
5850
  #: woocommerce-germanized/includes/wc-gzd-core-functions.php:453
5851
  #, php-format
5852
  msgid "incl. %s%% VAT"
5853
  msgstr "inkl. %s %% MwSt."
5854
 
5855
  # @ woocommerce-germanized
5856
+ #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:568
5857
  #, php-format
5858
  msgid "excl. %s%% VAT"
5859
  msgstr "exkl. %s %% MwSt."
10955
  "%s ein."
10956
 
10957
  # @ woocommerce-germanized
10958
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:798
10959
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:844
10960
  #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:877
10961
  msgid "a single payment"
11237
  msgstr "ist ungültig"
11238
 
11239
  # @ woocommerce-germanized
11240
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1311
11241
  msgid "Awaiting Direct Debit Payment"
11242
  msgstr "Zahlung per Lastschrift ausstehend"
11243
 
11472
  msgstr "Jetzt kaufen"
11473
 
11474
  #: woocommerce-germanized/src/Autoloader.php:50
11475
+ #: woocommerce-germanized/src/Packages.php:101
11476
  msgid ""
11477
  "Your installation of Germanized is incomplete. If you installed Germanized "
11478
  "from GitHub, please refer to this document to set up your development "
11486
  "environment"
11487
 
11488
  #: woocommerce-germanized/src/Autoloader.php:62
11489
+ #: woocommerce-germanized/src/Packages.php:123
11490
  #, php-format
11491
  msgid ""
11492
  "Your installation of Germanized is incomplete. If you installed Germanized "
11497
  "GitHub installiert haben, %1$sschauen Sie sich bitte dieses Dokument an%2$s "
11498
  "um eine Entwicklungsumgebung aufzusetzen."
11499
 
11500
+ #: woocommerce-germanized/src/Packages.php:99
11501
+ #: woocommerce-germanized/src/Packages.php:114
11502
  #, php-format
11503
  msgid "Missing the Germanized %s package"
11504
  msgstr "Das Germanized %s Paket fehlt"
13057
  "Ihre Installation des Trustbadge Reviews for WooCommerce Plugin ist "
13058
  "unvollständig. Bitte führen Sie %1$s im %2$s Verzeichnis aus."
13059
 
 
13060
  #. Plugin URI of the plugin/theme
13061
  msgid "https://www.vendidero.de/woocommerce-germanized"
13062
  msgstr "https://www.vendidero.de/woocommerce-germanized"
i18n/languages/woocommerce-germanized.pot CHANGED
@@ -1,5 +1,6 @@
1
  # Copyright (C) 2021 vendidero
2
  # This file is distributed under the same license as the Germanized for WooCommerce plugin.
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Germanized for WooCommerce 3.3.4\n"
@@ -9,8621 +10,8494 @@ msgstr ""
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-01-05T11:39:41+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
- "X-Generator: WP-CLI 2.5.0-alpha-33ed4cc\n"
15
-
16
- #. Plugin Name of the plugin
17
- msgid "Germanized Shipments for WooCommerce"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  msgstr ""
19
 
20
- #. Plugin URI of the plugin
21
- msgid "https://github.com/vendidero/woocommerce-germanized-shipments"
 
22
  msgstr ""
23
 
24
- #. Description of the plugin
25
- msgid "The Germanized Shipments integration, installed as a feature plugin for development and testing purposes."
 
26
  msgstr ""
27
 
28
- #. Author of the plugin
29
- msgid "vendidero"
 
30
  msgstr ""
31
 
32
- #. Author URI of the plugin
33
- msgid "https://vendidero.de"
 
34
  msgstr ""
35
 
36
- #: includes/admin/views/html-order-shipment-content.php:32
37
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:32
38
- msgctxt "shipments"
39
- msgid "Content (%s)"
40
  msgstr ""
41
 
42
- #: includes/admin/views/html-order-shipment-content.php:38
43
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:38
44
- msgctxt "shipments"
45
- msgid "Dimensions (%s)"
46
  msgstr ""
47
 
48
- #: includes/admin/views/html-order-shipment-content.php:38
49
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:38
50
- msgctxt "shipments"
51
- msgid "LxWxH in decimal form."
52
  msgstr ""
53
 
54
- #: includes/admin/views/html-order-shipment-content.php:50
55
- #: src/Admin/Settings.php:424
56
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:50
57
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:424
58
- msgctxt "shipments"
59
- msgid "Packaging"
60
  msgstr ""
61
 
62
- #: includes/admin/views/html-order-shipment-content.php:58
63
- #: includes/wc-gzd-shipment-functions.php:1027
64
- #: src/Admin/ReturnTable.php:24
65
- #: src/Admin/Table.php:688
66
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:58
67
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1027
68
- #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:24
69
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:688
70
- msgctxt "shipments"
71
- msgid "Status"
72
  msgstr ""
73
 
74
- #: includes/admin/views/html-order-shipment-content.php:68
75
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:68
76
- msgctxt "shipments"
77
- msgid "Shipping method"
78
  msgstr ""
79
 
80
- #: includes/admin/views/html-order-shipment-content.php:78
81
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:78
82
- msgctxt "shipments"
83
- msgid "Shipping provider"
84
  msgstr ""
85
 
86
- #: includes/admin/views/html-order-shipment-content.php:89
87
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:89
88
- msgctxt "shipments"
89
- msgid "Tracking Number"
90
  msgstr ""
91
 
92
- #: includes/admin/views/html-order-shipment-content.php:155
93
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:155
94
- msgctxt "shipments"
95
- msgid "Add item"
96
  msgstr ""
97
 
98
- #: includes/admin/views/html-order-shipment-content.php:159
99
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:159
100
- msgctxt "shipments"
101
- msgid "Automatically adjust items and quantities based on order item data."
102
  msgstr ""
103
 
104
- #: includes/admin/views/html-order-shipment-content.php:159
105
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:159
106
- msgctxt "shipments"
107
- msgid "Sync items"
108
  msgstr ""
109
 
110
- #: includes/admin/views/html-order-shipment-content.php:179
111
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:179
112
- msgctxt "shipments"
113
- msgid "Add Item"
114
  msgstr ""
115
 
116
- #: includes/admin/views/html-order-shipment-content.php:189
117
- #: includes/admin/views/html-order-shipments.php:45
118
- #: src/Admin/Admin.php:88
119
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:189
120
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:45
121
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:88
122
- msgctxt "shipments"
123
- msgid "Item"
124
  msgstr ""
125
 
126
- #: includes/admin/views/html-order-shipment-content.php:190
127
- #: includes/admin/views/html-order-shipments.php:46
128
- #: src/Admin/Admin.php:93
129
- #: templates/emails/email-shipment-details.php:55
130
- #: templates/myaccount/add-return-shipment.php:37
131
- #: templates/shipment/shipment-details.php:60
132
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:190
133
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:46
134
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:93
135
- #: packages/woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:55
136
- #: packages/woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:37
137
- #: packages/woocommerce-germanized-shipments/templates/shipment/shipment-details.php:60
138
- msgctxt "shipments"
139
- msgid "Quantity"
140
  msgstr ""
141
 
142
- #: includes/admin/views/html-order-shipment-content.php:208
143
- #: includes/admin/views/html-order-shipments.php:55
144
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:208
145
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:55
146
- msgctxt "shipments"
147
- msgid "Add"
148
  msgstr ""
149
 
150
- #: includes/admin/views/html-order-shipment-content.php:232
151
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:232
152
- msgctxt "shipments"
153
- msgid "Send return instructions to your customer via email including return label as attachment (if available)."
154
  msgstr ""
155
 
156
- #: includes/admin/views/html-order-shipment-content.php:232
157
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:232
158
- msgctxt "shipments"
159
- msgid "Resend notification"
160
  msgstr ""
161
 
162
- #: includes/admin/views/html-order-shipment-content.php:232
163
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:232
164
- msgctxt "shipments"
165
- msgid "Notify customer"
166
  msgstr ""
167
 
168
- #: includes/admin/views/html-order-shipment-content.php:234
169
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:234
170
- msgctxt "shipments"
171
- msgid "Confirm the return request to the customer. The customer receives an email notification possibly containing return instructions."
172
  msgstr ""
173
 
174
- #: includes/admin/views/html-order-shipment-content.php:234
175
- #: src/Admin/ReturnTable.php:66
176
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:234
177
- #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:66
178
- msgctxt "shipments"
179
- msgid "Confirm return request"
180
  msgstr ""
181
 
182
- #: includes/admin/views/html-order-shipment-content.php:238
183
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:238
184
- msgctxt "shipments"
185
- msgid "Delete %s"
186
  msgstr ""
187
 
188
- #: includes/admin/views/html-order-shipment-item-count.php:16
189
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-item-count.php:16
190
- msgctxt "shipments"
191
- msgid "%d of %d item"
192
- msgid_plural "%d of %d items"
193
- msgstr[0] ""
194
- msgstr[1] ""
195
-
196
- #: includes/admin/views/html-order-shipment-item.php:28
197
- #: templates/shipment/add-return-shipment-item.php:59
198
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-item.php:28
199
- #: packages/woocommerce-germanized-shipments/templates/shipment/add-return-shipment-item.php:59
200
- msgctxt "shipments return reason"
201
- msgid "None"
202
  msgstr ""
203
 
204
- #: includes/admin/views/html-order-shipment-item.php:41
205
- #: includes/admin/views/html-settings-provider-list.php:26
206
- #: includes/admin/views/label/html-shipment-label.php:35
207
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-item.php:41
208
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:26
209
- #: packages/woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:35
210
- msgctxt "shipments"
211
- msgid "Delete"
212
  msgstr ""
213
 
214
- #: includes/admin/views/html-order-shipment-list.php:22
215
- #: includes/wc-gzd-shipment-functions.php:76
216
- #: src/Admin/Admin.php:75
217
- #: src/Admin/Admin.php:509
218
- #: src/Admin/Admin.php:630
219
- #: src/Admin/Settings.php:80
220
- #: src/Admin/Settings.php:177
221
- #: templates/myaccount/order-shipments.php:36
222
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-list.php:22
223
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:76
224
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:75
225
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:509
226
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:630
227
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:80
228
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:177
229
- #: packages/woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:36
230
- msgctxt "shipments"
231
- msgid "Returns"
232
  msgstr ""
233
 
234
- #: includes/admin/views/html-order-shipment-packaging-select.php:17
235
- #: includes/wc-gzd-packaging-functions.php:52
236
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-packaging-select.php:17
237
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-packaging-functions.php:52
238
- msgctxt "shipments-packaging"
239
- msgid "None"
240
  msgstr ""
241
 
242
- #: includes/admin/views/html-order-shipment-packaging-select.php:27
243
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-packaging-select.php:27
244
- msgctxt "shipments"
245
- msgid "Does not fit"
246
  msgstr ""
247
 
248
- #: includes/admin/views/html-order-shipment.php:16
249
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipment.php:16
250
- msgctxt "shipment admin title"
251
- msgid "%s #%s"
252
  msgstr ""
253
 
254
- #: includes/admin/views/html-order-shipments.php:19
255
- #: includes/wc-gzd-shipment-functions.php:69
256
- #: src/Admin/Admin.php:439
257
- #: src/Admin/Admin.php:508
258
- #: src/Admin/Admin.php:596
259
- #: src/Admin/Admin.php:663
260
- #: templates/myaccount/order-shipments.php:20
261
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:19
262
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:69
263
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:439
264
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:508
265
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:596
266
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:663
267
- #: packages/woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:20
268
- msgctxt "shipments"
269
- msgid "Shipments"
270
  msgstr ""
271
 
272
- #: includes/admin/views/html-order-shipments.php:35
273
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:35
274
- msgctxt "shipments"
275
- msgid "Add Return"
276
  msgstr ""
277
 
278
- #: includes/admin/views/html-order-shipments.php:66
279
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:66
280
- msgctxt "shipments"
281
- msgid "Add shipment"
282
  msgstr ""
283
 
284
- #: includes/admin/views/html-order-shipments.php:70
285
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:70
286
- msgctxt "shipments"
287
- msgid "Add return"
288
  msgstr ""
289
 
290
- #: includes/admin/views/html-order-shipments.php:76
291
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:76
292
- msgctxt "shipments"
293
- msgid "Save"
294
  msgstr ""
295
 
296
- #: includes/admin/views/html-settings-provider-list.php:11
297
- #: src/Admin/ReturnTable.php:22
298
- #: src/Admin/Table.php:686
299
- #: src/ShippingProvider.php:555
300
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:11
301
- #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:22
302
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:686
303
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:555
304
- msgctxt "shipments"
305
- msgid "Title"
306
  msgstr ""
307
 
308
- #: includes/admin/views/html-settings-provider-list.php:12
309
- #: src/Admin/Admin.php:316
310
- #: src/ShippingProvider.php:564
311
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:12
312
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:316
313
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:564
314
- msgctxt "shipments"
315
- msgid "Description"
316
  msgstr ""
317
 
318
- #: includes/admin/views/html-settings-provider-list.php:13
319
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:13
320
- msgctxt "shipments"
321
- msgid "Activated"
322
  msgstr ""
323
 
324
- #: includes/admin/views/html-settings-provider-list.php:23
325
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:23
326
- msgctxt "shipments"
327
- msgid "Edit"
328
  msgstr ""
329
 
330
- #: includes/admin/views/html-settings-provider-list.php:35
331
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:35
332
- msgctxt "shipments"
333
- msgid "Yes"
334
  msgstr ""
335
 
336
- #: includes/admin/views/html-settings-provider-list.php:50
337
- #: includes/admin/views/html-settings-provider-list.php:51
338
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:50
339
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:51
340
- msgctxt "shipments"
341
- msgid "Manage shipping provider"
342
  msgstr ""
343
 
344
- #: includes/admin/views/html-settings-provider-list.php:52
345
- #: includes/admin/settings/class-wc-gzd-settings-tab-shipments.php:69
346
- #: packages/woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:52
347
- msgctxt "shipments"
348
- msgid "Manage"
349
  msgstr ""
350
 
351
- #: includes/admin/views/label/html-shipment-label-backbone.php:13
352
- #: includes/admin/views/label/html-shipment-label.php:39
353
- #: packages/woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label-backbone.php:13
354
- #: packages/woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:39
355
- msgctxt "shipments"
356
- msgid "Create label"
357
- msgstr ""
358
 
359
- #: includes/admin/views/label/html-shipment-label-backbone.php:25
360
- #: packages/woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label-backbone.php:25
361
- msgctxt "shipments"
362
- msgid "Create"
363
  msgstr ""
364
 
365
- #: includes/admin/views/label/html-shipment-label.php:15
366
- #: packages/woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:15
367
- msgctxt "shipments"
368
- msgid "%s Label"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
369
  msgstr ""
370
 
371
- #: includes/admin/views/label/html-shipment-label.php:21
372
- #: packages/woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:21
373
- msgctxt "shipments"
374
- msgid "Download"
375
  msgstr ""
376
 
377
- #: includes/admin/views/label/html-shipment-label.php:39
378
- #: src/Admin/Admin.php:722
379
- #: packages/woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:39
380
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:722
381
- msgctxt "shipments"
382
- msgid "Create new label"
383
  msgstr ""
384
 
385
- #: includes/emails/class-wc-gzd-email-customer-guest-return-shipment-request.php:41
386
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-guest-return-shipment-request.php:41
387
- msgctxt "shipments"
388
- msgid "Order guest return request"
389
  msgstr ""
390
 
391
- #: includes/emails/class-wc-gzd-email-customer-guest-return-shipment-request.php:42
392
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-guest-return-shipment-request.php:42
393
- msgctxt "shipments"
394
- msgid "Order guest return request are sent to the customer after submitting a new return request as a guest."
395
  msgstr ""
396
 
397
- #: includes/emails/class-wc-gzd-email-customer-guest-return-shipment-request.php:66
398
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-guest-return-shipment-request.php:66
399
- msgctxt "shipments"
400
- msgid "Your return request to your order {order_number}"
401
  msgstr ""
402
 
403
- #: includes/emails/class-wc-gzd-email-customer-guest-return-shipment-request.php:76
404
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-guest-return-shipment-request.php:76
405
- msgctxt "shipments"
406
- msgid "Return request to your order: {order_number}"
407
  msgstr ""
408
 
409
- #: includes/emails/class-wc-gzd-email-customer-return-shipment-delivered.php:44
410
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment-delivered.php:44
411
- msgctxt "shipments"
412
- msgid "Order return delivered"
413
  msgstr ""
414
 
415
- #: includes/emails/class-wc-gzd-email-customer-return-shipment-delivered.php:45
416
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment-delivered.php:45
417
- msgctxt "shipments"
418
- msgid "Order return notifications are sent to the customer after a return shipment has been returned (delivered) successfully."
419
  msgstr ""
420
 
421
- #: includes/emails/class-wc-gzd-email-customer-return-shipment-delivered.php:75
422
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment-delivered.php:75
423
- msgctxt "shipments"
424
- msgid "Return to your order {order_number} has been received"
425
  msgstr ""
426
 
427
- #: includes/emails/class-wc-gzd-email-customer-return-shipment-delivered.php:85
428
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment-delivered.php:85
429
- msgctxt "shipments"
430
- msgid "Received return to your order: {order_number}"
431
  msgstr ""
432
 
433
- #: includes/emails/class-wc-gzd-email-customer-return-shipment.php:52
434
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment.php:52
435
- msgctxt "shipments"
436
- msgid "Order return"
437
  msgstr ""
438
 
439
- #: includes/emails/class-wc-gzd-email-customer-return-shipment.php:53
440
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment.php:53
441
- msgctxt "shipments"
442
- msgid "Order return notifications are sent to the customer after a return shipment was marked as processing."
443
  msgstr ""
444
 
445
- #: includes/emails/class-wc-gzd-email-customer-return-shipment.php:83
446
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment.php:83
447
- msgctxt "shipments"
448
- msgid "Return to your order {order_number}"
449
  msgstr ""
450
 
451
- #: includes/emails/class-wc-gzd-email-customer-return-shipment.php:93
452
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment.php:93
453
- msgctxt "shipments"
454
- msgid "Return to your order: {order_number}"
455
  msgstr ""
456
 
457
- #: includes/emails/class-wc-gzd-email-customer-shipment.php:51
458
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:51
459
- msgctxt "shipments"
460
- msgid "Order shipped"
461
  msgstr ""
462
 
463
- #: includes/emails/class-wc-gzd-email-customer-shipment.php:52
464
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:52
465
- msgctxt "shipments"
466
- msgid "Shipment notifications are sent to the customer when a shipment gets shipped."
467
  msgstr ""
468
 
469
- #: includes/emails/class-wc-gzd-email-customer-shipment.php:86
470
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:86
471
- msgctxt "shipments"
472
- msgid "Your {site_title} order #{order_number} has been partially shipped"
473
  msgstr ""
474
 
475
- #: includes/emails/class-wc-gzd-email-customer-shipment.php:88
476
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:88
477
- msgctxt "shipments"
478
- msgid "Your {site_title} order #{order_number} has been shipped"
479
  msgstr ""
480
 
481
- #: includes/emails/class-wc-gzd-email-customer-shipment.php:101
482
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:101
483
- msgctxt "shipments"
484
- msgid "Partial shipment to your order: {order_number}"
485
  msgstr ""
486
 
487
- #: includes/emails/class-wc-gzd-email-customer-shipment.php:103
488
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:103
489
- msgctxt "shipments"
490
- msgid "Shipment to your order: {order_number}"
491
  msgstr ""
492
 
493
- #. translators: %s: list of placeholders
494
- #: includes/emails/class-wc-gzd-email-customer-shipment.php:307
495
- #: includes/emails/class-wc-gzd-email-customer-shipment.php:321
496
- #: includes/emails/class-wc-gzd-email-customer-shipment.php:330
497
- #: includes/emails/class-wc-gzd-email-customer-shipment.php:339
498
- #: includes/emails/class-wc-gzd-email-customer-shipment.php:348
499
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:307
500
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:321
501
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:330
502
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:339
503
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:348
504
- msgctxt "shipments"
505
- msgid "Available placeholders: %s"
506
  msgstr ""
507
 
508
- #: includes/emails/class-wc-gzd-email-customer-shipment.php:311
509
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:311
510
- msgctxt "shipments"
511
- msgid "Enable/Disable"
512
  msgstr ""
513
 
514
- #: includes/emails/class-wc-gzd-email-customer-shipment.php:313
515
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:313
516
- msgctxt "shipments"
517
- msgid "Enable this email notification"
518
  msgstr ""
519
 
520
- #: includes/emails/class-wc-gzd-email-customer-shipment.php:317
521
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:317
522
- msgctxt "shipments"
523
- msgid "Full shipment subject"
524
  msgstr ""
525
 
526
- #: includes/emails/class-wc-gzd-email-customer-shipment.php:326
527
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:326
528
- msgctxt "shipments"
529
- msgid "Partial shipment subject"
530
  msgstr ""
531
 
532
- #: includes/emails/class-wc-gzd-email-customer-shipment.php:335
533
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:335
534
- msgctxt "shipments"
535
- msgid "Full shipment email heading"
536
  msgstr ""
537
 
538
- #: includes/emails/class-wc-gzd-email-customer-shipment.php:344
539
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:344
540
- msgctxt "shipments"
541
- msgid "Partial shipment email heading"
542
  msgstr ""
543
 
544
- #: includes/emails/class-wc-gzd-email-customer-shipment.php:353
545
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:353
546
- msgctxt "shipments"
547
- msgid "Additional content"
548
  msgstr ""
549
 
550
- #: includes/emails/class-wc-gzd-email-customer-shipment.php:354
551
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:354
552
- msgctxt "shipments"
553
- msgid "Text to appear below the main email content."
554
  msgstr ""
555
 
556
- #: includes/emails/class-wc-gzd-email-customer-shipment.php:356
557
- #: includes/wc-gzd-shipment-functions.php:959
558
- #: includes/wc-gzd-shipment-functions.php:989
559
- #: templates/shipment/shipment-details-address.php:28
560
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:356
561
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:959
562
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:989
563
- #: packages/woocommerce-germanized-shipments/templates/shipment/shipment-details-address.php:28
564
- msgctxt "shipments"
565
- msgid "N/A"
566
  msgstr ""
567
 
568
- #: includes/emails/class-wc-gzd-email-customer-shipment.php:362
569
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:362
570
- msgctxt "shipments"
571
- msgid "Email type"
572
  msgstr ""
573
 
574
- #: includes/emails/class-wc-gzd-email-customer-shipment.php:364
575
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:364
576
- msgctxt "shipments"
577
- msgid "Choose which format of email to send."
578
  msgstr ""
579
 
580
- #: includes/emails/class-wc-gzd-email-new-return-shipment-request.php:42
581
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:42
582
- msgctxt "shipments"
583
- msgid "New order return request"
584
  msgstr ""
585
 
586
- #: includes/emails/class-wc-gzd-email-new-return-shipment-request.php:43
587
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:43
588
- msgctxt "shipments"
589
- msgid "New order return request emails are sent to chosen recipient(s) when a new return is requested."
590
  msgstr ""
591
 
592
- #: includes/emails/class-wc-gzd-email-new-return-shipment-request.php:73
593
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:73
594
- msgctxt "shipments"
595
- msgid "[{site_title}]: New return request to #{order_number}"
596
  msgstr ""
597
 
598
- #: includes/emails/class-wc-gzd-email-new-return-shipment-request.php:83
599
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:83
600
- msgctxt "shipments"
601
- msgid "New return request to: #{order_number}"
 
602
  msgstr ""
603
 
604
- #: includes/emails/class-wc-gzd-email-new-return-shipment-request.php:202
605
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:202
606
- msgctxt "shipments"
607
- msgid "Recipient(s)"
608
  msgstr ""
609
 
610
- #. translators: %s: WP admin email
611
- #: includes/emails/class-wc-gzd-email-new-return-shipment-request.php:205
612
- #: packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:205
613
- msgctxt "shipments"
614
- msgid "Enter recipients (comma separated) for this email. Defaults to %s."
 
615
  msgstr ""
616
 
617
- #: includes/wc-gzd-packaging-functions.php:24
618
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-packaging-functions.php:24
619
- msgctxt "shipments"
620
- msgid "Cardboard"
621
  msgstr ""
622
 
623
- #: includes/wc-gzd-packaging-functions.php:25
624
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-packaging-functions.php:25
625
- msgctxt "shipments"
626
- msgid "Letter"
627
  msgstr ""
628
 
629
- #: includes/wc-gzd-shipment-functions.php:68
630
- #: includes/wc-gzd-shipment-functions.php:1025
631
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:68
632
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1025
633
- msgctxt "shipments"
634
- msgid "Shipment"
635
  msgstr ""
636
 
637
- #: includes/wc-gzd-shipment-functions.php:75
638
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:75
639
- msgctxt "shipments"
640
- msgid "Return"
641
  msgstr ""
642
 
643
- #: includes/wc-gzd-shipment-functions.php:102
644
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:102
645
- msgctxt "shipments"
646
- msgid "Not shipped"
647
  msgstr ""
648
 
649
- #: includes/wc-gzd-shipment-functions.php:103
650
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:103
651
- msgctxt "shipments"
652
- msgid "Partially shipped"
653
  msgstr ""
654
 
655
- #: includes/wc-gzd-shipment-functions.php:104
656
- #: includes/wc-gzd-shipment-functions.php:321
657
- #: src/Admin/Table.php:854
658
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:104
659
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:321
660
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:854
661
- msgctxt "shipments"
662
- msgid "Shipped"
663
  msgstr ""
664
 
665
- #: includes/wc-gzd-shipment-functions.php:121
666
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:121
667
- msgctxt "shipments"
668
- msgid "Open"
669
  msgstr ""
670
 
671
- #: includes/wc-gzd-shipment-functions.php:122
672
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:122
673
- msgctxt "shipments"
674
- msgid "Partially returned"
675
  msgstr ""
676
 
677
- #: includes/wc-gzd-shipment-functions.php:123
678
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:123
679
- msgctxt "shipments"
680
- msgid "Returned"
681
  msgstr ""
682
 
683
- #: includes/wc-gzd-shipment-functions.php:319
684
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:319
685
- msgctxt "shipments"
686
- msgid "Draft"
687
  msgstr ""
688
 
689
- #: includes/wc-gzd-shipment-functions.php:320
690
- #: src/Admin/Table.php:846
691
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:320
692
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:846
693
- msgctxt "shipments"
694
- msgid "Processing"
695
  msgstr ""
696
 
697
- #: includes/wc-gzd-shipment-functions.php:322
698
- #: src/Admin/ReturnTable.php:50
699
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:322
700
- #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:50
701
- msgctxt "shipments"
702
- msgid "Delivered"
703
  msgstr ""
704
 
705
- #: includes/wc-gzd-shipment-functions.php:323
706
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:323
707
- msgctxt "shipments"
708
- msgid "Requested"
709
  msgstr ""
710
 
711
- #: includes/wc-gzd-shipment-functions.php:372
712
- #: includes/wc-gzd-shipments-template-functions.php:81
713
- #: includes/wc-gzd-shipments-template-functions.php:135
714
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:372
715
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:81
716
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:135
717
- msgctxt "shipments"
718
- msgid "Invalid order."
719
  msgstr ""
720
 
721
- #: includes/wc-gzd-shipment-functions.php:376
722
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:376
723
- msgctxt "shipments"
724
- msgid "This order is already fully returned."
725
  msgstr ""
726
 
727
- #: includes/wc-gzd-shipment-functions.php:387
728
- #: includes/wc-gzd-shipment-functions.php:428
729
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:387
730
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:428
731
- msgctxt "shipments"
732
- msgid "Error while creating the shipment instance"
733
  msgstr ""
734
 
735
- #: includes/wc-gzd-shipment-functions.php:413
736
- #: includes/wc-gzd-shipment-functions.php:417
737
- #: src/ReturnShipment.php:420
738
- #: src/ReturnShipment.php:479
739
- #: src/SimpleShipment.php:118
740
- #: src/SimpleShipment.php:214
741
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:413
742
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:417
743
- #: packages/woocommerce-germanized-shipments/src/ReturnShipment.php:420
744
- #: packages/woocommerce-germanized-shipments/src/ReturnShipment.php:479
745
- #: packages/woocommerce-germanized-shipments/src/SimpleShipment.php:118
746
- #: packages/woocommerce-germanized-shipments/src/SimpleShipment.php:214
747
- msgctxt "shipments"
748
- msgid "Invalid shipment order"
749
  msgstr ""
750
 
751
- #: includes/wc-gzd-shipment-functions.php:447
752
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:447
753
- msgctxt "shipments"
754
- msgid "Invalid order item"
755
  msgstr ""
756
 
757
- #: includes/wc-gzd-shipment-functions.php:569
758
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:569
759
- msgctxt "shipments"
760
- msgid "Invalid shipment item"
761
  msgstr ""
762
 
763
- #: includes/wc-gzd-shipment-functions.php:642
764
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:642
765
- msgctxt "shipments"
766
  msgid "None"
767
  msgstr ""
768
 
769
- #: includes/wc-gzd-shipment-functions.php:715
770
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:715
771
- msgctxt "shipments"
772
- msgid "Error while uploading file."
773
  msgstr ""
774
 
775
- #: includes/wc-gzd-shipment-functions.php:1026
776
- #: src/Admin/ReturnTable.php:23
777
- #: src/Admin/Table.php:687
778
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1026
779
- #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:23
780
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:687
781
- msgctxt "shipments"
782
- msgid "Date"
783
  msgstr ""
784
 
785
- #: includes/wc-gzd-shipment-functions.php:1028
786
- #: templates/shipment/shipment-details-tracking.php:23
787
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1028
788
- #: packages/woocommerce-germanized-shipments/templates/shipment/shipment-details-tracking.php:23
789
- msgctxt "shipments"
790
- msgid "Tracking"
791
  msgstr ""
792
 
793
- #: includes/wc-gzd-shipment-functions.php:1029
794
- #: src/Admin/Admin.php:98
795
- #: src/Admin/ReturnTable.php:30
796
- #: src/Admin/Table.php:694
797
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1029
798
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:98
799
- #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:30
800
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:694
801
- msgctxt "shipments"
802
- msgid "Actions"
803
  msgstr ""
804
 
805
- #: includes/wc-gzd-shipment-functions.php:1265
806
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1265
807
- msgctxt "shipments"
808
- msgid "View"
809
  msgstr ""
810
 
811
- #: includes/wc-gzd-shipment-functions.php:1272
812
- #: src/Admin/Table.php:865
813
- #: src/Ajax.php:337
814
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1272
815
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:865
816
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:337
817
- msgctxt "shipments"
818
- msgid "Download label"
819
  msgstr ""
820
 
821
- #: includes/wc-gzd-shipments-template-functions.php:81
822
- #: includes/wc-gzd-shipments-template-functions.php:115
823
- #: includes/wc-gzd-shipments-template-functions.php:135
824
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:81
825
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:115
826
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:135
827
- msgctxt "shipments"
828
- msgid "My account"
829
  msgstr ""
830
 
831
- #: includes/wc-gzd-shipments-template-functions.php:115
832
- #: src/DataStores/Shipment.php:354
833
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:115
834
- #: packages/woocommerce-germanized-shipments/src/DataStores/Shipment.php:354
835
- msgctxt "shipments"
836
- msgid "Invalid shipment."
837
  msgstr ""
838
 
839
- #: includes/wc-gzd-shipments-template-functions.php:140
840
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:140
841
- msgctxt "shipments"
842
- msgid "Currently you cannot add new return requests to that order. If you have questions regarding the return of that order please contact us for further information."
843
  msgstr ""
844
 
845
- #: includes/wc-gzd-shipments-template-functions.php:140
846
- #: packages/woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:140
847
- msgctxt "shipments"
848
- msgid "View order"
849
  msgstr ""
850
 
851
- #: src/Admin/Admin.php:106
852
- #: src/Admin/Admin.php:241
853
- #: templates/myaccount/add-return-shipment.php:36
854
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:106
855
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:241
856
- #: packages/woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:36
857
- msgctxt "shipments"
858
- msgid "Reason"
859
  msgstr ""
860
 
861
- #: src/Admin/Admin.php:233
862
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:233
863
- msgctxt "shipments"
864
- msgid "Return reasons"
865
  msgstr ""
866
 
867
- #: src/Admin/Admin.php:240
868
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:240
869
- msgctxt "shipments"
870
- msgid "Reason code"
871
  msgstr ""
872
 
873
- #: src/Admin/Admin.php:240
874
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:240
875
- msgctxt "shipments"
876
- msgid "The reason code is used to identify the reason."
877
  msgstr ""
878
 
879
- #: src/Admin/Admin.php:241
880
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:241
881
- msgctxt "shipments"
882
- msgid "Choose a reason text."
883
  msgstr ""
884
 
885
- #: src/Admin/Admin.php:260
886
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:260
887
- msgctxt "shipments"
888
- msgid "+ Add reason"
889
  msgstr ""
890
 
891
- #: src/Admin/Admin.php:260
892
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:260
893
- msgctxt "shipments"
894
- msgid "Remove selected reason(s)"
895
  msgstr ""
896
 
897
- #: src/Admin/Admin.php:293
898
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:293
899
- msgctxt "shipments"
900
- msgid "Available Packaging"
901
  msgstr ""
902
 
903
- #: src/Admin/Admin.php:316
904
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:316
905
- msgctxt "shipments"
906
- msgid "A description to help you identify the packaging."
907
  msgstr ""
908
 
909
- #: src/Admin/Admin.php:317
910
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:317
911
- msgctxt "shipments"
912
- msgid "Type"
913
  msgstr ""
914
 
915
- #: src/Admin/Admin.php:318
916
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:318
917
- msgctxt "shipments"
918
- msgid "Weight (%s)"
919
  msgstr ""
920
 
921
- #: src/Admin/Admin.php:318
922
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:318
923
- msgctxt "shipments"
924
- msgid "The weight of the packaging."
925
  msgstr ""
926
 
927
- #: src/Admin/Admin.php:319
928
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:319
929
- msgctxt "shipments"
930
- msgid "Dimensions (LxWxH, %s)"
931
  msgstr ""
932
 
933
- #: src/Admin/Admin.php:320
934
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:320
935
- msgctxt "shipments"
936
- msgid "Max weight (kg)"
937
  msgstr ""
938
 
939
- #: src/Admin/Admin.php:320
940
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:320
941
- msgctxt "shipments"
942
- msgid "The maximum weight this packaging can hold. Leave empty to not restrict maximum weight."
943
  msgstr ""
944
 
945
- #: src/Admin/Admin.php:345
946
- #: src/Admin/Admin.php:386
947
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:345
948
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:386
949
- msgctxt "shipments"
950
- msgid "Length"
951
  msgstr ""
952
 
953
- #: src/Admin/Admin.php:346
954
- #: src/Admin/Admin.php:387
955
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:346
956
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:387
957
- msgctxt "shipments"
958
- msgid "Width"
959
  msgstr ""
960
 
961
- #: src/Admin/Admin.php:347
962
- #: src/Admin/Admin.php:388
963
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:347
964
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:388
965
- msgctxt "shipments"
966
- msgid "Height"
967
  msgstr ""
968
 
969
- #: src/Admin/Admin.php:360
970
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:360
971
- msgctxt "shipments"
972
- msgid "+ Add packaging"
973
  msgstr ""
974
 
975
- #: src/Admin/Admin.php:360
976
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:360
977
- msgctxt "shipments"
978
- msgid "Remove selected packaging"
979
  msgstr ""
980
 
981
- #: src/Admin/Admin.php:493
982
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:493
983
- msgctxt "shipments"
984
- msgid "Create shipments"
985
  msgstr ""
986
 
987
- #: src/Admin/Admin.php:608
988
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:608
989
- msgctxt "shipments"
990
- msgid "Search shipments"
991
  msgstr ""
992
 
993
- #: src/Admin/Admin.php:642
994
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:642
995
- msgctxt "shipments"
996
- msgid "Search returns"
997
  msgstr ""
998
 
999
- #: src/Admin/Admin.php:715
1000
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:715
1001
- msgctxt "shipments"
1002
- msgid "Do you really want to delete the shipment?"
1003
  msgstr ""
1004
 
1005
- #: src/Admin/Admin.php:721
1006
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:721
1007
- msgctxt "shipments"
1008
- msgid "Do you really want to delete the label?"
1009
  msgstr ""
1010
 
1011
- #: src/Admin/Admin.php:723
1012
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:723
1013
- msgctxt "shipments"
1014
- msgid "Please save the shipment before creating a new label"
1015
  msgstr ""
1016
 
1017
- #: src/Admin/Admin.php:773
1018
- #: packages/woocommerce-germanized-shipments/src/Admin/Admin.php:773
1019
- msgctxt "shipments"
1020
- msgid "Do you really want to delete the shipping provider? Some of your existing shipments might be linked to that provider and might need adjustments."
1021
  msgstr ""
1022
 
1023
- #: src/Admin/BulkActionHandler.php:80
1024
- #: packages/woocommerce-germanized-shipments/src/Admin/BulkActionHandler.php:80
1025
- msgctxt "shipments"
1026
- msgid "Successfully processed shipments."
1027
  msgstr ""
1028
 
1029
- #: src/Admin/BulkLabel.php:30
1030
- #: packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php:30
1031
- msgctxt "shipments"
1032
- msgid "Generating labels..."
1033
  msgstr ""
1034
 
1035
- #: src/Admin/BulkLabel.php:83
1036
- #: packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php:83
1037
- msgctxt "shipments"
1038
- msgid "Download labels"
1039
  msgstr ""
1040
 
1041
- #: src/Admin/BulkLabel.php:93
1042
- #: packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php:93
1043
- msgctxt "shipments"
1044
- msgid "The chosen shipments were not suitable for automatic label creation. Please check the shipping provider option of the corresponding shipments."
1045
  msgstr ""
1046
 
1047
- #: src/Admin/BulkLabel.php:95
1048
- #: packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php:95
1049
- msgctxt "shipments"
1050
- msgid "Successfully generated labels. %s"
1051
  msgstr ""
1052
 
1053
- #: src/Admin/BulkLabel.php:103
1054
- #: packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php:103
1055
- msgctxt "shipments"
1056
- msgid "Labels partially generated. %s"
1057
  msgstr ""
1058
 
1059
- #: src/Admin/BulkLabel.php:143
1060
- #: packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php:143
1061
- msgctxt "shipments"
1062
- msgid "Error while creating label for %s: %s"
1063
  msgstr ""
1064
 
1065
- #: src/Admin/BulkLabel.php:143
1066
- #: packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php:143
1067
- msgctxt "shipments"
1068
- msgid "shipment #%d"
1069
  msgstr ""
1070
 
1071
- #: src/Admin/ReturnTable.php:25
1072
- #: src/Admin/Table.php:689
1073
- #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:25
1074
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:689
1075
- msgctxt "shipments"
1076
- msgid "Items"
1077
  msgstr ""
1078
 
1079
- #: src/Admin/ReturnTable.php:26
1080
- #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:26
1081
- msgctxt "shipments"
1082
- msgid "Sender"
1083
  msgstr ""
1084
 
1085
- #: src/Admin/ReturnTable.php:27
1086
- #: src/Admin/Table.php:691
1087
- #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:27
1088
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:691
1089
- msgctxt "shipments"
1090
- msgid "Weight"
1091
  msgstr ""
1092
 
1093
- #: src/Admin/ReturnTable.php:28
1094
- #: src/Admin/Table.php:692
1095
- #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:28
1096
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:692
1097
- msgctxt "shipments"
1098
- msgid "Dimensions"
1099
  msgstr ""
1100
 
1101
- #: src/Admin/ReturnTable.php:29
1102
- #: src/Admin/Table.php:693
1103
- #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:29
1104
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:693
1105
- msgctxt "shipments"
1106
- msgid "Order"
1107
  msgstr ""
1108
 
1109
- #: src/Admin/ReturnTable.php:58
1110
- #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:58
1111
- msgctxt "shipments"
1112
- msgid "Send notification to customer"
1113
  msgstr ""
1114
 
1115
- #: src/Admin/ReturnTable.php:79
1116
- #: packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php:79
1117
- msgctxt "shipments"
1118
- msgid "Confirm open return requests"
 
1119
  msgstr ""
1120
 
1121
- #: src/Admin/Settings.php:38
1122
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:38
1123
- msgctxt "shipments"
1124
- msgid "Manage shipments"
1125
  msgstr ""
1126
 
1127
- #: src/Admin/Settings.php:39
1128
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:39
1129
- msgctxt "shipments"
1130
- msgid "To view all your existing shipments in a list you might follow this link or click on the shipments link within the WooCommerce sub-menu."
1131
  msgstr ""
1132
 
1133
- #: src/Admin/Settings.php:52
1134
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:52
1135
- msgctxt "shipments"
1136
- msgid "E-Mail Notification"
1137
  msgstr ""
1138
 
1139
- #: src/Admin/Settings.php:53
1140
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:53
1141
- msgctxt "shipments"
1142
- msgid "By enabling this option customers receive an email notification as soon as a shipment is marked as shipped."
1143
  msgstr ""
1144
 
1145
- #: src/Admin/Settings.php:66
1146
- #: src/Admin/Settings.php:122
1147
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:66
1148
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:122
1149
- msgctxt "shipments"
1150
- msgid "Automation"
1151
  msgstr ""
1152
 
1153
- #: src/Admin/Settings.php:67
1154
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:67
1155
- msgctxt "shipments"
1156
- msgid "Decide whether you want to automatically create shipments to orders reaching a specific status. You can always adjust your shipments by manually editing the shipment within the edit order screen."
 
 
1157
  msgstr ""
1158
 
1159
- #: src/Admin/Settings.php:81
1160
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:81
1161
- msgctxt "shipments"
1162
- msgid "Germanized can help you to minimize manual work while handling customer returns. Learn more about returns within our %s."
1163
  msgstr ""
1164
 
1165
- #: src/Admin/Settings.php:81
1166
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:81
1167
- msgctxt "shipments"
1168
- msgid "documentation"
1169
  msgstr ""
1170
 
1171
- #: src/Admin/Settings.php:103
1172
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:103
1173
- msgctxt "shipments"
1174
- msgid "Notify"
1175
  msgstr ""
1176
 
1177
- #: src/Admin/Settings.php:104
1178
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:104
1179
- msgctxt "shipments"
1180
- msgid "Notify customers about new shipments."
1181
  msgstr ""
1182
 
1183
- #: src/Admin/Settings.php:104
1184
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:104
1185
- msgctxt "shipments"
1186
- msgid "Notify customers by email as soon as a shipment is marked as shipped. %s the notification email."
1187
  msgstr ""
1188
 
1189
- #: src/Admin/Settings.php:104
1190
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:104
1191
- msgctxt "shipments notification"
1192
- msgid "Manage"
1193
  msgstr ""
1194
 
1195
- #: src/Admin/Settings.php:111
1196
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:111
1197
- msgctxt "shipments"
1198
- msgid "Default provider"
1199
  msgstr ""
1200
 
1201
- #: src/Admin/Settings.php:112
1202
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:112
1203
- msgctxt "shipments"
1204
- msgid "Select a default shipping provider which will be selected by default in case no provider could be determined automatically."
1205
  msgstr ""
1206
 
1207
- #: src/Admin/Settings.php:125
1208
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:125
1209
- msgctxt "shipments"
1210
- msgid "Enable"
1211
  msgstr ""
1212
 
1213
- #: src/Admin/Settings.php:126
1214
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:126
1215
- msgctxt "shipments"
1216
- msgid "Automatically create shipments for orders."
1217
  msgstr ""
1218
 
1219
- #: src/Admin/Settings.php:133
1220
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:133
1221
- msgctxt "shipments"
1222
- msgid "Order statuses"
1223
  msgstr ""
1224
 
1225
- #: src/Admin/Settings.php:134
1226
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:134
1227
- msgctxt "shipments"
1228
- msgid "Create shipments as soon as the order reaches one of the following status(es)."
 
 
1229
  msgstr ""
1230
 
1231
- #: src/Admin/Settings.php:142
1232
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:142
1233
- msgctxt "shipments"
1234
- msgid "On new order creation"
1235
  msgstr ""
1236
 
1237
- #: src/Admin/Settings.php:147
1238
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:147
1239
- msgctxt "shipments"
1240
- msgid "Default status"
1241
  msgstr ""
1242
 
1243
- #: src/Admin/Settings.php:148
1244
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:148
1245
- msgctxt "shipments"
1246
- msgid "Choose a default status for the automatically created shipment."
1247
  msgstr ""
1248
 
1249
- #: src/Admin/Settings.php:160
1250
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:160
1251
- msgctxt "shipments"
1252
- msgid "Update status"
1253
  msgstr ""
1254
 
1255
- #: src/Admin/Settings.php:161
1256
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:161
1257
- msgctxt "shipments"
1258
- msgid "Mark order as completed after order is fully shipped."
1259
  msgstr ""
1260
 
1261
- #: src/Admin/Settings.php:161
1262
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:161
1263
- msgctxt "shipments"
1264
- msgid "This option will automatically update the order status to completed as soon as all required shipments have been marked as shipped."
1265
  msgstr ""
1266
 
1267
- #: src/Admin/Settings.php:168
1268
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:168
1269
- msgctxt "shipments"
1270
- msgid "Mark as shipped"
1271
  msgstr ""
1272
 
1273
- #: src/Admin/Settings.php:169
1274
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:169
1275
- msgctxt "shipments"
1276
- msgid "Mark shipments as shipped after order completion."
1277
  msgstr ""
1278
 
1279
- #: src/Admin/Settings.php:169
1280
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:169
1281
- msgctxt "shipments"
1282
- msgid "This option will automatically update contained shipments to shipped (if possible, e.g. not yet delivered) as soon as the order was marked as completed."
1283
  msgstr ""
1284
 
1285
- #: src/Admin/Settings.php:177
1286
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:177
1287
- msgctxt "shipments"
1288
- msgid "Returns can be added manually by the shop manager or by the customer. Decide what suits you best by turning customer-added returns on or off in your %s."
1289
  msgstr ""
1290
 
1291
- #: src/Admin/Settings.php:177
1292
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:177
1293
- msgctxt "shipments"
1294
- msgid "shipping provider settings"
1295
  msgstr ""
1296
 
1297
- #: src/Admin/Settings.php:184
1298
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:184
1299
- msgctxt "shipments"
1300
- msgid "Days to return"
1301
  msgstr ""
1302
 
1303
- #: src/Admin/Settings.php:185
1304
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:185
1305
- msgctxt "shipments"
1306
- msgid "In case one of your %s supports returns added by customers you might want to limit the number of days a customer is allowed to add returns to an order. The days are counted starting with the date the order was shipped, completed or created (by checking for existance in this order)."
1307
  msgstr ""
1308
 
1309
- #: src/Admin/Settings.php:185
1310
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:185
1311
- msgctxt "shipments"
1312
- msgid "shipping providers"
1313
  msgstr ""
1314
 
1315
- #: src/Admin/Settings.php:194
1316
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:194
1317
- msgctxt "shipments"
1318
- msgid "Return Address"
1319
  msgstr ""
1320
 
1321
- #: src/Admin/Settings.php:197
1322
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:197
1323
- msgctxt "shipments"
1324
- msgid "First Name"
1325
  msgstr ""
1326
 
1327
- #: src/Admin/Settings.php:204
1328
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:204
1329
- msgctxt "shipments"
1330
- msgid "Last Name"
1331
  msgstr ""
1332
 
1333
- #: src/Admin/Settings.php:211
1334
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:211
1335
- msgctxt "shipments"
1336
- msgid "Company"
1337
  msgstr ""
1338
 
1339
- #: src/Admin/Settings.php:218
1340
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:218
1341
- msgctxt "shipments"
1342
- msgid "Address 1"
1343
  msgstr ""
1344
 
1345
- #: src/Admin/Settings.php:225
1346
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:225
1347
- msgctxt "shipments"
1348
- msgid "Address 2"
1349
  msgstr ""
1350
 
1351
- #: src/Admin/Settings.php:232
1352
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:232
1353
- msgctxt "shipments"
1354
- msgid "City"
1355
  msgstr ""
1356
 
1357
- #: src/Admin/Settings.php:239
1358
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:239
1359
- msgctxt "shipments"
1360
- msgid "Country / State"
1361
  msgstr ""
1362
 
1363
- #: src/Admin/Settings.php:247
1364
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:247
1365
- msgctxt "shipments"
1366
- msgid "Postcode"
1367
  msgstr ""
1368
 
1369
- #: src/Admin/Settings.php:255
1370
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:255
1371
- msgctxt "shipments"
1372
- msgid "Customer Account"
1373
  msgstr ""
1374
 
1375
- #: src/Admin/Settings.php:258
1376
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:258
1377
- msgctxt "shipments"
1378
- msgid "List"
1379
  msgstr ""
1380
 
1381
- #: src/Admin/Settings.php:259
1382
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:259
1383
- msgctxt "shipments"
1384
- msgid "List shipments on customer account order screen."
1385
  msgstr ""
1386
 
1387
- #: src/Admin/Settings.php:280
1388
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:280
1389
- msgctxt "shipments"
1390
- msgid "Default packaging"
1391
  msgstr ""
1392
 
1393
- #: src/Admin/Settings.php:281
1394
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:281
1395
- msgctxt "shipments"
1396
- msgid "Choose a packaging which serves as fallback or default in case no suitable packaging could be matched for a certain shipment."
1397
  msgstr ""
1398
 
1399
- #: src/Admin/Settings.php:379
1400
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:379
1401
- msgctxt "shipments"
1402
- msgid "New provider"
1403
  msgstr ""
1404
 
1405
- #: src/Admin/Settings.php:389
1406
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:389
1407
- msgctxt "shipments"
1408
- msgid "Additional settings"
1409
  msgstr ""
1410
 
1411
- #: src/Admin/Settings.php:415
1412
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:415
1413
- msgctxt "shipments"
1414
- msgid "Add provider"
1415
  msgstr ""
1416
 
1417
- #: src/Admin/Settings.php:423
1418
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:423
1419
- msgctxt "shipments"
1420
- msgid "General"
1421
  msgstr ""
1422
 
1423
- #: src/Admin/Settings.php:425
1424
- #: src/ShippingProviderMethod.php:56
1425
- #: packages/woocommerce-germanized-shipments/src/Admin/Settings.php:425
1426
- #: packages/woocommerce-germanized-shipments/src/ShippingProviderMethod.php:56
1427
- msgctxt "shipments"
1428
- msgid "Shipping Provider"
1429
  msgstr ""
1430
 
1431
- #: src/Admin/Table.php:192
1432
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:192
1433
- msgctxt "shipments"
1434
- msgid "%d shipment deleted."
1435
- msgid_plural "%d shipments deleted."
1436
- msgstr[0] ""
1437
- msgstr[1] ""
1438
 
1439
- #: src/Admin/Table.php:202
1440
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:202
1441
- msgctxt "shipments"
1442
- msgid "%d shipment status changed."
1443
- msgid_plural "%d shipment statuses changed."
1444
- msgstr[0] ""
1445
- msgstr[1] ""
1446
 
1447
- #: src/Admin/Table.php:371
1448
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:371
1449
- msgctxt "shipments"
1450
- msgid "No shipments found"
1451
  msgstr ""
1452
 
1453
- #: src/Admin/Table.php:410
1454
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:410
1455
- msgctxt "shipments"
1456
- msgid "All <span class=\"count\">(%s)</span>"
1457
- msgid_plural "All <span class=\"count\">(%s)</span>"
1458
- msgstr[0] ""
1459
- msgstr[1] ""
1460
 
1461
- #: src/Admin/Table.php:526
1462
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:526
1463
- msgctxt "shipments"
1464
- msgid "Filter by date"
 
1465
  msgstr ""
1466
 
1467
- #: src/Admin/Table.php:528
1468
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:528
1469
- msgctxt "shipments"
1470
- msgid "All dates"
1471
  msgstr ""
1472
 
1473
- #. translators: 1: month name, 2: 4-digit year
1474
- #: src/Admin/Table.php:543
1475
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:543
1476
- msgid "%1$s %2$d"
1477
  msgstr ""
1478
 
1479
- #: src/Admin/Table.php:564
1480
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:564
1481
- msgctxt "shipments"
1482
- msgid "Processing bulk actions..."
 
1483
  msgstr ""
1484
 
1485
- #: src/Admin/Table.php:648
1486
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:648
1487
- msgctxt "shipments"
1488
- msgid "Filter"
1489
  msgstr ""
1490
 
1491
- #: src/Admin/Table.php:664
1492
- #: src/Ajax.php:816
1493
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:664
1494
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:816
1495
- msgctxt "shipments"
1496
- msgid "Order #%s"
1497
  msgstr ""
1498
 
1499
- #: src/Admin/Table.php:669
1500
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:669
1501
- msgctxt "shipments"
1502
- msgid "Filter by order"
1503
  msgstr ""
1504
 
1505
- #: src/Admin/Table.php:690
1506
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:690
1507
- msgctxt "shipments"
1508
- msgid "Address"
1509
  msgstr ""
1510
 
1511
- #: src/Admin/Table.php:785
1512
- #: templates/myaccount/shipments.php:68
1513
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:785
1514
- #: packages/woocommerce-germanized-shipments/templates/myaccount/shipments.php:68
1515
- msgctxt "shipment title"
1516
- msgid "%s #%s"
1517
  msgstr ""
1518
 
1519
- #: src/Admin/Table.php:798
1520
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:798
1521
- msgctxt "shipments"
1522
- msgid "via %s"
1523
  msgstr ""
1524
 
1525
- #: src/Admin/Table.php:874
1526
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:874
1527
- msgctxt "shipments"
1528
- msgid "Generate label"
1529
  msgstr ""
1530
 
1531
- #: src/Admin/Table.php:924
1532
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:924
1533
- msgctxt "shipments"
1534
- msgid "Select %s"
1535
  msgstr ""
1536
 
1537
- #: src/Admin/Table.php:951
1538
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:951
1539
- msgctxt "shipments"
1540
- msgid "SKU:"
1541
  msgstr ""
1542
 
1543
- #. translators: %s: human-readable time difference
1544
- #: src/Admin/Table.php:1045
1545
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:1045
1546
- msgctxt "%s = human-readable time difference"
1547
- msgid "%s ago"
1548
  msgstr ""
1549
 
1550
- #: src/Admin/Table.php:1057
1551
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:1057
1552
- msgctxt "shipments"
1553
- msgid "M j, Y"
1554
  msgstr ""
1555
 
1556
- #: src/Admin/Table.php:1114
1557
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:1114
1558
- msgctxt "shipments"
1559
- msgid "Delete Permanently"
1560
  msgstr ""
1561
 
1562
- #: src/Admin/Table.php:1117
1563
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:1117
1564
- msgctxt "shipments"
1565
- msgid "Change status to processing"
1566
  msgstr ""
1567
 
1568
- #: src/Admin/Table.php:1118
1569
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:1118
1570
- msgctxt "shipments"
1571
- msgid "Change status to shipped"
1572
  msgstr ""
1573
 
1574
- #: src/Admin/Table.php:1119
1575
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:1119
1576
- msgctxt "shipments"
1577
- msgid "Change status to delivered"
1578
  msgstr ""
1579
 
1580
- #: src/Admin/Table.php:1120
1581
- #: packages/woocommerce-germanized-shipments/src/Admin/Table.php:1120
1582
- msgctxt "shipments"
1583
- msgid "Generate and download labels"
1584
  msgstr ""
1585
 
1586
- #: src/Ajax.php:95
1587
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:95
1588
- msgctxt "shipments"
1589
- msgid "Notification successfully sent to customer."
1590
  msgstr ""
1591
 
1592
- #: src/Ajax.php:102
1593
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:102
1594
- msgctxt "shipments"
1595
- msgid "There was an error while sending the notification."
1596
  msgstr ""
1597
 
1598
- #: src/Ajax.php:142
1599
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:142
1600
- msgctxt "shipments"
1601
- msgid "Return request confirmed successfully."
1602
  msgstr ""
1603
 
1604
- #: src/Ajax.php:154
1605
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:154
1606
- msgctxt "shipments"
1607
- msgid "There was an error while confirming the request."
1608
  msgstr ""
1609
 
1610
- #: src/Ajax.php:174
1611
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:174
1612
- msgctxt "shipments"
1613
- msgid "There was an error creating the label."
1614
  msgstr ""
1615
 
1616
- #: src/Ajax.php:210
1617
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:210
1618
- msgctxt "shipments"
1619
- msgid "There was an error deleting the label."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1620
  msgstr ""
1621
 
1622
- #: src/Ajax.php:251
1623
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:251
1624
- msgctxt "shipments"
1625
- msgid "There was an error processing the label."
1626
  msgstr ""
1627
 
1628
- #: src/Ajax.php:349
1629
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:349
1630
- msgctxt "shipments"
1631
- msgid "There was an error while trying to save the shipping provider status."
1632
  msgstr ""
1633
 
1634
- #: src/Ajax.php:387
1635
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:387
1636
- msgctxt "shipments"
1637
- msgid "There was an error while trying to delete the shipping provider."
 
 
1638
  msgstr ""
1639
 
1640
- #: src/Ajax.php:420
1641
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:420
1642
- msgctxt "shipments"
1643
- msgid "There was an error while bulk processing shipments."
1644
  msgstr ""
1645
 
1646
- #: src/Ajax.php:532
1647
- #: src/Ajax.php:633
1648
- #: src/Ajax.php:690
1649
- #: src/Ajax.php:727
1650
- #: src/Ajax.php:854
1651
- #: src/Ajax.php:915
1652
- #: src/Ajax.php:982
1653
- #: src/Ajax.php:1015
1654
- #: src/Ajax.php:1064
1655
- #: src/Ajax.php:1132
1656
- #: src/Ajax.php:1173
1657
- #: src/Ajax.php:1228
1658
- #: src/Ajax.php:1272
1659
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:532
1660
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:633
1661
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:690
1662
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:727
1663
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:854
1664
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:915
1665
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:982
1666
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:1015
1667
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:1064
1668
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:1132
1669
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:1173
1670
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:1228
1671
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:1272
1672
- msgctxt "shipments"
1673
- msgid "There was an error processing the shipment"
1674
  msgstr ""
1675
 
1676
- #: src/Ajax.php:574
1677
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:574
1678
- msgctxt "shipments"
1679
- msgid "There was an error while adding the shipment"
1680
  msgstr ""
1681
 
1682
- #: src/Ajax.php:595
1683
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:595
1684
- msgctxt "shipments"
1685
- msgid "This order contains enough shipments already."
1686
  msgstr ""
1687
 
1688
- #: src/Ajax.php:652
1689
- #: packages/woocommerce-germanized-shipments/src/Ajax.php:652
1690
- msgctxt "shipments"
1691
- msgid "This order contains enough returns already."
1692
  msgstr ""
1693
 
1694
- #: src/Api.php:104
1695
- #: packages/woocommerce-germanized-shipments/src/Api.php:104
1696
- msgctxt "shipments"
1697
- msgid "List of shipments."
1698
  msgstr ""
1699
 
1700
- #: src/Api.php:112
1701
- #: packages/woocommerce-germanized-shipments/src/Api.php:112
1702
- msgctxt "shipments"
1703
- msgid "Shipment ID."
1704
  msgstr ""
1705
 
1706
- #: src/Api.php:118
1707
- #: packages/woocommerce-germanized-shipments/src/Api.php:118
1708
- msgctxt "shipments"
1709
- msgid "Shipment status."
 
1710
  msgstr ""
1711
 
1712
- #: src/Api.php:125
1713
- #: packages/woocommerce-germanized-shipments/src/Api.php:125
1714
- msgctxt "shipments"
1715
- msgid "Shipment tracking id."
1716
  msgstr ""
1717
 
1718
- #: src/Api.php:131
1719
- #: packages/woocommerce-germanized-shipments/src/Api.php:131
1720
- msgctxt "shipments"
1721
- msgid "Shipment tracking url."
1722
  msgstr ""
1723
 
1724
- #: src/Api.php:137
1725
- #: packages/woocommerce-germanized-shipments/src/Api.php:137
1726
- msgctxt "shipments"
1727
- msgid "Shipment shipping provider."
1728
  msgstr ""
1729
 
1730
- #: src/Api.php:143
1731
- #: packages/woocommerce-germanized-shipments/src/Api.php:143
1732
- msgctxt "shipments"
1733
- msgid "The date the shipment was created, in the site's timezone."
1734
  msgstr ""
1735
 
1736
- #: src/Api.php:149
1737
- #: packages/woocommerce-germanized-shipments/src/Api.php:149
1738
- msgctxt "shipments"
1739
- msgid "The date the shipment was created, as GMT."
1740
  msgstr ""
1741
 
1742
- #: src/Api.php:155
1743
- #: packages/woocommerce-germanized-shipments/src/Api.php:155
1744
- msgctxt "shipments"
1745
- msgid "The date the shipment was sent, in the site's timezone."
1746
  msgstr ""
1747
 
1748
- #: src/Api.php:161
1749
- #: packages/woocommerce-germanized-shipments/src/Api.php:161
1750
- msgctxt "shipments"
1751
- msgid "The date the shipment was sent, as GMT."
1752
  msgstr ""
1753
 
1754
- #: src/Api.php:167
1755
- #: packages/woocommerce-germanized-shipments/src/Api.php:167
1756
- msgctxt "shipments"
1757
- msgid "The estimated delivery date of the shipment, in the site's timezone."
1758
  msgstr ""
1759
 
1760
- #: src/Api.php:173
1761
- #: packages/woocommerce-germanized-shipments/src/Api.php:173
1762
- msgctxt "shipments"
1763
- msgid "The estimated delivery date of the shipment, as GMT."
1764
  msgstr ""
1765
 
1766
- #. translators: %s: weight unit
1767
- #: src/Api.php:180
1768
- #: packages/woocommerce-germanized-shipments/src/Api.php:180
1769
- msgctxt "shipments"
1770
- msgid "Shipment weight (%s)."
1771
  msgstr ""
1772
 
1773
- #: src/Api.php:186
1774
- #: packages/woocommerce-germanized-shipments/src/Api.php:186
1775
- msgctxt "shipments"
1776
- msgid "Shipment dimensions."
1777
  msgstr ""
1778
 
1779
- #. translators: %s: dimension unit
1780
- #: src/Api.php:193
1781
- #: packages/woocommerce-germanized-shipments/src/Api.php:193
1782
- msgctxt "shipments"
1783
- msgid "Shipment length (%s)."
1784
  msgstr ""
1785
 
1786
- #. translators: %s: dimension unit
1787
- #: src/Api.php:200
1788
- #: packages/woocommerce-germanized-shipments/src/Api.php:200
1789
- msgctxt "shipments"
1790
- msgid "Shipment width (%s)."
1791
  msgstr ""
1792
 
1793
- #. translators: %s: dimension unit
1794
- #: src/Api.php:207
1795
- #: packages/woocommerce-germanized-shipments/src/Api.php:207
1796
- msgctxt "shipments"
1797
- msgid "Shipment height (%s)."
1798
  msgstr ""
1799
 
1800
- #: src/Api.php:215
1801
- #: packages/woocommerce-germanized-shipments/src/Api.php:215
1802
- msgctxt "shipments"
1803
- msgid "Shipping address."
1804
  msgstr ""
1805
 
1806
- #: src/Api.php:221
1807
- #: packages/woocommerce-germanized-shipments/src/Api.php:221
1808
- msgctxt "shipments"
1809
- msgid "First name."
1810
  msgstr ""
1811
 
1812
- #: src/Api.php:227
1813
- #: packages/woocommerce-germanized-shipments/src/Api.php:227
1814
- msgctxt "shipments"
1815
- msgid "Last name."
1816
  msgstr ""
1817
 
1818
- #: src/Api.php:233
1819
- #: packages/woocommerce-germanized-shipments/src/Api.php:233
1820
- msgctxt "shipments"
1821
- msgid "Company name."
1822
  msgstr ""
1823
 
1824
- #: src/Api.php:239
1825
- #: packages/woocommerce-germanized-shipments/src/Api.php:239
1826
- msgctxt "shipments"
1827
- msgid "Address line 1"
1828
  msgstr ""
1829
 
1830
- #: src/Api.php:245
1831
- #: packages/woocommerce-germanized-shipments/src/Api.php:245
1832
- msgctxt "shipments"
1833
- msgid "Address line 2"
1834
  msgstr ""
1835
 
1836
- #: src/Api.php:251
1837
- #: packages/woocommerce-germanized-shipments/src/Api.php:251
1838
- msgctxt "shipments"
1839
- msgid "City name."
1840
  msgstr ""
1841
 
1842
- #: src/Api.php:257
1843
- #: packages/woocommerce-germanized-shipments/src/Api.php:257
1844
- msgctxt "shipments"
1845
- msgid "ISO code or name of the state, province or district."
1846
  msgstr ""
1847
 
1848
- #: src/Api.php:263
1849
- #: packages/woocommerce-germanized-shipments/src/Api.php:263
1850
- msgctxt "shipments"
1851
- msgid "Postal code."
1852
  msgstr ""
1853
 
1854
- #: src/Api.php:269
1855
- #: packages/woocommerce-germanized-shipments/src/Api.php:269
1856
- msgctxt "shipments"
1857
- msgid "Country code in ISO 3166-1 alpha-2 format."
1858
  msgstr ""
1859
 
1860
- #: src/Api.php:277
1861
- #: packages/woocommerce-germanized-shipments/src/Api.php:277
1862
- msgctxt "shipments"
1863
- msgid "Shipment items."
1864
  msgstr ""
1865
 
1866
- #: src/Api.php:285
1867
- #: packages/woocommerce-germanized-shipments/src/Api.php:285
1868
- msgctxt "shipments"
1869
- msgid "Item ID."
1870
  msgstr ""
1871
 
1872
- #: src/Api.php:291
1873
- #: packages/woocommerce-germanized-shipments/src/Api.php:291
1874
- msgctxt "shipments"
1875
- msgid "Item name."
1876
  msgstr ""
1877
 
1878
- #: src/Api.php:297
1879
- #: packages/woocommerce-germanized-shipments/src/Api.php:297
1880
- msgctxt "shipments"
1881
- msgid "Order Item ID."
1882
  msgstr ""
1883
 
1884
- #: src/Api.php:303
1885
- #: packages/woocommerce-germanized-shipments/src/Api.php:303
1886
- msgctxt "shipments"
1887
- msgid "Product ID."
1888
  msgstr ""
1889
 
1890
- #: src/Api.php:309
1891
- #: packages/woocommerce-germanized-shipments/src/Api.php:309
1892
- msgctxt "shipments"
1893
- msgid "Quantity."
1894
  msgstr ""
1895
 
1896
- #: src/Automation.php:127
1897
- #: packages/woocommerce-germanized-shipments/src/Automation.php:127
1898
- msgctxt "shipments"
1899
- msgid "Order is fully shipped."
1900
  msgstr ""
1901
 
1902
- #: src/DataStores/Packaging.php:236
1903
- #: packages/woocommerce-germanized-shipments/src/DataStores/Packaging.php:236
1904
- msgctxt "shipments"
1905
- msgid "Invalid packaging."
1906
  msgstr ""
1907
 
1908
- #: src/DataStores/ShipmentItem.php:197
1909
- #: packages/woocommerce-germanized-shipments/src/DataStores/ShipmentItem.php:197
1910
- msgctxt "shipments"
1911
- msgid "Invalid shipment item."
1912
  msgstr ""
1913
 
1914
- #: src/DataStores/ShippingProvider.php:256
1915
- #: packages/woocommerce-germanized-shipments/src/DataStores/ShippingProvider.php:256
1916
- msgctxt "shipments"
1917
- msgid "Invalid shipping provider."
1918
  msgstr ""
1919
 
1920
- #: src/FormHandler.php:35
1921
- #: packages/woocommerce-germanized-shipments/src/FormHandler.php:35
1922
- msgctxt "shipments"
1923
- msgid "Your return request was submitted successfully. We will now review your request and get in contact with you as soon as possible."
1924
  msgstr ""
1925
 
1926
- #: src/FormHandler.php:37
1927
- #: packages/woocommerce-germanized-shipments/src/FormHandler.php:37
1928
- msgctxt "shipments"
1929
- msgid "Your return request was submitted successfully. You'll receive an email with further instructions in a few minutes."
1930
  msgstr ""
1931
 
1932
- #: src/FormHandler.php:103
1933
- #: src/FormHandler.php:107
1934
- #: packages/woocommerce-germanized-shipments/src/FormHandler.php:103
1935
- #: packages/woocommerce-germanized-shipments/src/FormHandler.php:107
1936
- msgctxt "shipments"
1937
- msgid "Error:"
1938
  msgstr ""
1939
 
1940
- #: src/FormHandler.php:103
1941
- #: packages/woocommerce-germanized-shipments/src/FormHandler.php:103
1942
- msgctxt "shipments"
1943
- msgid "We were not able to find a matching order."
1944
  msgstr ""
1945
 
1946
- #: src/FormHandler.php:107
1947
- #: packages/woocommerce-germanized-shipments/src/FormHandler.php:107
1948
- msgctxt "shipments"
1949
- msgid "This order is currently not eligible for returns. Please contact us for further details."
1950
  msgstr ""
1951
 
1952
- #: src/FormHandler.php:116
1953
- #: packages/woocommerce-germanized-shipments/src/FormHandler.php:116
1954
- msgctxt "shipments"
1955
- msgid "Thank you. You'll receive an email containing a link to create a new return to your order."
1956
  msgstr ""
1957
 
1958
- #: src/FormHandler.php:172
1959
- #: packages/woocommerce-germanized-shipments/src/FormHandler.php:172
1960
- msgctxt "shipments"
1961
- msgid "You are not allowed to add returns to that order."
1962
  msgstr ""
1963
 
1964
- #: src/FormHandler.php:177
1965
- #: packages/woocommerce-germanized-shipments/src/FormHandler.php:177
1966
- msgctxt "shipments"
1967
- msgid "Sorry, but this order does not support returns any longer."
1968
  msgstr ""
1969
 
1970
- #: src/FormHandler.php:182
1971
- #: src/FormHandler.php:218
1972
- #: packages/woocommerce-germanized-shipments/src/FormHandler.php:182
1973
- #: packages/woocommerce-germanized-shipments/src/FormHandler.php:218
1974
- msgctxt "shipments"
1975
- msgid "Please choose one or more items from the list."
1976
  msgstr ""
1977
 
1978
- #: src/FormHandler.php:198
1979
- #: packages/woocommerce-germanized-shipments/src/FormHandler.php:198
1980
- msgctxt "shipments"
1981
- msgid "The return reason you have chosen does not exist."
1982
  msgstr ""
1983
 
1984
- #: src/FormHandler.php:201
1985
- #: packages/woocommerce-germanized-shipments/src/FormHandler.php:201
1986
- msgctxt "shipments"
1987
- msgid "Please choose a return reason from the list."
1988
  msgstr ""
1989
 
1990
- #: src/FormHandler.php:206
1991
- #: packages/woocommerce-germanized-shipments/src/FormHandler.php:206
1992
- msgctxt "shipments"
1993
- msgid "Please check your item quantities. Quantities must not exceed maximum quantities."
1994
  msgstr ""
1995
 
1996
- #: src/FormHandler.php:253
1997
- #: packages/woocommerce-germanized-shipments/src/FormHandler.php:253
1998
- msgctxt "shipments"
1999
- msgid "There was an error while creating the return. Please contact us for further information."
2000
  msgstr ""
2001
 
2002
- #: src/Install.php:31
2003
- #: packages/woocommerce-germanized-shipments/src/Install.php:31
2004
- msgctxt "shipments"
2005
- msgid "Wrong product or size ordered"
2006
  msgstr ""
2007
 
2008
- #: src/Install.php:36
2009
- #: packages/woocommerce-germanized-shipments/src/Install.php:36
2010
- msgctxt "shipments"
2011
- msgid "Product no longer needed"
2012
  msgstr ""
2013
 
2014
- #: src/Install.php:41
2015
- #: packages/woocommerce-germanized-shipments/src/Install.php:41
2016
- msgctxt "shipments"
2017
- msgid "Don't like the look"
 
2018
  msgstr ""
2019
 
2020
- #: src/Install.php:60
2021
- #: packages/woocommerce-germanized-shipments/src/Install.php:60
2022
- msgctxt "shipments"
2023
- msgid "Cardboard S"
2024
  msgstr ""
2025
 
2026
- #: src/Install.php:69
2027
- #: packages/woocommerce-germanized-shipments/src/Install.php:69
2028
- msgctxt "shipments"
2029
- msgid "Cardboard M"
2030
  msgstr ""
2031
 
2032
- #: src/Install.php:78
2033
- #: packages/woocommerce-germanized-shipments/src/Install.php:78
2034
- msgctxt "shipments"
2035
- msgid "Cardboard L"
2036
  msgstr ""
2037
-
2038
- #: src/Install.php:87
2039
- #: packages/woocommerce-germanized-shipments/src/Install.php:87
2040
- msgctxt "shipments"
2041
- msgid "Letter C5/6"
2042
  msgstr ""
2043
 
2044
- #: src/Install.php:96
2045
- #: packages/woocommerce-germanized-shipments/src/Install.php:96
2046
- msgctxt "shipments"
2047
- msgid "Letter C4"
2048
  msgstr ""
2049
 
2050
- #: src/Package.php:97
2051
- #: packages/woocommerce-germanized-shipments/src/Package.php:97
2052
- msgctxt "shipments"
2053
- msgid "Sorry, this order is invalid and cannot be returned."
2054
  msgstr ""
2055
 
2056
- #: src/Packaging.php:266
2057
- #: packages/woocommerce-germanized-shipments/src/Packaging.php:266
2058
- msgctxt "shipments-packaging-title"
2059
- msgid "%1$s (%2$s, %3$s)"
2060
  msgstr ""
2061
 
2062
- #: src/ReturnShipment.php:356
2063
- #: src/Shipment.php:882
2064
- #: packages/woocommerce-germanized-shipments/src/ReturnShipment.php:356
2065
- #: packages/woocommerce-germanized-shipments/src/Shipment.php:882
2066
- msgctxt "full name"
2067
- msgid "%1$s %2$s"
2068
  msgstr ""
2069
 
2070
- #: src/ShippingProvider.php:270
2071
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:270
2072
- msgctxt "shipments"
2073
- msgid "Your shipment is being processed by {shipping_provider}. If you want to track the shipment, please use the following tracking number: {tracking_id}. Depending on the chosen shipping method it is possible that the tracking data does not reflect the current status when receiving this email."
2074
  msgstr ""
2075
 
2076
- #: src/ShippingProvider.php:543
2077
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:543
2078
- msgctxt "shipments"
2079
- msgid "%s supports many more options. Explore %s."
2080
  msgstr ""
2081
 
2082
- #: src/ShippingProvider.php:543
2083
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:543
2084
- msgctxt "shipments"
2085
- msgid "%s specific settings"
2086
  msgstr ""
2087
 
2088
- #: src/ShippingProvider.php:556
2089
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:556
2090
- msgctxt "shipments"
2091
- msgid "Choose a title for the shipping provider."
2092
  msgstr ""
2093
 
2094
- #: src/ShippingProvider.php:565
2095
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:565
2096
- msgctxt "shipments"
2097
- msgid "Choose a description for the shipping provider."
2098
  msgstr ""
2099
 
2100
- #: src/ShippingProvider.php:579
2101
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:579
2102
- msgctxt "shipments"
2103
- msgid "Tracking URL"
2104
  msgstr ""
2105
 
2106
- #: src/ShippingProvider.php:580
2107
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:580
2108
- msgctxt "shipments"
2109
- msgid "Adjust the placeholder used to construct the tracking URL for this shipping provider. You may use on of the following placeholders to insert the tracking id or other dynamic data: %s"
2110
  msgstr ""
2111
 
2112
- #: src/ShippingProvider.php:590
2113
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:590
2114
- msgctxt "shipments"
2115
- msgid "Tracking description"
2116
  msgstr ""
2117
 
2118
- #: src/ShippingProvider.php:591
2119
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:591
2120
- msgctxt "shipments"
2121
- msgid "Adjust the placeholder used to construct the tracking description for this shipping provider (e.g. used within notification emails). You may use on of the following placeholders to insert the tracking id or other dynamic data: %s"
2122
  msgstr ""
2123
 
2124
- #: src/ShippingProvider.php:604
2125
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:604
2126
- msgctxt "shipments"
2127
- msgid "Customer returns"
2128
  msgstr ""
2129
 
2130
- #: src/ShippingProvider.php:605
2131
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:605
2132
- msgctxt "shipments"
2133
- msgid "Allow customers to submit return requests to shipments."
2134
  msgstr ""
2135
 
2136
- #: src/ShippingProvider.php:605
2137
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:605
2138
- msgctxt "shipments"
2139
- msgid "This option will allow your customers to submit return requests to orders. Return requests will be visible within your %s. To learn more about return requests by customers and/or guests, please check the %s."
2140
  msgstr ""
2141
 
2142
- #: src/ShippingProvider.php:605
2143
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:605
2144
- msgctxt "shipments"
2145
- msgid "Return Dashboard"
2146
  msgstr ""
2147
 
2148
- #: src/ShippingProvider.php:605
2149
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:605
2150
- msgctxt "shipments"
2151
- msgid "docs"
2152
  msgstr ""
2153
 
2154
- #: src/ShippingProvider.php:614
2155
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:614
2156
- msgctxt "shipments"
2157
- msgid "Guest returns"
2158
  msgstr ""
2159
 
2160
- #: src/ShippingProvider.php:615
2161
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:615
2162
- msgctxt "shipments"
2163
- msgid "Allow guests to submit return requests to shipments."
2164
  msgstr ""
2165
 
2166
- #: src/ShippingProvider.php:615
2167
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:615
2168
- msgctxt "shipments"
2169
- msgid "Guests will need to provide their email address and the order id to receive a one-time link to submit a return request. The placeholder %s might be used to place the request form on your site."
2170
  msgstr ""
2171
 
2172
- #: src/ShippingProvider.php:626
2173
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:626
2174
- msgctxt "shipments"
2175
- msgid "Manual confirmation"
2176
  msgstr ""
2177
 
2178
- #: src/ShippingProvider.php:627
2179
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:627
2180
- msgctxt "shipments"
2181
- msgid "Return requests need manual confirmation."
2182
  msgstr ""
2183
 
2184
- #: src/ShippingProvider.php:627
2185
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:627
2186
- msgctxt "shipments"
2187
- msgid "By default return request need manual confirmation e.g. a shop manager needs to review return requests which by default are added with the status \"requested\" after a customer submitted a return request. If you choose to disable this option, customer return requests will be added as \"processing\" and an email confirmation including instructions will be sent immediately to the customer."
2188
  msgstr ""
2189
 
2190
- #: src/ShippingProvider.php:639
2191
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:639
2192
- msgctxt "shipments"
2193
- msgid "Return instructions"
2194
  msgstr ""
2195
 
2196
- #: src/ShippingProvider.php:640
2197
- #: packages/woocommerce-germanized-shipments/src/ShippingProvider.php:640
2198
- msgctxt "shipments"
2199
- msgid "Provide your customer with instructions on how to return the shipment after a return request has been confirmed e.g. explain how to prepare the return for shipment. In case a label cannot be generated automatically, make sure to provide your customer with information on how to obain a return label."
2200
  msgstr ""
2201
 
2202
- #: src/ShippingProviderMethod.php:50
2203
- #: packages/woocommerce-germanized-shipments/src/ShippingProviderMethod.php:50
2204
- msgctxt "shipments"
2205
- msgid "Shipping Provider Settings"
2206
  msgstr ""
2207
 
2208
- #: src/ShippingProviderMethod.php:53
2209
- #: packages/woocommerce-germanized-shipments/src/ShippingProviderMethod.php:53
2210
- msgctxt "shipments"
2211
- msgid "Adjust shipping provider settings used for managing shipments."
2212
  msgstr ""
2213
 
2214
- #: src/ShippingProviderMethod.php:68
2215
- #: packages/woocommerce-germanized-shipments/src/ShippingProviderMethod.php:68
2216
- msgctxt "shipments"
2217
- msgid "Choose a shipping provider which will be selected by default for an eligible shipment."
2218
  msgstr ""
2219
 
2220
- #: src/WPMLHelper.php:73
2221
- #: packages/woocommerce-germanized-shipments/src/WPMLHelper.php:73
2222
- msgctxt "shipments"
2223
- msgid "%s tracking description"
2224
  msgstr ""
2225
 
2226
- #: src/WPMLHelper.php:74
2227
- #: packages/woocommerce-germanized-shipments/src/WPMLHelper.php:74
2228
- msgctxt "shipments"
2229
- msgid "%s tracking URL"
2230
  msgstr ""
2231
 
2232
- #: src/WPMLHelper.php:75
2233
- #: packages/woocommerce-germanized-shipments/src/WPMLHelper.php:75
2234
- msgctxt "shipments"
2235
- msgid "%s return instructions"
 
2236
  msgstr ""
2237
 
2238
- #. translators: %s: Customer billing full name
2239
- #: templates/emails/admin-new-return-shipment-request.php:30
2240
- #: templates/emails/plain/admin-new-return-shipment-request.php:24
2241
- #: packages/woocommerce-germanized-shipments/templates/emails/admin-new-return-shipment-request.php:30
2242
- #: packages/woocommerce-germanized-shipments/templates/emails/plain/admin-new-return-shipment-request.php:24
2243
- msgctxt "shipments"
2244
- msgid "You’ve received the following return request from %s:"
2245
  msgstr ""
2246
 
2247
- #. translators: %s: Customer first name
2248
- #: templates/emails/customer-guest-return-shipment-request.php:27
2249
- #: templates/emails/customer-return-shipment-delivered.php:27
2250
- #: templates/emails/customer-return-shipment.php:27
2251
- #: templates/emails/customer-shipment.php:27
2252
- #: templates/emails/plain/customer-guest-return-shipment-request.php:24
2253
- #: templates/emails/plain/customer-return-shipment-delivered.php:24
2254
- #: templates/emails/plain/customer-return-shipment.php:24
2255
- #: templates/emails/plain/customer-shipment.php:24
2256
- #: packages/woocommerce-germanized-shipments/templates/emails/customer-guest-return-shipment-request.php:27
2257
- #: packages/woocommerce-germanized-shipments/templates/emails/customer-return-shipment-delivered.php:27
2258
- #: packages/woocommerce-germanized-shipments/templates/emails/customer-return-shipment.php:27
2259
- #: packages/woocommerce-germanized-shipments/templates/emails/customer-shipment.php:27
2260
- #: packages/woocommerce-germanized-shipments/templates/emails/plain/customer-guest-return-shipment-request.php:24
2261
- #: packages/woocommerce-germanized-shipments/templates/emails/plain/customer-return-shipment-delivered.php:24
2262
- #: packages/woocommerce-germanized-shipments/templates/emails/plain/customer-return-shipment.php:24
2263
- #: packages/woocommerce-germanized-shipments/templates/emails/plain/customer-shipment.php:24
2264
- msgid "Hi %s,"
2265
  msgstr ""
2266
 
2267
- #: templates/emails/customer-guest-return-shipment-request.php:30
2268
- #: templates/emails/plain/customer-guest-return-shipment-request.php:26
2269
- #: packages/woocommerce-germanized-shipments/templates/emails/customer-guest-return-shipment-request.php:30
2270
- #: packages/woocommerce-germanized-shipments/templates/emails/plain/customer-guest-return-shipment-request.php:26
2271
- msgctxt "shipments"
2272
- msgid "You've requested a return to your order %s. Please follow the link to add your return request."
2273
  msgstr ""
2274
 
2275
- #: templates/emails/customer-guest-return-shipment-request.php:34
2276
- #: templates/myaccount/order-shipments.php:30
2277
- #: packages/woocommerce-germanized-shipments/templates/emails/customer-guest-return-shipment-request.php:34
2278
- #: packages/woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:30
2279
- msgctxt "shipments"
2280
- msgid "Add return request"
2281
  msgstr ""
2282
 
2283
- #: templates/emails/customer-guest-return-shipment-request.php:37
2284
- #: packages/woocommerce-germanized-shipments/templates/emails/customer-guest-return-shipment-request.php:37
2285
- msgctxt "shipments"
2286
- msgid "If you cannot follow the link above please copy this url and paste it to your browser bar: %s"
2287
  msgstr ""
2288
 
2289
- #: templates/emails/customer-return-shipment-delivered.php:30
2290
- #: templates/emails/plain/customer-return-shipment-delivered.php:26
2291
- #: packages/woocommerce-germanized-shipments/templates/emails/customer-return-shipment-delivered.php:30
2292
- #: packages/woocommerce-germanized-shipments/templates/emails/plain/customer-return-shipment-delivered.php:26
2293
- msgctxt "shipments"
2294
- msgid "Thank you! Your return has been received successfully. There are more details below for your reference:"
2295
  msgstr ""
2296
 
2297
- #: templates/emails/customer-return-shipment.php:32
2298
- #: templates/emails/plain/customer-return-shipment.php:28
2299
- #: packages/woocommerce-germanized-shipments/templates/emails/customer-return-shipment.php:32
2300
- #: packages/woocommerce-germanized-shipments/templates/emails/plain/customer-return-shipment.php:28
2301
- msgctxt "shipments"
2302
- msgid "Your return request has been accepted. Please follow the instructions beneath to return your shipment."
2303
  msgstr ""
2304
 
2305
- #: templates/emails/customer-return-shipment.php:34
2306
- #: templates/emails/plain/customer-return-shipment.php:30
2307
- #: packages/woocommerce-germanized-shipments/templates/emails/customer-return-shipment.php:34
2308
- #: packages/woocommerce-germanized-shipments/templates/emails/plain/customer-return-shipment.php:30
2309
- msgctxt "shipments"
2310
- msgid "A new return has been added to your order. Please follow the instructions beneath to return your shipment."
2311
  msgstr ""
2312
 
2313
- #. translators: %s: Site title
2314
- #: templates/emails/customer-shipment.php:33
2315
- #: templates/emails/plain/customer-shipment.php:28
2316
- #: packages/woocommerce-germanized-shipments/templates/emails/customer-shipment.php:33
2317
- #: packages/woocommerce-germanized-shipments/templates/emails/plain/customer-shipment.php:28
2318
- msgctxt "shipments"
2319
- msgid "Your order on %s has been partially shipped. Find details below for your reference:"
2320
  msgstr ""
2321
 
2322
- #. translators: %s: Site title
2323
- #: templates/emails/customer-shipment.php:36
2324
- #: templates/emails/plain/customer-shipment.php:31
2325
- #: packages/woocommerce-germanized-shipments/templates/emails/customer-shipment.php:36
2326
- #: packages/woocommerce-germanized-shipments/templates/emails/plain/customer-shipment.php:31
2327
- msgctxt "shipments"
2328
- msgid "Your order on %s has been shipped. Find details below for your reference:"
2329
  msgstr ""
2330
 
2331
- #: templates/emails/email-shipment-address.php:27
2332
- #: templates/emails/plain/email-shipment-address.php:19
2333
- #: packages/woocommerce-germanized-shipments/templates/emails/email-shipment-address.php:27
2334
- #: packages/woocommerce-germanized-shipments/templates/emails/plain/email-shipment-address.php:19
2335
- msgctxt "shipments"
2336
- msgid "Shipment goes to:"
2337
  msgstr ""
2338
 
2339
- #. translators: %s: Order ID.
2340
- #. translators: %1$s: Order ID. %2$s: Order date
2341
- #: templates/emails/email-shipment-details.php:46
2342
- #: templates/emails/plain/email-shipment-details.php:23
2343
- #: packages/woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:46
2344
- #: packages/woocommerce-germanized-shipments/templates/emails/plain/email-shipment-details.php:23
2345
- msgctxt "shipments"
2346
- msgid "Details to your %s"
2347
  msgstr ""
2348
 
2349
- #. translators: %s: Order ID.
2350
- #. translators: %1$s: Order ID. %2$s: Order date
2351
- #: templates/emails/email-shipment-details.php:46
2352
- #: templates/emails/plain/email-shipment-details.php:23
2353
- #: packages/woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:46
2354
- #: packages/woocommerce-germanized-shipments/templates/emails/plain/email-shipment-details.php:23
2355
- msgctxt "shipments"
2356
- msgid "[%s #%s]"
2357
  msgstr ""
2358
 
2359
- #: templates/emails/email-shipment-details.php:54
2360
- #: templates/myaccount/add-return-shipment.php:35
2361
- #: templates/shipment/shipment-details.php:59
2362
- #: packages/woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:54
2363
- #: packages/woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:35
2364
- #: packages/woocommerce-germanized-shipments/templates/shipment/shipment-details.php:59
2365
- msgctxt "shipments"
2366
- msgid "Product"
2367
  msgstr ""
2368
 
2369
- #: templates/emails/email-shipment-tracking.php:27
2370
- #: packages/woocommerce-germanized-shipments/templates/emails/email-shipment-tracking.php:27
2371
- msgctxt "shipments"
2372
- msgid "Tracking:"
2373
  msgstr ""
2374
 
2375
- #: templates/emails/email-shipment-tracking.php:30
2376
- #: templates/emails/plain/email-shipment-tracking.php:24
2377
- #: packages/woocommerce-germanized-shipments/templates/emails/email-shipment-tracking.php:30
2378
- #: packages/woocommerce-germanized-shipments/templates/emails/plain/email-shipment-tracking.php:24
2379
- msgctxt "shipments"
2380
- msgid "Estimated date:"
2381
  msgstr ""
2382
 
2383
- #: templates/emails/email-shipment-tracking.php:34
2384
- #: templates/emails/plain/email-shipment-tracking.php:28
2385
- #: templates/shipment/shipment-details-tracking.php:26
2386
- #: packages/woocommerce-germanized-shipments/templates/emails/email-shipment-tracking.php:34
2387
- #: packages/woocommerce-germanized-shipments/templates/emails/plain/email-shipment-tracking.php:28
2388
- #: packages/woocommerce-germanized-shipments/templates/shipment/shipment-details-tracking.php:26
2389
- msgctxt "shipments"
2390
- msgid "Track your shipment"
2391
  msgstr ""
2392
 
2393
- #. translators: %s: Shipment link.
2394
- #: templates/emails/plain/email-shipment-details.php:39
2395
- #: packages/woocommerce-germanized-shipments/templates/emails/plain/email-shipment-details.php:39
2396
- msgctxt "shipments"
2397
- msgid "View shipment: %s"
2398
  msgstr ""
2399
 
2400
- #: templates/emails/plain/email-shipment-tracking.php:21
2401
- #: packages/woocommerce-germanized-shipments/templates/emails/plain/email-shipment-tracking.php:21
2402
- msgctxt "shipments"
2403
- msgid "Delivery:"
2404
  msgstr ""
2405
 
2406
- #: templates/global/form-return-request.php:29
2407
- #: packages/woocommerce-germanized-shipments/templates/global/form-return-request.php:29
2408
- msgctxt "shipments"
2409
- msgid "Order email"
2410
  msgstr ""
2411
 
2412
- #: templates/global/form-return-request.php:34
2413
- #: packages/woocommerce-germanized-shipments/templates/global/form-return-request.php:34
2414
- msgctxt "shipments"
2415
- msgid "Order id"
2416
  msgstr ""
2417
 
2418
- #: templates/global/form-return-request.php:44
2419
- #: packages/woocommerce-germanized-shipments/templates/global/form-return-request.php:44
2420
- msgctxt "shipments"
2421
- msgid "Submit"
2422
  msgstr ""
2423
 
2424
- #: templates/myaccount/add-return-shipment.php:18
2425
- #: packages/woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:18
2426
- msgctxt "shipments"
2427
- msgid "New return request"
2428
  msgstr ""
2429
 
2430
- #: templates/myaccount/add-return-shipment.php:20
2431
- #: packages/woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:20
2432
- msgctxt "shipments"
2433
- msgid "Please select one or more items to return."
2434
  msgstr ""
2435
 
2436
- #: templates/myaccount/add-return-shipment.php:23
2437
- #: packages/woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:23
2438
- msgctxt "shipments"
2439
- msgid "After submitting your return request we will review it and notify you via email about the next steps."
2440
  msgstr ""
2441
 
2442
- #: templates/myaccount/add-return-shipment.php:25
2443
- #: packages/woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:25
2444
- msgctxt "shipments"
2445
- msgid "After submitting your return request you'll receive an email with further information to the return process."
2446
  msgstr ""
2447
 
2448
- #: templates/myaccount/add-return-shipment.php:81
2449
- #: packages/woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:81
2450
- msgctxt "shipments"
2451
- msgid "Send request"
2452
  msgstr ""
2453
 
2454
- #: templates/myaccount/order-shipments.php:32
2455
- #: packages/woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:32
2456
- msgctxt "shipments"
2457
- msgid "Adding return requests to this order is no longer available. You may contact us for further information."
2458
  msgstr ""
2459
 
2460
- #: templates/myaccount/shipments.php:79
2461
- #: packages/woocommerce-germanized-shipments/templates/myaccount/shipments.php:79
2462
- msgctxt "shipments"
2463
- msgid "track now"
2464
  msgstr ""
2465
 
2466
- #. translators: 1: order number 2: order date 3: order status
2467
- #: templates/myaccount/view-shipment.php:24
2468
- #: packages/woocommerce-germanized-shipments/templates/myaccount/view-shipment.php:24
2469
- msgctxt "shipments"
2470
- msgid "Shipment #%1$s was created on %2$s and is currently %3$s."
2471
  msgstr ""
2472
 
2473
- #: templates/shipment/add-return-shipment-item.php:61
2474
- #: packages/woocommerce-germanized-shipments/templates/shipment/add-return-shipment-item.php:61
2475
- msgctxt "shipments return reason"
2476
- msgid "Please choose"
2477
  msgstr ""
2478
 
2479
- #: templates/shipment/shipment-details-address.php:25
2480
- #: packages/woocommerce-germanized-shipments/templates/shipment/shipment-details-address.php:25
2481
- msgctxt "shipments"
2482
- msgid "Shipment receiver"
2483
  msgstr ""
2484
 
2485
- #: templates/shipment/shipment-details.php:53
2486
- #: packages/woocommerce-germanized-shipments/templates/shipment/shipment-details.php:53
2487
- msgctxt "shipments"
2488
- msgid "Shipment details"
2489
  msgstr ""
2490
 
2491
- #. translators: 1: composer command. 2: plugin directory
2492
- #: woocommerce-germanized-shipments.php:40
2493
- #: woocommerce-germanized-shipments.php:58
2494
- #: packages/woocommerce-germanized-shipments/woocommerce-germanized-shipments.php:40
2495
- #: packages/woocommerce-germanized-shipments/woocommerce-germanized-shipments.php:58
2496
- msgctxt "shipments"
2497
- msgid "Your installation of the Germanized Shipments feature plugin is incomplete. Please run %1$s within the %2$s directory."
2498
  msgstr ""
2499
 
2500
- #. Plugin Name of the plugin
2501
- msgid "Germanized DHL for WooCommerce"
 
2502
  msgstr ""
2503
 
2504
- #. Plugin URI of the plugin
2505
- msgid "https://github.com/vendidero/woocommerce-germanized-dhl"
 
2506
  msgstr ""
2507
 
2508
- #. Description of the plugin
2509
- msgid "The Germanized DHL integration, installed as a feature plugin for development and testing purposes."
 
2510
  msgstr ""
2511
 
2512
- #: includes/admin/views/html-deutsche-post-additional-services.php:14
2513
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-deutsche-post-additional-services.php:14
2514
  msgctxt "dhl"
2515
- msgid "Additional Services"
2516
  msgstr ""
2517
 
2518
- #: includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:36
2519
- #: includes/wc-gzd-dhl-core-functions.php:505
2520
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:36
2521
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:505
2522
- msgid "Sorry but none of your selected <a href=\"%s\">Deutsche Post Products</a> is available for this shipment. Please verify your shipment data (e.g. weight) and try again."
2523
  msgstr ""
2524
 
2525
- #: includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:43
2526
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:43
 
2527
  msgctxt "dhl"
2528
- msgid "Product"
2529
  msgstr ""
2530
 
2531
- #: includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:59
2532
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-deutsche-post-label-backbone-form.php:59
2533
  msgctxt "dhl"
2534
  msgid "Page Format"
2535
  msgstr ""
2536
 
2537
- #: includes/admin/views/html-shipment-label-backbone-form.php:18
2538
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:18
2539
  msgctxt "dhl"
2540
- msgid "DHL Product"
2541
  msgstr ""
2542
 
2543
- #: includes/admin/views/html-shipment-label-backbone-form.php:28
2544
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:28
2545
  msgctxt "dhl"
2546
- msgid "COD Amount"
2547
  msgstr ""
2548
 
2549
- #: includes/admin/views/html-shipment-label-backbone-form.php:40
2550
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:40
2551
  msgctxt "dhl"
2552
- msgid "Duties"
2553
  msgstr ""
2554
 
2555
- #: includes/admin/views/html-shipment-label-backbone-form.php:65
2556
- #: src/Admin/Settings.php:141
2557
- #: src/Admin/Settings.php:974
2558
- #: src/ParcelServices.php:29
2559
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:65
2560
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:141
2561
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:974
2562
- #: packages/woocommerce-germanized-dhl/src/ParcelServices.php:29
2563
  msgctxt "dhl"
2564
- msgid "Preferred Day"
2565
  msgstr ""
2566
 
2567
- #: includes/admin/views/html-shipment-label-backbone-form.php:75
2568
- #: src/ParcelServices.php:36
2569
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:75
2570
- #: packages/woocommerce-germanized-dhl/src/ParcelServices.php:36
2571
  msgctxt "dhl"
2572
- msgid "Preferred Time"
2573
  msgstr ""
2574
 
2575
- #: includes/admin/views/html-shipment-label-backbone-form.php:87
2576
- #: src/Admin/Settings.php:169
2577
- #: src/Admin/Settings.php:994
2578
- #: src/ParcelServices.php:43
2579
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:87
2580
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:169
2581
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:994
2582
- #: packages/woocommerce-germanized-dhl/src/ParcelServices.php:43
2583
  msgctxt "dhl"
2584
- msgid "Preferred Location"
2585
  msgstr ""
2586
 
2587
- #: includes/admin/views/html-shipment-label-backbone-form.php:98
2588
- #: src/Admin/Settings.php:1002
2589
- #: src/ParcelServices.php:48
2590
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:98
2591
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1002
2592
- #: packages/woocommerce-germanized-dhl/src/ParcelServices.php:48
2593
  msgctxt "dhl"
2594
- msgid "Preferred Neighbor"
2595
  msgstr ""
2596
 
2597
- #: includes/admin/views/html-shipment-label-backbone-form.php:108
2598
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:108
2599
  msgctxt "dhl"
2600
- msgid "Create inlay return label"
2601
  msgstr ""
2602
 
2603
- #: includes/admin/views/html-shipment-label-backbone-form.php:121
2604
- #: src/Admin/Settings.php:761
2605
- #: src/Admin/Settings.php:830
2606
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:121
2607
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:761
2608
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:830
2609
  msgctxt "dhl"
2610
- msgid "Name"
2611
  msgstr ""
2612
 
2613
- #: includes/admin/views/html-shipment-label-backbone-form.php:130
2614
- #: src/Admin/Settings.php:768
2615
- #: src/Admin/Settings.php:837
2616
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:130
2617
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:768
2618
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:837
2619
  msgctxt "dhl"
2620
- msgid "Company"
2621
  msgstr ""
2622
 
2623
- #: includes/admin/views/html-shipment-label-backbone-form.php:139
2624
- #: includes/wc-gzd-dhl-core-functions.php:601
2625
- #: src/Admin/Settings.php:775
2626
- #: src/Admin/Settings.php:844
2627
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:139
2628
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:601
2629
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:775
2630
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:844
2631
  msgctxt "dhl"
2632
- msgid "Street"
2633
  msgstr ""
2634
 
2635
- #: includes/admin/views/html-shipment-label-backbone-form.php:148
2636
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:148
2637
  msgctxt "dhl"
2638
- msgid "Street No"
2639
  msgstr ""
2640
 
2641
- #: includes/admin/views/html-shipment-label-backbone-form.php:159
2642
- #: includes/wc-gzd-dhl-core-functions.php:602
2643
- #: src/Admin/Settings.php:796
2644
- #: src/Admin/Settings.php:865
2645
- #: templates/checkout/dhl/parcel-finder.php:27
2646
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:159
2647
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:602
2648
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:796
2649
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:865
2650
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:27
2651
  msgctxt "dhl"
2652
- msgid "Postcode"
2653
  msgstr ""
2654
 
2655
- #: includes/admin/views/html-shipment-label-backbone-form.php:168
2656
- #: includes/wc-gzd-dhl-core-functions.php:603
2657
- #: src/Admin/Settings.php:789
2658
- #: src/Admin/Settings.php:858
2659
- #: templates/checkout/dhl/parcel-finder.php:30
2660
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:168
2661
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:603
2662
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:789
2663
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:858
2664
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:30
2665
  msgctxt "dhl"
2666
- msgid "City"
 
 
 
2667
  msgstr ""
2668
 
2669
- #: includes/admin/views/html-shipment-label-backbone-form.php:179
2670
- #: src/Admin/Settings.php:812
2671
- #: src/Admin/Settings.php:881
2672
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:179
2673
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:812
2674
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:881
2675
  msgctxt "dhl"
2676
- msgid "Phone"
2677
  msgstr ""
2678
 
2679
- #: includes/admin/views/html-shipment-label-backbone-form.php:188
2680
- #: src/Admin/Settings.php:819
2681
- #: src/Admin/Settings.php:888
2682
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:188
2683
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:819
2684
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:888
2685
  msgctxt "dhl"
2686
- msgid "Email"
2687
  msgstr ""
2688
 
2689
- #: includes/admin/views/html-shipment-label-backbone-form.php:199
2690
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:199
2691
  msgctxt "dhl"
2692
- msgid "Valid address only"
2693
  msgstr ""
2694
 
2695
- #: includes/admin/views/html-shipment-label-backbone-form.php:208
2696
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:208
2697
  msgctxt "dhl"
2698
- msgid "More services"
2699
  msgstr ""
2700
 
2701
- #: includes/admin/views/html-shipment-label-backbone-form.php:211
2702
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:211
2703
  msgctxt "dhl"
2704
- msgid "Fewer services"
2705
  msgstr ""
2706
 
2707
- #: includes/admin/views/html-shipment-label-backbone-form.php:219
2708
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:219
2709
  msgctxt "dhl"
2710
- msgid "Age check"
2711
  msgstr ""
2712
 
2713
- #: includes/admin/views/html-shipment-label-backbone-form.php:228
2714
- #: includes/admin/views/html-shipment-label-backbone-form.php:331
2715
- #: src/Admin/Settings.php:534
2716
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:228
2717
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:331
2718
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:534
2719
- msgctxt "dhl"
2720
- msgid "GoGreen"
2721
  msgstr ""
2722
 
2723
- #: includes/admin/views/html-shipment-label-backbone-form.php:237
2724
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:237
2725
  msgctxt "dhl"
2726
- msgid "Additional insurance"
2727
  msgstr ""
2728
 
2729
- #: includes/admin/views/html-shipment-label-backbone-form.php:248
2730
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:248
2731
  msgctxt "dhl"
2732
- msgid "Retail outlet routing"
2733
  msgstr ""
2734
 
2735
- #: includes/admin/views/html-shipment-label-backbone-form.php:261
2736
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:261
2737
  msgctxt "dhl"
2738
- msgid "No neighbor"
2739
  msgstr ""
2740
 
2741
- #: includes/admin/views/html-shipment-label-backbone-form.php:272
2742
- #: src/Admin/Settings.php:562
2743
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:272
2744
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:562
2745
  msgctxt "dhl"
2746
- msgid "Named person only"
2747
  msgstr ""
2748
 
2749
- #: includes/admin/views/html-shipment-label-backbone-form.php:281
2750
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:281
2751
  msgctxt "dhl"
2752
- msgid "Bulky goods"
2753
  msgstr ""
2754
 
2755
- #: includes/admin/views/html-shipment-label-backbone-form.php:290
2756
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:290
2757
  msgctxt "dhl"
2758
- msgid "Identity check"
2759
  msgstr ""
2760
 
2761
- #: includes/admin/views/html-shipment-label-backbone-form.php:301
2762
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:301
2763
  msgctxt "dhl"
2764
- msgid "Date of Birth"
2765
  msgstr ""
2766
 
2767
- #: includes/admin/views/html-shipment-label-backbone-form.php:311
2768
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:311
2769
  msgctxt "dhl"
2770
- msgid "Minimum age"
2771
  msgstr ""
2772
 
2773
- #: includes/admin/views/html-shipment-label-backbone-form.php:322
2774
- #: src/Admin/Settings.php:606
2775
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:322
2776
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:606
2777
  msgctxt "dhl"
2778
- msgid "Premium"
2779
  msgstr ""
2780
 
2781
- #: includes/admin/views/html-shipment-return-label-backbone-form.php:18
2782
- #: packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-return-label-backbone-form.php:18
 
2783
  msgctxt "dhl"
2784
- msgid "Receiver"
2785
  msgstr ""
2786
 
2787
- #: includes/admin/views/settings-shipping-method.php:15
2788
- #: src/Admin/Settings.php:1465
2789
- #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:15
2790
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1465
2791
- msgctxt "dhl"
2792
- msgid "DHL Labels"
2793
  msgstr ""
2794
 
2795
- #: includes/admin/views/settings-shipping-method.php:18
2796
- #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:18
2797
- msgctxt "dhl"
2798
- msgid "Adjust DHL label settings. Changes override <a href=\"%s\">global settings</a>."
2799
  msgstr ""
2800
 
2801
- #: includes/admin/views/settings-shipping-method.php:28
2802
- #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:28
2803
- msgctxt "dhl"
2804
- msgid "DHL Label Services"
2805
  msgstr ""
2806
 
2807
- #: includes/admin/views/settings-shipping-method.php:31
2808
- #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:31
2809
- msgctxt "dhl"
2810
- msgid "Adjust default DHL label service settings. Changes override <a href=\"%s\">global settings</a>."
 
2811
  msgstr ""
2812
 
2813
- #: includes/admin/views/settings-shipping-method.php:41
2814
- #: includes/admin/views/settings-shipping-method.php:106
2815
- #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:41
2816
- #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:106
2817
- msgctxt "dhl"
2818
- msgid "Label Automation"
 
 
2819
  msgstr ""
2820
 
2821
- #: includes/admin/views/settings-shipping-method.php:44
2822
- #: includes/admin/views/settings-shipping-method.php:109
2823
- #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:44
2824
- #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:109
2825
- msgctxt "dhl"
2826
- msgid "Adjust label automation settings. Changes override <a href=\"%s\">global settings</a>."
2827
  msgstr ""
2828
 
2829
- #: includes/admin/views/settings-shipping-method.php:53
2830
- #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:53
2831
- msgctxt "dhl"
2832
- msgid "DHL Preferred Services"
2833
  msgstr ""
2834
 
2835
- #: includes/admin/views/settings-shipping-method.php:56
2836
- #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:56
2837
- msgctxt "dhl"
2838
- msgid "Adjust preferred service settings. Changes override <a href=\"%s\">global settings</a>."
2839
  msgstr ""
2840
 
2841
- #: includes/admin/views/settings-shipping-method.php:66
2842
- #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:66
2843
- msgctxt "dhl"
2844
- msgid "DHL Pickup"
2845
  msgstr ""
2846
 
2847
- #: includes/admin/views/settings-shipping-method.php:69
2848
- #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:69
2849
- msgctxt "dhl"
2850
- msgid "Adjust pickup settings. Changes override <a href=\"%s\">global settings</a>."
2851
  msgstr ""
2852
 
2853
- #: includes/admin/views/settings-shipping-method.php:81
2854
- #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:81
2855
- msgctxt "dhl"
2856
- msgid "Deutsche Post Labels"
2857
  msgstr ""
2858
 
2859
- #: includes/admin/views/settings-shipping-method.php:84
2860
- #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:84
2861
- msgctxt "dhl"
2862
- msgid "Adjust Deutsche Post label settings. Changes override <a href=\"%s\">global settings</a>."
2863
  msgstr ""
2864
 
2865
- #: includes/admin/views/settings-shipping-method.php:94
2866
- #: src/Admin/Settings.php:1374
2867
- #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:94
2868
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1374
2869
- msgctxt "dhl"
2870
- msgid "Printing"
2871
  msgstr ""
2872
 
2873
- #: includes/admin/views/settings-shipping-method.php:97
2874
- #: packages/woocommerce-germanized-dhl/includes/admin/views/settings-shipping-method.php:97
2875
- msgctxt "dhl"
2876
- msgid "Adjust label printing settings. Changes override <a href=\"%s\">global settings</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2877
  msgstr ""
2878
 
2879
- #: includes/wc-gzd-dhl-core-functions.php:171
2880
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:171
2881
- msgctxt "dhl time context"
 
 
 
 
 
 
 
 
2882
  msgid "None"
2883
  msgstr ""
2884
 
2885
- #: includes/wc-gzd-dhl-core-functions.php:181
2886
- #: src/Api/Paket.php:280
2887
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:181
2888
- #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:280
2889
- msgctxt "dhl day context"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2890
  msgid "None"
2891
  msgstr ""
2892
 
2893
- #: includes/wc-gzd-dhl-core-functions.php:206
2894
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:206
2895
- msgctxt "dhl"
2896
- msgid "Delivery Duty Unpaid"
2897
  msgstr ""
2898
 
2899
- #: includes/wc-gzd-dhl-core-functions.php:207
2900
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:207
2901
- msgctxt "dhl"
2902
- msgid "Delivery Duty Paid"
2903
  msgstr ""
2904
 
2905
- #: includes/wc-gzd-dhl-core-functions.php:208
2906
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:208
2907
- msgctxt "dhl"
2908
- msgid "Delivery Duty Paid (excl. VAT )"
 
 
 
 
 
2909
  msgstr ""
2910
 
2911
- #: includes/wc-gzd-dhl-core-functions.php:209
2912
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:209
2913
- msgctxt "dhl"
2914
- msgid "Delivery Duty Paid (excl. Duties, taxes and VAT)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2915
  msgstr ""
2916
 
2917
- #: includes/wc-gzd-dhl-core-functions.php:237
2918
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:237
2919
- msgctxt "age context"
2920
- msgid "None"
2921
  msgstr ""
2922
 
2923
- #: includes/wc-gzd-dhl-core-functions.php:238
2924
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:238
2925
- msgctxt "dhl"
2926
- msgid "Minimum age of 16"
2927
  msgstr ""
2928
 
2929
- #: includes/wc-gzd-dhl-core-functions.php:239
2930
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:239
2931
- msgctxt "dhl"
2932
- msgid "Minimum age of 18"
2933
  msgstr ""
2934
 
2935
- #: includes/wc-gzd-dhl-core-functions.php:264
2936
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:264
2937
- msgctxt "dhl"
2938
- msgid "Shipment #{shipment_id} to order {order_id}"
2939
  msgstr ""
2940
 
2941
- #: includes/wc-gzd-dhl-core-functions.php:280
2942
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:280
2943
- msgctxt "dhl"
2944
- msgid "Return #{shipment_id} to order {order_id}"
2945
  msgstr ""
2946
 
2947
- #: includes/wc-gzd-dhl-core-functions.php:296
2948
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:296
2949
- msgctxt "dhl"
2950
- msgid "Return shipment #{shipment_id} to order #{order_id}"
2951
  msgstr ""
2952
 
2953
- #: includes/wc-gzd-dhl-core-functions.php:376
2954
- #: src/Admin/Settings.php:188
2955
- #: src/Admin/Settings.php:496
2956
- #: src/ParcelLocator.php:850
2957
- #: templates/checkout/dhl/parcel-finder.php:38
2958
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:376
2959
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:188
2960
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:496
2961
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:850
2962
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:38
2963
- msgctxt "dhl"
2964
- msgid "Packstation"
2965
  msgstr ""
2966
 
2967
- #: includes/wc-gzd-dhl-core-functions.php:377
2968
- #: includes/wc-gzd-dhl-core-functions.php:378
2969
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:377
2970
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:378
2971
- msgctxt "dhl"
2972
- msgid "Postfiliale"
2973
  msgstr ""
2974
 
2975
- #: includes/wc-gzd-dhl-core-functions.php:462
2976
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:462
2977
- msgctxt "dhl"
2978
- msgid "Receiver is missing or does not exist."
2979
  msgstr ""
2980
 
2981
- #: includes/wc-gzd-dhl-core-functions.php:481
2982
- #: includes/wc-gzd-dhl-core-functions.php:566
2983
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:481
2984
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:566
2985
- msgctxt "dhl"
2986
- msgid "Shipment order #%s does not exist"
2987
  msgstr ""
2988
 
2989
- #: includes/wc-gzd-dhl-core-functions.php:492
2990
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:492
2991
- msgctxt "dhl"
2992
- msgid "The services chosen are not available for the current product."
2993
  msgstr ""
2994
 
2995
- #: includes/wc-gzd-dhl-core-functions.php:532
2996
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:532
2997
- msgctxt "dhl"
2998
- msgid "Deutsche Post product is missing for %s."
2999
  msgstr ""
3000
 
3001
- #: includes/wc-gzd-dhl-core-functions.php:608
3002
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:608
3003
- msgctxt "dhl"
3004
- msgid "%s of the return address is a mandatory field."
3005
  msgstr ""
3006
 
3007
- #: includes/wc-gzd-dhl-core-functions.php:613
3008
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:613
3009
- msgctxt "dhl"
3010
- msgid "Please either add a return company or name."
3011
  msgstr ""
3012
 
3013
- #: includes/wc-gzd-dhl-core-functions.php:632
3014
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:632
3015
- msgctxt "dhl"
3016
- msgid "Error while parsing preferred day."
3017
  msgstr ""
3018
 
3019
- #: includes/wc-gzd-dhl-core-functions.php:643
3020
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:643
3021
- msgctxt "dhl"
3022
- msgid "Error while parsing preferred time."
3023
  msgstr ""
3024
 
3025
- #: includes/wc-gzd-dhl-core-functions.php:668
3026
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:668
3027
- msgctxt "dhl"
3028
- msgid "The visual min age check is invalid."
3029
  msgstr ""
3030
 
3031
- #: includes/wc-gzd-dhl-core-functions.php:692
3032
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:692
3033
- msgctxt "dhl"
3034
- msgid "The ident min age check is invalid."
3035
  msgstr ""
3036
 
3037
- #: includes/wc-gzd-dhl-core-functions.php:699
3038
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:699
3039
- msgctxt "dhl"
3040
- msgid "There was an error parsing the date of birth for the identity check."
3041
  msgstr ""
3042
 
3043
- #: includes/wc-gzd-dhl-core-functions.php:704
3044
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:704
3045
- msgctxt "dhl"
3046
- msgid "Either a minimum age or a date of birth must be added to the ident check."
3047
  msgstr ""
3048
 
3049
- #: includes/wc-gzd-dhl-core-functions.php:718
3050
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:718
3051
- msgctxt "dhl"
3052
- msgid "%s duties element does not exist."
3053
  msgstr ""
3054
 
3055
- #: includes/wc-gzd-dhl-core-functions.php:1342
3056
- #: includes/wc-gzd-dhl-core-functions.php:1426
3057
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1342
3058
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1426
3059
- msgctxt "dhl"
3060
- msgid "Invalid shipment"
3061
  msgstr ""
3062
 
3063
- #: includes/wc-gzd-dhl-core-functions.php:1346
3064
- #: includes/wc-gzd-dhl-core-functions.php:1430
3065
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1346
3066
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1430
3067
- msgctxt "dhl"
3068
- msgid "Order does not exist"
3069
  msgstr ""
3070
 
3071
- #: includes/wc-gzd-dhl-core-functions.php:1378
3072
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1378
3073
- msgctxt "dhl"
3074
- msgid "Error while creating the label instance"
3075
  msgstr ""
3076
 
3077
- #: includes/wc-gzd-dhl-core-functions.php:1501
3078
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1501
3079
- msgctxt "dhl"
3080
- msgid "Invalid label"
 
 
3081
  msgstr ""
3082
 
3083
- #: includes/wc-gzd-dhl-core-functions.php:1589
3084
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1589
3085
- msgctxt "dhl"
3086
- msgid "DHL Retoure International A"
3087
  msgstr ""
3088
 
3089
- #: includes/wc-gzd-dhl-core-functions.php:1590
3090
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1590
3091
- msgctxt "dhl"
3092
- msgid "DHL Retoure International B"
3093
  msgstr ""
3094
 
3095
- #: includes/wc-gzd-dhl-core-functions.php:1599
3096
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1599
3097
- msgctxt "dhl"
3098
- msgid "DHL Retoure Online"
3099
  msgstr ""
3100
 
3101
- #: includes/wc-gzd-dhl-core-functions.php:1616
3102
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1616
3103
- msgctxt "dhl"
3104
- msgid "DHL Paket Connect"
3105
  msgstr ""
3106
 
3107
- #: includes/wc-gzd-dhl-core-functions.php:1617
3108
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1617
3109
- msgctxt "dhl"
3110
- msgid "DHL Europaket (B2B)"
3111
  msgstr ""
3112
 
3113
- #: includes/wc-gzd-dhl-core-functions.php:1618
3114
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1618
3115
- msgctxt "dhl"
3116
- msgid "DHL Paket International"
3117
  msgstr ""
3118
 
3119
- #: includes/wc-gzd-dhl-core-functions.php:1693
3120
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1693
3121
- msgctxt "dhl"
3122
- msgid "DHL Paket"
3123
  msgstr ""
3124
 
3125
- #: includes/wc-gzd-dhl-core-functions.php:1694
3126
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1694
3127
- msgctxt "dhl"
3128
- msgid "DHL Paket PRIO"
3129
  msgstr ""
3130
 
3131
- #: includes/wc-gzd-dhl-core-functions.php:1695
3132
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1695
3133
- msgctxt "dhl"
3134
- msgid "DHL Paket Taggleich"
3135
  msgstr ""
3136
 
3137
- #: includes/wc-gzd-dhl-core-functions.php:1696
3138
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1696
3139
- msgctxt "dhl"
3140
- msgid "DHL Warenpost"
3141
  msgstr ""
3142
 
3143
- #: includes/wc-gzd-dhl-core-functions.php:1783
3144
- #: packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1783
3145
- msgctxt "dhl"
3146
- msgid "Error while uploading label."
3147
  msgstr ""
3148
 
3149
- #: src/Admin/Admin.php:59
3150
- #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:59
3151
- msgctxt "dhl"
3152
- msgid "Refreshed data successfully."
3153
  msgstr ""
3154
 
3155
- #: src/Admin/Admin.php:59
3156
- #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:59
3157
- msgctxt "dhl"
3158
- msgid "Error while refreshing data. Please make sure that the Internetmarke API URL can be <a href=\"%s\">accessed</a>."
3159
  msgstr ""
3160
 
3161
- #: src/Admin/Admin.php:176
3162
- #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:176
3163
- msgctxt "dhl"
3164
- msgid "Receiver Ids"
3165
  msgstr ""
3166
 
3167
- #: src/Admin/Admin.php:183
3168
- #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:183
3169
- msgctxt "dhl"
3170
- msgid "Receiver Id"
 
3171
  msgstr ""
3172
 
3173
- #: src/Admin/Admin.php:183
3174
- #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:183
3175
- msgctxt "dhl"
3176
- msgid "Find your Receiver Ids within your DHL contract data."
3177
  msgstr ""
3178
 
3179
- #: src/Admin/Admin.php:184
3180
- #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:184
3181
- msgctxt "dhl"
3182
- msgid "Country Code"
3183
  msgstr ""
3184
 
3185
- #: src/Admin/Admin.php:184
3186
- #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:184
3187
- msgctxt "dhl"
3188
- msgid "Leave empty to use the Receiver Id as fallback."
3189
  msgstr ""
3190
 
3191
- #: src/Admin/Admin.php:204
3192
- #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:204
3193
- msgctxt "dhl"
3194
- msgid "+ Add receiver"
3195
  msgstr ""
3196
 
3197
- #: src/Admin/Admin.php:204
3198
- #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:204
3199
- msgctxt "dhl"
3200
- msgid "Remove selected receiver(s)"
3201
  msgstr ""
3202
 
3203
- #: src/Admin/Admin.php:240
3204
- #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:240
3205
- msgctxt "dhl"
3206
- msgid "Select a country"
3207
  msgstr ""
3208
 
3209
- #: src/Admin/Admin.php:242
3210
- #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:242
3211
- msgctxt "dhl"
3212
- msgid "HS-Code (DHL)"
3213
  msgstr ""
3214
 
3215
- #: src/Admin/Admin.php:242
3216
- #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:242
3217
- msgctxt "dhl"
3218
- msgid "The HS Code is a number assigned to every possible commodity that can be imported or exported from any country."
 
3219
  msgstr ""
3220
 
3221
- #: src/Admin/Admin.php:243
3222
- #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:243
3223
- msgctxt "dhl"
3224
- msgid "Country of manufacture (DHL)"
3225
  msgstr ""
3226
 
3227
- #: src/Admin/Admin.php:243
3228
- #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:243
3229
- msgctxt "dhl"
3230
- msgid "The country of manufacture is needed for customs of international shipping."
3231
  msgstr ""
3232
 
3233
- #: src/Admin/Admin.php:264
3234
- #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:264
3235
- msgctxt "dhl"
3236
- msgid "DHL label upload directory missing. Please manually create the folder %s and make sure that it is writeable."
 
 
 
 
3237
  msgstr ""
3238
 
3239
- #: src/Admin/Admin.php:271
3240
- #: src/Admin/Settings.php:1464
3241
- #: src/ShippingProvider/DHL.php:39
3242
- #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:271
3243
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1464
3244
- #: packages/woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:39
3245
- msgctxt "dhl"
3246
- msgid "DHL"
3247
  msgstr ""
3248
 
3249
- #: src/Admin/Admin.php:286
3250
- #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:286
3251
- msgctxt "dhl"
3252
- msgid "DHL Label"
3253
  msgstr ""
3254
 
3255
- #: src/Admin/Admin.php:298
3256
- #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:298
3257
- msgctxt "dhl"
3258
- msgid "This label has been generated by the DHL for WooCommerce Plugin and is shown for legacy purposes."
3259
  msgstr ""
3260
 
3261
- #: src/Admin/Admin.php:299
3262
- #: packages/woocommerce-germanized-dhl/src/Admin/Admin.php:299
3263
- msgctxt "dhl"
3264
- msgid "Download label"
3265
  msgstr ""
3266
 
3267
- #: src/Admin/Settings.php:33
3268
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:33
3269
- msgctxt "dhl"
3270
- msgid "Enable DHL"
3271
  msgstr ""
3272
 
3273
- #: src/Admin/Settings.php:34
3274
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:34
3275
- msgctxt "dhl"
3276
- msgid "If you want to ship your shipments via DHL and create labels to your shipments please enable the DHL integration."
 
3277
  msgstr ""
3278
 
3279
- #: src/Admin/Settings.php:47
3280
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:47
3281
- msgctxt "dhl"
3282
- msgid "Customer Number"
3283
  msgstr ""
3284
 
3285
- #: src/Admin/Settings.php:48
3286
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:48
3287
- msgctxt "dhl"
3288
- msgid "Insert your DHL business customer number (EKP) here. If you are not yet a business customer you might want to create a new account first."
 
 
3289
  msgstr ""
3290
 
3291
- #: src/Admin/Settings.php:61
3292
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:61
3293
- msgctxt "dhl"
3294
- msgid "API Access"
3295
  msgstr ""
3296
 
3297
- #: src/Admin/Settings.php:62
3298
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:62
3299
- msgctxt "dhl"
3300
- msgid "To create labels and embed DHL services, our software needs access to the API. You will need to fill out the username and password fields accordingly."
 
 
3301
  msgstr ""
3302
 
3303
- #: src/Admin/Settings.php:80
3304
- #: src/Admin/Settings.php:328
3305
- #: src/Admin/Settings.php:477
3306
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:80
3307
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:328
3308
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:477
3309
- msgctxt "dhl"
3310
- msgid "Inlay Returns"
3311
  msgstr ""
3312
 
3313
- #: src/Admin/Settings.php:81
3314
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:81
3315
- msgctxt "dhl"
3316
- msgid "If you want to provide your customers with inlay return labels for your shipments you might enable this feature by default here."
3317
  msgstr ""
3318
 
3319
- #: src/Admin/Settings.php:94
3320
- #: src/Admin/Settings.php:723
3321
- #: src/Admin/Settings.php:953
3322
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:94
3323
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:723
3324
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:953
3325
- msgctxt "dhl"
3326
- msgid "Retoure"
3327
  msgstr ""
3328
 
3329
- #: src/Admin/Settings.php:95
3330
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:95
3331
- msgctxt "dhl"
3332
- msgid "If you want to create DHL labels to returns you should activate this feature. Make sure that you have DHL Online Retoure activated in your contract."
3333
  msgstr ""
3334
 
3335
- #: src/Admin/Settings.php:108
3336
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:108
3337
- msgctxt "dhl"
3338
- msgid "Age verification"
3339
  msgstr ""
3340
 
3341
- #: src/Admin/Settings.php:109
3342
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:109
3343
- msgctxt "dhl"
3344
- msgid "Use this feature to sync the Germanized age verification checkbox with the DHL visual minimum age verification service. As soon as applicable products are contained within the shipment, the service will be booked by default."
3345
  msgstr ""
3346
-
3347
- #: src/Admin/Settings.php:122
3348
- #: src/Admin/Settings.php:747
3349
- #: src/Admin/Settings.php:1391
3350
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:122
3351
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:747
3352
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1391
3353
- msgctxt "dhl"
3354
- msgid "Automation"
3355
  msgstr ""
3356
 
3357
- #: src/Admin/Settings.php:123
3358
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:123
3359
- msgctxt "dhl"
3360
- msgid "You might want to save some time and let Germanized generate labels automatically as soon as a shipment switches to a certain status."
3361
  msgstr ""
3362
 
3363
- #: src/Admin/Settings.php:142
3364
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:142
3365
- msgctxt "dhl"
3366
- msgid "Let your customers choose a preferred day (if the service is available at the customer's location) of delivery within your checkout."
3367
  msgstr ""
3368
 
3369
- #: src/Admin/Settings.php:155
3370
- #: src/Admin/Settings.php:982
3371
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:155
3372
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:982
3373
- msgctxt "dhl"
3374
- msgid "Fee"
3375
  msgstr ""
3376
 
3377
- #: src/Admin/Settings.php:156
3378
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:156
3379
- msgctxt "dhl"
3380
- msgid "Optionally charge your customers an additional fee for preferred services like preferred day."
3381
  msgstr ""
3382
 
3383
- #: src/Admin/Settings.php:170
3384
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:170
3385
- msgctxt "dhl"
3386
- msgid "Allow your customers to send their parcels to a preferred location e.g. a neighbor. This service is free of charge for DHL shipments."
3387
  msgstr ""
3388
 
3389
- #: src/Admin/Settings.php:189
3390
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:189
3391
- msgctxt "dhl"
3392
- msgid "Allow your customers to choose packstation (and/or other DHL location types as configured below) as shipping address."
3393
  msgstr ""
3394
 
3395
- #: src/Admin/Settings.php:202
3396
- #: src/Admin/Settings.php:1130
3397
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:202
3398
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1130
3399
- msgctxt "dhl"
3400
- msgid "Map"
3401
  msgstr ""
3402
 
3403
- #: src/Admin/Settings.php:203
3404
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:203
3405
- msgctxt "dhl"
3406
- msgid "This option adds a map overlay view to let your customers choose a DHL location from a map nearby. You'll need a valid Google Maps API key to enable the map view."
3407
  msgstr ""
3408
 
3409
- #: src/Admin/Settings.php:223
3410
- #: src/Admin/Settings.php:1167
3411
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:223
3412
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1167
3413
- msgctxt "dhl"
3414
- msgid "Enable"
3415
  msgstr ""
3416
 
3417
- #: src/Admin/Settings.php:224
3418
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:224
3419
- msgctxt "dhl"
3420
- msgid "Enable DHL integration."
 
3421
  msgstr ""
3422
 
3423
- #: src/Admin/Settings.php:231
3424
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:231
3425
- msgctxt "dhl"
3426
- msgid "Customer Number (EKP)"
3427
  msgstr ""
3428
 
3429
- #: src/Admin/Settings.php:233
3430
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:233
3431
- msgctxt "dhl"
3432
- msgid "Your 10 digits DHL customer number, also called \"EKP\". Find your %s in the DHL business portal."
3433
  msgstr ""
3434
 
3435
- #: src/Admin/Settings.php:233
3436
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:233
3437
- msgctxt "dhl"
3438
- msgid "customer number"
3439
  msgstr ""
3440
 
3441
- #: src/Admin/Settings.php:242
3442
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:242
3443
- msgctxt "dhl"
3444
- msgid "API"
3445
  msgstr ""
3446
 
3447
- #: src/Admin/Settings.php:245
3448
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:245
3449
- msgctxt "dhl"
3450
- msgid "Enable Sandbox"
3451
  msgstr ""
3452
 
3453
- #: src/Admin/Settings.php:246
3454
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:246
3455
- msgctxt "dhl"
3456
- msgid "Activate Sandbox mode for testing purposes."
3457
  msgstr ""
3458
 
3459
- #: src/Admin/Settings.php:253
3460
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:253
3461
- msgctxt "dhl"
3462
- msgid "Live Username"
3463
  msgstr ""
3464
 
3465
- #: src/Admin/Settings.php:255
3466
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:255
3467
- msgctxt "dhl"
3468
- msgid "Your username for the DHL business customer portal. Please note the lower case and test your access data in advance %s."
3469
  msgstr ""
3470
 
3471
- #: src/Admin/Settings.php:255
3472
- #: src/Admin/Settings.php:264
3473
- #: src/Admin/Settings.php:273
3474
- #: src/Admin/Settings.php:282
3475
- #: src/Admin/Settings.php:299
3476
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:255
3477
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:264
3478
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:273
3479
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:282
3480
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:299
3481
- msgctxt "dhl"
3482
- msgid "here"
3483
  msgstr ""
3484
 
3485
- #: src/Admin/Settings.php:262
3486
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:262
3487
- msgctxt "dhl"
3488
- msgid "Live Password"
3489
  msgstr ""
3490
 
3491
- #: src/Admin/Settings.php:264
3492
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:264
3493
- msgctxt "dhl"
3494
- msgid "Your password for the DHL business customer portal. Please note the new assignment of the password to 3 (Standard User) or 12 (System User) months and test your access data in advance %s."
3495
  msgstr ""
3496
 
3497
- #: src/Admin/Settings.php:271
3498
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:271
3499
- msgctxt "dhl"
3500
- msgid "Sandbox Username"
3501
  msgstr ""
3502
 
3503
- #: src/Admin/Settings.php:273
3504
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:273
3505
- msgctxt "dhl"
3506
- msgid "Your username for the DHL developer portal. Please note the lower case and test your access data in advance %s."
3507
  msgstr ""
3508
 
3509
- #: src/Admin/Settings.php:280
3510
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:280
3511
- msgctxt "dhl"
3512
- msgid "Sandbox Password"
3513
  msgstr ""
3514
 
3515
- #: src/Admin/Settings.php:282
3516
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:282
3517
- msgctxt "dhl"
3518
- msgid "Your password for the DHL developer portal. Please test your access data in advance %s."
3519
  msgstr ""
3520
 
3521
- #: src/Admin/Settings.php:295
3522
- #: src/Admin/Settings.php:338
3523
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:295
3524
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:338
3525
- msgctxt "dhl"
3526
- msgid "Products and Participation Numbers"
3527
  msgstr ""
3528
 
3529
- #: src/Admin/Settings.php:299
3530
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:299
3531
- msgctxt "dhl"
3532
- msgid "Please enter your participation number to the corresponding product. You can add other participation numbers later %s."
3533
  msgstr ""
3534
 
3535
- #: src/Admin/Settings.php:338
3536
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:338
3537
- msgctxt "dhl"
3538
- msgid "For each DHL product that you would like to use, please enter your participation number here. The participation number consists of the last two characters of the respective accounting number, which you will find in your %s (e.g.: 01)."
3539
  msgstr ""
3540
 
3541
- #: src/Admin/Settings.php:338
3542
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:338
3543
- msgctxt "dhl"
3544
- msgid "contract data"
3545
  msgstr ""
3546
 
3547
- #: src/Admin/Settings.php:392
3548
- #: src/Admin/Settings.php:1222
3549
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:392
3550
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1222
3551
- msgctxt "dhl"
3552
- msgid "Domestic Default Service"
3553
  msgstr ""
3554
 
3555
- #: src/Admin/Settings.php:396
3556
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:396
3557
- msgctxt "dhl"
3558
- msgid "Please select your default DHL shipping service for domestic shipments that you want to offer to your customers (you can always change this within each individual shipment afterwards)."
3559
  msgstr ""
3560
 
3561
- #: src/Admin/Settings.php:402
3562
- #: src/Admin/Settings.php:1242
3563
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:402
3564
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1242
3565
- msgctxt "dhl"
3566
- msgid "Int. Default Service"
3567
  msgstr ""
3568
 
3569
- #: src/Admin/Settings.php:406
3570
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:406
3571
- msgctxt "dhl"
3572
- msgid "Please select your default DHL shipping service for cross-border shipments that you want to offer to your customers (you can always change this within each individual shipment afterwards)."
3573
  msgstr ""
3574
 
3575
- #: src/Admin/Settings.php:412
3576
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:412
3577
- msgctxt "dhl"
3578
- msgid "Default Duty"
3579
  msgstr ""
3580
 
3581
- #: src/Admin/Settings.php:416
3582
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:416
3583
- msgctxt "dhl"
3584
- msgid "Please select a default duty type."
3585
  msgstr ""
3586
 
3587
- #: src/Admin/Settings.php:423
3588
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:423
3589
- msgctxt "dhl"
3590
- msgid "Codeable"
3591
  msgstr ""
3592
 
3593
- #: src/Admin/Settings.php:424
3594
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:424
3595
- msgctxt "dhl"
3596
- msgid "Generate label only if address can be automatically retrieved DHL."
3597
  msgstr ""
3598
 
3599
- #: src/Admin/Settings.php:428
3600
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:428
3601
- msgctxt "dhl"
3602
- msgid "Choose this option if you want to make sure that by default labels are only generated for codeable addresses."
3603
  msgstr ""
3604
 
3605
- #: src/Admin/Settings.php:432
3606
- #: src/Admin/Settings.php:1200
3607
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:432
3608
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1200
3609
- msgctxt "dhl"
3610
- msgid "Default weight (kg)"
3611
  msgstr ""
3612
 
3613
- #: src/Admin/Settings.php:434
3614
- #: src/Admin/Settings.php:1202
3615
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:434
3616
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1202
3617
- msgctxt "dhl"
3618
- msgid "Choose a default shipment weight to be used for labels if no weight has been applied to the shipment."
3619
  msgstr ""
3620
 
3621
- #: src/Admin/Settings.php:443
3622
- #: src/Admin/Settings.php:1211
3623
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:443
3624
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1211
3625
- msgctxt "dhl"
3626
- msgid "Minimum weight (kg)"
3627
  msgstr ""
3628
 
3629
- #: src/Admin/Settings.php:445
3630
- #: src/Admin/Settings.php:1213
3631
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:445
3632
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1213
3633
- msgctxt "dhl"
3634
- msgid "Choose a minimum weight to be used for labels e.g. to prevent low shipment weight errors."
3635
  msgstr ""
3636
 
3637
- #: src/Admin/Settings.php:457
3638
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:457
3639
- msgctxt "dhl"
3640
- msgid "Force email"
3641
  msgstr ""
3642
 
3643
- #: src/Admin/Settings.php:458
3644
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:458
3645
- msgctxt "dhl"
3646
- msgid "Force transferring customer email to DHL."
3647
  msgstr ""
3648
 
3649
- #: src/Admin/Settings.php:458
3650
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:458
3651
- msgctxt "dhl"
3652
- msgid "By default the customer email address is only transferred in case explicit consent has been given via a checkbox during checkout. You may force to transfer the customer email address during label creation to make sure your customers receive email notifications by DHL. Make sure to check your privacy policy and seek advice by a lawyer in case of doubt."
 
3653
  msgstr ""
3654
 
3655
- #: src/Admin/Settings.php:464
3656
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:464
3657
- msgctxt "dhl"
3658
- msgid "Street number"
3659
  msgstr ""
3660
 
3661
- #: src/Admin/Settings.php:465
3662
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:465
3663
- msgctxt "dhl"
3664
- msgid "Force existence of a street number within the first address field during checkout for EU countries."
3665
  msgstr ""
3666
 
3667
- #: src/Admin/Settings.php:466
3668
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:466
3669
- msgctxt "dhl"
3670
- msgid "Enabling this option will force a street number to be provided during checkout within the first address field to prevent missing or wrong data sets."
3671
  msgstr ""
3672
 
3673
- #: src/Admin/Settings.php:478
3674
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:478
3675
- msgctxt "dhl"
3676
- msgid "Additionally create inlay return labels for shipments that support returns."
3677
  msgstr ""
3678
 
3679
- #: src/Admin/Settings.php:497
3680
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:497
3681
- msgctxt "dhl"
3682
- msgid "Enable delivery to Packstation."
3683
  msgstr ""
3684
 
3685
- #: src/Admin/Settings.php:498
3686
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:498
3687
- msgctxt "dhl"
3688
- msgid "Let customers choose a Packstation as delivery address."
3689
  msgstr ""
3690
 
3691
- #: src/Admin/Settings.php:505
3692
- #: templates/checkout/dhl/parcel-finder.php:50
3693
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:505
3694
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:50
3695
- msgctxt "dhl"
3696
- msgid "Postoffice"
3697
  msgstr ""
3698
 
3699
- #: src/Admin/Settings.php:506
3700
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:506
3701
- msgctxt "dhl"
3702
- msgid "Enable delivery to Post Offices."
3703
  msgstr ""
3704
 
3705
- #: src/Admin/Settings.php:507
3706
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:507
3707
- msgctxt "dhl"
3708
- msgid "Let customers choose a Post Office as delivery address."
3709
  msgstr ""
3710
 
3711
- #: src/Admin/Settings.php:514
3712
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:514
3713
- msgctxt "dhl"
3714
- msgid "Parcel Shop"
3715
  msgstr ""
3716
 
3717
- #: src/Admin/Settings.php:515
3718
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:515
3719
- msgctxt "dhl"
3720
- msgid "Enable delivery to Parcel Shops."
3721
  msgstr ""
3722
 
3723
- #: src/Admin/Settings.php:516
3724
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:516
3725
- msgctxt "dhl"
3726
- msgid "Let customers choose a Parcel Shop as delivery address."
3727
  msgstr ""
3728
 
3729
- #: src/Admin/Settings.php:535
3730
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:535
3731
- msgctxt "dhl"
3732
- msgid "Enable the GoGreen Service by default."
3733
  msgstr ""
3734
 
3735
- #: src/Admin/Settings.php:541
3736
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:541
3737
- msgctxt "dhl"
3738
- msgid "Additional Insurance"
3739
  msgstr ""
3740
 
3741
- #: src/Admin/Settings.php:542
3742
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:542
3743
- msgctxt "dhl"
3744
- msgid "Add an additional insurance to labels."
3745
  msgstr ""
3746
 
3747
- #: src/Admin/Settings.php:548
3748
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:548
3749
- msgctxt "dhl"
3750
- msgid "Retail Outlet Routing"
3751
  msgstr ""
3752
 
3753
- #: src/Admin/Settings.php:549
3754
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:549
3755
- msgctxt "dhl"
3756
- msgid "Send undeliverable items to nearest retail outlet instead of immediate return."
3757
  msgstr ""
3758
 
3759
- #: src/Admin/Settings.php:555
3760
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:555
3761
- msgctxt "dhl"
3762
- msgid "No Neighbor"
3763
  msgstr ""
3764
 
3765
- #: src/Admin/Settings.php:556
3766
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:556
3767
- msgctxt "dhl"
3768
- msgid "Do not deliver to neighbors."
3769
  msgstr ""
3770
 
3771
- #: src/Admin/Settings.php:563
3772
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:563
3773
- msgctxt "dhl"
3774
- msgid "Do only delivery to named person."
3775
  msgstr ""
3776
 
3777
- #: src/Admin/Settings.php:569
3778
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:569
3779
- msgctxt "dhl"
3780
- msgid "Bulky Goods"
 
 
3781
  msgstr ""
3782
 
3783
- #: src/Admin/Settings.php:570
3784
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:570
3785
- msgctxt "dhl"
3786
- msgid "Deliver as bulky goods."
3787
  msgstr ""
3788
 
3789
- #: src/Admin/Settings.php:576
3790
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:576
3791
- msgctxt "dhl"
3792
- msgid "Minimum age (Visual check)"
3793
  msgstr ""
3794
 
3795
- #: src/Admin/Settings.php:581
3796
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:581
3797
- msgctxt "dhl"
3798
- msgid "Choose this option if you want to let DHL check your customer's age."
3799
  msgstr ""
3800
 
3801
- #: src/Admin/Settings.php:584
3802
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:584
3803
- msgctxt "dhl"
3804
- msgid "Sync (Visual Check)"
3805
  msgstr ""
3806
 
3807
- #: src/Admin/Settings.php:585
3808
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:585
3809
- msgctxt "dhl"
3810
- msgid "Visually verify age if shipment contains applicable items."
3811
  msgstr ""
3812
 
3813
- #: src/Admin/Settings.php:585
3814
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:585
3815
- msgctxt "dhl"
3816
- msgid "Germanized offers an %s to be enabled for certain products and/or product categories. By checking this option labels for shipments with applicable items will automatically have the visual age check service enabled."
3817
  msgstr ""
3818
 
3819
- #: src/Admin/Settings.php:585
3820
- #: src/Admin/Settings.php:600
3821
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:585
3822
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:600
3823
- msgctxt "dhl"
3824
- msgid "age verification checkbox"
3825
  msgstr ""
3826
 
3827
- #: src/Admin/Settings.php:591
3828
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:591
3829
- msgctxt "dhl"
3830
- msgid "Minimum age (Ident check)"
3831
  msgstr ""
3832
 
3833
- #: src/Admin/Settings.php:596
3834
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:596
3835
- msgctxt "dhl"
3836
- msgid "Choose this option if you want to let DHL check your customer's identity and age."
3837
  msgstr ""
3838
 
3839
- #: src/Admin/Settings.php:599
3840
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:599
3841
- msgctxt "dhl"
3842
- msgid "Sync (Ident Check)"
3843
  msgstr ""
3844
 
3845
- #: src/Admin/Settings.php:600
3846
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:600
3847
- msgctxt "dhl"
3848
- msgid "Verify identity and age if shipment contains applicable items."
3849
  msgstr ""
3850
 
3851
- #: src/Admin/Settings.php:600
3852
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:600
3853
- msgctxt "dhl"
3854
- msgid "Germanized offers an %s to be enabled for certain products and/or product categories. By checking this option labels for shipments with applicable items will automatically have the identity check service enabled."
3855
  msgstr ""
3856
 
3857
- #: src/Admin/Settings.php:607
3858
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:607
3859
- msgctxt "dhl"
3860
- msgid "Premium delivery for international shipments."
3861
  msgstr ""
3862
 
3863
- #: src/Admin/Settings.php:626
3864
- #: src/Admin/Settings.php:1264
3865
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:626
3866
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1264
3867
- msgctxt "dhl"
3868
- msgid "Labels"
3869
  msgstr ""
3870
 
3871
- #: src/Admin/Settings.php:627
3872
- #: src/Admin/Settings.php:1265
3873
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:627
3874
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1265
3875
- msgctxt "dhl"
3876
- msgid "Automatically create labels for shipments."
3877
  msgstr ""
3878
 
3879
- #: src/Admin/Settings.php:634
3880
- #: src/Admin/Settings.php:661
3881
- #: src/Admin/Settings.php:1272
3882
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:634
3883
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:661
3884
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1272
3885
- msgctxt "dhl"
3886
- msgid "Status"
3887
  msgstr ""
3888
 
3889
- #: src/Admin/Settings.php:638
3890
- #: src/Admin/Settings.php:1276
3891
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:638
3892
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1276
3893
- msgctxt "dhl"
3894
- msgid "Choose a shipment status which should trigger generation of a label."
3895
  msgstr ""
3896
 
3897
- #: src/Admin/Settings.php:645
3898
- #: src/Admin/Settings.php:1283
3899
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:645
3900
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1283
3901
- msgctxt "dhl"
3902
- msgid "Shipment Status"
3903
  msgstr ""
3904
 
3905
- #: src/Admin/Settings.php:646
3906
- #: src/Admin/Settings.php:1284
3907
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:646
3908
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1284
3909
- msgctxt "dhl"
3910
- msgid "Mark shipment as shipped after label has been created successfully."
3911
  msgstr ""
3912
 
3913
- #: src/Admin/Settings.php:653
3914
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:653
3915
- msgctxt "dhl"
3916
- msgid "Returns"
3917
  msgstr ""
3918
 
3919
- #: src/Admin/Settings.php:654
3920
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:654
3921
- msgctxt "dhl"
3922
- msgid "Automatically create labels for returns."
3923
  msgstr ""
3924
 
3925
- #: src/Admin/Settings.php:665
3926
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:665
3927
- msgctxt "dhl"
3928
- msgid "Choose a shipment status which should trigger generation of a return label."
3929
  msgstr ""
3930
 
3931
- #: src/Admin/Settings.php:713
3932
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:713
3933
- msgctxt "dhl"
3934
- msgid "Adjust options for label creation. Settings may be overridden by more specific %s settings."
3935
  msgstr ""
3936
 
3937
- #: src/Admin/Settings.php:713
3938
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:713
3939
- msgctxt "dhl"
3940
- msgid "shipping method"
3941
  msgstr ""
3942
 
3943
- #: src/Admin/Settings.php:723
3944
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:723
3945
- msgctxt "dhl"
3946
- msgid "Adjust handling of return shipments through the DHL Retoure API. Make sure that your %s contains DHL Retoure Online."
3947
  msgstr ""
3948
 
3949
- #: src/Admin/Settings.php:723
3950
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:723
3951
- msgctxt "dhl"
3952
- msgid "contract"
3953
  msgstr ""
3954
 
3955
- #: src/Admin/Settings.php:735
3956
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:735
3957
- msgctxt "dhl"
3958
- msgid "Default Services"
3959
  msgstr ""
3960
 
3961
- #: src/Admin/Settings.php:735
3962
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:735
3963
- msgctxt "dhl"
3964
- msgid "Adjust services to be added to your labels by default. Find out more about these %s."
3965
  msgstr ""
3966
 
3967
- #: src/Admin/Settings.php:735
3968
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:735
3969
- msgctxt "dhl"
3970
- msgid "nationwide services"
3971
  msgstr ""
3972
 
3973
- #: src/Admin/Settings.php:747
3974
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:747
3975
- msgctxt "dhl"
3976
- msgid "Choose whether and under which conditions labels for your shipments shall be requested and generated automatically."
3977
  msgstr ""
3978
 
3979
- #: src/Admin/Settings.php:758
3980
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:758
3981
- msgctxt "dhl"
3982
  msgid "Shipper Address"
3983
  msgstr ""
3984
 
3985
- #: src/Admin/Settings.php:782
3986
- #: src/Admin/Settings.php:851
3987
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:782
3988
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:851
3989
- msgctxt "dhl"
3990
- msgid "Street Number"
3991
  msgstr ""
3992
 
3993
- #: src/Admin/Settings.php:803
3994
- #: src/Admin/Settings.php:872
3995
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:803
3996
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:872
3997
- msgctxt "dhl"
3998
- msgid "Country"
3999
  msgstr ""
4000
 
4001
- #: src/Admin/Settings.php:827
4002
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:827
4003
- msgctxt "dhl"
4004
- msgid "Inlay Return Address"
4005
  msgstr ""
4006
 
4007
- #: src/Admin/Settings.php:896
4008
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:896
4009
- msgctxt "dhl"
4010
- msgid "Bank Account"
4011
  msgstr ""
4012
 
4013
- #: src/Admin/Settings.php:896
4014
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:896
4015
- msgctxt "dhl"
4016
- msgid "Enter your bank details needed for services that use COD."
4017
  msgstr ""
4018
 
4019
- #: src/Admin/Settings.php:899
4020
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:899
4021
- msgctxt "dhl"
4022
- msgid "Holder"
4023
  msgstr ""
4024
 
4025
- #: src/Admin/Settings.php:906
4026
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:906
4027
- msgctxt "dhl"
4028
- msgid "Bank Name"
4029
  msgstr ""
4030
 
4031
- #: src/Admin/Settings.php:913
4032
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:913
4033
- msgctxt "dhl"
4034
- msgid "IBAN"
4035
  msgstr ""
4036
 
4037
- #: src/Admin/Settings.php:920
4038
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:920
4039
- msgctxt "dhl"
4040
- msgid "BIC"
4041
  msgstr ""
4042
 
4043
- #: src/Admin/Settings.php:927
4044
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:927
4045
- msgctxt "dhl"
4046
- msgid "Payment Reference"
4047
  msgstr ""
4048
 
4049
- #: src/Admin/Settings.php:931
4050
- #: src/Admin/Settings.php:940
4051
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:931
4052
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:940
4053
- msgctxt "dhl"
4054
- msgid "Use these placeholders to add info to the payment reference: %s. This text is limited to 35 characters."
4055
  msgstr ""
4056
 
4057
- #: src/Admin/Settings.php:936
4058
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:936
4059
- msgctxt "dhl"
4060
- msgid "Payment Reference 2"
4061
  msgstr ""
4062
 
4063
- #: src/Admin/Settings.php:954
4064
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:954
4065
- msgctxt "dhl"
4066
- msgid "Enable creating labels for return shipments."
4067
  msgstr ""
4068
 
4069
- #: src/Admin/Settings.php:954
4070
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:954
4071
- msgctxt "dhl"
4072
- msgid "By enabling this option you might generate retoure labels for return shipments and send them to your customer via email."
 
4073
  msgstr ""
4074
 
4075
- #: src/Admin/Settings.php:975
4076
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:975
4077
- msgctxt "dhl"
4078
- msgid "Enable preferred day delivery."
4079
  msgstr ""
4080
 
4081
- #: src/Admin/Settings.php:975
4082
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:975
4083
- msgctxt "dhl"
4084
- msgid "Enabling this option will display options for the user to select their preferred day of delivery during the checkout."
4085
  msgstr ""
4086
 
4087
- #: src/Admin/Settings.php:984
4088
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:984
4089
- msgctxt "dhl"
4090
- msgid "Insert gross value as surcharge for preferred day delivery. Insert 0 to offer service for free."
4091
  msgstr ""
4092
 
4093
- #: src/Admin/Settings.php:995
4094
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:995
4095
- msgctxt "dhl"
4096
- msgid "Enable preferred location delivery."
4097
- msgstr ""
 
 
4098
 
4099
- #: src/Admin/Settings.php:995
4100
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:995
4101
- msgctxt "dhl"
4102
- msgid "Enabling this option will display options for the user to select their preferred delivery location during the checkout."
4103
- msgstr ""
 
 
4104
 
4105
- #: src/Admin/Settings.php:1003
4106
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1003
4107
- msgctxt "dhl"
4108
- msgid "Enable preferred neighbor delivery."
4109
  msgstr ""
4110
 
4111
- #: src/Admin/Settings.php:1003
4112
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1003
4113
- msgctxt "dhl"
4114
- msgid "Enabling this option will display options for the user to deliver to their preferred neighbor during the checkout."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4115
  msgstr ""
4116
 
4117
- #: src/Admin/Settings.php:1029
4118
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1029
4119
- msgctxt "dhl"
4120
- msgid "Cut-off time"
4121
  msgstr ""
4122
 
4123
- #: src/Admin/Settings.php:1032
4124
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1032
4125
- msgctxt "dhl"
4126
- msgid "The cut-off time is the latest possible order time up to which the minimum preferred day (day of order + 2 working days) can be guaranteed. As soon as the time is exceeded, the earliest preferred day displayed in the frontend will be shifted to one day later (day of order + 3 working days)."
4127
  msgstr ""
4128
 
4129
- #: src/Admin/Settings.php:1038
4130
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1038
4131
- msgctxt "dhl"
4132
- msgid "Preparation days"
4133
  msgstr ""
4134
 
4135
- #: src/Admin/Settings.php:1041
4136
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1041
4137
- msgctxt "dhl"
4138
- msgid "If you need more time to prepare your shipments you might want to add a static preparation time to the possible starting date for preferred day delivery."
4139
  msgstr ""
4140
 
4141
- #: src/Admin/Settings.php:1048
4142
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1048
4143
- msgctxt "dhl"
4144
- msgid "Exclude days of transfer"
 
4145
  msgstr ""
4146
 
4147
- #: src/Admin/Settings.php:1049
4148
- #: src/Api/FinderSoap.php:31
4149
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1049
4150
- #: packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php:31
4151
- msgctxt "dhl"
4152
- msgid "Monday"
4153
  msgstr ""
4154
 
4155
- #: src/Admin/Settings.php:1050
4156
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1050
4157
- msgctxt "dhl"
4158
- msgid "Exclude days from transferring shipments to DHL."
4159
  msgstr ""
4160
 
4161
- #: src/Admin/Settings.php:1059
4162
- #: src/Api/FinderSoap.php:32
4163
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1059
4164
- #: packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php:32
4165
- msgctxt "dhl"
4166
- msgid "Tuesday"
4167
  msgstr ""
4168
 
4169
- #: src/Admin/Settings.php:1068
4170
- #: src/Api/FinderSoap.php:33
4171
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1068
4172
- #: packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php:33
4173
- msgctxt "dhl"
4174
- msgid "Wednesday"
4175
  msgstr ""
4176
 
4177
- #: src/Admin/Settings.php:1077
4178
- #: src/Api/FinderSoap.php:34
4179
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1077
4180
- #: packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php:34
4181
- msgctxt "dhl"
4182
- msgid "Thursday"
4183
  msgstr ""
4184
 
4185
- #: src/Admin/Settings.php:1086
4186
- #: src/Api/FinderSoap.php:35
4187
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1086
4188
- #: packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php:35
4189
- msgctxt "dhl"
4190
- msgid "Friday"
4191
  msgstr ""
4192
 
4193
- #: src/Admin/Settings.php:1095
4194
- #: src/Api/FinderSoap.php:36
4195
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1095
4196
- #: packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php:36
4197
- msgctxt "dhl"
4198
- msgid "Saturday"
4199
  msgstr ""
4200
 
4201
- #: src/Admin/Settings.php:1104
4202
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1104
4203
- msgctxt "dhl"
4204
- msgid "Exclude gateways"
4205
  msgstr ""
4206
 
4207
- #: src/Admin/Settings.php:1106
4208
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1106
4209
- msgctxt "dhl"
4210
- msgid "Select payment gateways to be excluded from showing preferred services."
4211
  msgstr ""
4212
 
4213
- #: src/Admin/Settings.php:1131
4214
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1131
4215
- msgctxt "dhl"
4216
- msgid "Let customers find a DHL location on a map."
4217
  msgstr ""
4218
 
4219
- #: src/Admin/Settings.php:1131
4220
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1131
4221
- msgctxt "dhl"
4222
- msgid "Enable this option to let your customers choose a pickup option from a map within the checkout. If this option is disabled a link to the DHL website is placed instead."
4223
  msgstr ""
4224
 
4225
- #: src/Admin/Settings.php:1138
4226
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1138
4227
- msgctxt "dhl"
4228
- msgid "Google Maps Key"
4229
  msgstr ""
4230
 
4231
- #: src/Admin/Settings.php:1142
4232
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1142
4233
- msgctxt "dhl"
4234
- msgid "To integrate a map within your checkout you'll need a valid API key for Google Maps. You may %s."
4235
  msgstr ""
4236
 
4237
- #: src/Admin/Settings.php:1142
4238
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1142
4239
- msgctxt "dhl"
4240
- msgid "retrieve a new one"
4241
  msgstr ""
4242
 
4243
- #: src/Admin/Settings.php:1147
4244
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1147
4245
- msgctxt "dhl"
4246
- msgid "Limit results"
4247
  msgstr ""
4248
 
4249
- #: src/Admin/Settings.php:1151
4250
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1151
4251
- msgctxt "dhl"
4252
- msgid "Limit the number of DHL locations shown on the map"
4253
  msgstr ""
4254
 
4255
- #: src/Admin/Settings.php:1168
4256
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1168
4257
- msgctxt "dhl"
4258
- msgid "Enable Internetmarke integration."
4259
  msgstr ""
4260
 
4261
- #: src/Admin/Settings.php:1175
4262
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1175
4263
- msgctxt "dhl"
4264
- msgid "Username"
4265
  msgstr ""
4266
 
4267
- #: src/Admin/Settings.php:1177
4268
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1177
4269
- msgctxt "dhl"
4270
- msgid "Your credentials to the <a href=\"%s\" target=\"_blank\">Portokasse</a>. Please test your credentials before connecting."
4271
  msgstr ""
4272
 
4273
- #: src/Admin/Settings.php:1184
4274
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1184
4275
- msgctxt "dhl"
4276
- msgid "Password"
4277
  msgstr ""
4278
 
4279
- #: src/Admin/Settings.php:1226
4280
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1226
4281
- msgctxt "dhl"
4282
- msgid "Please select your default shipping service for domestic shipments that you want to offer to your customers (you can always change this within each individual shipment afterwards)."
4283
  msgstr ""
4284
 
4285
- #: src/Admin/Settings.php:1232
4286
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1232
4287
- msgctxt "dhl"
4288
- msgid "EU Default Service"
4289
  msgstr ""
4290
 
4291
- #: src/Admin/Settings.php:1236
4292
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1236
4293
- msgctxt "dhl"
4294
- msgid "Please select your default shipping service for EU shipments that you want to offer to your customers."
4295
  msgstr ""
4296
 
4297
- #: src/Admin/Settings.php:1246
4298
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1246
4299
- msgctxt "dhl"
4300
- msgid "Please select your default shipping service for cross-border shipments that you want to offer to your customers."
4301
  msgstr ""
4302
 
4303
- #: src/Admin/Settings.php:1303
4304
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1303
4305
- msgctxt "dhl"
4306
- msgid "Default Format"
4307
  msgstr ""
4308
 
4309
- #: src/Admin/Settings.php:1306
4310
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1306
4311
- msgctxt "dhl"
4312
- msgid "Choose a print format which will be selected by default when creating labels. Manually <a href=\"%s\">refresh</a> available print formats to make sure the list is up-to-date."
 
 
 
 
 
 
 
 
 
 
 
4313
  msgstr ""
4314
 
4315
- #: src/Admin/Settings.php:1333
4316
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1333
4317
- msgctxt "dhl"
4318
- msgid "Portokasse"
4319
  msgstr ""
4320
 
4321
- #: src/Admin/Settings.php:1336
4322
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1336
4323
- msgctxt "dhl"
4324
- msgid "Balance"
4325
  msgstr ""
4326
 
4327
- #: src/Admin/Settings.php:1343
4328
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1343
4329
- msgctxt "dhl"
4330
- msgid "Charge (€)"
4331
  msgstr ""
4332
 
4333
- #: src/Admin/Settings.php:1353
4334
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1353
4335
- msgctxt "dhl"
4336
- msgid "Products"
4337
  msgstr ""
4338
 
4339
- #: src/Admin/Settings.php:1356
4340
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1356
4341
- msgctxt "dhl"
4342
- msgid "Available Products"
4343
  msgstr ""
4344
 
4345
- #: src/Admin/Settings.php:1359
4346
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1359
4347
- msgctxt "dhl"
4348
- msgid "Choose the products you want to be available for your shipments from the list above. Manually <a href=\"%s\">refresh</a> the product list to make sure it is up-to-date."
4349
  msgstr ""
4350
 
4351
- #: src/Admin/Settings.php:1384
4352
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1384
4353
- msgctxt "dhl"
4354
- msgid "API Error"
4355
  msgstr ""
4356
 
4357
- #: src/Admin/Settings.php:1425
4358
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1425
4359
- msgctxt "dhl"
4360
- msgid "Charge Portokasse"
4361
  msgstr ""
4362
 
4363
- #: src/Admin/Settings.php:1426
4364
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1426
4365
- msgctxt "dhl"
4366
- msgid "The minimum amount is %s"
4367
  msgstr ""
4368
 
4369
- #: src/Admin/Settings.php:1436
4370
- #: src/Admin/Settings.php:1438
4371
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1436
4372
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1438
4373
- msgctxt "dhl"
4374
- msgid "Not yet a customer?"
4375
  msgstr ""
4376
 
4377
- #: src/Admin/Settings.php:1466
4378
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1466
4379
- msgctxt "dhl"
4380
- msgid "Internetmarke"
4381
  msgstr ""
4382
 
4383
- #: src/Admin/Settings.php:1467
4384
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1467
4385
- msgctxt "dhl"
4386
- msgid "Preferred Services"
4387
  msgstr ""
4388
 
4389
- #: src/Admin/Settings.php:1468
4390
- #: packages/woocommerce-germanized-dhl/src/Admin/Settings.php:1468
4391
- msgctxt "dhl"
4392
- msgid "Parcel Pickup"
4393
  msgstr ""
4394
 
4395
- #: src/Admin/Status.php:22
4396
- #: packages/woocommerce-germanized-dhl/src/Admin/Status.php:22
4397
- msgctxt "dhl"
4398
- msgid "Ping Check"
4399
  msgstr ""
4400
 
4401
- #: src/Admin/Status.php:37
4402
- #: packages/woocommerce-germanized-dhl/src/Admin/Status.php:37
4403
- msgctxt "dhl"
4404
- msgid "Unable to connect to the URL. Please make sure that your webhost allows outgoing connections to that specific URL."
4405
  msgstr ""
4406
 
4407
- #: src/Admin/Status.php:49
4408
- #: packages/woocommerce-germanized-dhl/src/Admin/Status.php:49
4409
- msgctxt "dhl"
4410
- msgid "DHL & Post"
4411
  msgstr ""
4412
 
4413
- #: src/Api/FinderSoap.php:37
4414
- #: packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php:37
4415
- msgctxt "dhl"
4416
- msgid "Sunday"
4417
  msgstr ""
4418
 
4419
- #: src/Api/FinderSoap.php:84
4420
- #: packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php:84
4421
- msgctxt "dhl"
4422
- msgid "At least shipping city or zip is required."
4423
  msgstr ""
4424
 
4425
- #: src/Api/FinderSoap.php:112
4426
- #: packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php:112
4427
- msgctxt "dhl location name"
4428
- msgid "%s %s"
4429
  msgstr ""
4430
 
4431
- #: src/Api/ImProductList.php:302
4432
- #: packages/woocommerce-germanized-dhl/src/Api/ImProductList.php:302
4433
- msgctxt "dhl"
4434
- msgid "PRIO"
4435
  msgstr ""
4436
 
4437
- #: src/Api/ImProductList.php:303
4438
- #: packages/woocommerce-germanized-dhl/src/Api/ImProductList.php:303
4439
- msgctxt "dhl"
4440
- msgid "Einschreiben (Einwurf)"
4441
  msgstr ""
4442
 
4443
- #: src/Api/ImProductList.php:304
4444
- #: packages/woocommerce-germanized-dhl/src/Api/ImProductList.php:304
4445
- msgctxt "dhl"
4446
- msgid "Einschreiben"
4447
  msgstr ""
4448
 
4449
- #: src/Api/ImProductList.php:305
4450
- #: packages/woocommerce-germanized-dhl/src/Api/ImProductList.php:305
4451
- msgctxt "dhl"
4452
- msgid "Einschreiben (Eigenhändig)"
4453
  msgstr ""
4454
 
4455
- #: src/Api/ImProductList.php:306
4456
- #: packages/woocommerce-germanized-dhl/src/Api/ImProductList.php:306
4457
- msgctxt "dhl"
4458
- msgid "Alterssichtprüfung 16"
4459
  msgstr ""
4460
 
4461
- #: src/Api/ImProductList.php:307
4462
- #: packages/woocommerce-germanized-dhl/src/Api/ImProductList.php:307
4463
- msgctxt "dhl"
4464
- msgid "Alterssichtprüfung 18"
4465
  msgstr ""
4466
 
4467
- #: src/Api/ImProductList.php:308
4468
- #: packages/woocommerce-germanized-dhl/src/Api/ImProductList.php:308
4469
- msgctxt "dhl"
4470
- msgid "Zusatzentgelt MBf"
4471
  msgstr ""
4472
 
4473
- #: src/Api/ImProductList.php:309
4474
- #: packages/woocommerce-germanized-dhl/src/Api/ImProductList.php:309
4475
- msgctxt "dhl"
4476
- msgid "Unterschrift"
4477
  msgstr ""
4478
 
4479
- #: src/Api/ImProductList.php:310
4480
- #: packages/woocommerce-germanized-dhl/src/Api/ImProductList.php:310
4481
- msgctxt "dhl"
4482
- msgid "Tracked"
4483
  msgstr ""
4484
 
4485
- #: src/Api/ImWarenpostIntRest.php:43
4486
- #: src/Api/ImWarenpostIntRest.php:52
4487
- #: src/Api/Internetmarke.php:490
4488
- #: packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:43
4489
- #: packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:52
4490
- #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:490
4491
- msgctxt "dhl"
4492
- msgid "Error while fetching label PDF"
4493
  msgstr ""
4494
 
4495
- #: src/Api/ImWarenpostIntRest.php:77
4496
- #: packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:77
4497
- msgctxt "dhl"
4498
- msgid "Missing shipment"
4499
  msgstr ""
4500
 
4501
- #: src/Api/ImWarenpostIntRest.php:168
4502
- #: packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:168
4503
- msgctxt "dhl"
4504
- msgid "Invalid API response"
4505
  msgstr ""
4506
 
4507
- #: src/Api/ImWarenpostIntRest.php:190
4508
- #: packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:190
4509
- msgctxt "dhl"
4510
- msgid "Error while authenticating user."
4511
  msgstr ""
4512
 
4513
- #: src/Api/ImWarenpostIntRest.php:276
4514
- #: packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:276
4515
- msgctxt "dhl"
4516
- msgid "Error during Warenpost International request."
4517
  msgstr ""
4518
 
4519
- #: src/Api/ImWarenpostIntRest.php:298
4520
- #: packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:298
4521
- msgctxt "dhl"
4522
- msgid "Error during request: %s"
4523
  msgstr ""
4524
 
4525
- #: src/Api/Internetmarke.php:64
4526
- #: src/Api/Soap.php:54
4527
- #: src/Package.php:84
4528
- #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:64
4529
- #: packages/woocommerce-germanized-dhl/src/Api/Soap.php:54
4530
- #: packages/woocommerce-germanized-dhl/src/Package.php:84
4531
- msgctxt "dhl"
4532
- msgid "To enable communication between your shop and DHL, the PHP <a href=\"%s\">SOAPClient</a> is required. Please contact your host and make sure that SOAPClient is <a href=\"%s\">installed</a>."
4533
  msgstr ""
4534
 
4535
- #: src/Api/Internetmarke.php:69
4536
- #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:69
4537
- msgctxt "dhl"
4538
- msgid "Error while instantiating main Internetmarke API: %s"
4539
  msgstr ""
4540
 
4541
- #: src/Api/Internetmarke.php:73
4542
- #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:73
4543
- msgctxt "dhl"
4544
- msgid "Internetmarke is disabled. Please enable Internetmarke."
4545
  msgstr ""
4546
 
4547
- #: src/Api/Internetmarke.php:84
4548
- #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:84
4549
- msgctxt "dhl"
4550
- msgid "Wrong username or password"
4551
  msgstr ""
4552
 
4553
- #: src/Api/Internetmarke.php:252
4554
- #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:252
4555
- msgctxt "dhl"
4556
- msgid "until %s"
4557
  msgstr ""
4558
 
4559
- #: src/Api/Internetmarke.php:337
4560
- #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:337
4561
- msgctxt "dhl"
4562
- msgid "Length: %s"
4563
  msgstr ""
4564
 
4565
- #: src/Api/Internetmarke.php:341
4566
- #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:341
4567
- msgctxt "dhl"
4568
- msgid "Width: %s"
4569
  msgstr ""
4570
 
4571
- #: src/Api/Internetmarke.php:345
4572
- #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:345
4573
- msgctxt "dhl"
4574
- msgid "Height: %s"
4575
  msgstr ""
4576
 
4577
- #: src/Api/Internetmarke.php:349
4578
- #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:349
4579
- msgctxt "dhl"
4580
- msgid "Weight: %s"
4581
  msgstr ""
4582
 
4583
- #: src/Api/Internetmarke.php:354
4584
- #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:354
4585
- msgctxt "dhl"
4586
- msgid "Total"
4587
  msgstr ""
4588
 
4589
- #: src/Api/Internetmarke.php:544
4590
- #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:544
4591
- msgctxt "dhl"
4592
- msgid "Could not refund post label: %s"
4593
  msgstr ""
4594
 
4595
- #: src/Api/Internetmarke.php:558
4596
- #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:558
4597
- msgctxt "dhl"
4598
- msgid "Refund API could not be instantiated"
4599
  msgstr ""
4600
 
4601
- #: src/Api/Internetmarke.php:647
4602
- #: src/Api/LabelSoap.php:379
4603
- #: src/Api/ReturnRest.php:34
4604
- #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:647
4605
- #: packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php:379
4606
- #: packages/woocommerce-germanized-dhl/src/Api/ReturnRest.php:34
4607
- msgctxt "dhl"
4608
- msgid "Could not fetch shipment %d."
4609
  msgstr ""
4610
 
4611
- #: src/Api/Internetmarke.php:687
4612
- #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:687
4613
- msgctxt "dhl"
4614
- msgid "Error while generating shop order id."
4615
  msgstr ""
4616
 
4617
- #: src/Api/Internetmarke.php:697
4618
- #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:697
4619
- msgctxt "dhl"
4620
- msgid "Error while trying to purchase the stamp. Please manually <a href=\"%s\">refresh</a> your product database and try again."
4621
  msgstr ""
4622
 
4623
- #: src/Api/Internetmarke.php:740
4624
- #: src/Api/Internetmarke.php:747
4625
- #: src/Api/Internetmarke.php:775
4626
- #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:740
4627
- #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:747
4628
- #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:775
4629
- msgctxt "dhl"
4630
- msgid "Error while downloading the PDF stamp."
4631
  msgstr ""
4632
 
4633
- #: src/Api/Internetmarke.php:782
4634
- #: packages/woocommerce-germanized-dhl/src/Api/Internetmarke.php:782
4635
- msgctxt "dhl"
4636
- msgid "Invalid stamp response."
4637
  msgstr ""
4638
 
4639
- #: src/Api/LabelSoap.php:99
4640
- #: packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php:99
4641
- msgctxt "dhl"
4642
- msgid "Your DHL API credentials seem to be invalid. Please check your DHL settings."
4643
  msgstr ""
4644
 
4645
- #: src/Api/LabelSoap.php:103
4646
- #: packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php:103
4647
- msgctxt "dhl"
4648
- msgid "Your products are missing data relevant for custom declarations. Please provide missing DHL fields (country of origin, HS code) in your product data > shipping tab."
4649
  msgstr ""
4650
 
4651
- #: src/Api/LabelSoap.php:113
4652
- #: packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php:113
4653
- msgctxt "dhl"
4654
- msgid "There was an error contacting the DHL API: %s."
4655
  msgstr ""
4656
 
4657
- #: src/Api/LabelSoap.php:116
4658
- #: packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php:116
4659
- msgctxt "dhl"
4660
- msgid "An error ocurred while contacting the DHL API. Please consider enabling the sandbox mode."
4661
  msgstr ""
4662
 
4663
- #: src/Api/LabelSoap.php:138
4664
- #: packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php:138
4665
- msgctxt "dhl"
4666
- msgid "There was an error generating the label. Please try again or consider switching to sandbox mode."
4667
  msgstr ""
4668
 
4669
- #: src/Api/LabelSoap.php:241
4670
- #: src/Api/ReturnRest.php:156
4671
- #: packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php:241
4672
- #: packages/woocommerce-germanized-dhl/src/Api/ReturnRest.php:156
4673
- msgctxt "dhl"
4674
- msgid "Error while creating and uploading the label"
4675
  msgstr ""
4676
 
4677
- #: src/Api/LabelSoap.php:327
4678
- #: packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php:327
4679
- msgctxt "dhl"
4680
- msgid "Could not delete label - %s"
4681
  msgstr ""
4682
 
4683
- #: src/Api/LabelSoap.php:358
4684
- #: packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php:358
4685
- msgctxt "dhl"
4686
- msgid "Could not create account number - no product number."
4687
  msgstr ""
4688
 
4689
- #: src/Api/LabelSoap.php:648
4690
- #: packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php:648
4691
- msgctxt "dhl"
4692
- msgid "Only %s shipment items can be processed, your shipment has %s items."
4693
  msgstr ""
4694
 
4695
- #: src/Api/Paket.php:61
4696
- #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:61
4697
- msgctxt "dhl"
4698
- msgid "Label API not available: %s"
4699
  msgstr ""
4700
 
4701
- #: src/Api/Paket.php:63
4702
- #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:63
4703
- msgctxt "dhl"
4704
- msgid "Label API not available"
4705
  msgstr ""
4706
 
4707
- #: src/Api/Paket.php:80
4708
- #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:80
4709
- msgctxt "dhl"
4710
- msgid "Parcel Finder API not available"
4711
  msgstr ""
4712
 
4713
- #: src/Api/Paket.php:96
4714
- #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:96
4715
- msgctxt "dhl"
4716
- msgid "Return API not available"
4717
  msgstr ""
4718
 
4719
- #: src/Api/Paket.php:112
4720
- #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:112
4721
- msgctxt "dhl"
4722
- msgid "Parcel API not available"
 
4723
  msgstr ""
4724
 
4725
- #: src/Api/Paket.php:258
4726
- #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:258
4727
- msgctxt "dhl"
4728
- msgid "Mon"
4729
  msgstr ""
4730
 
4731
- #: src/Api/Paket.php:259
4732
- #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:259
4733
- msgctxt "dhl"
4734
- msgid "Tue"
4735
  msgstr ""
4736
 
4737
- #: src/Api/Paket.php:260
4738
- #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:260
4739
- msgctxt "dhl"
4740
- msgid "Wed"
4741
  msgstr ""
4742
 
4743
- #: src/Api/Paket.php:261
4744
- #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:261
4745
- msgctxt "dhl"
4746
- msgid "Thu"
 
 
 
4747
  msgstr ""
4748
 
4749
- #: src/Api/Paket.php:262
4750
- #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:262
4751
- msgctxt "dhl"
4752
- msgid "Fri"
4753
  msgstr ""
4754
 
4755
- #: src/Api/Paket.php:263
4756
- #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:263
4757
- msgctxt "dhl"
4758
- msgid "Sat"
4759
  msgstr ""
4760
 
4761
- #: src/Api/Paket.php:264
4762
- #: packages/woocommerce-germanized-dhl/src/Api/Paket.php:264
4763
- msgctxt "dhl"
4764
- msgid "Sun"
4765
  msgstr ""
4766
 
4767
- #: src/Api/ParcelRest.php:25
4768
- #: packages/woocommerce-germanized-dhl/src/Api/ParcelRest.php:25
4769
- msgctxt "dhl"
4770
- msgid "Please provide the receiver postnumber."
4771
  msgstr ""
4772
 
4773
- #: src/Api/ParcelRest.php:29
4774
- #: packages/woocommerce-germanized-dhl/src/Api/ParcelRest.php:29
4775
- msgctxt "dhl"
4776
- msgid "Please set an account in the DHL shipping settings."
4777
  msgstr ""
4778
 
4779
- #: src/Api/ParcelRest.php:33
4780
- #: packages/woocommerce-germanized-dhl/src/Api/ParcelRest.php:33
4781
- msgctxt "dhl"
4782
- msgid "Please provide the shipment start date."
4783
  msgstr ""
4784
 
4785
- #: src/Api/Rest.php:101
4786
- #: packages/woocommerce-germanized-dhl/src/Api/Rest.php:101
4787
- msgctxt "dhl"
4788
- msgid "400 - "
4789
  msgstr ""
4790
 
4791
- #: src/Api/Rest.php:104
4792
- #: packages/woocommerce-germanized-dhl/src/Api/Rest.php:104
4793
- msgctxt "dhl"
4794
- msgid "401 - Unauthorized Access - Invalid token or Authentication Header parameter"
4795
  msgstr ""
4796
 
4797
- #: src/Api/Rest.php:107
4798
- #: packages/woocommerce-germanized-dhl/src/Api/Rest.php:107
4799
- msgctxt "dhl"
4800
- msgid "408 - Request Timeout"
4801
  msgstr ""
4802
 
4803
- #: src/Api/Rest.php:110
4804
- #: packages/woocommerce-germanized-dhl/src/Api/Rest.php:110
4805
- msgctxt "dhl"
4806
- msgid "429 - Too many requests in given amount of time"
4807
  msgstr ""
4808
 
4809
- #: src/Api/Rest.php:113
4810
- #: packages/woocommerce-germanized-dhl/src/Api/Rest.php:113
4811
- msgctxt "dhl"
4812
- msgid "503 - Service Unavailable"
4813
  msgstr ""
4814
 
4815
- #: src/Api/Rest.php:117
4816
- #: packages/woocommerce-germanized-dhl/src/Api/Rest.php:117
4817
- msgctxt "dhl"
4818
- msgid "GET error or timeout occured. Please try again later."
4819
  msgstr ""
4820
 
4821
- #: src/Api/Rest.php:170
4822
- #: packages/woocommerce-germanized-dhl/src/Api/Rest.php:170
4823
- msgctxt "dhl"
4824
- msgid "POST error or timeout occured. Please try again later."
4825
  msgstr ""
4826
 
4827
- #: src/DataStores/Label.php:316
4828
- #: packages/woocommerce-germanized-dhl/src/DataStores/Label.php:316
4829
- msgctxt "dhl"
4830
- msgid "Invalid label."
4831
  msgstr ""
4832
 
4833
- #: src/Order.php:299
4834
- #: src/SimpleLabel.php:157
4835
- #: packages/woocommerce-germanized-dhl/src/Order.php:299
4836
- #: packages/woocommerce-germanized-dhl/src/SimpleLabel.php:157
4837
- msgctxt "dhl time-span"
4838
- msgid "%s-%s"
4839
  msgstr ""
4840
 
4841
- #: src/Package.php:274
4842
- #: packages/woocommerce-germanized-dhl/src/Package.php:274
4843
- msgctxt "dhl"
4844
- msgid "Please check the street field and make sure to provide a valid street number."
4845
  msgstr ""
4846
 
4847
- #: src/Package.php:994
4848
- #: packages/woocommerce-germanized-dhl/src/Package.php:994
4849
- msgctxt "dhl"
4850
- msgid "Germany"
4851
  msgstr ""
4852
 
4853
- #: src/ParcelLocator.php:92
4854
- #: src/ParcelLocator.php:863
4855
- #: src/ParcelLocator.php:892
4856
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:92
4857
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:863
4858
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:892
4859
- msgctxt "dhl"
4860
- msgid "Address Type"
4861
  msgstr ""
4862
 
4863
- #: src/ParcelLocator.php:95
4864
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:95
4865
- msgctxt "dhl"
4866
- msgid "Select whether delivery to DHL locations should be enabled."
4867
  msgstr ""
4868
 
4869
- #: src/ParcelLocator.php:100
4870
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:100
4871
- msgctxt "dhl"
4872
- msgid "Postnumber"
4873
  msgstr ""
4874
 
4875
- #: src/ParcelLocator.php:102
4876
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:102
4877
- msgctxt "dhl"
4878
- msgid "In case delivery to packstation is selected please fill in the corresponding DHL post number."
4879
  msgstr ""
4880
 
4881
- #: src/ParcelLocator.php:188
4882
- #: src/ParcelLocator.php:579
4883
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:188
4884
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:579
4885
- msgctxt "dhl"
4886
- msgid "Invalid address type."
4887
  msgstr ""
4888
 
4889
- #: src/ParcelLocator.php:651
4890
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:651
4891
- msgctxt "dhl"
4892
- msgid "Sorry, but delivery to packstation is not available."
4893
  msgstr ""
4894
 
4895
- #: src/ParcelLocator.php:656
4896
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:656
4897
- msgctxt "dhl"
4898
- msgid "Sorry, but delivery to parcel shops is not available."
4899
  msgstr ""
4900
 
4901
- #: src/ParcelLocator.php:660
4902
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:660
4903
- msgctxt "dhl"
4904
- msgid "Sorry, but delivery to post offices is not available."
4905
  msgstr ""
4906
 
4907
- #: src/ParcelLocator.php:667
4908
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:667
4909
- msgctxt "dhl"
4910
- msgid "Please indicate shipment to %s by one of the following values: %s."
4911
  msgstr ""
4912
 
4913
- #: src/ParcelLocator.php:675
4914
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:675
4915
- msgctxt "dhl"
4916
- msgid "Your DHL customer number (Post number) is not valid. Please check your number."
4917
  msgstr ""
4918
 
4919
- #: src/ParcelLocator.php:678
4920
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:678
4921
- msgctxt "dhl"
4922
- msgid "Your DHL customer number (Post number) is needed to ship to a packstation."
4923
  msgstr ""
4924
 
4925
- #: src/ParcelLocator.php:727
4926
- #: src/ParcelLocator.php:854
4927
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:727
4928
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:854
4929
- msgctxt "dhl"
4930
- msgid "Branch"
4931
  msgstr ""
4932
 
4933
- #: src/ParcelLocator.php:728
4934
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:728
4935
- msgctxt "dhl"
4936
- msgid "Postnumber "
4937
  msgstr ""
4938
 
4939
- #: src/ParcelLocator.php:829
4940
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:829
4941
- msgctxt "dhl"
4942
- msgid "e.g. %s 456"
4943
  msgstr ""
4944
 
4945
- #: src/ParcelLocator.php:854
4946
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:854
4947
- msgctxt "dhl"
4948
- msgid "Branches"
4949
  msgstr ""
4950
 
4951
- #: src/ParcelLocator.php:870
4952
- #: src/ParcelLocator.php:903
4953
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:870
4954
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:903
4955
- msgctxt "dhl"
4956
- msgid "DHL customer number (Post number)"
4957
  msgstr ""
4958
 
4959
- #: src/ParcelLocator.php:880
4960
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:880
4961
- msgctxt "dhl"
4962
- msgid "Regular Address"
4963
  msgstr ""
4964
 
4965
- #: src/ParcelLocator.php:907
4966
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:907
4967
- msgctxt "dhl"
4968
- msgid "Not yet a DHL customer?"
4969
  msgstr ""
4970
 
4971
- #: src/ParcelLocator.php:907
4972
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:907
4973
- msgctxt "dhl"
4974
- msgid "Register now"
4975
  msgstr ""
4976
 
4977
- #: src/ParcelLocator.php:956
4978
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:956
4979
- msgctxt "dhl"
4980
- msgid "Search %s"
4981
  msgstr ""
4982
 
4983
- #: src/ParcelLocator.php:1061
4984
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:1061
4985
- msgctxt "dhl"
4986
- msgid "No DHL locations found"
4987
  msgstr ""
4988
 
4989
- #: src/ParcelLocator.php:1076
4990
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:1076
4991
- msgctxt "dhl"
4992
- msgid "There was an error while communicating with DHL. Please manually find a %s or %s."
4993
  msgstr ""
4994
 
4995
- #: src/ParcelLocator.php:1076
4996
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:1076
4997
- msgctxt "dhl"
4998
- msgid "DHL location"
4999
  msgstr ""
5000
 
5001
- #: src/ParcelLocator.php:1076
5002
- #: packages/woocommerce-germanized-dhl/src/ParcelLocator.php:1076
5003
- msgctxt "dhl"
5004
- msgid "retry"
5005
  msgstr ""
5006
 
5007
- #: src/ParcelServices.php:135
5008
- #: packages/woocommerce-germanized-dhl/src/ParcelServices.php:135
5009
- msgctxt "dhl"
5010
- msgid "DHL Preferred Day"
5011
  msgstr ""
5012
 
5013
- #: src/ParcelServices.php:278
5014
- #: packages/woocommerce-germanized-dhl/src/ParcelServices.php:278
5015
- msgctxt "dhl"
5016
- msgid "Sorry, but the preferred day you have chosen is no longer available."
5017
  msgstr ""
5018
 
5019
- #: src/ParcelServices.php:301
5020
- #: packages/woocommerce-germanized-dhl/src/ParcelServices.php:301
5021
- msgctxt "dhl"
5022
- msgid "Please choose a preferred location."
 
5023
  msgstr ""
5024
 
5025
- #: src/ParcelServices.php:313
5026
- #: packages/woocommerce-germanized-dhl/src/ParcelServices.php:313
5027
- msgctxt "dhl"
5028
- msgid "Please choose name and address of your preferred neighbor."
 
 
 
 
 
 
 
 
5029
  msgstr ""
5030
-
5031
- #: src/ReturnLabel.php:125
5032
- #: src/SimpleLabel.php:86
5033
- #: packages/woocommerce-germanized-dhl/src/ReturnLabel.php:125
5034
- #: packages/woocommerce-germanized-dhl/src/SimpleLabel.php:86
5035
- msgctxt "dhl full name"
5036
- msgid "%1$s"
5037
  msgstr ""
5038
 
5039
- #: src/ShippingProvider/DeutschePost.php:31
5040
- #: packages/woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:31
5041
- msgctxt "dhl"
5042
- msgid "Deutsche Post"
5043
  msgstr ""
5044
 
5045
- #: src/ShippingProvider/DeutschePost.php:39
5046
- #: packages/woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:39
5047
- msgctxt "dhl"
5048
- msgid "Integration for products of the Deutsche Post through Internetmarke."
5049
  msgstr ""
5050
 
5051
- #: src/ShippingProvider/DHL.php:47
5052
- #: packages/woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:47
5053
- msgctxt "dhl"
5054
- msgid "Complete DHL integration supporting labels, preferred services and packstation delivery."
5055
  msgstr ""
5056
 
5057
- #: templates/checkout/dhl/parcel-finder-result.php:31
5058
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:31
5059
- msgctxt "dhl"
5060
- msgid "Opening Times"
5061
  msgstr ""
5062
 
5063
- #: templates/checkout/dhl/parcel-finder-result.php:39
5064
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:39
5065
- msgctxt "dhl"
5066
- msgid "Services"
5067
  msgstr ""
5068
 
5069
- #: templates/checkout/dhl/parcel-finder-result.php:41
5070
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:41
5071
- msgctxt "dhl"
5072
- msgid "Handicap Accessible"
 
5073
  msgstr ""
5074
 
5075
- #: templates/checkout/dhl/parcel-finder-result.php:41
5076
- #: templates/checkout/dhl/parcel-finder-result.php:42
5077
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:41
5078
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:42
5079
- msgctxt "dhl"
5080
- msgid "Yes"
5081
  msgstr ""
5082
 
5083
- #: templates/checkout/dhl/parcel-finder-result.php:41
5084
- #: templates/checkout/dhl/parcel-finder-result.php:42
5085
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:41
5086
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:42
5087
- msgctxt "dhl"
5088
- msgid "No"
5089
  msgstr ""
5090
 
5091
- #: templates/checkout/dhl/parcel-finder-result.php:42
5092
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:42
5093
- msgctxt "dhl"
5094
- msgid "Parking"
 
 
5095
  msgstr ""
5096
 
5097
- #: templates/checkout/dhl/parcel-finder-result.php:47
5098
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:47
5099
- msgctxt "dhl"
5100
- msgid "Select "
 
 
 
5101
  msgstr ""
5102
 
5103
- #: templates/checkout/dhl/parcel-finder.php:33
5104
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:33
5105
- msgctxt "dhl"
5106
- msgid "Address"
5107
  msgstr ""
5108
 
5109
- #: templates/checkout/dhl/parcel-finder.php:44
5110
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:44
5111
- msgctxt "dhl"
5112
- msgid "Parcelshop"
5113
  msgstr ""
5114
 
5115
- #: templates/checkout/dhl/parcel-finder.php:55
5116
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:55
5117
- msgctxt "dhl"
5118
- msgid "Search"
 
5119
  msgstr ""
5120
 
5121
- #: templates/checkout/dhl/preferred-services.php:27
5122
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:27
5123
- msgctxt "dhl"
5124
- msgid "DHL Preferred Delivery. Delivered just as you wish."
 
5125
  msgstr ""
5126
 
5127
- #: templates/checkout/dhl/preferred-services.php:30
5128
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:30
5129
- msgctxt "dhl"
5130
- msgid ""
5131
- "Thanks to the flexible recipient services of DHL Preferred Delivery, you decide\n"
5132
- "when and where you want to receive your parcels.<br/>\n"
5133
- "Please choose your preferred delivery option."
5134
  msgstr ""
5135
 
5136
- #: templates/checkout/dhl/preferred-services.php:38
5137
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:38
5138
- msgctxt "dhl"
5139
- msgid "Preferred day: Delivery at your preferred day."
5140
  msgstr ""
5141
 
5142
- #: templates/checkout/dhl/preferred-services.php:38
5143
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:38
5144
- msgctxt "dhl"
5145
- msgid "Choose one of the displayed days as your preferred day for your parcel delivery. Other days are not possible due to delivery processes."
5146
  msgstr ""
5147
 
5148
- #: templates/checkout/dhl/preferred-services.php:42
5149
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:42
5150
- msgctxt "dhl"
5151
- msgid "There is a surcharge of %s incl. VAT for this service.*"
5152
  msgstr ""
5153
 
5154
- #: templates/checkout/dhl/preferred-services.php:65
5155
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:65
5156
- msgctxt "dhl"
5157
- msgid "Preferred location or neighbor"
5158
  msgstr ""
5159
 
5160
- #: templates/checkout/dhl/preferred-services.php:71
5161
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:71
5162
- msgctxt "dhl location context"
5163
- msgid "None"
5164
  msgstr ""
5165
 
5166
- #: templates/checkout/dhl/preferred-services.php:76
5167
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:76
5168
- msgctxt "dhl"
5169
- msgid "Location"
5170
  msgstr ""
5171
 
5172
- #: templates/checkout/dhl/preferred-services.php:82
5173
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:82
5174
- msgctxt "dhl"
5175
- msgid "Neighbor"
5176
  msgstr ""
5177
 
5178
- #: templates/checkout/dhl/preferred-services.php:89
5179
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:89
5180
- msgctxt "dhl"
5181
- msgid "Preferred location: Delivery to your preferred drop-off location"
5182
  msgstr ""
5183
 
5184
- #: templates/checkout/dhl/preferred-services.php:89
5185
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:89
5186
- msgctxt "dhl"
5187
- msgid "Choose a weather-protected and non-visible place on your property, where we can deposit the parcel in your absence."
5188
  msgstr ""
5189
 
5190
- #: templates/checkout/dhl/preferred-services.php:91
5191
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:91
5192
- msgctxt "dhl"
5193
- msgid "e.g. Garage, Terrace"
5194
  msgstr ""
5195
 
5196
- #: templates/checkout/dhl/preferred-services.php:98
5197
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:98
5198
- msgctxt "dhl"
5199
- msgid "Preferred neighbour: Delivery to a neighbour of your choice"
5200
  msgstr ""
5201
 
5202
- #: templates/checkout/dhl/preferred-services.php:98
5203
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:98
5204
- msgctxt "dhl"
5205
- msgid "Determine a person in your immediate neighborhood whom we can hand out your parcel in your absence. This person should live in the same building, directly opposite or next door."
5206
  msgstr ""
5207
 
5208
- #: templates/checkout/dhl/preferred-services.php:100
5209
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:100
5210
- msgctxt "dhl"
5211
- msgid "First name, last name of neighbor"
5212
  msgstr ""
5213
 
5214
- #: templates/checkout/dhl/preferred-services.php:101
5215
- #: packages/woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:101
5216
- msgctxt "dhl"
5217
- msgid "Street, number, postal code, city"
5218
  msgstr ""
5219
 
5220
- #. translators: 1: composer command. 2: plugin directory
5221
- #: woocommerce-germanized-dhl.php:40
5222
- #: woocommerce-germanized-dhl.php:58
5223
- #: packages/woocommerce-germanized-dhl/woocommerce-germanized-dhl.php:40
5224
- #: packages/woocommerce-germanized-dhl/woocommerce-germanized-dhl.php:58
5225
- msgctxt "dhl"
5226
- msgid "Your installation of the Germanized DHL feature plugin is incomplete. Please run %1$s within the %2$s directory."
5227
  msgstr ""
5228
 
5229
- #. Plugin Name of the plugin
5230
- #: includes/admin/class-wc-gzd-admin.php:228
5231
- msgid "Germanized for WooCommerce"
5232
  msgstr ""
5233
 
5234
- #. Plugin URI of the plugin
5235
- msgid "https://www.vendidero.de/woocommerce-germanized"
 
5236
  msgstr ""
5237
 
5238
- #. Description of the plugin
5239
- msgid "Germanized for WooCommerce extends WooCommerce to become a legally compliant store in the german market."
 
 
 
5240
  msgstr ""
5241
 
5242
- #: i18n/labels.php:18
5243
  msgid "RRP: "
5244
  msgstr ""
5245
 
5246
- #: i18n/labels.php:19
5247
  msgid "New Price: "
5248
  msgstr ""
5249
 
5250
- #: i18n/labels.php:20
5251
  msgid "Old Price: "
5252
  msgstr ""
5253
 
5254
- #: i18n/units.php:18
5255
  msgid "kg"
5256
  msgstr ""
5257
 
5258
- #: i18n/units.php:19
5259
  msgid "g"
5260
  msgstr ""
5261
 
5262
- #: i18n/units.php:20
5263
  msgid "lbs"
5264
  msgstr ""
5265
 
5266
- #: i18n/units.php:21
5267
  msgid "oz"
5268
  msgstr ""
5269
 
5270
- #: i18n/units.php:22
5271
  msgid "m"
5272
  msgstr ""
5273
 
5274
- #: i18n/units.php:23
5275
  msgid "cm"
5276
  msgstr ""
5277
 
5278
- #: i18n/units.php:24
5279
  msgid "mm"
5280
  msgstr ""
5281
 
5282
- #: i18n/units.php:25
5283
  msgid "in"
5284
  msgstr ""
5285
 
5286
- #: i18n/units.php:26
5287
  msgid "yd"
5288
  msgstr ""
5289
 
5290
- #: i18n/units.php:27
5291
  msgid "ml"
5292
  msgstr ""
5293
 
5294
- #: i18n/units.php:28
5295
  msgid "l"
5296
  msgstr ""
5297
 
5298
- #: includes/abstracts/abstract-wc-gzd-product.php:549
5299
- #: includes/abstracts/abstract-wc-gzd-product.php:559
5300
- #: includes/wc-gzd-core-functions.php:449
5301
- #: includes/wc-gzd-template-functions.php:546
5302
- #: includes/wc-gzd-template-functions.php:554
5303
  msgid "incl. VAT"
5304
  msgstr ""
5305
 
5306
- #: includes/abstracts/abstract-wc-gzd-product.php:549
5307
  msgid "excl. VAT"
5308
  msgstr ""
5309
 
5310
- #: includes/abstracts/abstract-wc-gzd-product.php:551
5311
- #: includes/wc-gzd-core-functions.php:449
 
5312
  msgid "incl. %s%% VAT"
5313
  msgstr ""
5314
 
5315
- #: includes/abstracts/abstract-wc-gzd-product.php:551
 
5316
  msgid "excl. %s%% VAT"
5317
  msgstr ""
5318
 
5319
- #: includes/admin/class-wc-gzd-admin-customer.php:52
5320
  msgid "Double opt in"
5321
  msgstr ""
5322
 
5323
- #: includes/admin/class-wc-gzd-admin-customer.php:58
5324
  msgid "Yes, customer opted in"
5325
  msgstr ""
5326
 
5327
- #: includes/admin/class-wc-gzd-admin-customer.php:62
5328
  msgid "Resend activation link"
5329
  msgstr ""
5330
 
5331
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:63
5332
  msgid "Please choose a page as your privacy policy first."
5333
  msgstr ""
5334
 
5335
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:63
5336
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:190
5337
  msgid "Found"
5338
  msgstr ""
5339
 
5340
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:63
5341
  msgid "Not found within label."
5342
  msgstr ""
5343
 
5344
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:63
5345
  msgid "Adjust label"
5346
  msgstr ""
5347
 
5348
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:69
5349
  msgid "Global minimum age"
5350
  msgstr ""
5351
 
5352
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:73
5353
  msgid "Choose a global minimum age necessary to buy your products. Can be overridden by product specific settings."
5354
  msgstr ""
5355
 
5356
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:84
5357
  msgid "e.g. include your privacy policy: {data_security_page}Privacy Policy{/data_security_page}"
5358
  msgstr ""
5359
 
5360
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:90
5361
  msgid "Policy Status"
5362
  msgstr ""
5363
 
5364
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:93
5365
  msgid "This option shows whether you have already embedded your privacy policy within your legal text."
5366
  msgstr ""
5367
 
5368
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:104
5369
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:129
5370
  msgid "Confirmation"
5371
  msgstr ""
5372
 
5373
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:108
5374
  msgid "This text will be appended to your order processing email if the order contains service products."
5375
  msgstr ""
5376
 
5377
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:109
5378
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:134
5379
- msgid "To insert a link to your revocation page use the following placeholder: %s"
 
5380
  msgstr ""
5381
 
5382
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:110
5383
- #: includes/updates/woocommerce-gzd-update-2.0.1.php:33
5384
  msgid "Furthermore you have expressly agreed to start the performance of the contract for services before expiry of the withdrawal period. I have noted to lose my {link}right of withdrawal{/link} with the beginning of the performance of the contract."
5385
  msgstr ""
5386
 
5387
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:122
5388
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:427
5389
  msgid "Downloadable Product"
5390
  msgstr ""
5391
 
5392
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:123
5393
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:428
5394
  msgid "Virtual Product"
5395
  msgstr ""
5396
 
5397
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:124
5398
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:46
5399
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:168
5400
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:429
5401
- #: includes/class-wc-gzd-legal-checkbox-manager.php:146
5402
  msgid "Service"
5403
  msgstr ""
5404
 
5405
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:133
5406
  msgid "This text will be appended to your order processing email if the order contains digital products."
5407
  msgstr ""
5408
 
5409
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:135
5410
- #: includes/updates/woocommerce-gzd-update-2.0.1.php:27
5411
  msgid "Furthermore you have expressly agreed to start the performance of the contract for digital items (e.g. downloads) before expiry of the withdrawal period. I have noted to lose my {link}right of withdrawal{/link} with the beginning of the performance of the contract."
5412
  msgstr ""
5413
 
5414
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:138
5415
  msgid "Digital Product types"
5416
  msgstr ""
5417
 
5418
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:139
5419
- msgid "Select product types for which the loss of recission notice is shown. Product types like \"simple product\" may be redudant because they include virtual and downloadable products."
5420
  msgstr ""
5421
 
5422
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:158
5423
  msgid "Show checkbox"
5424
  msgstr ""
5425
 
5426
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:159
5427
  msgid "Choose whether you like to always show the parcel delivery checkbox or do only show for certain shipping methods."
5428
  msgstr ""
5429
 
5430
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:164
5431
  msgid "For certain shipping methods."
5432
  msgstr ""
5433
 
5434
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:165
5435
  msgid "Always show."
5436
  msgstr ""
5437
 
5438
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:170
5439
- #: includes/admin/class-wc-gzd-admin-status.php:50
5440
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:114
5441
  msgid "Shipping Methods"
5442
  msgstr ""
5443
 
5444
- #: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:171
5445
  msgid "Select shipping methods which are applicable for the Opt-In Checkbox."
5446
  msgstr ""
5447
 
5448
- #: includes/admin/class-wc-gzd-admin-notices.php:114
 
5449
  msgid "<strong>Be aware!</strong> This update is not compatible with your current Germanized Pro version. Please check for updates (%s) before updating Germanized to prevent compatibility issues."
5450
  msgstr ""
5451
 
5452
- #: includes/admin/class-wc-gzd-admin-product-categories.php:58
5453
- #: includes/admin/class-wc-gzd-admin-product-categories.php:79
5454
- #: includes/class-wc-gzd-legal-checkbox-manager.php:183
5455
  msgid "Age Verification"
5456
  msgstr ""
5457
 
5458
- #: includes/admin/class-wc-gzd-admin-product-categories.php:60
5459
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:63
5460
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:73
5461
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:142
5462
  msgid "Same as Parent"
5463
  msgstr ""
5464
 
5465
- #: includes/admin/class-wc-gzd-admin-product-categories.php:82
5466
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:436
5467
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:532
5468
  msgid "None"
5469
  msgstr ""
5470
 
5471
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:66
5472
  msgid "Germanize"
5473
  msgstr ""
5474
 
5475
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:73
5476
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:153
5477
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:79
5478
- #: woocommerce-germanized.php:783
5479
  msgid "Settings"
5480
  msgstr ""
5481
 
5482
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:80
5483
- #: includes/admin/views/setup/first-steps.php:9
 
 
 
 
 
5484
  msgid "First Steps"
5485
  msgstr ""
5486
 
5487
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:84
5488
- #: includes/admin/settings/views/html-admin-settings-tabs.php:17
5489
  msgid "Start tutorial"
5490
  msgstr ""
5491
 
5492
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:92
5493
- #: includes/admin/views/setup/dhl.php:10
5494
- msgid "DHL"
5495
  msgstr ""
5496
 
5497
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:100
5498
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:112
5499
- msgid "Import settings"
5500
  msgstr ""
5501
 
5502
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:104
5503
- #: includes/admin/views/setup/internetmarke.php:10
5504
- msgid "Internetmarke"
 
5505
  msgstr ""
5506
 
5507
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:143
5508
  msgid "Pages"
5509
  msgstr ""
5510
 
5511
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:144
5512
  msgid "Create legal pages placeholders e.g. terms & conditions."
5513
  msgstr ""
5514
 
5515
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:154
5516
  msgid "Germanize WooCommerce settings (e.g. currency, tax display)."
5517
  msgstr ""
5518
 
5519
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:161
5520
  msgctxt "install"
5521
- msgid "VAT"
5522
  msgstr ""
5523
 
5524
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:162
5525
- msgid "Let Germanized insert EU VAT rates."
 
5526
  msgstr ""
5527
 
5528
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:168
5529
  msgctxt "install"
5530
- msgid "Virtual VAT"
5531
  msgstr ""
5532
 
5533
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:169
5534
- msgid "Let Germanized insert virtual EU VAT rates."
5535
  msgstr ""
5536
 
5537
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:180
5538
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:202
5539
- #: includes/admin/views/html-page-status-germanized.php:43
5540
  msgid "Small-Enterprise-Regulation"
5541
  msgstr ""
5542
 
5543
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:181
5544
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:203
5545
  msgid "VAT based on &#167;19 UStG"
5546
  msgstr ""
5547
 
5548
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:181
5549
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:203
 
5550
  msgid "Enable this option if you have chosen to apply to <a href=\"%s\" target=\"_blank\">&#167;19 UStG</a>."
5551
  msgstr ""
5552
 
5553
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:187
5554
- #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:21
5555
  msgid "Double Opt In"
5556
  msgstr ""
5557
 
5558
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:188
5559
- #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:38
5560
  msgid "Enable customer double opt in during registration."
5561
  msgstr ""
5562
 
5563
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:188
 
5564
  msgid "Sends an email to the customer after registration to verify his account. <strong>By default unactivated customers will be deleted after 7 days</strong>. You may adjust your DOI <a href=\"%s\" target=\"_blank\">settings</a> accordingly."
5565
  msgstr ""
5566
 
5567
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:208
 
 
 
 
 
5568
  msgid "Setup"
5569
  msgstr ""
5570
 
5571
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:306
5572
  msgid "Germanized &rsaquo; Setup Wizard"
5573
  msgstr ""
5574
 
5575
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:375
5576
  msgid "Skip Step"
5577
  msgstr ""
5578
 
5579
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:379
5580
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:381
5581
- msgid "Continue"
5582
- msgstr ""
5583
-
5584
- #: includes/admin/class-wc-gzd-admin-setup-wizard.php:387
5585
  msgid "Return to WP Admin"
5586
  msgstr ""
5587
 
5588
- #: includes/admin/class-wc-gzd-admin-status.php:45
5589
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:53
5590
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:136
5591
- #: includes/wc-gzd-core-functions.php:240
5592
  msgid "Terms & Conditions"
5593
  msgstr ""
5594
 
5595
- #: includes/admin/class-wc-gzd-admin-status.php:46
5596
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:63
5597
- msgid "Power of Revocation"
 
5598
  msgstr ""
5599
 
5600
- #: includes/admin/class-wc-gzd-admin-status.php:47
5601
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:84
5602
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:136
5603
- #: includes/wc-gzd-core-functions.php:242
5604
  msgid "Imprint"
5605
  msgstr ""
5606
 
5607
- #: includes/admin/class-wc-gzd-admin-status.php:48
5608
- msgid "Data Security Statement"
 
 
 
5609
  msgstr ""
5610
 
5611
- #: includes/admin/class-wc-gzd-admin-status.php:49
5612
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:104
5613
- #: includes/wc-gzd-core-functions.php:247
5614
  msgid "Payment Methods"
5615
  msgstr ""
5616
 
5617
- #: includes/admin/class-wc-gzd-admin-welcome.php:52
5618
  msgid "About Germanized"
5619
  msgstr ""
5620
 
5621
- #: includes/admin/class-wc-gzd-admin-welcome.php:53
5622
  msgid "Welcome to Germanized"
5623
  msgstr ""
5624
 
5625
- #: includes/admin/class-wc-gzd-admin-welcome.php:290
5626
  msgid "Go to Germanized Settings"
5627
  msgstr ""
5628
 
5629
- #: includes/admin/class-wc-gzd-admin.php:34
5630
- #: includes/admin/class-wc-gzd-admin.php:43
5631
- #: includes/class-wc-gzd-checkout.php:26
5632
- #: includes/class-wc-gzd-checkout.php:35
5633
- #: includes/class-wc-gzd-coupon-helper.php:24
5634
- #: includes/class-wc-gzd-coupon-helper.php:33
5635
- #: includes/class-wc-gzd-customer-helper.php:21
5636
- #: includes/class-wc-gzd-customer-helper.php:30
5637
- #: includes/class-wc-gzd-dependencies.php:56
5638
- #: includes/class-wc-gzd-dependencies.php:65
5639
- #: includes/class-wc-gzd-hook-priorities.php:35
5640
- #: includes/class-wc-gzd-hook-priorities.php:44
5641
- #: includes/class-wc-gzd-order-helper.php:21
5642
- #: includes/class-wc-gzd-order-helper.php:30
5643
- #: includes/class-wc-gzd-product-attribute-helper.php:21
5644
- #: includes/class-wc-gzd-product-attribute-helper.php:30
5645
- #: includes/export/class-wc-gzd-product-export.php:23
5646
- #: includes/export/class-wc-gzd-product-export.php:32
5647
- #: includes/import/class-wc-gzd-product-import.php:23
5648
- #: includes/import/class-wc-gzd-product-import.php:32
5649
- #: woocommerce-germanized.php:125
5650
- #: woocommerce-germanized.php:134
5651
  msgid "Cheatin&#8217; huh?"
5652
  msgstr ""
5653
 
5654
- #: includes/admin/class-wc-gzd-admin.php:114
5655
- #: includes/admin/class-wc-gzd-admin.php:148
5656
  msgctxt "dhl"
5657
  msgid "Action failed. Please refresh the page and retry."
5658
  msgstr ""
5659
 
5660
- #: includes/admin/class-wc-gzd-admin.php:118
5661
- #: includes/admin/class-wc-gzd-admin.php:152
5662
  msgctxt "dhl"
5663
  msgid "You don't have permission to do this."
5664
  msgstr ""
5665
 
5666
- #: includes/admin/class-wc-gzd-admin.php:338
5667
- #: includes/admin/settings/views/html-admin-settings-tabs.php:45
5668
- #: includes/admin/settings/views/html-admin-settings-tabs.php:58
 
 
 
 
 
5669
  msgid "Yes"
5670
  msgstr ""
5671
 
5672
- #: includes/admin/class-wc-gzd-admin.php:338
5673
- #: includes/admin/settings/views/html-admin-settings-tabs.php:58
5674
  msgid "No"
5675
  msgstr ""
5676
 
5677
- #: includes/admin/class-wc-gzd-admin.php:410
5678
  msgid "Paid for order notification manually sent to customer."
5679
  msgstr ""
5680
 
5681
- #: includes/admin/class-wc-gzd-admin.php:430
5682
  msgid "Order confirmation manually sent to customer."
5683
  msgstr ""
5684
 
5685
- #: includes/admin/class-wc-gzd-admin.php:450
5686
  msgid "Resend order confirmation"
5687
  msgstr ""
5688
 
5689
- #: includes/admin/class-wc-gzd-admin.php:451
5690
  msgid "Send paid for order notification"
5691
  msgstr ""
5692
 
5693
- #: includes/admin/class-wc-gzd-admin.php:461
5694
- #: includes/admin/settings/abstract-wc-gzd-settings-tab.php:114
5695
- #: includes/admin/settings/class-wc-gzd-settings-germanized.php:23
5696
- #: includes/admin/settings/views/html-admin-settings-tabs.php:9
5697
- #: includes/admin/views/html-page-status-germanized.php:27
 
5698
  msgid "Germanized"
5699
  msgstr ""
5700
 
5701
- #: includes/admin/class-wc-gzd-admin.php:475
5702
  msgid "Parcel Delivery Data Transfer:"
5703
  msgstr ""
5704
 
5705
- #: includes/admin/class-wc-gzd-admin.php:476
5706
  msgid "allowed"
5707
  msgstr ""
5708
 
5709
- #: includes/admin/class-wc-gzd-admin.php:476
5710
  msgid "not allowed"
5711
  msgstr ""
5712
 
5713
- #: includes/admin/class-wc-gzd-admin.php:559
5714
  msgid "Optional Email Content"
5715
  msgstr ""
5716
 
5717
- #: includes/admin/class-wc-gzd-admin.php:577
5718
  msgid "Add content which will be replacing default page content within emails."
5719
  msgstr ""
5720
 
5721
- #: includes/admin/class-wc-gzd-admin.php:591
5722
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:152
5723
  msgid "Optional Mini Description"
5724
  msgstr ""
5725
 
5726
- #: includes/admin/class-wc-gzd-admin.php:613
5727
  msgid "This content will be shown as short product description within checkout and emails."
5728
  msgstr ""
5729
 
5730
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:46
5731
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:169
5732
  msgid "Service products do not sell physical products."
5733
  msgstr ""
5734
 
5735
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:61
5736
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:195
5737
  msgid "Sale Label"
5738
  msgstr ""
5739
 
5740
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:71
5741
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:202
5742
  msgid "Sale Regular Label"
5743
  msgstr ""
5744
 
5745
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:90
5746
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:217
5747
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:232
5748
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:264
5749
- #: includes/compatibility/elementor/widgets/class-wc-gzd-elementor-widget-product-units.php:10
5750
  msgid "Product Units"
5751
  msgstr ""
5752
 
5753
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:90
5754
  msgid "Number of units included per default product price. Example: 1000 ml. Leave blank to use parent value."
5755
  msgstr ""
5756
 
5757
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:97
5758
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:249
5759
  msgid "Calculation"
5760
  msgstr ""
5761
 
5762
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:102
5763
  msgid "Calculate unit prices automatically"
5764
  msgstr ""
5765
 
5766
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:107
 
5767
  msgid "Regular Unit Price"
5768
  msgstr ""
5769
 
5770
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:114
 
5771
  msgid "Sale Unit Price"
5772
  msgstr ""
5773
 
5774
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:121
5775
- msgid "To enable unit prices on variation level please choose a unit and base price units within %s."
 
5776
  msgstr ""
5777
 
5778
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:121
5779
  msgid "general product data"
5780
  msgstr ""
5781
 
5782
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:126
5783
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:310
5784
- #: includes/api/class-wc-gzd-rest-products-controller.php:32
5785
- #: includes/api/class-wc-gzd-rest-products-controller.php:204
5786
- #: includes/compatibility/elementor/widgets/class-wc-gzd-elementor-widget-product-delivery-time.php:10
5787
  msgid "Delivery Time"
5788
  msgstr ""
5789
 
5790
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:131
5791
  msgid "Same as parent"
5792
  msgstr ""
5793
 
5794
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:140
5795
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:269
5796
  msgid "Minimum Age"
5797
  msgstr ""
5798
 
5799
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:176
5800
  msgid "Diff. Taxation"
5801
  msgstr ""
5802
 
5803
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:177
5804
  msgid "Product applies to differential taxation based on §25a UStG."
5805
  msgstr ""
5806
 
5807
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:196
5808
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:203
5809
  msgid "Select Price Label"
5810
  msgstr ""
5811
 
5812
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:198
5813
  msgid "If the product is on sale you may want to show a price label right before outputting the old price to inform the customer."
5814
  msgstr ""
5815
 
5816
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:205
5817
  msgid "If the product is on sale you may want to show a price label right before outputting the new price to inform the customer."
5818
  msgstr ""
5819
 
5820
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:210
5821
- #: includes/api/class-wc-gzd-rest-products-controller.php:107
5822
- #: includes/class-wc-gzd-post-types.php:98
5823
  msgid "Unit"
5824
  msgstr ""
5825
 
5826
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:211
5827
  msgid "Select unit"
5828
  msgstr ""
5829
 
5830
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:213
5831
  msgid "Needed if selling on a per unit basis"
5832
  msgstr ""
5833
 
5834
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:220
5835
  msgid "Number of units included per default product price. Example: 1000 ml."
5836
  msgstr ""
5837
 
5838
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:224
5839
- msgid "Base Price Units"
5840
- msgstr ""
5841
-
5842
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:227
5843
- msgid "Base price units. Example base price: 0,99 € / 100 ml. Insert 100 as base price unit amount."
5844
  msgstr ""
5845
 
5846
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:250
5847
- msgid "Calculate base prices automatically."
5848
  msgstr ""
5849
 
5850
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:254
5851
- msgid "Regular Base Price"
5852
  msgstr ""
5853
 
5854
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:259
5855
- msgid "Sale Base Price"
5856
- msgstr ""
5857
-
5858
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:271
5859
  msgid "Adds an age verification checkbox while purchasing this product."
5860
  msgstr ""
5861
 
5862
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:282
5863
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:314
5864
  msgid "Search for a delivery time&hellip;"
5865
  msgstr ""
5866
 
5867
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:323
5868
  msgid "Free shipping?"
5869
  msgstr ""
5870
 
5871
- #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:324
5872
  msgid "This option disables the \"plus shipping costs\" notice on product page"
5873
  msgstr ""
5874
 
5875
- #: includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:29
5876
  msgctxt "dhl"
5877
  msgid "DHL built-in Integration"
5878
  msgstr ""
5879
 
5880
- #: includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:33
5881
  msgctxt "dhl"
5882
  msgid "It seems like you are currently using the DHL for WooCommerce plugin. Germanized does now fully integrate DHL services and switching is as simple as can be. Check your advantages by using the DHL integration in Germanized and let Germanized import your current settings for you."
5883
  msgstr ""
5884
 
5885
- #: includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:35
5886
- #: includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:35
5887
  msgctxt "dhl"
5888
  msgid "No need to use an external plugin which might lead to incompatibilities"
5889
  msgstr ""
5890
 
5891
- #: includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:36
5892
- #: includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:36
 
5893
  msgctxt "dhl"
5894
  msgid "Many improved features such as automation, services per shipping method and %s"
5895
  msgstr ""
5896
 
5897
- #: includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:36
5898
- #: includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:36
5899
  msgctxt "dhl"
5900
  msgid "many more"
5901
  msgstr ""
5902
 
5903
- #: includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:37
5904
  msgctxt "dhl"
5905
  msgid "Perfectly integrated in Germanized &ndash; easily create labels for shipments"
5906
  msgstr ""
5907
 
5908
- #: includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:47
5909
- #: includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:47
5910
  msgctxt "dhl"
5911
  msgid "Import settings and activate"
5912
  msgstr ""
5913
 
5914
- #: includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:53
5915
- #: includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:53
5916
  msgctxt "dhl"
5917
  msgid "Learn more"
5918
  msgstr ""
5919
 
5920
- #: includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5921
  msgctxt "dhl"
5922
  msgid "Internetmarke built-in Integration"
5923
  msgstr ""
5924
 
5925
- #: includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:33
5926
  msgctxt "dhl"
5927
  msgid "It seems like you are currently using the Deutsche Post Internetmarke plugin. Germanized does now fully integrate Internetmarke and switching is as simple as can be. Check your advantages by using the Internetmarke integration in Germanized and let Germanized import your current settings for you."
5928
  msgstr ""
5929
 
5930
- #: includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:37
5931
  msgctxt "dhl"
5932
  msgid "Perfectly integrated in Germanized &ndash; easily create stamps for shipments"
5933
  msgstr ""
5934
 
5935
- #: includes/admin/notes/class-wc-gzd-admin-note-pro.php:23
5936
  msgid "For professionals: Upgrade to Pro-Version"
5937
  msgstr ""
5938
 
5939
- #: includes/admin/notes/class-wc-gzd-admin-note-pro.php:27
5940
  msgid "Do you enjoy Germanized? Do you want to benefit from even more and better features? You may consider an uprade to Pro. Check out some of the main Pro features:"
5941
  msgstr ""
5942
 
5943
- #: includes/admin/notes/class-wc-gzd-admin-note-pro.php:29
5944
  msgid "PDF invoices and packing slips"
5945
  msgstr ""
5946
 
5947
- #: includes/admin/notes/class-wc-gzd-admin-note-pro.php:30
5948
- msgid "Generator for terms & conditions and right of recission"
5949
  msgstr ""
5950
 
5951
- #: includes/admin/notes/class-wc-gzd-admin-note-pro.php:31
5952
  msgid "Multistep Checkout"
5953
  msgstr ""
5954
 
5955
- #: includes/admin/notes/class-wc-gzd-admin-note-pro.php:32
5956
  msgid "Premium Ticket Support"
5957
  msgstr ""
5958
 
5959
- #: includes/admin/notes/class-wc-gzd-admin-note-pro.php:43
5960
  msgid "Learn more about Pro Version"
5961
  msgstr ""
5962
 
5963
- #: includes/admin/notes/class-wc-gzd-admin-note-review.php:24
5964
  msgid "Do you like Germanized?"
5965
  msgstr ""
5966
 
5967
- #: includes/admin/notes/class-wc-gzd-admin-note-review.php:28
5968
  msgid "If you like Germanized and our Plugin does a good job it would be great if you would write a review about WooCommerce Germanized on WordPress.org. Thank you for your support!"
5969
  msgstr ""
5970
 
5971
- #: includes/admin/notes/class-wc-gzd-admin-note-review.php:40
5972
  msgid "I've added my review"
5973
  msgstr ""
5974
 
5975
- #: includes/admin/notes/class-wc-gzd-admin-note-review.php:47
5976
  msgid "Write review now"
5977
  msgstr ""
5978
 
5979
- #: includes/admin/notes/class-wc-gzd-admin-note-review.php:53
5980
  msgid "Found Bugs?"
5981
  msgstr ""
5982
 
5983
- #: includes/admin/notes/class-wc-gzd-admin-note-shipping-excl-tax.php:29
5984
  msgid "Shipping and fee taxes"
5985
  msgstr ""
5986
 
5987
- #: includes/admin/notes/class-wc-gzd-admin-note-shipping-excl-tax.php:33
5988
  msgid "Starting with the newest Germanized version your <strong>shipping costs and fees will no longer be treated including tax</strong>. This change in Germanized was necessary due to your prices being treated excluding taxes (see your WooCommerce tax settings). Due to the way WooCommerce calculates taxes for orders (based on prices excluding taxes) there is no consistent way to (re-)calculate shipping costs and/or fee taxes if they are treated including taxes. Please check your shipping costs and fees and edit costs accordingly."
5989
  msgstr ""
5990
 
5991
- #: includes/admin/notes/class-wc-gzd-admin-note-shipping-excl-tax.php:40
5992
  msgid "Manage shipping methods"
5993
  msgstr ""
5994
 
5995
- #: includes/admin/notes/class-wc-gzd-admin-note-shipping-excl-tax.php:45
5996
- #: includes/admin/settings/abstract-wc-gzd-settings-tab.php:152
5997
- #: includes/admin/settings/class-wc-gzd-settings-tab-dhl.php:35
5998
- #: includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:61
5999
- msgid "Learn more"
6000
- msgstr ""
6001
-
6002
- #: includes/admin/notes/class-wc-gzd-admin-note-template-outdated.php:53
6003
  msgid "Your theme contains outdated Germanized template files"
6004
  msgstr ""
6005
 
6006
- #: includes/admin/notes/class-wc-gzd-admin-note-template-outdated.php:57
6007
  msgid "These files may need updating to ensure they are compatible with the current version of Germanized. Suggestions to fix this:"
6008
  msgstr ""
6009
 
6010
- #: includes/admin/notes/class-wc-gzd-admin-note-template-outdated.php:59
6011
  msgid "Update your theme to the latest version. If no update is available contact your theme author asking about compatibility with the current Germanized version."
6012
  msgstr ""
6013
 
6014
- #: includes/admin/notes/class-wc-gzd-admin-note-template-outdated.php:60
6015
  msgid "If you copied over a template file to change something, then you will need to copy the new version of the template and apply your changes again."
6016
  msgstr ""
6017
 
6018
- #: includes/admin/notes/class-wc-gzd-admin-note-template-outdated.php:70
6019
  msgid "View affected templates"
6020
  msgstr ""
6021
 
6022
- #: includes/admin/notes/class-wc-gzd-admin-note-theme-supported.php:40
 
6023
  msgid "Enable full %s support"
6024
  msgstr ""
6025
 
6026
- #: includes/admin/notes/class-wc-gzd-admin-note-theme-supported.php:46
 
6027
  msgid "Your current theme %s needs some adaptions to seamlessly integrate with Germanized. Our Pro Version will <strong>enable support for %s</strong> and makes sure Germanized settings are shown and styled within frontend for a better user experience. A better user experience will help you selling more products."
6028
  msgstr ""
6029
 
6030
- #: includes/admin/notes/class-wc-gzd-admin-note-theme-supported.php:55
 
6031
  msgid "Enable support for %s"
6032
  msgstr ""
6033
 
6034
- #: includes/admin/notes/class-wc-gzd-admin-note-update.php:25
6035
  msgid "Germanized Data Update Required"
6036
  msgstr ""
6037
 
6038
- #: includes/admin/notes/class-wc-gzd-admin-note-update.php:29
6039
- msgid "We just need to update your install to the latest version. <strong>Make sure to backup your data before updating</strong>."
6040
  msgstr ""
6041
 
6042
- #: includes/admin/notes/class-wc-gzd-admin-note-update.php:40
6043
  msgid "Run the updater"
6044
  msgstr ""
6045
 
6046
- #: includes/admin/notes/class-wc-gzd-admin-note.php:185
6047
  msgid "Not now"
6048
  msgstr ""
6049
 
6050
- #: includes/admin/notes/class-wc-gzd-admin-note.php:189
6051
- msgctxt "woocommerce-germanized"
6052
  msgid "Deactivate"
6053
  msgstr ""
6054
 
6055
- #: includes/admin/settings/abstract-wc-gzd-settings-tab.php:39
6056
- #: includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:52
6057
- #: includes/admin/views/html-settings-pro.php:23
6058
  msgid "Get Germanized Pro to unlock"
6059
  msgstr ""
6060
 
6061
- #: includes/admin/settings/abstract-wc-gzd-settings-tab.php:40
6062
- #: includes/admin/views/html-settings-pro.php:24
6063
  msgid "Enjoy even more professional features such as invoices, legal text generators, B2B VAT settings and premium support!"
6064
  msgstr ""
6065
 
6066
- #: includes/admin/settings/abstract-wc-gzd-settings-tab.php:42
6067
- #: includes/admin/settings/class-wc-gzd-settings-pointers.php:177
6068
- #: includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:63
6069
- #: includes/admin/views/html-settings-pro.php:26
6070
- #: includes/admin/views/setup/first-steps.php:35
6071
- #: includes/compatibility/elementor/widgets/abstact-class-wc-gzd-elementor-widget.php:54
6072
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:90
6073
  msgid "Upgrade now"
6074
  msgstr ""
6075
 
6076
- #: includes/admin/settings/class-wc-gzd-settings-pointers.php:78
6077
  msgid "Setting tabs"
6078
  msgstr ""
6079
 
6080
- #: includes/admin/settings/class-wc-gzd-settings-pointers.php:79
6081
  msgid "To make it more comfortable for you, we've splitted the settings into multiple tabs."
6082
  msgstr ""
6083
 
6084
- #: includes/admin/settings/class-wc-gzd-settings-pointers.php:92
6085
- #: includes/class-wc-gzd-legal-checkbox.php:785
6086
  msgid "Status"
6087
  msgstr ""
6088
 
6089
- #: includes/admin/settings/class-wc-gzd-settings-pointers.php:93
6090
  msgid "Some features can be switched on or off explicitly by toggling the input."
6091
  msgstr ""
6092
 
6093
- #: includes/admin/settings/class-wc-gzd-settings-pointers.php:144
6094
  msgid "Dismiss"
6095
  msgstr ""
6096
 
6097
- #: includes/admin/settings/class-wc-gzd-settings-pointers.php:145
6098
  msgid "Next"
6099
  msgstr ""
6100
 
6101
- #: includes/admin/settings/class-wc-gzd-settings-pointers.php:152
6102
  msgid "Let's go"
6103
  msgstr ""
6104
 
6105
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:17
6106
  msgid "These settings will help you to make sure your checkout complies with the button solution."
6107
  msgstr ""
6108
 
6109
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:21
6110
  msgid "Button Solution"
6111
  msgstr ""
6112
 
6113
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:41
6114
  msgid "Buy now button"
6115
  msgstr ""
6116
 
6117
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:42
6118
  msgid "These settings help you comply to the button solution. The buy now button text is forced and static so that no payment gateway might override it."
6119
  msgstr ""
6120
 
6121
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:55
6122
  msgid "Product table background"
6123
  msgstr ""
6124
 
6125
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:56
6126
  msgid "The product table within your checkout should be noticeable for your customers. You might want to choose a different background color for it."
6127
  msgstr ""
6128
 
6129
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:74
6130
  msgid "Button Text"
6131
  msgstr ""
6132
 
6133
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:75
6134
  msgid "This text serves as Button text for the Order Submit Button."
6135
  msgstr ""
6136
 
6137
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:79
6138
  msgid "Buy Now"
6139
  msgstr ""
6140
 
6141
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:82
6142
  msgid "Product attributes"
6143
  msgstr ""
6144
 
6145
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:83
6146
  msgid "List all product attributes during cart and checkout."
6147
  msgstr ""
6148
 
6149
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:87
6150
  msgid "This option forces WooCommerce to output a list of all product attributes during cart and checkout."
6151
  msgstr ""
6152
 
6153
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:90
6154
  msgid "Back to cart"
6155
  msgstr ""
6156
 
6157
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:91
6158
  msgid "Add a back to cart button to the checkout table."
6159
  msgstr ""
6160
 
6161
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:91
6162
  msgid "This button may let your customer edit their order before submitting. Some people state that this button should be hidden to avoid legal problems."
6163
  msgstr ""
6164
 
6165
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:97
6166
  msgid "Edit data notice"
6167
  msgstr ""
6168
 
6169
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:98
6170
  msgid "Display an edit-your-data notice within checkout."
6171
  msgstr ""
6172
 
6173
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:102
6174
  msgid "This notice will be added right before the order comments field."
6175
  msgstr ""
6176
 
6177
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:105
6178
  msgid "Product Table Color"
6179
  msgstr ""
6180
 
6181
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:107
6182
  msgid "Choose the color of your checkout product table. This table should be highlighted within your checkout page."
6183
  msgstr ""
6184
 
6185
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:112
6186
  msgid "Thumbnails"
6187
  msgstr ""
6188
 
6189
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:113
6190
  msgid "Show product thumbnails within checkout table."
6191
  msgstr ""
6192
 
6193
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:117
6194
  msgid "Uncheck if you don't want to show your product thumbnails within checkout table."
6195
  msgstr ""
6196
 
6197
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:120
6198
  msgid "Hide Shipping Select"
6199
  msgstr ""
6200
 
6201
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:121
6202
  msgid "Hide shipping rate selection from checkout."
6203
  msgstr ""
6204
 
6205
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:125
6206
  msgid "This option will hide shipping rate selection from checkout. By then customers will only be able to change their shipping rate on cart page."
6207
  msgstr ""
6208
 
6209
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:128
6210
  msgid "Estimated taxes"
6211
  msgstr ""
6212
 
6213
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:129
6214
  msgid "Hide the \"taxes and shipping estimated\" text from the cart."
6215
  msgstr ""
6216
 
6217
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:133
6218
  msgid "By default WooCommerce adds a \"taxes and shipping estimated\" text to your cart. This might puzzle your customers and may not meet german law."
6219
  msgstr ""
6220
 
6221
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:136
6222
- #: includes/admin/views/html-page-status-germanized.php:65
6223
  msgid "Fallback Mode"
6224
  msgstr ""
6225
 
6226
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:137
6227
  msgid "Force default WooCommerce checkout template."
6228
  msgstr ""
6229
 
6230
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:137
6231
  msgid "If you are facing problems within your checkout e.g. legally relevant data is not showing (terms, delivery time, unit price etc.) your theme seems to be incompatible (not using default WooCommerce hooks and filters). As a workaround you may use this fallback which ensures default review-order.php and form-checkout.php is used."
6232
  msgstr ""
6233
 
6234
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:145
6235
  msgid "Thankyou Page"
6236
  msgstr ""
6237
 
6238
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:151
6239
  msgid "Information"
6240
  msgstr ""
6241
 
6242
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:152
6243
  msgid "Hide product table and customer data on order thankyou page."
6244
  msgstr ""
6245
 
6246
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:158
6247
  msgid "Order Success Text"
6248
  msgstr ""
6249
 
6250
- #: includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:159
6251
  msgid "Choose a custom text to display on order success page."
6252
  msgstr ""
6253
 
6254
- #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:17
6255
  msgid "Ask your customers for a certain permission or action before a form may be submitted."
6256
  msgstr ""
6257
 
6258
- #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:21
6259
  msgid "Legal Checkboxes"
6260
  msgstr ""
6261
 
6262
- #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:41
6263
  msgid "Edit checkbox"
6264
  msgstr ""
6265
 
6266
- #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:42
6267
  msgid "Legal checkboxes help you obtain consent from your customers. You might edit a checkbox' label and other options by clicking on the link."
6268
  msgstr ""
6269
 
6270
- #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:62
6271
- #: includes/class-wc-gzd-legal-checkbox.php:821
6272
  msgid "Label"
6273
  msgstr ""
6274
 
6275
- #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:63
6276
  msgid "Adjust the label of your checkbox which will be shown within your shop (e.g. checkout). Use placeholders to add links to your legal pages."
6277
  msgstr ""
6278
 
6279
- #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:104
6280
  msgid "New checkbox"
6281
  msgstr ""
6282
 
6283
- #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:130
6284
  msgid "Add checkbox"
6285
  msgstr ""
6286
 
6287
- #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:173
6288
  msgid "Edit failed. Please try again."
6289
  msgstr ""
6290
 
6291
- #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:206
6292
  msgid "Sorry, but this checkbox does not exist."
6293
  msgstr ""
6294
 
6295
- #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:233
6296
  msgid "Your changed data will be lost if you leave this page without saving."
6297
  msgstr ""
6298
 
6299
- #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:234
6300
  msgid "Are you sure you want to delete this checkbox? This action cannot be undone."
6301
  msgstr ""
6302
 
6303
- #: includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:235
6304
  msgid "Your changes were not saved. Please retry."
6305
  msgstr ""
6306
 
6307
- #: includes/admin/settings/class-wc-gzd-settings-tab-contract.php:17
6308
  msgid "Adjust the time of closing contract with your customer."
6309
  msgstr ""
6310
 
6311
- #: includes/admin/settings/class-wc-gzd-settings-tab-contract.php:21
6312
  msgid "Manual contract"
6313
  msgstr ""
6314
 
6315
- #: includes/admin/settings/class-wc-gzd-settings-tab-contract.php:21
6316
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:32
6317
- #: includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:21
6318
- #: includes/admin/settings/class-wc-gzd-settings-tab-multistep-checkout.php:21
6319
- #: includes/admin/settings/class-wc-gzd-settings-tab-revocation-generator.php:21
6320
- #: includes/admin/settings/class-wc-gzd-settings-tab-terms-generator.php:21
6321
  msgid "pro"
6322
  msgstr ""
6323
 
6324
- #: includes/admin/settings/class-wc-gzd-settings-tab-dhl.php:19
6325
- msgid "Integrate Post & DHL Services such as Labels for Shipments and Returns."
6326
- msgstr ""
6327
-
6328
- #: includes/admin/settings/class-wc-gzd-settings-tab-dhl.php:44
6329
- msgid "Post & DHL"
6330
- msgstr ""
6331
-
6332
- #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:17
6333
  msgid "Extend the WooCommerce registration process with a double opt in."
6334
  msgstr ""
6335
 
6336
- #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:29
 
6337
  msgid "Caution: New customers that register within your store and do not activate their account will be deleted after %d day(s). You might adjust that behaviour within the Double-Opt-In settings."
6338
  msgstr ""
6339
 
6340
- #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:37
6341
  msgid "Enable"
6342
  msgstr ""
6343
 
6344
- #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:38
6345
- msgid "If customer chooses to create a customer account an email with an activation link will be sent by mail. Customer account will be marked as activated if user clicks on the link within the email. More information on this topic can be found <a href=\"%s\" target=\"_blank\">here</a>."
6346
  msgstr ""
6347
 
6348
- #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:44
6349
  msgid "Disable"
6350
  msgstr ""
6351
 
6352
- #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:45
6353
  msgid "Disable login and checkout for unactivated customers."
6354
  msgstr ""
6355
 
6356
- #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:46
6357
  msgid "Customers that did not click on the activation link will not be able to complete checkout nor login to their account."
6358
  msgstr ""
6359
 
6360
- #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:55
6361
  msgid "Delete unactivated after"
6362
  msgstr ""
6363
 
6364
- #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:56
6365
  msgid "This will make sure unactivated customer accounts will be deleted after X days. Set to 0 if you don't want to automatically delete unactivated customers."
6366
  msgstr ""
6367
 
6368
- #: includes/admin/settings/class-wc-gzd-settings-tab-doi.php:57
6369
  msgid "days"
6370
  msgstr ""
6371
 
6372
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:17
6373
  msgid "Adjust email related settings e.g. attach your legal page content to certain email templates."
6374
  msgstr ""
6375
 
6376
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:21
6377
  msgid "Emails"
6378
  msgstr ""
6379
 
6380
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:30
6381
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:21
6382
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:37
6383
  msgid "General"
6384
  msgstr ""
6385
 
6386
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:31
6387
  msgid "Visibility"
6388
  msgstr ""
6389
 
6390
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:32
6391
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:64
6392
  msgid "PDF Attachments"
6393
  msgstr ""
6394
 
6395
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:49
6396
  msgid "Email attachments"
6397
  msgstr ""
6398
 
6399
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:50
6400
  msgid "Choose which of your email templates (e.g. order confirmation) should contain your legal page content e.g. terms and conditions within it's footer."
6401
  msgstr ""
6402
 
6403
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:65
6404
  msgid "Customers of our pro version may attach PDF files instead of plain text content to emails."
6405
  msgstr ""
6406
 
6407
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:81
6408
  msgid "Use drag & drop to customize attachment order. Don't forget to save your changes."
6409
  msgstr ""
6410
 
6411
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:120
6412
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:141
 
6413
  msgid "Want to attach automatically generated PDF files to emails instead of plain text? %sUpgrade to %spro%s%s"
6414
  msgstr ""
6415
 
6416
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:163
6417
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:239
6418
- #: includes/api/class-wc-gzd-rest-customers-controller.php:137
6419
- #: includes/api/class-wc-gzd-rest-customers-controller.php:144
6420
- #: includes/api/class-wc-gzd-rest-orders-controller.php:138
6421
- #: includes/api/class-wc-gzd-rest-orders-controller.php:145
6422
- #: includes/class-wc-gzd-checkout.php:559
6423
- #: includes/class-wc-gzd-checkout.php:572
6424
- #: includes/class-wc-gzd-customer-helper.php:225
6425
- #: includes/class-wc-gzd-customer-helper.php:233
6426
  msgid "Title"
6427
  msgstr ""
6428
 
6429
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:164
6430
  msgid "Adjust the title to be used within emails. Use {first_name}, {last_name} and {title} as placeholders."
6431
  msgstr ""
6432
 
6433
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:166
6434
  msgid "Hi {first_name},"
6435
  msgstr ""
6436
 
6437
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:170
6438
  msgid "Hide Username"
6439
  msgstr ""
6440
 
6441
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:171
6442
  msgid "Hide username from email content if password or password reset link is embedded."
6443
  msgstr ""
6444
 
6445
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:171
6446
  msgid "Trusted Shops advises to not show the username together with an account password or password reset link. This option hides (or masks) the username in those specific cases."
6447
  msgstr ""
6448
 
6449
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:178
6450
  msgid "Pay now Button"
6451
  msgstr ""
6452
 
6453
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:179
6454
  msgid "Add a pay now button to emails and order success page."
6455
  msgstr ""
6456
 
6457
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:180
6458
  msgid "Add a pay now button to order confirmation email and order success page if the order awaits payment (PayPal etc)."
6459
  msgstr ""
6460
 
6461
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:186
6462
  msgid "Disabled for"
6463
  msgstr ""
6464
 
6465
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:187
6466
  msgid "You may want to disable the pay now button for certain payment methods."
6467
  msgstr ""
6468
 
6469
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:214
6470
  msgid "Customer"
6471
  msgstr ""
6472
 
6473
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:214
6474
  msgid "Admin"
6475
  msgstr ""
6476
 
6477
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:231
 
6478
  msgid "Attach %s"
6479
  msgstr ""
6480
 
6481
- #: includes/admin/settings/class-wc-gzd-settings-tab-emails.php:232
 
6482
  msgid "Attach %s to the following email templates"
6483
  msgstr ""
6484
 
6485
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:17
6486
  msgid "Adjust general options e.g. legal pages."
6487
  msgstr ""
6488
 
6489
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:30
6490
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:370
6491
- #: includes/admin/views/html-page-status-germanized.php:174
6492
  msgid "Legal Pages"
6493
  msgstr ""
6494
 
6495
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:31
6496
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:146
6497
  msgid "Dispute Resolution"
6498
  msgstr ""
6499
 
6500
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:32
6501
  msgid "Small Businesses"
6502
  msgstr ""
6503
 
6504
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:33
6505
- #: includes/class-wc-gzd-legal-checkbox-manager.php:578
6506
- #: src/Shopmarks.php:299
6507
  msgid "Checkout"
6508
  msgstr ""
6509
 
6510
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:34
6511
  msgid "Shop"
6512
  msgstr ""
6513
 
6514
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:40
 
6515
  msgid "Since Feb. 1 2017 regulations regarding alternative dispute resolution take effect. Further information regarding your duty to supply information can be found <a href=\"%s\" target=\"_blank\">here</a>."
6516
  msgstr ""
6517
 
6518
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:47
 
6519
  msgid "Checkbox status: %s"
6520
  msgstr ""
6521
 
6522
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:54
6523
  msgid "This page should contain your terms & conditions."
6524
  msgstr ""
6525
 
6526
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:60
 
6527
  msgid "Don't have terms & conditions yet? <a href=\"%s\">Generate now</a>!"
6528
  msgstr ""
6529
 
6530
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:64
6531
- msgid "This page should contain information regarding your customer's Right of Revocation."
6532
  msgstr ""
6533
 
6534
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:70
 
6535
  msgid "Don't have a revocation page yet? <a href=\"%s\">Generate now</a>!"
6536
  msgstr ""
6537
 
6538
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:74
6539
- msgid "Revocation Address"
6540
  msgstr ""
6541
 
6542
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:75
6543
- msgid "Type in an address, telephone/telefax number, email address which is to be used as revocation address"
6544
  msgstr ""
6545
 
6546
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:85
6547
  msgid "This page should contain an imprint with your company's information."
6548
  msgstr ""
6549
 
6550
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:94
6551
- #: includes/class-wc-gzd-legal-checkbox-manager.php:200
6552
- msgid "Privacy Policy"
6553
- msgstr ""
6554
-
6555
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:95
6556
- msgid "This page should contain information regarding your data security policy."
6557
  msgstr ""
6558
 
6559
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:105
6560
  msgid "This page should contain information regarding the Payment Methods that are chooseable during checkout."
6561
  msgstr ""
6562
 
6563
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:115
6564
  msgid "This page should contain information regarding shipping methods that are chooseable during checkout."
6565
  msgstr ""
6566
 
6567
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:140
6568
  msgid "This status indicates whether your terms & conditions contain the [gzd_complaints] shortcode which outputs the complaints options chosen from above or not. If you've added the text manually, you might ignore this status."
6569
  msgstr ""
6570
 
6571
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:147
6572
  msgid "You may select whether you are willing, obliged or not willing to participate in dispute settlement proceeedings before a consumer arbitration board. The corresponding Resolution Text is attached to the [gzd_complaints] shortcode which you should add to your imprint. Trusted Shops advises you to add that text to your Terms & Conditions as well."
6573
  msgstr ""
6574
 
6575
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:153
6576
  msgid "Not obliged, not willing"
6577
  msgstr ""
6578
 
6579
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:154
6580
  msgid "Not obliged, willing"
6581
  msgstr ""
6582
 
6583
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:155
6584
  msgid "Obliged"
6585
  msgstr ""
6586
 
6587
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:159
6588
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:168
6589
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:177
6590
  msgid "Resolution Text"
6591
  msgstr ""
6592
 
6593
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:160
6594
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:169
6595
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:178
6596
  msgid "Adapt this example text regarding alternative dispute resolution to your needs. Text will be added to the [gzd_complaints] Shortcode. You may as well add this text to your terms & conditions."
6597
  msgstr ""
6598
 
6599
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:162
6600
  msgid "The european commission provides a platform for online dispute resolution (OS) which is accessible at https://ec.europa.eu/consumers/odr. We are not obliged nor willing to participate in dispute settlement proceedings before a consumer arbitration board."
6601
  msgstr ""
6602
 
6603
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:171
6604
  msgid "The european commission provides a platform for online dispute resolution (OS) which is accessible at https://ec.europa.eu/consumers/odr. Consumers may use this platform for the settlements of their disputes. We are in principle prepared to participate in an extrajudicial arbitration proceeding."
6605
  msgstr ""
6606
 
6607
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:180
6608
  msgid "The european commission provides a platform for online dispute resolution (OS) which is accessible at https://ec.europa.eu/consumers/odr. Consumers may contact [Name, Address, Website of arbitration board] for the settlements of their disputes. We are obliged to participate in arbitration proceeding before that board."
6609
  msgstr ""
6610
 
6611
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:186
6612
  msgid "Shortcode Status"
6613
  msgstr ""
6614
 
6615
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:190
 
6616
  msgid "Not found within %s"
6617
  msgstr ""
6618
 
6619
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:190
6620
  msgid "Append it now"
6621
  msgstr ""
6622
 
6623
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:209
6624
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:371
6625
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:131
6626
  msgid "Notice Text"
6627
  msgstr ""
6628
 
6629
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:210
6630
  msgid "You may want to adjust the small buisness notice text to meet your criteria."
6631
  msgstr ""
6632
 
6633
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:217
6634
- #: includes/wc-gzd-core-functions.php:319
6635
  msgid "Value added tax is not collected, as small businesses according to §19 (1) UStG."
6636
  msgstr ""
6637
 
6638
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:232
6639
- msgid "Phone"
6640
  msgstr ""
6641
 
6642
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:233
6643
- msgid "Mark phone number as non-required within checkout."
6644
  msgstr ""
6645
 
6646
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:240
6647
- msgid "Add a title field to the address within checkout."
 
 
 
 
6648
  msgstr ""
6649
 
6650
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:246
 
 
 
 
 
 
 
 
 
 
 
 
6651
  msgid "Disallow cancellations"
6652
  msgstr ""
6653
 
6654
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:247
6655
  msgid "Don't allow customers to manually cancel orders."
6656
  msgstr ""
6657
 
6658
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:247
6659
  msgid "By default payment methods like PayPal allow order cancellation by clicking the abort link. This option will stop customers from manually cancel orders."
6660
  msgstr ""
6661
 
6662
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:253
6663
  msgid "Disallow gateway choosing"
6664
  msgstr ""
6665
 
6666
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:254
6667
  msgid "Don't allow customers to change the payment gateway after ordering."
6668
  msgstr ""
6669
 
6670
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:254
6671
  msgid "Customers paying through a gateway which allows later payment (e.g. PayPal) will find a link within their customer account which redirects them to a pay page. This page offers the possibility to choose another gateway than before which may lead to further problems e.g. additional gateway costs etc. which would require a new order submittal. This option makes sure the customer gets redirected directly to the gateways payment page, e.g. to PayPal."
6672
  msgstr ""
6673
 
6674
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:260
6675
  msgid "Free shipping"
6676
  msgstr ""
6677
 
6678
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:261
6679
  msgid "Force free shipping method if available."
6680
  msgstr ""
6681
 
6682
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:261
6683
  msgid "By default WooCommerce will let customers choose other shipping methods than free shipping (if available). This option will force free shipping if available."
6684
  msgstr ""
6685
 
6686
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:268
6687
  msgid "Exclude Methods"
6688
  msgstr ""
6689
 
6690
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:277
6691
  msgid "Optionally choose methods which should be excluded from hiding when free shipping is available (e.g. express shipping options)."
6692
  msgstr ""
6693
 
6694
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:289
6695
- msgid "Price Range Format"
6696
- msgstr ""
6697
-
6698
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:290
6699
- msgid "Adjust the price range format e.g. for variable products. Use {min_price} as placeholder for the minimum price. Use {max_price} as placeholder for the maximum price."
6700
- msgstr ""
6701
-
6702
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:294
6703
- #: includes/wc-gzd-core-functions.php:861
6704
- msgid "{min_price} &ndash; {max_price}"
6705
- msgstr ""
6706
-
6707
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:298
6708
  msgid "Add to Cart"
6709
  msgstr ""
6710
 
6711
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:299
6712
  msgid "Show add to cart button on listings."
6713
  msgstr ""
6714
 
6715
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:303
6716
  msgid "unset this option if you don't want to show the add to cart button within the product listings"
6717
  msgstr ""
6718
 
6719
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:306
6720
  msgid "Link"
6721
  msgstr ""
6722
 
6723
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:307
6724
  msgid "Link to product details page instead of add to cart within listings."
6725
  msgstr ""
6726
 
6727
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:311
6728
  msgid "Decide whether you like to link to your product's details page instead of displaying an add to cart button within product listings."
6729
  msgstr ""
6730
 
6731
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:314
6732
  msgid "Product Details Text"
6733
  msgstr ""
6734
 
6735
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:316
6736
  msgid "Details"
6737
  msgstr ""
6738
 
6739
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:321
6740
  msgid "If you have chosen to link to product details page instead of add to cart URL you may want to change the button text."
6741
  msgstr ""
6742
 
6743
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:342
6744
  msgid "Overview"
6745
  msgstr ""
6746
 
6747
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:343
6748
  msgid "You can always return to the settings overview by navigating through the breadcrumb navigation."
6749
  msgstr ""
6750
 
6751
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:356
6752
  msgid "Sections"
6753
  msgstr ""
6754
 
6755
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:357
6756
  msgid "Each setting tab might have sub sections containing more specific options."
6757
  msgstr ""
6758
 
6759
- #: includes/admin/settings/class-wc-gzd-settings-tab-general.php:371
6760
  msgid "Adjust legal pages e.g. terms and conditions. These pages are used to add links within checkboxes and text attachments to emails."
6761
  msgstr ""
6762
 
6763
- #: includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:17
6764
  msgid "Configure PDF invoices and packing slips."
6765
  msgstr ""
6766
 
6767
- #: includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:21
6768
  msgid "Invoices & Packing Slips"
6769
  msgstr ""
6770
 
6771
- #: includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:53
6772
  msgid "Generate custom and professional PDF invoices, cancellations and packing slips automatically with Germanized Pro."
6773
  msgstr ""
6774
 
6775
- #: includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:55
6776
  msgid "Customize your documents with the built-in document editor"
6777
  msgstr ""
6778
 
6779
- #: includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:56
6780
  msgid "Transfer your documents to your lexoffice and/or sevDesk account"
6781
  msgstr ""
6782
 
6783
- #: includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:57
6784
  msgid "Export your documents as CSV and ZIP"
6785
  msgstr ""
6786
 
6787
- #: includes/admin/settings/class-wc-gzd-settings-tab-multistep-checkout.php:17
6788
  msgid "Transform your checkout into a multistep checkout process."
6789
  msgstr ""
6790
 
6791
- #: includes/admin/settings/class-wc-gzd-settings-tab-multistep-checkout.php:21
6792
  msgid "Multistep checkout"
6793
  msgstr ""
6794
 
6795
- #: includes/admin/settings/class-wc-gzd-settings-tab-revocation-generator.php:17
 
 
 
 
 
 
 
 
6796
  msgid "Easily generate your revocation terms through our API."
6797
  msgstr ""
6798
 
6799
- #: includes/admin/settings/class-wc-gzd-settings-tab-revocation-generator.php:21
6800
  msgid "Revocation Terms Generator"
6801
  msgstr ""
6802
 
6803
- #: includes/admin/settings/class-wc-gzd-settings-tab-shipments.php:19
6804
  msgid "Create shipments for your orders and improve default shipment handling."
6805
  msgstr ""
6806
 
6807
- #: includes/admin/settings/class-wc-gzd-settings-tab-shipments.php:23
6808
  msgid "Shipments"
6809
  msgstr ""
6810
 
6811
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6812
  msgid "Adjust shopmark related settings. Choose which and where they shall be attached to your product data."
6813
  msgstr ""
6814
 
6815
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:24
6816
  msgid "Shopmarks"
6817
  msgstr ""
6818
 
6819
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:38
6820
  msgid "Delivery times"
6821
  msgstr ""
6822
 
6823
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:39
6824
  msgid "Unit prices"
6825
  msgstr ""
6826
 
6827
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:40
6828
  msgid "Price labels"
6829
  msgstr ""
6830
 
6831
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:48
6832
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:210
6833
  msgid "Widgets & Blocks"
6834
  msgstr ""
6835
 
6836
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:49
6837
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:255
6838
  msgid "E-Mails"
6839
  msgstr ""
6840
 
6841
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:68
6842
  msgid "Shopmark Display"
6843
  msgstr ""
6844
 
6845
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:69
6846
  msgid "By adjusting the display settings you might determine where to show or hide your shopmarks e.g. the tax notice on single product pages."
6847
  msgstr ""
6848
 
6849
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:87
6850
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:330
6851
  msgid "Location"
6852
  msgstr ""
6853
 
6854
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:88
6855
  msgid "Adjust the location of the shopmark by selecting a location from the list. Some Themes might apply the locations at different positions that's why the result may differ from Theme to Theme."
6856
  msgstr ""
6857
 
6858
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:101
6859
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:345
6860
  msgid "Priority"
6861
  msgstr ""
6862
 
6863
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:102
6864
  msgid "Many different information may be attached to the location selected. By adjusting the priority you can choose whether the shopmark gets applied earlier (lower) or later (higher)."
6865
  msgstr ""
6866
 
6867
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:120
6868
- #: includes/admin/views/html-page-status-germanized.php:50
6869
  msgid "Default Delivery Time"
6870
  msgstr ""
6871
 
6872
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:121
6873
  msgid "Choose a delivery time that serves as fallback in case no delivery time was added to the product."
6874
  msgstr ""
6875
 
6876
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:134
6877
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:458
6878
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:505
6879
  msgid "Format"
6880
  msgstr ""
6881
 
6882
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:135
6883
  msgid "You may want to adjust the delivery time output format. You might use {delivery_time} to output the current product's delivery time."
6884
  msgstr ""
6885
 
6886
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:153
6887
  msgid "Default Sale Label"
6888
  msgstr ""
6889
 
6890
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:154
6891
  msgid "Price labels are added to sale products to inform the customers of the different prices' meaning. You may add a fallback label in case a product does not contain a label."
6892
  msgstr ""
6893
 
6894
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:195
6895
  msgid "Adjust Product Widgets & Blocks visibility options."
6896
  msgstr ""
6897
 
6898
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:199
 
6899
  msgid "Adjust %s visibility options and choose which shopmarks to be displayed at which locations."
6900
  msgstr ""
6901
 
6902
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:211
6903
  msgid "Shipping Costs notice"
6904
  msgstr ""
6905
 
6906
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:218
6907
  msgid "Tax Info"
6908
  msgstr ""
6909
 
6910
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:225
6911
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:256
6912
- msgid "Base Price"
 
 
 
6913
  msgstr ""
6914
 
6915
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:239
6916
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:272
6917
  msgid "Delivery Time Notice"
6918
  msgstr ""
6919
 
6920
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:280
6921
  msgid "Short Description"
6922
  msgstr ""
6923
 
6924
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:303
 
6925
  msgid "Show %s shopmark"
6926
  msgstr ""
6927
 
6928
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:311
6929
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
6930
  msgid "Tax"
6931
  msgstr ""
6932
 
6933
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:312
6934
  msgid "Show Tax shopmark"
6935
  msgstr ""
6936
 
6937
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:320
6938
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:365
6939
- #: includes/wc-gzd-core-functions.php:248
6940
  msgid "Shipping Costs"
6941
  msgstr ""
6942
 
6943
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:321
6944
  msgid "Show Shipping Costs shopmark"
6945
  msgstr ""
6946
 
6947
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:331
6948
  msgid "Choose a location for the shopmark. Locations are mapped to specific WooCommerce hooks and may differ from Theme to Theme."
6949
  msgstr ""
6950
 
6951
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:346
 
6952
  msgid "Choose a priority by which the shopmark should be attached to the location. The higher the priority, the later the shopmark will be attached. Defaults to %d."
6953
  msgstr ""
6954
 
6955
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:372
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6956
  msgid "This text will be used to inform the customer about shipping costs. Use {link}{/link} to insert link to shipping costs page."
6957
  msgstr ""
6958
 
6959
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:377
6960
  msgid "plus {link}Shipping Costs{/link}"
6961
  msgstr ""
6962
 
6963
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:380
6964
  msgid "Free Shipping Text"
6965
  msgstr ""
6966
 
6967
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:381
6968
  msgid "This text will be used to inform the customer about free shipping. Leave empty to disable notice. Use {link}{/link} to insert link to shipping costs page."
6969
  msgstr ""
6970
 
6971
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:389
6972
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:487
6973
  msgid "Hide Notice"
6974
  msgstr ""
6975
 
6976
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:390
6977
  msgid "Select product types for which you might want to disable the shipping costs notice."
6978
  msgstr ""
6979
 
6980
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:400
6981
  msgid "Footer"
6982
  msgstr ""
6983
 
6984
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:403
6985
  msgid "Notice"
6986
  msgstr ""
6987
 
6988
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:404
6989
  msgid "Attach a global VAT notice to your footer."
6990
  msgstr ""
6991
 
6992
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:411
6993
  msgid "Attach a global sale price notice to your footer."
6994
  msgstr ""
6995
 
6996
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:447
6997
  msgid "Fallback"
6998
  msgstr ""
6999
 
7000
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:448
7001
  msgid "This delivery time will be added to every product if no delivery time has been chosen individually"
7002
  msgstr ""
7003
 
7004
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:455
7005
  msgid "Manage Delivery Times"
7006
  msgstr ""
7007
 
7008
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:459
7009
  msgid "This text will be used to indicate delivery time for products. Use {delivery_time} as placeholder."
7010
  msgstr ""
7011
 
7012
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:463
7013
  msgid "Delivery time: {delivery_time}"
7014
  msgstr ""
7015
 
7016
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:466
7017
  msgid "Digital text"
7018
  msgstr ""
7019
 
7020
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:470
7021
  msgid "Enter a text which will be shown as digital delivery time text (replacement for default digital time on digital products)."
7022
  msgstr ""
7023
 
7024
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:473
7025
  msgid "Backorder"
7026
  msgstr ""
7027
 
7028
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:474
7029
  msgid "Hide delivery time if a product is on backorder."
7030
  msgstr ""
7031
 
7032
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:480
7033
  msgid "Not in Stock"
7034
  msgstr ""
7035
 
7036
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:481
7037
  msgid "Hide delivery time if a product is not in stock."
7038
  msgstr ""
7039
 
7040
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:488
7041
  msgid "Select product types for which you might want to disable the delivery time notice."
7042
  msgstr ""
7043
 
7044
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:506
7045
- msgid "This text will be used to display the base price. Use {price} to insert the price. If you want to specifically format base price output use {base}, {unit} and {base_price} as placeholders."
7046
  msgstr ""
7047
 
7048
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:510
7049
  msgid "{price}"
7050
  msgstr ""
7051
 
7052
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:513
7053
- msgid "Variable Price"
7054
  msgstr ""
7055
 
7056
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:514
7057
- msgid "Enable price range base prices for variable products."
7058
  msgstr ""
7059
 
7060
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:520
7061
- msgid "Product units format"
7062
  msgstr ""
7063
 
7064
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:521
7065
- msgid "This text will be used to display the product units. Use {product_units} to insert the amount of product units. Use {unit} to insert the unit. Optionally display the formatted unit price with {unit_price}."
7066
  msgstr ""
7067
 
7068
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:525
7069
- msgid "Product contains: {product_units} {unit}"
7070
  msgstr ""
7071
 
7072
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:537
7073
  msgid "Fallback Sale Label"
7074
  msgstr ""
7075
 
7076
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:544
7077
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:554
7078
  msgid "Manage Price Labels"
7079
  msgstr ""
7080
 
7081
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:544
7082
  msgid "Choose whether you would like to have a default sale price label to inform the customer about the regular price (e.g. Recommended Retail Price)."
7083
  msgstr ""
7084
 
7085
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:547
7086
  msgid "Fallback Regular Label"
7087
  msgstr ""
7088
 
7089
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:554
7090
  msgid "Choose whether you would like to have a default sale price regular label to inform the customer about the sale price (e.g. New Price)."
7091
  msgstr ""
7092
 
7093
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:558
7094
- #: src/Shopmarks.php:294
7095
  msgid "Single Product"
7096
  msgstr ""
7097
 
7098
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:559
7099
  msgid "Show price labels on single product page."
7100
  msgstr ""
7101
 
7102
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:566
7103
  msgid "Loop"
7104
  msgstr ""
7105
 
7106
- #: includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:567
7107
  msgid "Show price labels in product loops."
7108
  msgstr ""
7109
 
7110
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:17
7111
  msgid "Adjust tax related settings e.g. Split-tax calculation for shipping costs."
7112
  msgstr ""
7113
 
7114
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:21
7115
- #: includes/admin/views/html-page-status-germanized.php:86
7116
  msgid "Taxes"
7117
  msgstr ""
7118
 
7119
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:30
7120
- #: includes/wc-gzd-core-functions.php:451
7121
  msgid "VAT"
7122
  msgstr ""
7123
 
7124
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:31
7125
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:101
7126
- #: includes/admin/views/html-page-status-germanized.php:91
7127
  msgid "Split-tax"
7128
  msgstr ""
7129
 
7130
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:32
7131
  msgid "Differential Taxation"
7132
  msgstr ""
7133
 
7134
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:42
7135
- #: includes/admin/views/html-page-status-germanized.php:101
7136
  msgid "Virtual VAT"
7137
  msgstr ""
7138
 
7139
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:43
7140
  msgid "Enable if you want to charge your customer's countries' VAT for virtual products."
7141
  msgstr ""
7142
 
7143
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:43
 
7144
  msgid "New EU VAT rule applies on 01.01.2015. Make sure that every digital or virtual product has chosen the right tax class (Virtual Rate or Virtual Reduced Rate). Gross prices will not differ from the prices you have chosen for affected products. In fact the net price will differ depending on the VAT rate of your customers' country. Shop settings will be adjusted to show prices including tax. More information can be found <a href=\"%s\" target=\"_blank\">here</a>."
7145
  msgstr ""
7146
 
7147
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:55
7148
  msgid "Tax Rate"
7149
  msgstr ""
7150
 
7151
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:56
7152
  msgid "Hide specific tax rate within shop pages."
7153
  msgstr ""
7154
 
7155
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:60
7156
  msgid "This option will make sure that within shop pages no specific tax rates are shown. Instead only incl. tax or excl. tax notice is shown."
7157
  msgstr ""
7158
 
7159
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:72
7160
- msgid "VAT ID"
7161
  msgstr ""
7162
 
7163
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:75
7164
- msgid "%sUpgrade to %spro%s%s to unlock this feature and enjoy premium support."
7165
  msgstr ""
7166
 
7167
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
 
 
 
 
 
 
 
 
 
 
 
 
 
7168
  msgid "By choosing this option shipping cost and fee taxes will be calculated based on the tax rates included within the cart. Imagine the following example. The tax share is calculated based on net prices. Further information can be found <a href=\"%s\" target=\"_blank\">here</a>. %s"
7169
  msgstr ""
7170
 
7171
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
7172
  msgid "Product"
7173
  msgstr ""
7174
 
7175
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
7176
  msgid "Price"
7177
  msgstr ""
7178
 
7179
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
7180
  msgid "Price (net)"
7181
  msgstr ""
7182
 
7183
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
7184
  msgid "Tax rate"
7185
  msgstr ""
7186
 
7187
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
7188
  msgid "Share"
7189
  msgstr ""
7190
 
7191
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
7192
  msgid "Book"
7193
  msgstr ""
7194
 
7195
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
7196
  msgid "DVD"
7197
  msgstr ""
7198
 
7199
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:91
7200
  msgid "Shipping"
7201
  msgstr ""
7202
 
7203
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:102
7204
  msgid "Enable split-tax calculation for additional costs (shipping costs and fees)."
7205
  msgstr ""
7206
 
7207
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:117
7208
  msgid "Taxation Notice"
7209
  msgstr ""
7210
 
7211
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:118
7212
  msgid "Enable differential taxation text notice beneath product price."
7213
  msgstr ""
7214
 
7215
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:118
7216
  msgid "If you have disabled this option, a normal VAT notice will be displayed, which is sufficient as Trusted Shops states. To further inform your customers you may enable this notice."
7217
  msgstr ""
7218
 
7219
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:124
7220
  msgid "Mixed carts"
7221
  msgstr ""
7222
 
7223
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:125
7224
  msgid "Disallow buying normal and differential taxed products at the same time."
7225
  msgstr ""
7226
 
7227
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:125
 
7228
  msgid "Shipping costs for differential taxed products may not be taxed (compare %s) or must be taxed separately which is impossible within a single order. This option will prevent your customers from buying normal products and differential taxed products at the same time to prevent taxation problems."
7229
  msgstr ""
7230
 
7231
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:125
7232
  msgid "HK Hamburg"
7233
  msgstr ""
7234
 
7235
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:132
7236
  msgid "This text will be shown as a further notice for the customer to inform him about differential taxation."
7237
  msgstr ""
7238
 
7239
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:137
7240
  msgid "incl. VAT (differential taxation according to §25a UStG.)"
7241
  msgstr ""
7242
 
7243
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:141
7244
  msgid "Checkout & E-Mails"
7245
  msgstr ""
7246
 
7247
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:142
7248
  msgid "Enable differential taxation notice during checkout and in emails."
7249
  msgstr ""
7250
 
7251
- #: includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:187
7252
  msgid "Sorry, but the new Virtual VAT rules cannot be applied to small business."
7253
  msgstr ""
7254
 
7255
- #: includes/admin/settings/class-wc-gzd-settings-tab-terms-generator.php:17
7256
  msgid "Easily generate your custom terms & conditions through our API."
7257
  msgstr ""
7258
 
7259
- #: includes/admin/settings/class-wc-gzd-settings-tab-terms-generator.php:21
7260
  msgid "TOS Generator"
7261
  msgstr ""
7262
 
7263
- #: includes/admin/settings/views/html-admin-page-checkboxes.php:10
7264
  msgid "Drag and drop to re-order checkboxes. This is the order being used for printing the fields."
7265
  msgstr ""
7266
 
7267
- #: includes/admin/settings/views/html-admin-page-checkboxes.php:11
7268
- #: includes/admin/settings/views/html-admin-settings-tabs.php:27
7269
- #: includes/class-wc-gzd-legal-checkbox.php:793
7270
  msgid "Name"
7271
  msgstr ""
7272
 
7273
- #: includes/admin/settings/views/html-admin-page-checkboxes.php:12
7274
- #: includes/admin/settings/views/html-admin-settings-tabs.php:29
7275
- #: includes/class-wc-gzd-legal-checkbox.php:812
7276
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:888
7277
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:124
7278
  msgid "Description"
7279
  msgstr ""
7280
 
7281
- #: includes/admin/settings/views/html-admin-page-checkboxes.php:13
7282
- #: includes/admin/settings/views/html-admin-settings-tabs.php:28
7283
  msgid "Enabled"
7284
  msgstr ""
7285
 
7286
- #: includes/admin/settings/views/html-admin-page-checkboxes.php:14
7287
- #: includes/class-wc-gzd-legal-checkbox.php:849
7288
  msgid "Mandatory"
7289
  msgstr ""
7290
 
7291
- #: includes/admin/settings/views/html-admin-page-checkboxes.php:15
7292
  msgid "Location(s)"
7293
  msgstr ""
7294
 
7295
- #: includes/admin/settings/views/html-admin-page-checkboxes.php:28
7296
  msgid "Edit"
7297
  msgstr ""
7298
 
7299
- #: includes/admin/settings/views/html-admin-page-checkboxes.php:30
7300
  msgid "Delete"
7301
  msgstr ""
7302
 
7303
- #: includes/admin/settings/views/html-admin-settings-tabs.php:13
 
7304
  msgid "Upgrade to %s"
7305
  msgstr ""
7306
 
7307
- #: includes/admin/settings/views/html-admin-settings-tabs.php:21
7308
  msgid "Adapt your WooCommerce installation to the german market with Germanized."
7309
  msgstr ""
7310
 
7311
- #: includes/admin/settings/views/html-admin-settings-tabs.php:65
7312
- #: includes/admin/settings/views/html-admin-settings-tabs.php:66
7313
  msgid "Find out more"
7314
  msgstr ""
7315
 
7316
- #: includes/admin/settings/views/html-admin-settings-tabs.php:67
7317
  msgid "How to"
7318
  msgstr ""
7319
 
7320
- #: includes/admin/settings/views/html-admin-settings-tabs.php:71
7321
- #: includes/admin/settings/views/html-admin-settings-tabs.php:72
7322
  msgid "Manage settings"
7323
  msgstr ""
7324
 
7325
- #: includes/admin/settings/views/html-admin-settings-tabs.php:73
7326
  msgid "Manage"
7327
  msgstr ""
7328
 
7329
- #: includes/admin/views/html-notice-dependencies.php:15
7330
  msgid "WooCommerce missing or outdated"
7331
  msgstr ""
7332
 
7333
- #. translators: 1$-2$: opening and closing <strong> tags, 3$-4$: link tags, takes to woocommerce plugin on wp.org, 5$-6$: opening and closing link tags, leads to plugins.php in admin
7334
- #: includes/admin/views/html-notice-dependencies.php:21
7335
  msgid "%1$sGermanized is inactive.%2$s The %3$sWooCommerce plugin%4$s must be active for Germanized to work. Please %5$sinstall WooCommerce &raquo;%6$s"
7336
  msgstr ""
7337
 
7338
- #. translators: 1$-2$: opening and closing <strong> tags, 3$-4$: link tags, takes to woocommerce plugin on wp.org, 5$-6$: opening and closing link tags, leads to plugins.php in admin
7339
- #: includes/admin/views/html-notice-dependencies.php:27
7340
  msgid "%1$sGermanized is inactive.%2$s The %3$sWooCommerce plugin%4$s must be active for Germanized to work. Please %5$sactivate WooCommerce &raquo;%6$s"
7341
  msgstr ""
7342
 
7343
- #. translators: 1$-2$: opening and closing <strong> tags, 3$: minimum supported WooCommerce version, 4$-5$: opening and closing link tags, leads to plugin admin
7344
- #: includes/admin/views/html-notice-dependencies.php:33
7345
  msgid "%1$sGermanized is inactive.%2$s This version of Germanized requires WooCommerce %3$s or newer. Please %4$supdate WooCommerce to version %3$s or newer &raquo;%5$s"
7346
  msgstr ""
7347
 
7348
- #: includes/admin/views/html-notice-fallback.php:13
7349
  msgid "Hide"
7350
  msgstr ""
7351
 
7352
- #: includes/admin/views/html-notice-update-pro-incompatible.php:15
 
7353
  msgid "<strong>Be aware!</strong> This update is not compatible with your current Germanized Pro version. Please <a href=\"%s\">check for updates</a> before updating Germanized to prevent <a href=\"%s\">compatibility issues</a>."
7354
  msgstr ""
7355
 
7356
- #: includes/admin/views/html-page-status-germanized.php:12
7357
  msgid "Please copy and paste this information in your ticket when contacting support:"
7358
  msgstr ""
7359
 
7360
- #: includes/admin/views/html-page-status-germanized.php:14
7361
  msgid "Get System Report"
7362
  msgstr ""
7363
 
7364
- #: includes/admin/views/html-page-status-germanized.php:19
 
7365
  msgid "Copied!"
7366
  msgstr ""
7367
 
7368
- #: includes/admin/views/html-page-status-germanized.php:19
7369
  msgid "Copy for Support"
7370
  msgstr ""
7371
 
7372
- #: includes/admin/views/html-page-status-germanized.php:32
7373
  msgid "Version"
7374
  msgstr ""
7375
 
7376
- #: includes/admin/views/html-page-status-germanized.php:37
7377
  msgid "Database Version"
7378
  msgstr ""
7379
 
7380
- #: includes/admin/views/html-page-status-germanized.php:62
 
 
 
 
7381
  msgid "Term doesn’t exist"
7382
  msgstr ""
7383
 
7384
- #: includes/admin/views/html-page-status-germanized.php:96
7385
  msgid "Additional costs include taxes"
7386
  msgstr ""
7387
 
7388
- #: includes/admin/views/html-page-status-germanized.php:106
7389
  msgid "Tax Rate Name Collision"
7390
  msgstr ""
7391
 
7392
- #: includes/admin/views/html-page-status-germanized.php:109
7393
  msgid "Make sure, that different tax rates do not have the same names. WooCommerce will then merge these rates within checkout into one line."
7394
  msgstr ""
7395
 
7396
- #: includes/admin/views/html-page-status-germanized.php:153
7397
  msgid "VAT Table Check"
7398
  msgstr ""
7399
 
7400
- #: includes/admin/views/html-page-status-germanized.php:154
7401
  msgid "Checks whether all WooCommerce tax relevant tables have been added."
7402
  msgstr ""
7403
 
7404
- #: includes/admin/views/html-page-status-germanized.php:155
 
7405
  msgid "Missing: %s"
7406
  msgstr ""
7407
 
7408
- #: includes/admin/views/html-page-status-germanized.php:183
7409
  msgid "Page doesn’t exist"
7410
  msgstr ""
7411
 
7412
- #: includes/admin/views/html-page-status-germanized.php:203
7413
  msgid "Compatibility"
7414
  msgstr ""
7415
 
7416
- #: includes/admin/views/html-page-status-germanized.php:219
 
7417
  msgid "Checks whether compatibility options for %s are being applied."
7418
  msgstr ""
7419
 
7420
- #: includes/admin/views/html-page-status-germanized.php:222
 
7421
  msgid "Version %s not supported, supporting version %s - %s"
7422
  msgstr ""
7423
 
7424
- #: includes/admin/views/html-page-status-germanized.php:244
7425
  msgid "Tools"
7426
  msgstr ""
7427
 
7428
- #: includes/admin/views/html-page-status-germanized.php:249
7429
  msgid "German Formal"
7430
  msgstr ""
7431
 
7432
- #: includes/admin/views/html-page-status-germanized.php:250
7433
  msgid "This option will install and activate German formal as your WordPress and WooCommerce language."
7434
  msgstr ""
7435
 
7436
- #: includes/admin/views/html-page-status-germanized.php:253
7437
  msgid "Install de_DE_formal"
7438
  msgstr ""
7439
 
7440
- #: includes/admin/views/html-page-status-germanized.php:256
7441
  msgid "Text Options"
7442
  msgstr ""
7443
 
7444
- #: includes/admin/views/html-page-status-germanized.php:257
7445
  msgid "This option removes custom Germanized text options (e.g. Pay-Button-Text) and installs default options. You may use this options to reinstall text options e.g. after a language switch."
7446
  msgstr ""
7447
 
7448
- #: includes/admin/views/html-page-status-germanized.php:260
7449
  msgid "Delete text options"
7450
  msgstr ""
7451
 
7452
- #: includes/admin/views/html-page-status-germanized.php:263
7453
  msgid "Renew EU VAT Rates"
7454
  msgstr ""
7455
 
7456
- #: includes/admin/views/html-page-status-germanized.php:264
7457
- msgid "Insert VAT rates (standard, recuded and virtual) for EU countries. This option deletes all of your standard, reduced and virtual rates before inserting."
7458
  msgstr ""
7459
 
7460
- #: includes/admin/views/html-page-status-germanized.php:267
7461
  msgid "Renew VAT Rates"
7462
  msgstr ""
7463
 
7464
- #: includes/admin/views/html-page-status-germanized.php:270
7465
- #: includes/admin/views/html-page-status-germanized.php:273
7466
  msgid "Disable notices"
7467
  msgstr ""
7468
 
7469
- #: includes/admin/views/html-page-status-germanized.php:271
7470
  msgid "Germanized might ask you to leave a review or notices you of using a possibly unsupported theme. If you want to disable these notices, check this option."
7471
  msgstr ""
7472
 
7473
- #: includes/admin/views/html-page-status-germanized.php:273
7474
  msgid "Enable notices"
7475
  msgstr ""
7476
 
7477
- #: includes/admin/views/html-page-status-germanized.php:292
 
 
 
 
7478
  msgid "Templates"
7479
  msgstr ""
7480
 
7481
- #: includes/admin/views/html-page-status-germanized.php:298
7482
  msgid "Overrides"
7483
  msgstr ""
7484
 
7485
- #: includes/admin/views/html-page-status-germanized.php:307
 
7486
  msgid "Version %s is out of date. The core version is %s."
7487
  msgstr ""
7488
 
7489
- #: includes/admin/views/html-page-status-germanized.php:315
7490
  msgid "Learn how to update outdated templates"
7491
  msgstr ""
7492
 
7493
- #: includes/admin/views/setup/dhl.php:12
 
 
 
 
7494
  msgid "Want to easily ship your orders via DHL? Enable our deep DHL integration and start generating labels for shipments comfortably via your admin panel."
7495
  msgstr ""
7496
 
7497
- #: includes/admin/views/setup/dhl.php:17
7498
  msgid "We've found out that you have been using DHL for WooCommerce already. We will automatically import your settings and you can start using our integration instead."
7499
  msgstr ""
7500
 
7501
- #: includes/admin/views/setup/first-steps.php:11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7502
  msgid "Congratulations! You are ready to go. You should now head over to the settings to configure Germanized in-deep."
7503
  msgstr ""
7504
 
7505
- #: includes/admin/views/setup/first-steps.php:15
7506
  msgid "Resources"
7507
  msgstr ""
7508
 
7509
- #: includes/admin/views/setup/first-steps.php:20
7510
  msgid "Knowledge Base"
7511
  msgstr ""
7512
 
7513
- #: includes/admin/views/setup/first-steps.php:22
7514
  msgid "Stay tuned"
7515
  msgstr ""
7516
 
7517
- #: includes/admin/views/setup/first-steps.php:25
7518
  msgid "Learn how to use WordPress"
7519
  msgstr ""
7520
 
7521
- #: includes/admin/views/setup/first-steps.php:28
7522
  msgid "Learn how to use WooCommerce"
7523
  msgstr ""
7524
 
7525
- #: includes/admin/views/setup/first-steps.php:36
7526
  msgid "Want more features and premium support?"
7527
  msgstr ""
7528
 
7529
- #: includes/admin/views/setup/first-steps.php:39
7530
  msgid "Discover professional version"
7531
  msgstr ""
7532
 
7533
- #: includes/admin/views/setup/germanize.php:12
7534
  msgid "Germany"
7535
  msgstr ""
7536
 
7537
- #: includes/admin/views/setup/germanize.php:14
7538
  msgid "Germanize WooCommerce"
7539
  msgstr ""
7540
 
7541
- #: includes/admin/views/setup/germanize.php:16
 
7542
  msgid "Let Germanized help you to adjust your WooCommerce settings for %s."
7543
  msgstr ""
7544
 
7545
- #: includes/admin/views/setup/internetmarke.php:12
 
 
 
 
7546
  msgid "Want to easily ship your orders via Deutsche Post? Enable our Internetmarke integration and start generating labels for shipments comfortably via your admin panel."
7547
  msgstr ""
7548
 
7549
- #: includes/admin/views/setup/internetmarke.php:17
7550
  msgid "We've found out that you have been using the Internetmarke standalone Plugin already. We will automatically import your settings and you can start using our integration instead."
7551
  msgstr ""
7552
 
7553
- #: includes/admin/views/setup/settings.php:7
 
 
 
 
 
 
 
 
7554
  msgid "Adjust Germanized"
7555
  msgstr ""
7556
 
7557
- #: includes/admin/views/setup/settings.php:9
7558
  msgid "Configure Germanized to your needs. You can always adjust these settings later on."
7559
  msgstr ""
7560
 
7561
- #: includes/api/class-wc-gzd-rest-customers-controller.php:152
7562
  msgid "Has been activated via DOI?"
7563
  msgstr ""
7564
 
7565
- #: includes/api/class-wc-gzd-rest-customers-controller.php:160
7566
- #: includes/api/class-wc-gzd-rest-orders-controller.php:159
7567
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:39
7568
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:884
7569
- #: includes/gateways/direct-debit/views/html-export.php:30
7570
  msgid "Direct Debit"
7571
  msgstr ""
7572
 
7573
- #: includes/api/class-wc-gzd-rest-customers-controller.php:165
7574
- #: includes/api/class-wc-gzd-rest-orders-controller.php:164
7575
- #: includes/class-wc-gzd-privacy.php:85
7576
- #: includes/class-wc-gzd-privacy.php:117
7577
- #: includes/class-wc-gzd-privacy.php:166
7578
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:117
7579
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:600
7580
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:910
7581
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1056
7582
  msgid "Account Holder"
7583
  msgstr ""
7584
 
7585
- #: includes/api/class-wc-gzd-rest-customers-controller.php:170
7586
- #: includes/api/class-wc-gzd-rest-orders-controller.php:169
7587
- #: includes/class-wc-gzd-privacy.php:86
7588
- #: includes/class-wc-gzd-privacy.php:118
7589
- #: includes/class-wc-gzd-privacy.php:167
7590
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:124
7591
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:601
7592
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:918
7593
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1060
7594
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1190
7595
  msgid "IBAN"
7596
  msgstr ""
7597
 
7598
- #: includes/api/class-wc-gzd-rest-customers-controller.php:175
7599
- #: includes/api/class-wc-gzd-rest-orders-controller.php:174
7600
- #: includes/class-wc-gzd-privacy.php:87
7601
- #: includes/class-wc-gzd-privacy.php:119
7602
- #: includes/class-wc-gzd-privacy.php:168
7603
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:131
7604
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:602
7605
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1064
7606
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1191
7607
  msgid "BIC/SWIFT"
7608
  msgstr ""
7609
 
7610
- #: includes/api/class-wc-gzd-rest-orders-controller.php:152
7611
  msgid "Parcel Delivery Data Transfer"
7612
  msgstr ""
7613
 
7614
- #: includes/api/class-wc-gzd-rest-orders-controller.php:179
7615
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:138
7616
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:606
7617
  msgid "Mandate Reference ID"
7618
  msgstr ""
7619
 
7620
- #: includes/api/class-wc-gzd-rest-products-controller.php:37
7621
- #: includes/api/class-wc-gzd-rest-products-controller.php:209
7622
  msgid "Delivery Time ID"
7623
  msgstr ""
7624
 
7625
- #: includes/api/class-wc-gzd-rest-products-controller.php:42
7626
- #: includes/api/class-wc-gzd-rest-products-controller.php:214
7627
  msgid "Delivery Time Name"
7628
  msgstr ""
7629
 
7630
- #: includes/api/class-wc-gzd-rest-products-controller.php:48
7631
- #: includes/api/class-wc-gzd-rest-products-controller.php:220
7632
  msgid "Delivery Time Slug"
7633
  msgstr ""
7634
 
7635
- #: includes/api/class-wc-gzd-rest-products-controller.php:53
7636
- #: includes/api/class-wc-gzd-rest-products-controller.php:225
7637
  msgid "Delivery Time HTML"
7638
  msgstr ""
7639
 
7640
- #: includes/api/class-wc-gzd-rest-products-controller.php:61
7641
- #: includes/api/class-wc-gzd-rest-products-controller.php:84
7642
- #: includes/api/class-wc-gzd-rest-products-controller.php:233
7643
- #: includes/api/class-wc-gzd-rest-products-controller.php:256
7644
- #: includes/class-wc-gzd-post-types.php:144
7645
  msgid "Price Label"
7646
  msgstr ""
7647
 
7648
- #: includes/api/class-wc-gzd-rest-products-controller.php:66
7649
- #: includes/api/class-wc-gzd-rest-products-controller.php:89
7650
- #: includes/api/class-wc-gzd-rest-products-controller.php:238
7651
- #: includes/api/class-wc-gzd-rest-products-controller.php:261
7652
  msgid "Price Label ID"
7653
  msgstr ""
7654
 
7655
- #: includes/api/class-wc-gzd-rest-products-controller.php:71
7656
- #: includes/api/class-wc-gzd-rest-products-controller.php:94
7657
- #: includes/api/class-wc-gzd-rest-products-controller.php:243
7658
- #: includes/api/class-wc-gzd-rest-products-controller.php:266
7659
  msgid "Price Label Name"
7660
  msgstr ""
7661
 
7662
- #: includes/api/class-wc-gzd-rest-products-controller.php:77
7663
- #: includes/api/class-wc-gzd-rest-products-controller.php:100
7664
- #: includes/api/class-wc-gzd-rest-products-controller.php:249
7665
- #: includes/api/class-wc-gzd-rest-products-controller.php:272
7666
  msgid "Price Label Slug"
7667
  msgstr ""
7668
 
7669
- #: includes/api/class-wc-gzd-rest-products-controller.php:112
7670
  msgid "Unit ID"
7671
  msgstr ""
7672
 
7673
- #: includes/api/class-wc-gzd-rest-products-controller.php:117
7674
  msgid "Unit Name"
7675
  msgstr ""
7676
 
7677
- #: includes/api/class-wc-gzd-rest-products-controller.php:123
7678
  msgid "Unit Slug"
7679
  msgstr ""
7680
 
7681
- #: includes/api/class-wc-gzd-rest-products-controller.php:130
7682
- #: includes/api/class-wc-gzd-rest-products-controller.php:296
7683
- #: includes/compatibility/elementor/widgets/class-wc-gzd-elementor-widget-product-unit-price.php:10
7684
- msgid "Unit Price"
7685
- msgstr ""
7686
-
7687
- #: includes/api/class-wc-gzd-rest-products-controller.php:135
7688
- #: includes/api/class-wc-gzd-rest-products-controller.php:301
7689
  msgid "Unit Base"
7690
  msgstr ""
7691
 
7692
- #: includes/api/class-wc-gzd-rest-products-controller.php:140
7693
- #: includes/api/class-wc-gzd-rest-products-controller.php:306
7694
  msgid "Unit Product"
7695
  msgstr ""
7696
 
7697
- #: includes/api/class-wc-gzd-rest-products-controller.php:145
7698
- #: includes/api/class-wc-gzd-rest-products-controller.php:311
7699
  msgid "Unit Auto Calculation"
7700
  msgstr ""
7701
 
7702
- #: includes/api/class-wc-gzd-rest-products-controller.php:151
7703
- #: includes/api/class-wc-gzd-rest-products-controller.php:317
7704
  msgid "Current Unit Price"
7705
  msgstr ""
7706
 
7707
- #: includes/api/class-wc-gzd-rest-products-controller.php:156
7708
- #: includes/api/class-wc-gzd-rest-products-controller.php:322
7709
  msgid "Unit Regular Price"
7710
  msgstr ""
7711
 
7712
- #: includes/api/class-wc-gzd-rest-products-controller.php:161
7713
- #: includes/api/class-wc-gzd-rest-products-controller.php:327
7714
  msgid "Unit Sale Price"
7715
  msgstr ""
7716
 
7717
- #: includes/api/class-wc-gzd-rest-products-controller.php:166
7718
- #: includes/api/class-wc-gzd-rest-products-controller.php:332
7719
  msgid "Unit Price HTML"
7720
  msgstr ""
7721
 
7722
- #: includes/api/class-wc-gzd-rest-products-controller.php:174
7723
- #: includes/api/class-wc-gzd-rest-products-controller.php:285
7724
  msgid "Small Cart Product Description"
7725
  msgstr ""
7726
 
7727
- #: includes/api/class-wc-gzd-rest-products-controller.php:179
7728
  msgid "Deactivate the hint for additional shipping costs"
7729
  msgstr ""
7730
 
7731
- #: includes/api/class-wc-gzd-rest-products-controller.php:185
7732
- #: includes/api/class-wc-gzd-rest-products-controller.php:290
7733
  msgid "Age verification minimum age."
7734
  msgstr ""
7735
 
7736
- #: includes/api/class-wc-gzd-rest-products-controller.php:192
7737
- #: includes/api/class-wc-gzd-rest-products-controller.php:279
7738
  msgid "Whether this product is a service or not"
7739
  msgstr ""
7740
 
7741
- #: includes/api/class-wc-gzd-rest-products-controller.php:198
7742
  msgid "Whether this product applies for differential taxation or not"
7743
  msgstr ""
7744
 
7745
- #: includes/api/v1/class-wc-gzd-rest-product-delivery-times-v1-controller.php:73
7746
- #: includes/api/v1/class-wc-gzd-rest-product-price-labels-v1-controller.php:73
7747
- #: includes/api/v1/class-wc-gzd-rest-product-units-v1-controller.php:73
7748
  msgid "Unique identifier for the resource."
7749
  msgstr ""
7750
 
7751
- #: includes/api/v1/class-wc-gzd-rest-product-delivery-times-v1-controller.php:79
7752
- #: includes/api/v1/class-wc-gzd-rest-product-price-labels-v1-controller.php:79
7753
- #: includes/api/v1/class-wc-gzd-rest-product-units-v1-controller.php:79
7754
  msgid "Resource name."
7755
  msgstr ""
7756
 
7757
- #: includes/api/v1/class-wc-gzd-rest-product-delivery-times-v1-controller.php:87
7758
- #: includes/api/v1/class-wc-gzd-rest-product-price-labels-v1-controller.php:87
7759
- #: includes/api/v1/class-wc-gzd-rest-product-units-v1-controller.php:87
7760
  msgid "An alphanumeric identifier for the resource unique to its type."
7761
  msgstr ""
7762
 
7763
- #: includes/api/v1/class-wc-gzd-rest-product-delivery-times-v1-controller.php:95
7764
- #: includes/api/v1/class-wc-gzd-rest-product-price-labels-v1-controller.php:95
7765
- #: includes/api/v1/class-wc-gzd-rest-product-units-v1-controller.php:95
7766
  msgid "HTML description of the resource."
7767
  msgstr ""
7768
 
7769
- #: includes/api/v1/class-wc-gzd-rest-product-delivery-times-v1-controller.php:103
7770
- #: includes/api/v1/class-wc-gzd-rest-product-price-labels-v1-controller.php:103
7771
- #: includes/api/v1/class-wc-gzd-rest-product-units-v1-controller.php:103
7772
  msgid "Number of published products for the resource."
7773
  msgstr ""
7774
 
7775
- #: includes/class-wc-gzd-ajax.php:189
 
7776
  msgid "%s [new]"
7777
  msgstr ""
7778
 
7779
- #: includes/class-wc-gzd-ajax.php:269
7780
  msgctxt "revocation-form"
7781
  msgid "is not a valid email address."
7782
  msgstr ""
7783
 
7784
- #: includes/class-wc-gzd-ajax.php:273
7785
  msgctxt "revocation-form"
7786
  msgid "Please enter a valid postcode/ZIP"
7787
  msgstr ""
7788
 
7789
- #: includes/class-wc-gzd-ajax.php:281
7790
  msgctxt "revocation-form"
7791
  msgid "is not valid."
7792
  msgstr ""
7793
 
7794
- #: includes/class-wc-gzd-ajax.php:302
7795
  msgctxt "revocation-form"
7796
  msgid "Thank you. We have received your Revocation Request. You will receive a conformation email within a few minutes."
7797
  msgstr ""
7798
 
7799
- #: includes/class-wc-gzd-checkout.php:233
 
 
 
 
7800
  msgid "Sorry, but differential taxed products cannot be purchased with normal products at the same time."
7801
  msgstr ""
7802
 
7803
- #: includes/class-wc-gzd-checkout.php:239
7804
  msgid "Sorry, but normal products cannot be purchased together with differential taxed products at the same time."
7805
  msgstr ""
7806
 
7807
- #: includes/class-wc-gzd-checkout.php:892
7808
- #: includes/class-wc-gzd-revocation.php:52
7809
- #: includes/wc-gzd-core-functions.php:604
7810
  msgid "Mr."
7811
  msgstr ""
7812
 
7813
- #: includes/class-wc-gzd-checkout.php:893
7814
  msgctxt "customer-title-male-address"
7815
  msgid "Mr."
7816
  msgstr ""
7817
 
7818
- #: includes/class-wc-gzd-coupon-helper.php:72
7819
  msgid "The cart contains one or more vouchers. Vouchers cannot be mixed with normal coupons."
7820
  msgstr ""
7821
 
7822
- #: includes/class-wc-gzd-coupon-helper.php:74
7823
  msgid "The cart contains one or more coupons. Vouchers cannot be mixed with normal coupons. Please remove the coupon before adding your voucher."
7824
  msgstr ""
7825
 
7826
- #: includes/class-wc-gzd-coupon-helper.php:371
7827
  msgid "Is voucher?"
7828
  msgstr ""
7829
 
7830
- #: includes/class-wc-gzd-coupon-helper.php:372
 
7831
  msgid "Whether or not this coupon is a voucher which has been sold to a customer without VAT and needs to be taxed as soon as the customer redeems the voucher. Find more information <a href=\"%s\" target=\"_blank\">here</a>."
7832
  msgstr ""
7833
 
7834
- #: includes/class-wc-gzd-customer-helper.php:147
7835
- #: includes/class-wc-gzd-customer-helper.php:212
7836
- #: includes/class-wc-gzd-customer-helper.php:323
7837
  msgid "Please activate your account through clicking on the activation link received via email."
7838
  msgstr ""
7839
 
7840
- #: includes/class-wc-gzd-customer-helper.php:154
 
7841
  msgid "Did not receive the activation email? <a href=\"%s\">Try again</a>."
7842
  msgstr ""
7843
 
7844
- #: includes/class-wc-gzd-customer-helper.php:333
 
7845
  msgid "Continue without creating an account? <a href=\"%s\">Click here</a>"
7846
  msgstr ""
7847
 
7848
- #: includes/class-wc-gzd-customer-helper.php:335
7849
  msgid "Please create an account or login before continuing to checkout"
7850
  msgstr ""
7851
 
7852
- #: includes/class-wc-gzd-customer-helper.php:443
 
7853
  msgid "Please activate your account through clicking on the activation link received via email. Did not receive the email? <a href=\"%s\">Try again</a>."
7854
  msgstr ""
7855
 
7856
- #: includes/class-wc-gzd-customer-helper.php:475
7857
  msgid "This activation code has expired. We have sent you a new activation code via e-mail."
7858
  msgstr ""
7859
 
7860
- #: includes/class-wc-gzd-customer-helper.php:477
7861
  msgid "Sorry, but this activation code cannot be found."
7862
  msgstr ""
7863
 
7864
- #: includes/class-wc-gzd-customer-helper.php:481
7865
  msgid "Thank you. You have successfully activated your account."
7866
  msgstr ""
7867
 
7868
- #: includes/class-wc-gzd-customer-helper.php:661
7869
  msgid "Expired activation key"
7870
  msgstr ""
7871
 
7872
- #: includes/class-wc-gzd-customer-helper.php:666
7873
  msgid "Invalid activation key"
7874
  msgstr ""
7875
 
7876
- #: includes/class-wc-gzd-emails.php:191
7877
  msgid "BCC recipients"
7878
  msgstr ""
7879
 
7880
- #: includes/class-wc-gzd-emails.php:193
7881
  msgid "Enter blind-copy recipients (comma separated) for this email."
7882
  msgstr ""
7883
 
7884
- #: includes/class-wc-gzd-emails.php:232
7885
  msgid "Confirmation text"
7886
  msgstr ""
7887
 
7888
- #: includes/class-wc-gzd-emails.php:233
7889
  msgid "Your order has been received and is now being processed. Your order details are shown below for your reference:"
7890
  msgstr ""
7891
 
7892
- #: includes/class-wc-gzd-emails.php:234
7893
  msgid "This text will be inserted within the order confirmation email. Use {order_number}, {site_title} or {order_date} as placeholder."
7894
  msgstr ""
7895
 
7896
- #: includes/class-wc-gzd-emails.php:352
7897
  msgid "Your order has been received and is now being processed. Your order details are shown below for your reference."
7898
  msgstr ""
7899
 
7900
- #: includes/class-wc-gzd-emails.php:400
7901
  msgid "Someone requested a password reset for your account."
7902
  msgstr ""
7903
 
7904
- #: includes/class-wc-gzd-emails.php:415
 
7905
  msgid "Thanks for creating an account on %s."
7906
  msgstr ""
7907
 
7908
- #: includes/class-wc-gzd-emails.php:1130
7909
  msgctxt "revocation-form"
7910
- msgid "Forward your Revocation online"
7911
  msgstr ""
7912
 
7913
- #: includes/class-wc-gzd-install.php:167
 
7914
  msgid "Please install <a href=\"%s\" target=\"_blank\">WooCommerce</a> before installing WooCommerce Germanized. Thank you!"
7915
  msgstr ""
7916
 
7917
- #: includes/class-wc-gzd-install.php:487
7918
- #: includes/class-wc-gzd-install.php:501
7919
- msgid "Reduced rate"
7920
- msgstr ""
7921
-
7922
- #: includes/class-wc-gzd-install.php:543
7923
- msgctxt "vat-rate-import"
7924
- msgid "VAT %s"
7925
- msgstr ""
7926
-
7927
- #: includes/class-wc-gzd-install.php:658
7928
  msgctxt "Page slug"
7929
  msgid "data-security"
7930
  msgstr ""
7931
 
7932
- #: includes/class-wc-gzd-install.php:659
7933
  msgctxt "Page title"
7934
- msgid "Data Security Statement"
7935
  msgstr ""
7936
 
7937
- #: includes/class-wc-gzd-install.php:663
7938
  msgctxt "Page slug"
7939
  msgid "imprint"
7940
  msgstr ""
7941
 
7942
- #: includes/class-wc-gzd-install.php:664
7943
  msgctxt "Page title"
7944
  msgid "Imprint"
7945
  msgstr ""
7946
 
7947
- #: includes/class-wc-gzd-install.php:668
7948
  msgctxt "Page slug"
7949
  msgid "terms"
7950
  msgstr ""
7951
 
7952
- #: includes/class-wc-gzd-install.php:669
7953
  msgctxt "Page title"
7954
  msgid "Terms & Conditions"
7955
  msgstr ""
7956
 
7957
- #: includes/class-wc-gzd-install.php:673
7958
  msgctxt "Page slug"
7959
  msgid "revocation"
7960
  msgstr ""
7961
 
7962
- #: includes/class-wc-gzd-install.php:674
7963
  msgctxt "Page title"
7964
- msgid "Power of Revocation"
7965
  msgstr ""
7966
 
7967
- #: includes/class-wc-gzd-install.php:678
7968
  msgctxt "Page slug"
7969
  msgid "shipping-methods"
7970
  msgstr ""
7971
 
7972
- #: includes/class-wc-gzd-install.php:679
7973
  msgctxt "Page title"
7974
  msgid "Shipping Methods"
7975
  msgstr ""
7976
 
7977
- #: includes/class-wc-gzd-install.php:683
7978
  msgctxt "Page slug"
7979
  msgid "payment-methods"
7980
  msgstr ""
7981
 
7982
- #: includes/class-wc-gzd-install.php:684
7983
  msgctxt "Page title"
7984
  msgid "Payment Methods"
7985
  msgstr ""
7986
 
7987
- #: includes/class-wc-gzd-legal-checkbox-manager.php:104
7988
- #: includes/updates/woocommerce-gzd-update-2.0.1.php:18
7989
- msgid "With your order, you agree to have read and understood our {term_link}Terms and Conditions{/term_link} your {revocation_link}Right of Recission{/revocation_link} and our {data_security_link}Privacy Policy{/data_security_link}."
7990
  msgstr ""
7991
 
7992
- #: includes/class-wc-gzd-legal-checkbox-manager.php:105
7993
- #: includes/updates/woocommerce-gzd-update-2.0.1.php:19
7994
- msgid "To finish the order you have to accept to our {term_link}Terms and Conditions{/term_link}, {revocation_link}Right of Recission{/revocation_link} and our {data_security_link}Privacy Policy{/data_security_link}."
7995
  msgstr ""
7996
 
7997
- #: includes/class-wc-gzd-legal-checkbox-manager.php:111
7998
  msgid "Legal"
7999
  msgstr ""
8000
 
8001
- #: includes/class-wc-gzd-legal-checkbox-manager.php:112
8002
  msgid "General legal checkbox which shall include terms, revocation and privacy notice."
8003
  msgstr ""
8004
 
8005
- #: includes/class-wc-gzd-legal-checkbox-manager.php:120
8006
- #: includes/updates/woocommerce-gzd-update-2.0.1.php:24
8007
  msgid "For digital products: I strongly agree that the execution of the agreement starts before the revocation period has expired. I am aware that my right of withdrawal ceases with the beginning of the agreement."
8008
  msgstr ""
8009
 
8010
- #: includes/class-wc-gzd-legal-checkbox-manager.php:122
8011
- #: includes/updates/woocommerce-gzd-update-2.0.1.php:25
8012
  msgid "To retrieve direct access to digital content you have to agree to the loss of your right of withdrawal."
8013
  msgstr ""
8014
 
8015
- #: includes/class-wc-gzd-legal-checkbox-manager.php:128
8016
  msgid "Digital"
8017
  msgstr ""
8018
 
8019
- #: includes/class-wc-gzd-legal-checkbox-manager.php:129
8020
  msgid "Asks the customer to skip revocation period for digital products."
8021
  msgstr ""
8022
 
8023
- #: includes/class-wc-gzd-legal-checkbox-manager.php:138
8024
- #: includes/updates/woocommerce-gzd-update-2.0.1.php:31
8025
  msgid "For services: I demand and acknowledge the immediate performance of the service before the expiration of the withdrawal period. I acknowledge that thereby I lose my right to cancel once the service has begun."
8026
  msgstr ""
8027
 
8028
- #: includes/class-wc-gzd-legal-checkbox-manager.php:140
8029
- #: includes/updates/woocommerce-gzd-update-2.0.1.php:32
8030
  msgid "To allow the immediate performance of the services you have to agree to the loss of your right of withdrawal."
8031
  msgstr ""
8032
 
8033
- #: includes/class-wc-gzd-legal-checkbox-manager.php:147
8034
  msgid "Asks the customer to skip revocation period for services."
8035
  msgstr ""
8036
 
8037
- #: includes/class-wc-gzd-legal-checkbox-manager.php:155
8038
- #: includes/updates/woocommerce-gzd-update-2.0.1.php:40
8039
  msgid "Yes, I would like to be reminded via E-mail about parcel delivery ({shipping_method_title}). Your E-mail Address will only be transferred to our parcel service provider for that particular reason."
8040
  msgstr ""
8041
 
8042
- #: includes/class-wc-gzd-legal-checkbox-manager.php:160
8043
  msgid "Please accept our parcel delivery agreement"
8044
  msgstr ""
8045
 
8046
- #: includes/class-wc-gzd-legal-checkbox-manager.php:165
8047
  msgid "Parcel Delivery"
8048
  msgstr ""
8049
 
8050
- #: includes/class-wc-gzd-legal-checkbox-manager.php:166
8051
  msgid "Asks the customer to hand over data to the parcel delivery service provider."
8052
  msgstr ""
8053
 
8054
- #: includes/class-wc-gzd-legal-checkbox-manager.php:175
8055
  msgid "I hereby confirm that I'm at least {age} years old."
8056
  msgstr ""
8057
 
8058
- #: includes/class-wc-gzd-legal-checkbox-manager.php:177
8059
  msgid "Please confirm your age."
8060
  msgstr ""
8061
 
8062
- #: includes/class-wc-gzd-legal-checkbox-manager.php:184
8063
  msgid "Asks the customer to confirm a minimum age."
8064
  msgstr ""
8065
 
8066
- #: includes/class-wc-gzd-legal-checkbox-manager.php:193
8067
- #: includes/updates/woocommerce-gzd-update-2.0.1.php:44
8068
  msgid "Yes, I’d like create a new account and have read and understood the {data_security_link}data privacy statement{/data_security_link}."
8069
  msgstr ""
8070
 
8071
- #: includes/class-wc-gzd-legal-checkbox-manager.php:197
8072
  msgid "Please accept our privacy policy to create a new customer account"
8073
  msgstr ""
8074
 
8075
- #: includes/class-wc-gzd-legal-checkbox-manager.php:201
8076
  msgid "Let customers accept your privacy policy before registering."
8077
  msgstr ""
8078
 
8079
- #: includes/class-wc-gzd-legal-checkbox-manager.php:215
8080
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:975
8081
  msgid "I hereby agree to the {link}direct debit mandate{/link}."
8082
  msgstr ""
8083
 
8084
- #: includes/class-wc-gzd-legal-checkbox-manager.php:221
8085
  msgid "Please accept the direct debit mandate."
8086
  msgstr ""
8087
 
8088
- #: includes/class-wc-gzd-legal-checkbox-manager.php:226
8089
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:201
8090
  msgid "SEPA"
8091
  msgstr ""
8092
 
8093
- #: includes/class-wc-gzd-legal-checkbox-manager.php:227
8094
  msgid "Asks the customer to issue the SEPA mandate."
8095
  msgstr ""
8096
 
8097
- #: includes/class-wc-gzd-legal-checkbox-manager.php:579
8098
  msgid "Register form"
8099
  msgstr ""
8100
 
8101
- #: includes/class-wc-gzd-legal-checkbox-manager.php:580
8102
  msgid "Pay for order"
8103
  msgstr ""
8104
 
8105
- #: includes/class-wc-gzd-legal-checkbox-manager.php:581
8106
  msgid "Reviews"
8107
  msgstr ""
8108
 
8109
- #: includes/class-wc-gzd-legal-checkbox-manager.php:645
 
8110
  msgid "Checkbox location %s does not exist."
8111
  msgstr ""
8112
 
8113
- #: includes/class-wc-gzd-legal-checkbox-manager.php:671
 
8114
  msgid "Please make sure to check %s checkbox."
8115
  msgstr ""
8116
 
8117
- #: includes/class-wc-gzd-legal-checkbox-manager.php:676
 
8118
  msgid "Checkbox with name %s does already exist."
8119
  msgstr ""
8120
 
8121
- #: includes/class-wc-gzd-legal-checkbox.php:344
8122
- #: includes/class-wc-gzd-legal-checkbox.php:364
 
8123
  msgid "%s is a mandatory field."
8124
  msgstr ""
8125
 
8126
- #: includes/class-wc-gzd-legal-checkbox.php:788
8127
  msgid "Enable checkbox"
8128
  msgstr ""
8129
 
8130
- #: includes/class-wc-gzd-legal-checkbox.php:797
8131
  msgid "Choose a name to identify your checkbox. Upon creating a new checkbox, this value is being used to generate the Id."
8132
  msgstr ""
8133
 
8134
- #: includes/class-wc-gzd-legal-checkbox.php:802
8135
  msgid "Id"
8136
  msgstr ""
8137
 
8138
- #: includes/class-wc-gzd-legal-checkbox.php:806
8139
  msgid "The checkbox Id is the unique indentifier which is used to identify the checkbox within the code. Cannot be edited after creating the checkbox."
8140
  msgstr ""
8141
 
8142
- #: includes/class-wc-gzd-legal-checkbox.php:815
8143
  msgid "Describe the use case of your checkbox."
8144
  msgstr ""
8145
 
8146
- #: includes/class-wc-gzd-legal-checkbox.php:825
8147
  msgid "Choose a label to be inserted next to the checkbox."
8148
  msgstr ""
8149
 
8150
- #: includes/class-wc-gzd-legal-checkbox.php:826
8151
- #: includes/class-wc-gzd-legal-checkbox.php:836
 
8152
  msgid "You may use one of the following placeholders within the text: %s"
8153
  msgstr ""
8154
 
8155
- #: includes/class-wc-gzd-legal-checkbox.php:831
8156
  msgid "Error Message"
8157
  msgstr ""
8158
 
8159
- #: includes/class-wc-gzd-legal-checkbox.php:835
8160
  msgid "Choose an error message to be shown when the user has not confirmed the checkbox."
8161
  msgstr ""
8162
 
8163
- #: includes/class-wc-gzd-legal-checkbox.php:841
8164
  msgid "Hide input"
8165
  msgstr ""
8166
 
8167
- #: includes/class-wc-gzd-legal-checkbox.php:844
8168
  msgid "Do only show a label and hide the actual checkbox."
8169
  msgstr ""
8170
 
8171
- #: includes/class-wc-gzd-legal-checkbox.php:852
8172
  msgid "Mark the checkbox as mandatory."
8173
  msgstr ""
8174
 
8175
- #: includes/class-wc-gzd-legal-checkbox.php:857
8176
  msgid "Locations"
8177
  msgstr ""
8178
 
8179
- #: includes/class-wc-gzd-legal-checkbox.php:861
8180
  msgid "Choose where to display your checkbox."
8181
  msgstr ""
8182
 
8183
- #: includes/class-wc-gzd-payment-gateways.php:150
8184
- #: includes/class-wc-gzd-payment-gateways.php:206
 
8185
  msgid "%s payment charge"
8186
  msgstr ""
8187
 
8188
- #: includes/class-wc-gzd-payment-gateways.php:153
8189
- #: includes/wc-gzd-order-functions.php:35
8190
- #: includes/wc-gzd-template-functions.php:472
 
8191
  msgid "Plus %s forwarding fee (charged by the transport agent)"
8192
  msgstr ""
8193
 
8194
- #: includes/class-wc-gzd-payment-gateways.php:240
8195
  msgid "Fee"
8196
  msgstr ""
8197
 
8198
- #: includes/class-wc-gzd-payment-gateways.php:242
8199
  msgid "This fee is being added if customer selects payment method within checkout."
8200
  msgstr ""
8201
 
8202
- #: includes/class-wc-gzd-payment-gateways.php:248
8203
  msgid "Fee is taxable?"
8204
  msgstr ""
8205
 
8206
- #: includes/class-wc-gzd-payment-gateways.php:250
8207
  msgid "Check if fee is taxable."
8208
  msgstr ""
8209
 
8210
- #: includes/class-wc-gzd-payment-gateways.php:256
8211
  msgid "Forwarding Fee"
8212
  msgstr ""
8213
 
8214
- #: includes/class-wc-gzd-payment-gateways.php:259
8215
  msgid "Forwarding fee will be charged by the transport agent in addition to the cash of delivery fee e.g. DHL - tax free."
8216
  msgstr ""
8217
 
8218
- #: includes/class-wc-gzd-payment-gateways.php:297
8219
  msgid "Payment charge"
8220
  msgstr ""
8221
 
8222
- #: includes/class-wc-gzd-post-types.php:49
8223
- #: includes/class-wc-gzd-post-types.php:51
8224
  msgid "Product Delivery Times"
8225
  msgstr ""
8226
 
8227
- #: includes/class-wc-gzd-post-types.php:52
8228
  msgid "Product Delivery Time"
8229
  msgstr ""
8230
 
8231
- #: includes/class-wc-gzd-post-types.php:53
8232
  msgctxt "Admin menu name"
8233
  msgid "Delivery Time"
8234
  msgstr ""
8235
 
8236
- #: includes/class-wc-gzd-post-types.php:54
8237
  msgid "Search Delivery Times"
8238
  msgstr ""
8239
 
8240
- #: includes/class-wc-gzd-post-types.php:55
8241
  msgid "All Product Delivery Times"
8242
  msgstr ""
8243
 
8244
- #: includes/class-wc-gzd-post-types.php:56
8245
  msgid "Edit Product Delivery Time"
8246
  msgstr ""
8247
 
8248
- #: includes/class-wc-gzd-post-types.php:57
8249
  msgid "Update Product Delivery Time"
8250
  msgstr ""
8251
 
8252
- #: includes/class-wc-gzd-post-types.php:58
8253
  msgid "Add New Product Delivery Time"
8254
  msgstr ""
8255
 
8256
- #: includes/class-wc-gzd-post-types.php:59
8257
  msgid "New Product Delivery Time Name"
8258
  msgstr ""
8259
 
8260
- #: includes/class-wc-gzd-post-types.php:95
8261
- #: includes/class-wc-gzd-post-types.php:97
8262
  msgid "Units"
8263
  msgstr ""
8264
 
8265
- #: includes/class-wc-gzd-post-types.php:99
8266
  msgctxt "Admin menu name"
8267
  msgid "Units"
8268
  msgstr ""
8269
 
8270
- #: includes/class-wc-gzd-post-types.php:100
8271
  msgid "Search Units"
8272
  msgstr ""
8273
 
8274
- #: includes/class-wc-gzd-post-types.php:101
8275
  msgid "All Units"
8276
  msgstr ""
8277
 
8278
- #: includes/class-wc-gzd-post-types.php:102
8279
  msgid "Edit Unit"
8280
  msgstr ""
8281
 
8282
- #: includes/class-wc-gzd-post-types.php:103
8283
  msgid "Update Unit"
8284
  msgstr ""
8285
 
8286
- #: includes/class-wc-gzd-post-types.php:104
8287
  msgid "Add New Unit"
8288
  msgstr ""
8289
 
8290
- #: includes/class-wc-gzd-post-types.php:105
8291
  msgid "New Unit Name"
8292
  msgstr ""
8293
 
8294
- #: includes/class-wc-gzd-post-types.php:141
8295
- #: includes/class-wc-gzd-post-types.php:143
8296
  msgid "Price Labels"
8297
  msgstr ""
8298
 
8299
- #: includes/class-wc-gzd-post-types.php:145
8300
  msgctxt "Admin menu name"
8301
  msgid "Price Labels"
8302
  msgstr ""
8303
 
8304
- #: includes/class-wc-gzd-post-types.php:146
8305
  msgid "Search Price Labels"
8306
  msgstr ""
8307
 
8308
- #: includes/class-wc-gzd-post-types.php:147
8309
  msgid "All Price Labels"
8310
  msgstr ""
8311
 
8312
- #: includes/class-wc-gzd-post-types.php:148
8313
  msgid "Edit Price Label"
8314
  msgstr ""
8315
 
8316
- #: includes/class-wc-gzd-post-types.php:149
8317
  msgid "Update Price Label"
8318
  msgstr ""
8319
 
8320
- #: includes/class-wc-gzd-post-types.php:150
8321
  msgid "Add New Price Label"
8322
  msgstr ""
8323
 
8324
- #: includes/class-wc-gzd-post-types.php:151
8325
  msgid "New Price Label Name"
8326
  msgstr ""
8327
 
8328
- #: includes/class-wc-gzd-privacy.php:82
8329
- #: includes/class-wc-gzd-privacy.php:116
8330
- #: includes/class-wc-gzd-privacy.php:163
8331
  msgid "Postnumber"
8332
  msgstr ""
8333
 
8334
- #: includes/class-wc-gzd-privacy.php:83
8335
- #: includes/class-wc-gzd-privacy.php:164
8336
  msgid "Billing Title"
8337
  msgstr ""
8338
 
8339
- #: includes/class-wc-gzd-privacy.php:84
8340
- #: includes/class-wc-gzd-privacy.php:165
8341
  msgid "Shipping Title"
8342
  msgstr ""
8343
 
8344
- #. Translators: %s Prop name.
8345
- #: includes/class-wc-gzd-privacy.php:95
8346
  msgid "Removed customer \"%s\""
8347
  msgstr ""
8348
 
8349
- #: includes/class-wc-gzd-privacy.php:120
8350
  msgid "Mandate Date"
8351
  msgstr ""
8352
 
8353
- #: includes/class-wc-gzd-privacy.php:121
8354
  msgid "Mandate ID"
8355
  msgstr ""
8356
 
8357
- #: includes/class-wc-gzd-privacy.php:122
8358
  msgid "Mandate Email"
8359
  msgstr ""
8360
 
8361
- #: includes/class-wc-gzd-product-attribute-helper.php:67
8362
  msgid "Visible during checkout"
8363
  msgstr ""
8364
 
8365
- #: includes/class-wc-gzd-revocation.php:33
8366
  msgctxt "revocation-form"
8367
- msgid "Revocation"
8368
  msgstr ""
8369
 
8370
- #: includes/class-wc-gzd-revocation.php:35
8371
  msgctxt "revocation-form"
8372
  msgid "Tip: Delete whatever entry does not apply, and provide, as needed"
8373
  msgstr ""
8374
 
8375
- #: includes/class-wc-gzd-revocation.php:36
8376
  msgctxt "revocation-form"
8377
  msgid "I/We hereby give notice that I/We withdraw from my/our contract of sale of the following goods/provision of the following service: "
8378
  msgstr ""
8379
 
8380
- #: includes/class-wc-gzd-revocation.php:40
8381
  msgctxt "revocation-form"
8382
  msgid "Received"
8383
  msgstr ""
8384
 
8385
- #: includes/class-wc-gzd-revocation.php:44
8386
  msgctxt "revocation-form"
8387
  msgid "Order Date"
8388
  msgstr ""
8389
 
8390
- #: includes/class-wc-gzd-revocation.php:46
8391
  msgctxt "revocation-form"
8392
  msgid "Customer Data"
8393
  msgstr ""
8394
 
8395
- #: includes/class-wc-gzd-revocation.php:49
8396
  msgctxt "revocation-form"
8397
  msgid "Title"
8398
  msgstr ""
8399
 
8400
- #: includes/class-wc-gzd-revocation.php:53
8401
- #: includes/wc-gzd-core-functions.php:605
8402
- #: includes/wc-gzd-core-functions.php:623
8403
  msgid "Ms."
8404
  msgstr ""
8405
 
8406
- #: includes/class-wc-gzd-revocation.php:58
8407
  msgctxt "revocation-form"
8408
  msgid "First Name"
8409
  msgstr ""
8410
 
8411
- #: includes/class-wc-gzd-revocation.php:63
8412
  msgctxt "revocation-form"
8413
  msgid "Last Name"
8414
  msgstr ""
8415
 
8416
- #: includes/class-wc-gzd-revocation.php:68
8417
  msgctxt "revocation-form"
8418
  msgid "Street"
8419
  msgstr ""
8420
 
8421
- #: includes/class-wc-gzd-revocation.php:73
8422
  msgctxt "revocation-form"
8423
  msgid "Postal Code"
8424
  msgstr ""
8425
 
8426
- #: includes/class-wc-gzd-revocation.php:78
8427
  msgctxt "revocation-form"
8428
  msgid "City"
8429
  msgstr ""
8430
 
8431
- #: includes/class-wc-gzd-revocation.php:83
8432
  msgctxt "revocation-form"
8433
  msgid "Country"
8434
  msgstr ""
8435
 
8436
- #: includes/class-wc-gzd-revocation.php:89
8437
  msgctxt "revocation-form"
8438
  msgid "Mail"
8439
  msgstr ""
8440
 
8441
- #: includes/class-wc-gzd-revocation.php:102
 
8442
  msgctxt "revocation-form"
8443
  msgid "Please accept our <a href=\"%s\" target=\"_blank\">Pricacy Policy</a> so that we can process your inquiry."
8444
  msgstr ""
8445
 
8446
- #: includes/compatibility/class-wc-gzd-compatibility-woo-poly-integration.php:263
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8447
  msgctxt "polylang"
8448
  msgid "Unit Price Metas"
8449
  msgstr ""
8450
 
8451
- #: includes/compatibility/class-wc-gzd-compatibility-woo-poly-integration.php:264
8452
  msgctxt "polylang"
8453
  msgid "Note the last unit price field is the final unit price taking into account the effect of unit sale price"
8454
  msgstr ""
8455
 
8456
- #: includes/compatibility/class-wc-gzd-compatibility-woo-poly-integration.php:277
8457
  msgctxt "polylang"
8458
  msgid "Sale Price Labels"
8459
  msgstr ""
8460
 
8461
- #: includes/compatibility/class-wc-gzd-compatibility-woo-poly-integration.php:278
8462
  msgctxt "polylang"
8463
  msgid "Sale price labels used to mark old prices (e.g. Recommended Retail Price)"
8464
  msgstr ""
8465
 
8466
- #: includes/compatibility/elementor/widgets/abstact-class-wc-gzd-elementor-widget.php:54
 
8467
  msgid "Upgrade to WooCommerce Germanized Pro to use your our custom Elementor Widgets. %s"
8468
  msgstr ""
8469
 
8470
- #: includes/compatibility/elementor/widgets/class-wc-gzd-elementor-widget-product-shipping-notice.php:10
8471
  msgid "Shipping Notice"
8472
  msgstr ""
8473
 
8474
- #: includes/compatibility/elementor/widgets/class-wc-gzd-elementor-widget-product-tax-notice.php:10
8475
  msgid "Tax Notice"
8476
  msgstr ""
8477
 
8478
- #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8479
  msgid "New account activation"
8480
  msgstr ""
8481
 
8482
- #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:41
8483
  msgid "Customer \"new account activation\" emails are sent to the customer when a customer signs up via checkout or account pages. This mail is being used as double opt in for new customer accounts."
8484
  msgstr ""
8485
 
8486
- #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:60
8487
  msgid "Activate your account on {site_title}"
8488
  msgstr ""
8489
 
8490
- #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:70
8491
  msgid "Account activation {site_title}"
8492
  msgstr ""
8493
 
8494
- #: includes/emails/class-wc-gzd-email-customer-paid-for-order.php:28
8495
  msgid "Paid for order"
8496
  msgstr ""
8497
 
8498
- #: includes/emails/class-wc-gzd-email-customer-paid-for-order.php:29
8499
  msgid "This E-Mail is being sent to a customer after the order has been paid."
8500
  msgstr ""
8501
 
8502
- #: includes/emails/class-wc-gzd-email-customer-paid-for-order.php:54
8503
  msgid "Payment received for order {order_number}"
8504
  msgstr ""
8505
 
8506
- #: includes/emails/class-wc-gzd-email-customer-paid-for-order.php:64
8507
  msgid "Payment received"
8508
  msgstr ""
8509
 
8510
- #: includes/emails/class-wc-gzd-email-customer-processing-order.php:47
8511
  msgid "Order Confirmation"
8512
  msgstr ""
8513
 
8514
- #: includes/emails/class-wc-gzd-email-customer-processing-order.php:57
8515
  msgid "Confirmation of your order {order_number}"
8516
  msgstr ""
8517
 
8518
- #: includes/emails/class-wc-gzd-email-customer-processing-order.php:67
8519
  msgid "Thank you for your order"
8520
  msgstr ""
8521
 
8522
- #: includes/emails/class-wc-gzd-email-customer-revocation.php:33
8523
- msgid "Revocation"
8524
  msgstr ""
8525
 
8526
- #: includes/emails/class-wc-gzd-email-customer-revocation.php:34
8527
- msgid "Email being sent if a customer fills out the revocation form."
8528
  msgstr ""
8529
 
8530
- #: includes/emails/class-wc-gzd-email-customer-revocation.php:53
8531
- #: includes/emails/class-wc-gzd-email-customer-revocation.php:63
8532
  msgid "Your revocation"
8533
  msgstr ""
8534
 
8535
- #: includes/emails/class-wc-gzd-email-customer-revocation.php:174
8536
  msgid "Admin email"
8537
  msgstr ""
8538
 
8539
- #: includes/emails/class-wc-gzd-email-customer-revocation.php:177
8540
- msgid "Insert the email address of your shop manager here. A copy of the revocation email is being sent to this address."
8541
  msgstr ""
8542
 
8543
- #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:32
8544
- #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:58
8545
- #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:68
8546
  msgid "SEPA Direct Debit Mandate"
8547
  msgstr ""
8548
 
8549
- #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:33
8550
  msgid "Email contains a copy of the SEPA mandate generated by information provided by the customer."
8551
  msgstr ""
8552
 
8553
- #: includes/export/class-wc-gzd-product-export.php:50
8554
  msgctxt "exporter"
8555
  msgid "Is service?"
8556
  msgstr ""
8557
 
8558
- #: includes/export/class-wc-gzd-product-export.php:51
8559
  msgctxt "exporter"
8560
  msgid "Is differential taxed?"
8561
  msgstr ""
8562
 
8563
- #: includes/export/class-wc-gzd-product-export.php:52
8564
  msgctxt "exporter"
8565
  msgid "Has free shipping?"
8566
  msgstr ""
8567
 
8568
- #: includes/export/class-wc-gzd-product-export.php:53
8569
  msgctxt "exporter"
8570
  msgid "Unit price regular"
8571
  msgstr ""
8572
 
8573
- #: includes/export/class-wc-gzd-product-export.php:54
8574
  msgctxt "exporter"
8575
  msgid "Unit price sale"
8576
  msgstr ""
8577
 
8578
- #: includes/export/class-wc-gzd-product-export.php:55
8579
  msgctxt "exporter"
8580
  msgid "Unit price calculated automatically?"
8581
  msgstr ""
8582
 
8583
- #: includes/export/class-wc-gzd-product-export.php:56
8584
  msgctxt "exporter"
8585
  msgid "Unit"
8586
  msgstr ""
8587
 
8588
- #: includes/export/class-wc-gzd-product-export.php:57
8589
  msgctxt "exporter"
8590
  msgid "Unit base"
8591
  msgstr ""
8592
 
8593
- #: includes/export/class-wc-gzd-product-export.php:58
8594
  msgctxt "exporter"
8595
  msgid "Unit product"
8596
  msgstr ""
8597
 
8598
- #: includes/export/class-wc-gzd-product-export.php:59
8599
  msgctxt "exporter"
8600
  msgid "Cart description"
8601
  msgstr ""
8602
 
8603
- #: includes/export/class-wc-gzd-product-export.php:60
8604
  msgctxt "exporter"
8605
  msgid "Delivery time"
8606
  msgstr ""
8607
 
8608
- #: includes/export/class-wc-gzd-product-export.php:61
8609
  msgctxt "exporter"
8610
  msgid "Sale price label"
8611
  msgstr ""
8612
 
8613
- #: includes/export/class-wc-gzd-product-export.php:62
8614
  msgctxt "exporter"
8615
  msgid "Sale price regular label"
8616
  msgstr ""
8617
 
8618
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:40
 
8619
  msgid "Allows you to offer direct debit as a payment method to your customers. Adds SEPA fields to checkout. %s"
8620
  msgstr ""
8621
 
8622
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:40
8623
  msgid "SEPA XML Bulk Export"
8624
  msgstr ""
8625
 
8626
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:65
8627
  msgid ""
8628
  "[company_info]\n"
8629
  "debtee identification number: [company_identification_number]\n"
@@ -8653,1549 +8527,1588 @@ msgid ""
8653
  "Please notice: Period for pre-information of the SEPA direct debit is shortened to one day."
8654
  msgstr ""
8655
 
8656
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:209
8657
  msgid "SEPA XML"
8658
  msgstr ""
8659
 
8660
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:279
8661
  msgid "SEPA XML Export"
8662
  msgstr ""
8663
 
8664
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:501
 
8665
  msgid "Order %s"
8666
  msgstr ""
8667
 
8668
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:532
8669
  msgid "Will be notified separately"
8670
  msgstr ""
8671
 
8672
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:621
 
8673
  msgid "We will debit %s from your account by direct debit on or shortly after %s."
8674
  msgstr ""
8675
 
8676
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:759
8677
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:791
8678
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:824
8679
  msgid "a single payment"
8680
  msgstr ""
8681
 
8682
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:875
8683
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:111
8684
- msgid "Enable/Disable"
8685
- msgstr ""
8686
-
8687
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:877
8688
  msgid "Enable Direct Debit Payment"
8689
  msgstr ""
8690
 
8691
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:881
8692
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:117
8693
  msgctxt "gateway"
8694
  msgid "Title"
8695
  msgstr ""
8696
 
8697
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:883
8698
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:119
8699
  msgid "This controls the title which the user sees during checkout."
8700
  msgstr ""
8701
 
8702
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:890
8703
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:126
8704
  msgid "Payment method description that the customer will see on your checkout."
8705
  msgstr ""
8706
 
8707
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:891
8708
  msgid "The order amount will be debited directly from your bank account."
8709
  msgstr ""
8710
 
8711
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:895
8712
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:131
8713
  msgid "Instructions"
8714
  msgstr ""
8715
 
8716
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:897
8717
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:133
8718
  msgid "Instructions that will be added to the thank you page and emails."
8719
  msgstr ""
8720
 
8721
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:902
8722
  msgid "Debtee"
8723
  msgstr ""
8724
 
8725
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:904
8726
  msgid "Insert your company information."
8727
  msgstr ""
8728
 
8729
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:906
8730
  msgid "Company Inc, John Doe Street, New York"
8731
  msgstr ""
8732
 
8733
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:912
8734
  msgid "Insert the bank account holder name."
8735
  msgstr ""
8736
 
8737
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:914
8738
  msgid "Company Inc"
8739
  msgstr ""
8740
 
8741
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:920
8742
  msgid "Insert the bank account IBAN."
8743
  msgstr ""
8744
 
8745
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:925
8746
  msgid "BIC"
8747
  msgstr ""
8748
 
8749
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:927
8750
  msgid "Insert the bank account BIC."
8751
  msgstr ""
8752
 
8753
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:932
8754
  msgid "Debtee identification number"
8755
  msgstr ""
8756
 
8757
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:934
 
8758
  msgid "Insert your debtee indentification number. More information can be found <a href=\"%s\">here</a>."
8759
  msgstr ""
8760
 
8761
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:938
8762
  msgid "Generate Mandate ID"
8763
  msgstr ""
8764
 
8765
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:940
8766
  msgid "Automatically generate Mandate ID."
8767
  msgstr ""
8768
 
8769
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:941
8770
  msgid "Automatically generate Mandate ID after order completion (based on Order ID)."
8771
  msgstr ""
8772
 
8773
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:945
8774
  msgid "XML Pain Format"
8775
  msgstr ""
8776
 
8777
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:947
8778
  msgid "You may adjust the XML Export Pain Schema to your banks needs. Some banks may require pain.001.003.03."
8779
  msgstr ""
8780
 
8781
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:951
8782
  msgid "Mandate ID Format"
8783
  msgstr ""
8784
 
8785
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:953
8786
  msgid "You may extend the Mandate ID format by adding a prefix and/or suffix. Use {id} as placeholder to insert the automatically generated ID."
8787
  msgstr ""
8788
 
8789
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:957
8790
  msgid "Mandate Text"
8791
  msgstr ""
8792
 
8793
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:959
8794
  msgid "This text will be populated with live order/checkout data. Will be used as preview direct debit mandate and as email template text."
8795
  msgstr ""
8796
 
8797
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:965
8798
  msgid "Checkbox"
8799
  msgstr ""
8800
 
8801
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:966
8802
  msgid "Enable \"agree to SEPA mandate\" checkbox"
8803
  msgstr ""
8804
 
8805
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:968
8806
  msgid "Enable a checkbox linking to a SEPA direct debit mandate preview."
8807
  msgstr ""
8808
 
8809
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:972
8810
  msgid "Checkbox label"
8811
  msgstr ""
8812
 
8813
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:974
8814
  msgid "Customize the checkbox label. Use {link}link name{/link} to insert the preview link."
8815
  msgstr ""
8816
 
8817
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:979
8818
  msgid "Enable pre-notification"
8819
  msgstr ""
8820
 
8821
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:980
8822
  msgid "Insert pre-notification text within the order confirmation email."
8823
  msgstr ""
8824
 
8825
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:982
8826
  msgid "This option inserts a standard text containing a pre-notification for the customer."
8827
  msgstr ""
8828
 
8829
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:986
8830
  msgid "Debit days"
8831
  msgstr ""
8832
 
8833
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:988
8834
  msgid "This option is used to calculate the debit date and is added to the order date."
8835
  msgstr ""
8836
 
8837
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:992
8838
  msgid "Mask IBAN"
8839
  msgstr ""
8840
 
8841
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:993
8842
  msgid "Mask the IBAN within emails."
8843
  msgstr ""
8844
 
8845
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:995
8846
  msgid "This will lead to masked IBANs within emails (replaced by *). All but last 4 digits will be masked."
8847
  msgstr ""
8848
 
8849
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1005
8850
  msgid "Remember"
8851
  msgstr ""
8852
 
8853
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1006
8854
  msgid "Remember account data for returning customers."
8855
  msgstr ""
8856
 
8857
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1008
8858
  msgid "Save account data as user meta if user has/creates a customer account."
8859
  msgstr ""
8860
 
8861
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1118
8862
  msgid "Please insert your SEPA account data."
8863
  msgstr ""
8864
 
8865
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1140
8866
  msgid "Your IBAN seems to be invalid."
8867
  msgstr ""
8868
 
8869
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1142
8870
  msgid "Your IBAN's country code doesn’t match with your billing country."
8871
  msgstr ""
8872
 
8873
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1147
8874
  msgid "Your BIC seems to be invalid."
8875
  msgstr ""
8876
 
8877
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1192
8878
  msgid "is invalid"
8879
  msgstr ""
8880
 
8881
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1239
8882
  msgid "Awaiting Direct Debit Payment"
8883
  msgstr ""
8884
 
8885
- #: includes/gateways/direct-debit/views/html-encryption-notice.php:18
 
8886
  msgid "Please upgrade your PHP Version to at least 5.4 and make sure that you have <a href=\"%s\" target=\"_blank\">openssl</a> enabled and WP Version 4.4 or greater installed to support account data encryption."
8887
  msgstr ""
8888
 
8889
- #: includes/gateways/direct-debit/views/html-encryption-notice.php:22
 
8890
  msgid "Please insert the following code in your <a href=\"%s\" target=\"_blank\">wp-config.php</a> to enable encryption. You may of course choose your own key:"
8891
  msgstr ""
8892
 
8893
- #: includes/gateways/direct-debit/views/html-encryption-notice.php:24
 
8894
  msgid "Your customers’ account data (IBAN, BIC) will from then on be saved <a href=\"%s\" target=\"_blank\">encrypted</a> within your database."
8895
  msgstr ""
8896
 
8897
- #: includes/gateways/direct-debit/views/html-export.php:36
8898
- msgid "Start Date"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8899
  msgstr ""
8900
 
8901
- #: includes/gateways/direct-debit/views/html-export.php:40
8902
- msgid "End Date"
 
8903
  msgstr ""
8904
 
8905
- #: includes/gateways/direct-debit/views/html-export.php:44
8906
- msgid "Unpaid only"
 
 
 
8907
  msgstr ""
8908
 
8909
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:35
8910
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:120
8911
- msgid "Pay by Invoice"
 
8912
  msgstr ""
8913
 
8914
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:36
8915
- msgid "Customers will be able to pay by invoice."
 
8916
  msgstr ""
8917
 
8918
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:86
8919
- msgid "Automatically generate PDF invoices for this gateway?"
8920
  msgstr ""
8921
 
8922
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:87
8923
- msgid "By upgrading to the professional version you'll be able to automatically generate PDF invoices to this payment gateway. Furthermore you'll benefit from even more professional features such as a multistep checkout page, legal text generators, B2B VAT settings and premium support!"
 
8924
  msgstr ""
8925
 
8926
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:93
8927
- msgid "Learn more about PDF invoicing"
8928
  msgstr ""
8929
 
8930
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:113
8931
- msgid "Enable Pay by Invoice"
 
 
8932
  msgstr ""
8933
 
8934
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:127
8935
- msgid "You'll receive an invoice after your order. Please transfer the order amount to our bank account within 14 days."
 
 
8936
  msgstr ""
8937
 
8938
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:138
8939
- msgid "Order Status"
 
 
8940
  msgstr ""
8941
 
8942
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:140
8943
- msgid "Choose which order status should be applied after a customer has chosen to pay by invoice."
8944
  msgstr ""
8945
 
8946
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:146
8947
- msgid "Registered customers"
 
 
8948
  msgstr ""
8949
 
8950
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:147
8951
- msgid "Do only offer pay by invoice to registered/logged in customers."
 
 
8952
  msgstr ""
8953
 
8954
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:149
8955
- msgid "This will enable Pay by Invoice to logged in customers only"
 
8956
  msgstr ""
8957
 
8958
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:154
8959
- msgid "Customer limitation"
 
 
8960
  msgstr ""
8961
 
8962
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:155
8963
- msgid "Do only offer pay by invoice to customers who have at least completed one order."
 
8964
  msgstr ""
8965
 
8966
- #: includes/wc-gzd-core-functions.php:195
8967
- msgid ">= 12 years"
 
8968
  msgstr ""
8969
 
8970
- #: includes/wc-gzd-core-functions.php:196
8971
- msgid ">= 16 years"
8972
  msgstr ""
8973
 
8974
- #: includes/wc-gzd-core-functions.php:197
8975
- msgid ">= 18 years"
 
8976
  msgstr ""
8977
 
8978
- #: includes/wc-gzd-core-functions.php:198
8979
- msgid ">= 21 years"
8980
  msgstr ""
8981
 
8982
- #: includes/wc-gzd-core-functions.php:199
8983
- msgid ">= 25 years"
8984
  msgstr ""
8985
 
8986
- #: includes/wc-gzd-core-functions.php:204
8987
- msgctxt "age"
8988
- msgid "None"
8989
  msgstr ""
8990
 
8991
- #: includes/wc-gzd-core-functions.php:241
8992
- msgid "Right of Recission"
 
8993
  msgstr ""
8994
 
8995
- #: includes/wc-gzd-core-functions.php:243
8996
- msgid "Data Security"
 
 
8997
  msgstr ""
8998
 
8999
- #: includes/wc-gzd-core-functions.php:451
9000
- msgid "%s%% VAT"
9001
  msgstr ""
9002
 
9003
- #: includes/wc-gzd-core-functions.php:603
9004
- #: includes/wc-gzd-core-functions.php:630
9005
- msgctxt "title-option"
9006
- msgid "None"
9007
  msgstr ""
9008
 
9009
- #: includes/wc-gzd-core-functions.php:606
9010
- #: includes/wc-gzd-core-functions.php:630
9011
- msgid "Mx"
9012
  msgstr ""
9013
 
9014
- #: includes/wc-gzd-template-functions.php:225
9015
- #: templates/checkout/edit-data-notice.php:25
9016
- msgid "Edit Order"
9017
  msgstr ""
9018
 
9019
- #: includes/wc-gzd-template-functions.php:236
9020
- msgid "Choose a Payment Gateway"
 
9021
  msgstr ""
9022
 
9023
- #: includes/wc-gzd-template-functions.php:376
9024
- msgid "Place order"
9025
  msgstr ""
9026
 
9027
- #: packages/woocommerce-trusted-shops/includes/admin/settings/class-wc-ts-gzd-settings-tab.php:48
9028
  msgctxt "trusted-shops"
9029
  msgid "Setup your Trusted Shops Integration."
9030
  msgstr ""
9031
 
9032
- #: packages/woocommerce-trusted-shops/includes/admin/settings/class-wc-ts-gzd-settings-tab.php:52
9033
- #: packages/woocommerce-trusted-shops/includes/class-wc-ts-settings-handler.php:23
9034
  msgctxt "trusted-shops"
9035
  msgid "Trusted Shops"
9036
  msgstr ""
9037
 
9038
- #: packages/woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:16
9039
  msgctxt "trusted-shops"
9040
  msgid "Dependencies Missing or Outdated"
9041
  msgstr ""
9042
 
9043
- #: packages/woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:24
9044
  msgctxt "trusted-shops"
9045
  msgid "To use WooCommerce Trusted Shops you may at first install the following plugins:"
9046
  msgstr ""
9047
 
9048
- #: packages/woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:28
 
9049
  msgctxt "trusted-shops"
9050
  msgid "Install %s"
9051
  msgstr ""
9052
 
9053
- #: packages/woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:36
9054
  msgctxt "trusted-shops"
9055
  msgid "To use WooCommerce Trusted Shops you may at first update the following plugins to a newer version:"
9056
  msgstr ""
9057
 
9058
- #: packages/woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:40
 
9059
  msgctxt "trusted-shops"
9060
  msgid "%s required in at least version %s"
9061
  msgstr ""
9062
 
9063
- #: packages/woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:49
9064
  msgctxt "trusted-shops"
9065
  msgid "Check for Updates"
9066
  msgstr ""
9067
 
9068
- #: packages/woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:50
9069
  msgctxt "trusted-shops"
9070
  msgid "or"
9071
  msgstr ""
9072
 
9073
- #: packages/woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:51
9074
  msgctxt "trusted-shops"
9075
  msgid "Install an older version"
9076
  msgstr ""
9077
 
9078
- #: packages/woocommerce-trusted-shops/includes/admin/views/html-notice-update.php:14
9079
  msgctxt "trusted-shops"
9080
  msgid "<strong>WooCommerce Trusted Shops Data Update Required</strong> &#8211; We just need to update your installation to the latest version"
9081
  msgstr ""
9082
 
9083
- #: packages/woocommerce-trusted-shops/includes/admin/views/html-notice-update.php:15
9084
  msgctxt "trusted-shops"
9085
  msgid "Run the updater"
9086
  msgstr ""
9087
 
9088
- #: packages/woocommerce-trusted-shops/includes/admin/views/html-notice-update.php:19
9089
  msgctxt "trusted-shops"
9090
  msgid "It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?"
9091
  msgstr ""
9092
 
9093
- #: packages/woocommerce-trusted-shops/includes/admin/views/html-wpml-notice.php:11
9094
  msgctxt "trusted-shops"
9095
  msgid "WPML Support"
9096
  msgstr ""
9097
 
9098
- #: packages/woocommerce-trusted-shops/includes/admin/views/html-wpml-notice.php:14
9099
  msgctxt "trusted-shops"
9100
  msgid "These settings serve as default settings for all your languages. To adjust the settings for a certain language, please switch your admin language through the WPML language switcher and adjust the corresponding settings."
9101
  msgstr ""
9102
 
9103
- #: packages/woocommerce-trusted-shops/includes/admin/views/html-wpml-notice.php:16
 
9104
  msgctxt "trusted-shops"
9105
  msgid "These settings apply for your %s shop. To adjust settings for another language, please switch your admin language through the WPML language switcher."
9106
  msgstr ""
9107
 
9108
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:84
9109
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:121
9110
  msgctxt "trusted-shops"
9111
  msgid "GTIN"
9112
  msgstr ""
9113
 
9114
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:84
9115
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:121
9116
  msgctxt "trusted-shops"
9117
  msgid "ID that allows your products to be identified worldwide. If you want to display your Trusted Shops Product Reviews in Google Shopping and paid Google adverts, Google needs the GTIN."
9118
  msgstr ""
9119
 
9120
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:88
9121
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:122
9122
  msgctxt "trusted-shops"
9123
  msgid "MPN"
9124
  msgstr ""
9125
 
9126
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:88
9127
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:122
9128
  msgctxt "trusted-shops"
9129
  msgid "If you don't have a GTIN for your products, you can pass the brand name and the MPN on to Google to use the Trusted Shops Google Integration."
9130
  msgstr ""
9131
 
9132
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:142
9133
  msgctxt "trusted-shops"
9134
  msgid "Brand"
9135
  msgstr ""
9136
 
9137
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:176
9138
  msgctxt "trusted-shops"
9139
  msgid "This field is mandatory"
9140
  msgstr ""
9141
 
9142
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:183
9143
  msgctxt "trusted-shops"
9144
  msgid "Trusted Shops Options"
9145
  msgstr ""
9146
 
9147
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:190
9148
  msgctxt "trusted-shops"
9149
  msgid "Arial"
9150
  msgstr ""
9151
 
9152
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:191
9153
  msgctxt "trusted-shops"
9154
  msgid "Geneva"
9155
  msgstr ""
9156
 
9157
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:192
9158
  msgctxt "trusted-shops"
9159
  msgid "Georgia"
9160
  msgstr ""
9161
 
9162
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:193
9163
  msgctxt "trusted-shops"
9164
  msgid "Helvetica"
9165
  msgstr ""
9166
 
9167
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:194
9168
  msgctxt "trusted-shops"
9169
  msgid "Sans-serif"
9170
  msgstr ""
9171
 
9172
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:195
9173
  msgctxt "trusted-shops"
9174
  msgid "Serif"
9175
  msgstr ""
9176
 
9177
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:196
9178
  msgctxt "trusted-shops"
9179
  msgid "Trebuchet MS"
9180
  msgstr ""
9181
 
9182
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:197
9183
  msgctxt "trusted-shops"
9184
  msgid "Verdana"
9185
  msgstr ""
9186
 
9187
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:220
9188
  msgctxt "trusted-shops"
9189
  msgid "Trusted Shops Integration"
9190
  msgstr ""
9191
 
9192
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:221
 
9193
  msgctxt "trusted-shops"
9194
  msgid "Do you need help with integrating your Trustbadge? %s"
9195
  msgstr ""
9196
 
9197
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:221
9198
  msgctxt "trusted-shops"
9199
  msgid "To the step-by-step instructions"
9200
  msgstr ""
9201
 
9202
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:227
9203
  msgctxt "trusted-shops"
9204
  msgid "Trusted Shops ID"
9205
  msgstr ""
9206
 
9207
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:228
9208
  msgctxt "trusted-shops"
9209
  msgid "The Trusted Shops ID is a unique identifier for your shop. You can find your Trusted Shops ID in your My Trusted Shops account."
9210
  msgstr ""
9211
 
9212
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:237
9213
  msgctxt "trusted-shops"
9214
  msgid "Edit Mode"
9215
  msgstr ""
9216
 
9217
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:239
9218
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:300
9219
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:423
9220
  msgctxt "trusted-shops"
9221
  msgid "The advanced configuration is for users with programming skills. Here you can create even more individual settings."
9222
  msgstr ""
9223
 
9224
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:243
9225
  msgctxt "trusted-shops"
9226
  msgid "Standard configuration"
9227
  msgstr ""
9228
 
9229
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:244
9230
  msgctxt "trusted-shops"
9231
  msgid "Advanced configuration"
9232
  msgstr ""
9233
 
9234
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:252
9235
  msgctxt "trusted-shops"
9236
  msgid "Configure your Trustbadge"
9237
  msgstr ""
9238
 
9239
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:258
9240
  msgctxt "trusted-shops"
9241
  msgid "Display Trustbadge"
9242
  msgstr ""
9243
 
9244
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:260
9245
  msgctxt "trusted-shops"
9246
  msgid "Display the Trustbadge on all the pages of your shop."
9247
  msgstr ""
9248
 
9249
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:267
9250
  msgctxt "trusted-shops"
9251
  msgid "Variant"
9252
  msgstr ""
9253
 
9254
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:269
9255
  msgctxt "trusted-shops"
9256
  msgid "You can display your Trustbadge with or without Review Stars."
9257
  msgstr ""
9258
 
9259
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:273
9260
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:763
9261
  msgctxt "trusted-shops"
9262
  msgid "Display Trustbadge with review stars"
9263
  msgstr ""
9264
 
9265
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:274
9266
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:767
9267
  msgctxt "trusted-shops"
9268
  msgid "Display Trustbadge without review stars"
9269
  msgstr ""
9270
 
9271
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:280
9272
  msgctxt "trusted-shops"
9273
  msgid "Vertical Offset"
9274
  msgstr ""
9275
 
9276
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:281
9277
  msgctxt "trusted-shops"
9278
  msgid "Choose the distance that the Trustbadge will appear from the bottom-right corner of the screen."
9279
  msgstr ""
9280
 
9281
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:284
9282
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:492
9283
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:543
9284
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:558
9285
  msgctxt "trusted-shops"
9286
  msgid "px"
9287
  msgstr ""
9288
 
9289
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:290
9290
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:499
9291
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:549
9292
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:565
 
9293
  msgctxt "trusted-shops"
9294
  msgid "Please choose a non-negative number (at least %d)"
9295
  msgstr ""
9296
 
9297
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:296
9298
  msgctxt "trusted-shops"
9299
  msgid "Trustbadge code"
9300
  msgstr ""
9301
 
9302
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:308
9303
  msgctxt "trusted-shops"
9304
  msgid "Configure your Shop Reviews"
9305
  msgstr ""
9306
 
9307
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:314
9308
  msgctxt "trusted-shops"
9309
  msgid "Display Shop Review Sticker"
9310
  msgstr ""
9311
 
9312
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:315
9313
  msgctxt "trusted-shops"
9314
  msgid "To display the Shop Review Sticker, you have to assign the widget \"Trusted Shops Review Sticker\"."
9315
  msgstr ""
9316
 
9317
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:316
 
9318
  msgctxt "trusted-shops"
9319
  msgid "Assign widget %s"
9320
  msgstr ""
9321
 
9322
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:316
9323
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:588
9324
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:896
9325
  msgctxt "trusted-shops"
9326
  msgid "here"
9327
  msgstr ""
9328
 
9329
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:324
9330
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:472
9331
  msgctxt "trusted-shops"
9332
  msgid "Background color"
9333
  msgstr ""
9334
 
9335
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:325
9336
  msgctxt "trusted-shops"
9337
  msgid "Choose the background color for your Review Sticker."
9338
  msgstr ""
9339
 
9340
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:332
9341
  msgctxt "trusted-shops"
9342
  msgid "Font"
9343
  msgstr ""
9344
 
9345
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:334
9346
  msgctxt "trusted-shops"
9347
  msgid "Choose the font for your Review Sticker."
9348
  msgstr ""
9349
 
9350
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:341
9351
  msgctxt "trusted-shops"
9352
  msgid "Number of reviews displayed"
9353
  msgstr ""
9354
 
9355
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:342
9356
  msgctxt "trusted-shops"
9357
  msgid "Display x alternating Shop Reviews in your Shop Review Sticker. You can display between 1 and 5 alternating Shop Reviews."
9358
  msgstr ""
9359
 
9360
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:345
9361
  msgctxt "trusted-shops"
9362
  msgid "Show x alternating reviews"
9363
  msgstr ""
9364
 
9365
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:352
9366
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:369
 
9367
  msgctxt "trusted-shops"
9368
  msgid "Please choose a non-negative number between %d and %d"
9369
  msgstr ""
9370
 
9371
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:358
9372
  msgctxt "trusted-shops"
9373
  msgid "Minimum rating displayed"
9374
  msgstr ""
9375
 
9376
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:359
9377
  msgctxt "trusted-shops"
9378
  msgid "Only show Shop Reviews with a minimum rating of x stars. "
9379
  msgstr ""
9380
 
9381
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:362
9382
  msgctxt "trusted-shops"
9383
  msgid "Star(s)"
9384
  msgstr ""
9385
 
9386
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:375
9387
  msgctxt "trusted-shops"
9388
  msgid "Sticker code"
9389
  msgstr ""
9390
 
9391
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:379
9392
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:506
9393
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:571
9394
  msgctxt "trusted-shops"
9395
  msgid "The advanced configuration is for users with programming skills. Here you can perform even more individual settings."
9396
  msgstr ""
9397
 
9398
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:385
9399
  msgctxt "trusted-shops"
9400
  msgid "Google Organic Search"
9401
  msgstr ""
9402
 
9403
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:386
9404
  msgctxt "trusted-shops"
9405
  msgid "Activate this option to give Google the opportunity to show your Shop Reviews in Google organic search results."
9406
  msgstr ""
9407
 
9408
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:387
9409
  msgctxt "trusted-shops"
9410
  msgid "By activating this option, rich snippets will be integrated in the selected pages so your shop review stars may be displayed in Google organic search results. If you use Product Reviews and already activated rich snippets in expert mode, we recommend integrating rich snippets for Shop Reviews on category pages only."
9411
  msgstr ""
9412
 
9413
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:394
9414
  msgctxt "trusted-shops"
9415
  msgid "Activate rich snippets on"
9416
  msgstr ""
9417
 
9418
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:395
9419
  msgctxt "trusted-shops"
9420
  msgid "category pages"
9421
  msgstr ""
9422
 
9423
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:403
9424
  msgctxt "trusted-shops"
9425
  msgid "product pages"
9426
  msgstr ""
9427
 
9428
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:411
9429
  msgctxt "trusted-shops"
9430
  msgid "homepage (not recommended)"
9431
  msgstr ""
9432
 
9433
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:419
9434
  msgctxt "trusted-shops"
9435
  msgid "Rich snippets code"
9436
  msgstr ""
9437
 
9438
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:431
9439
  msgctxt "trusted-shops"
9440
  msgid "Configure your Product Reviews "
9441
  msgstr ""
9442
 
9443
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:432
 
9444
  msgctxt "trusted-shops"
9445
  msgid "To use Product Reviews, activate them in your %s first."
9446
  msgstr ""
9447
 
9448
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:432
9449
  msgctxt "trusted-shops"
9450
  msgid "Trusted Shops package"
9451
  msgstr ""
9452
 
9453
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:438
9454
  msgctxt "trusted-shops"
9455
  msgid "Collect Product Reviews"
9456
  msgstr ""
9457
 
9458
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:439
9459
  msgctxt "trusted-shops"
9460
  msgid "Show Product Reviews on the product page in a separate tab, just as shown on the picture on the right."
9461
  msgstr ""
9462
 
9463
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:447
9464
  msgctxt "trusted-shops"
9465
  msgid "Reviews"
9466
  msgstr ""
9467
 
9468
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:448
9469
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:457
9470
  msgctxt "trusted-shops"
9471
  msgid "You can choose a name for the tab with your Product Reviews."
9472
  msgstr ""
9473
 
9474
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:449
9475
  msgctxt "trusted-shops"
9476
  msgid "Show Product Reviews on the product detail page in an additional tab."
9477
  msgstr ""
9478
 
9479
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:456
9480
  msgctxt "trusted-shops"
9481
  msgid "Name of Product Reviews tab"
9482
  msgstr ""
9483
 
9484
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:460
9485
  msgctxt "trusted-shops"
9486
  msgid "Product reviews"
9487
  msgstr ""
9488
 
9489
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:464
9490
  msgctxt "trusted-shops"
9491
  msgid "Border color"
9492
  msgstr ""
9493
 
9494
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:465
9495
  msgctxt "trusted-shops"
9496
  msgid "Set the color for the frame around your Product Reviews."
9497
  msgstr ""
9498
 
9499
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:473
9500
  msgctxt "trusted-shops"
9501
  msgid "Set the background color for your Product Reviews."
9502
  msgstr ""
9503
 
9504
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:480
9505
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:530
9506
  msgctxt "trusted-shops"
9507
  msgid "Star color"
9508
  msgstr ""
9509
 
9510
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:481
9511
  msgctxt "trusted-shops"
9512
  msgid "Set the color for the Product Review stars in your Product Reviews tab."
9513
  msgstr ""
9514
 
9515
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:488
9516
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:538
9517
  msgctxt "trusted-shops"
9518
  msgid "Star size"
9519
  msgstr ""
9520
 
9521
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:493
9522
  msgctxt "trusted-shops"
9523
  msgid "Set the size for the Product Review stars in your Product Reviews tab."
9524
  msgstr ""
9525
 
9526
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:504
9527
  msgctxt "trusted-shops"
9528
  msgid "Product Sticker Code"
9529
  msgstr ""
9530
 
9531
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:513
9532
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:579
9533
  msgctxt "trusted-shops"
9534
  msgid "jQuerySelector"
9535
  msgstr ""
9536
 
9537
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:514
9538
  msgctxt "trusted-shops"
9539
  msgid "Please choose where your Product Reviews shall be displayed on the Product detail page."
9540
  msgstr ""
9541
 
9542
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:521
9543
  msgctxt "trusted-shops"
9544
  msgid "Rating stars"
9545
  msgstr ""
9546
 
9547
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:522
9548
  msgctxt "trusted-shops"
9549
  msgid "Show star ratings on the product detail page below your product name."
9550
  msgstr ""
9551
 
9552
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:523
9553
  msgctxt "trusted-shops"
9554
  msgid "Display Product Review stars on product pages below the product name, just as shown in the picture on the right."
9555
  msgstr ""
9556
 
9557
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:532
9558
  msgctxt "trusted-shops"
9559
  msgid "Set the color for the review stars, that are displayed on the product page, below your product name."
9560
  msgstr ""
9561
 
9562
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:540
9563
  msgctxt "trusted-shops"
9564
  msgid "Set the size for the review stars that are displayed on the product page, below your product name."
9565
  msgstr ""
9566
 
9567
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:554
9568
  msgctxt "trusted-shops"
9569
  msgid "Font size"
9570
  msgstr ""
9571
 
9572
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:556
9573
  msgctxt "trusted-shops"
9574
  msgid "Set the font size for the text that goes with your review stars."
9575
  msgstr ""
9576
 
9577
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:570
9578
  msgctxt "trusted-shops"
9579
  msgid "Product Review Code"
9580
  msgstr ""
9581
 
9582
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:580
9583
  msgctxt "trusted-shops"
9584
  msgid "Please choose where your Product Review Stars shall be displayed on the Product Detail page."
9585
  msgstr ""
9586
 
9587
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:587
9588
  msgctxt "trusted-shops"
9589
  msgid "Brand attribute"
9590
  msgstr ""
9591
 
9592
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:588
 
9593
  msgctxt "trusted-shops"
9594
  msgid "Create brand attribute %s"
9595
  msgstr ""
9596
 
9597
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:589
9598
  msgctxt "trusted-shops"
9599
  msgid "Brand name of the product. By passing this information on to Google, you improve your chances of having Google identify your products. Assign your brand attribute. If your products don't have a GTIN, you can pass on the brand name and the MPN to use Google Integration."
9600
  msgstr ""
9601
 
9602
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:595
9603
  msgctxt "trusted-shops"
9604
  msgid "None"
9605
  msgstr ""
9606
 
9607
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:606
9608
  msgctxt "trusted-shops"
9609
  msgid "Configure your Review Requests"
9610
  msgstr ""
9611
 
9612
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:607
9613
  msgctxt "trusted-shops"
9614
  msgid "7 days after an order has been placed, Trusted Shops automatically sends an invite to your customers. If you want to set a different time for sending automatic Review Requests, please activate the option below. If you want to send review requests with legal certainty, you need your customers' consent to receive Review Requests. You also have to include an option to unsubscribe."
9615
  msgstr ""
9616
 
9617
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:613
9618
  msgctxt "trusted-shops"
9619
  msgid "Enable Review Requests"
9620
  msgstr ""
9621
 
9622
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:622
9623
  msgctxt "trusted-shops"
9624
  msgid "WooCommerce status"
9625
  msgstr ""
9626
 
9627
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:623
9628
  msgctxt "trusted-shops"
9629
  msgid "We recommend choosing the order status that you set when your products have been shipped."
9630
  msgstr ""
9631
 
9632
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:631
9633
  msgctxt "trusted-shops"
9634
  msgid "Days until Review Request"
9635
  msgstr ""
9636
 
9637
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:632
9638
  msgctxt "trusted-shops"
9639
  msgid "Set the number of days to wait after an order has reached the order status you selected above before having a review request sent to your customers."
9640
  msgstr ""
9641
 
9642
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:644
9643
  msgctxt "trusted-shops"
9644
  msgid "Permission via checkbox"
9645
  msgstr ""
9646
 
9647
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:645
9648
  msgctxt "trusted-shops"
9649
  msgid "If the checkbox is activated, only customers who gave their consent will receive Review Requests."
9650
  msgstr ""
9651
 
9652
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:649
9653
  msgctxt "trusted-shops"
9654
  msgid "Edit checkbox"
9655
  msgstr ""
9656
 
9657
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:653
9658
  msgctxt "trusted-shops"
9659
  msgid "Unsubscribe via link"
9660
  msgstr ""
9661
 
9662
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:654
9663
  msgctxt "trusted-shops"
9664
  msgid "Allows the customer to unsubscribe from Review Requests."
9665
  msgstr ""
9666
 
9667
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:755
9668
  msgctxt "trusted-shops"
9669
  msgid "How does Trusted Shops make your shop better?"
9670
  msgstr ""
9671
 
9672
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:757
9673
  msgctxt "trusted-shops"
9674
  msgid "Get your account"
9675
  msgstr ""
9676
 
9677
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:777
9678
  msgctxt "trusted-shops"
9679
  msgid "Product Reviews on the product detail page in an additional tab"
9680
  msgstr ""
9681
 
9682
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:780
9683
  msgctxt "trusted-shops"
9684
  msgid "Show Star-Ratings on the product detail page below your product name"
9685
  msgstr ""
9686
 
9687
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:784
9688
  msgctxt "trusted-shops"
9689
  msgid "Please note: If you want to send review requests through WooCommerce, you should deactivate automated review requests through Trusted Shops. To do so, please go to your My Trusted Shops account. Log in and go to Reviews > Settings and deactivate \"Collect reviews automatically\""
9690
  msgstr ""
9691
 
9692
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:785
9693
  msgctxt "trusted-shops"
9694
  msgid "To your My Trusted Shops account"
9695
  msgstr ""
9696
 
9697
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:789
9698
  msgctxt "trusted-shops"
9699
  msgid "Export your customer information here and upload it in the Trusted Shops Review Collector. To do so go to your My Trusted Shops account. Log in and go to Reviews > Shop Reviews > Review Collector"
9700
  msgstr ""
9701
 
9702
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:790
9703
  msgctxt "trusted-shops"
9704
  msgid "To the Trusted Shops Review Collector"
9705
  msgstr ""
9706
 
9707
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:880
9708
  msgctxt "trusted-shops"
9709
  msgid "Review Collector"
9710
  msgstr ""
9711
 
9712
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:882
 
9713
  msgctxt "trusted-shops"
9714
  msgid "Want to collect reviews for orders that were placed before your Trusted Shops Integration? No problem. Export old orders here and upload them in your %s."
9715
  msgstr ""
9716
 
9717
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:882
9718
  msgctxt "trusted-shops"
9719
  msgid "My Trusted Shops account"
9720
  msgstr ""
9721
 
9722
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:888
9723
  msgctxt "trusted-shops"
9724
  msgid "Export orders"
9725
  msgstr ""
9726
 
9727
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:888
9728
  msgctxt "trusted-shops"
9729
  msgid "Export your customer and order information of the last x days and upload them in your My Trusted Shops Account."
9730
  msgstr ""
9731
 
9732
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:892
9733
  msgctxt "trusted-shops"
9734
  msgid "30 days"
9735
  msgstr ""
9736
 
9737
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:893
9738
  msgctxt "trusted-shops"
9739
  msgid "60 days"
9740
  msgstr ""
9741
 
9742
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:894
9743
  msgctxt "trusted-shops"
9744
  msgid "90 days"
9745
  msgstr ""
9746
 
9747
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:896
 
9748
  msgctxt "trusted-shops"
9749
  msgid "Upload customer and order information %s."
9750
  msgstr ""
9751
 
9752
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:899
9753
  msgctxt "trusted-shops"
9754
  msgid "Days until reminder mail"
9755
  msgstr ""
9756
 
9757
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:899
9758
  msgctxt "trusted-shops"
9759
  msgid "Set the number of days to wait after the order date before having a Review Request sent to your customers."
9760
  msgstr ""
9761
 
9762
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:903
9763
  msgctxt "trusted-shops"
9764
  msgid "Start export"
9765
  msgstr ""
9766
 
9767
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-core.php:53
9768
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-core.php:62
9769
- #: packages/woocommerce-trusted-shops/includes/class-wc-ts-dependencies.php:36
9770
- #: packages/woocommerce-trusted-shops/includes/class-wc-ts-dependencies.php:45
9771
  msgctxt "trusted-shops"
9772
  msgid "Cheatin&#8217; huh?"
9773
  msgstr ""
9774
 
9775
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-core.php:212
9776
  msgctxt "trusted-shops"
9777
  msgid "Yes"
9778
  msgstr ""
9779
 
9780
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-core.php:212
9781
  msgctxt "trusted-shops"
9782
  msgid "No"
9783
  msgstr ""
9784
 
9785
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-core.php:260
 
9786
  msgctxt "trusted-shops"
9787
  msgid "If the <strong>App</strong> helped you, please leave a %s&#9733;&#9733;&#9733;&#9733;&#9733;%s in the Wordpress plugin repository."
9788
  msgstr ""
9789
 
9790
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-core.php:409
9791
  msgctxt "trusted-shops"
9792
  msgid "Settings"
9793
  msgstr ""
9794
 
9795
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-review-exporter.php:64
9796
- msgctxt "trusted-shops"
9797
- msgid "Order ID"
9798
- msgstr ""
9799
-
9800
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-review-exporter.php:65
9801
- msgctxt "trusted-shops"
9802
- msgid "Order date"
9803
- msgstr ""
9804
-
9805
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-review-exporter.php:66
9806
- msgctxt "trusted-shops"
9807
- msgid "# Days"
9808
- msgstr ""
9809
-
9810
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-review-exporter.php:67
9811
- msgctxt "trusted-shops"
9812
- msgid "Email"
9813
- msgstr ""
9814
-
9815
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-review-exporter.php:68
9816
- msgctxt "trusted-shops"
9817
- msgid "First name"
9818
- msgstr ""
9819
-
9820
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-review-exporter.php:69
9821
- msgctxt "trusted-shops"
9822
- msgid "Last name"
9823
- msgstr ""
9824
-
9825
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-template-hooks.php:121
9826
  msgctxt "trusted-shops"
9827
  msgid "Your review reminder e-mail has been cancelled successfully. Return to %s."
9828
  msgstr ""
9829
 
9830
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-template-hooks.php:121
9831
  msgctxt "trusted-shops"
9832
  msgid "Home"
9833
  msgstr ""
9834
 
9835
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-template-hooks.php:193
9836
  msgctxt "trusted-shops"
9837
  msgid "Yes, I would like to be reminded via e-mail after {days} day(s) to review my order. I am able to cancel the reminder at any time by clicking on the \"cancel review reminder\" link within the order confirmation."
9838
  msgstr ""
9839
 
9840
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-template-hooks.php:198
9841
  msgctxt "trusted-shops"
9842
  msgid "Please allow us to send a review reminder by e-mail."
9843
  msgstr ""
9844
 
9845
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-template-hooks.php:201
9846
  msgctxt "trusted-shops"
9847
  msgid "Review reminder"
9848
  msgstr ""
9849
 
9850
- #: packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-template-hooks.php:202
9851
  msgctxt "trusted-shops"
9852
  msgid "Asks the customer to receive a Trusted Shops review reminder."
9853
  msgstr ""
9854
 
9855
- #: packages/woocommerce-trusted-shops/includes/emails/class-wc-ts-email-customer-trusted-shops.php:26
9856
  msgctxt "trusted-shops"
9857
  msgid "Trusted Shops Review Reminder"
9858
  msgstr ""
9859
 
9860
- #: packages/woocommerce-trusted-shops/includes/emails/class-wc-ts-email-customer-trusted-shops.php:27
9861
  msgctxt "trusted-shops"
9862
  msgid "This E-Mail is being sent to a customer to remind him about the possibility to leave a review at Trusted Shops."
9863
  msgstr ""
9864
 
9865
- #: packages/woocommerce-trusted-shops/includes/emails/class-wc-ts-email-customer-trusted-shops.php:55
9866
  msgctxt "trusted-shops"
9867
  msgid "Please rate your {site_title} order from {order_date}"
9868
  msgstr ""
9869
 
9870
- #: packages/woocommerce-trusted-shops/includes/emails/class-wc-ts-email-customer-trusted-shops.php:65
9871
  msgctxt "trusted-shops"
9872
  msgid "Please rate your Order"
9873
  msgstr ""
9874
 
9875
- #: packages/woocommerce-trusted-shops/includes/widgets/class-wc-trusted-shops-widget-review-sticker.php:19
9876
  msgctxt "trusted-shops"
9877
  msgid "Show your TS shop review sticker."
9878
  msgstr ""
9879
 
9880
- #: packages/woocommerce-trusted-shops/includes/widgets/class-wc-trusted-shops-widget-review-sticker.php:21
9881
  msgctxt "trusted-shops"
9882
  msgid "Trusted Shops Shop Review Sticker"
9883
  msgstr ""
9884
 
9885
- #: packages/woocommerce-trusted-shops/includes/widgets/class-wc-trusted-shops-widget-review-sticker.php:25
9886
- #: packages/woocommerce-trusted-shops/includes/widgets/class-wc-trusted-shops-widget-review-sticker.php:46
9887
  msgctxt "trusted-shops"
9888
  msgid "Trusted Shops Reviews"
9889
  msgstr ""
9890
 
9891
- #: packages/woocommerce-trusted-shops/includes/widgets/class-wc-trusted-shops-widget-review-sticker.php:26
9892
  msgctxt "trusted-shops"
9893
  msgid "Title"
9894
  msgstr ""
9895
 
9896
- #: packages/woocommerce-trusted-shops/src/Package.php:55
9897
  msgctxt "trusted-shops"
9898
  msgid "Trustbadge Reviews for WooCommerce needs at least WooCommerce version 3.1 to run."
9899
  msgstr ""
9900
 
9901
- #: packages/woocommerce-trusted-shops/templates/emails/cancel-review-reminder.php:13
 
9902
  msgctxt "trusted-shops"
9903
  msgid "If you do not want to receive the review reminder e-mail, please follow the %s link."
9904
  msgstr ""
9905
 
9906
- #: packages/woocommerce-trusted-shops/templates/emails/cancel-review-reminder.php:13
9907
  msgctxt "trusted-shops"
9908
  msgid "cancel review reminder"
9909
  msgstr ""
9910
 
9911
- #: packages/woocommerce-trusted-shops/templates/emails/customer-trusted-shops.php:17
9912
- #: packages/woocommerce-trusted-shops/templates/emails/plain/customer-trusted-shops.php:14
 
9913
  msgctxt "trusted-shops"
9914
  msgid "Dear %s %s,"
9915
  msgstr ""
9916
 
9917
- #: packages/woocommerce-trusted-shops/templates/emails/customer-trusted-shops.php:18
9918
- #: packages/woocommerce-trusted-shops/templates/emails/plain/customer-trusted-shops.php:16
 
9919
  msgctxt "trusted-shops"
9920
  msgid "You have recently shopped at %s. Thank you! We would be glad if you spent some time to write a review about your order. To do so please follow follow the link."
9921
  msgstr ""
9922
 
9923
- #: packages/woocommerce-trusted-shops/templates/emails/customer-trusted-shops.php:22
9924
  msgctxt "trusted-shops"
9925
  msgid "Rate Order now"
9926
  msgstr ""
9927
 
9928
- #. translators: 1: composer command. 2: plugin directory
9929
- #: packages/woocommerce-trusted-shops/woocommerce-trusted-shops.php:41
9930
- #: packages/woocommerce-trusted-shops/woocommerce-trusted-shops.php:59
9931
  msgctxt "trusted-shops"
9932
  msgid "Your installation of the Trustbadge Reviews for WooCommerce plugin is incomplete. Please run %1$s within the %2$s directory."
9933
  msgstr ""
9934
 
9935
- #: src/Autoloader.php:50
9936
- #: src/Packages.php:94
9937
- msgid "Your installation of Germanized is incomplete. If you installed Germanized from GitHub, please refer to this document to set up your development environment: https://github.com/vendidero/woocommerce-germanized/wiki/How-to-set-up-a-Germanized-development-environment"
9938
- msgstr ""
9939
-
9940
- #. translators: 1: is a link to a support document. 2: closing link
9941
- #: src/Autoloader.php:62
9942
- #: src/Packages.php:116
9943
- msgid "Your installation of Germanized is incomplete. If you installed Germanized from GitHub, %1$splease refer to this document%2$s to set up your development environment."
9944
- msgstr ""
9945
-
9946
- #. Translators: %s package name.
9947
- #: src/Packages.php:92
9948
- #: src/Packages.php:107
9949
- msgid "Missing the Germanized %s package"
9950
- msgstr ""
9951
-
9952
- #: src/Shopmarks.php:295
9953
- msgid "Single Product (Grouped)"
9954
- msgstr ""
9955
-
9956
- #: src/Shopmarks.php:296
9957
- msgid "Product Loop"
9958
- msgstr ""
9959
-
9960
- #: src/Shopmarks.php:297
9961
- msgid "Cart"
9962
- msgstr ""
9963
-
9964
- #: src/Shopmarks.php:298
9965
- msgid "Mini Cart"
9966
- msgstr ""
9967
-
9968
- #: src/Shopmarks.php:313
9969
- msgid "Summary"
9970
- msgstr ""
9971
-
9972
- #: src/Shopmarks.php:318
9973
- msgid "Meta"
9974
- msgstr ""
9975
-
9976
- #: src/Shopmarks.php:323
9977
- msgid "After Meta"
9978
- msgstr ""
9979
-
9980
- #: src/Shopmarks.php:328
9981
- msgid "Before add to cart"
9982
- msgstr ""
9983
-
9984
- #: src/Shopmarks.php:333
9985
- msgid "After add to cart"
9986
- msgstr ""
9987
-
9988
- #: src/Shopmarks.php:338
9989
- msgid "After Summary"
9990
- msgstr ""
9991
-
9992
- #: src/Shopmarks.php:345
9993
- msgid "Price Column"
9994
- msgstr ""
9995
-
9996
- #: src/Shopmarks.php:350
9997
- msgid "Label Column"
9998
- msgstr ""
9999
-
10000
- #: src/Shopmarks.php:355
10001
- msgid "Quantity Column"
10002
- msgstr ""
10003
-
10004
- #: src/Shopmarks.php:362
10005
- msgid "After Item Title"
10006
- msgstr ""
10007
-
10008
- #: src/Shopmarks.php:367
10009
- msgid "Before Item Title"
10010
- msgstr ""
10011
-
10012
- #: src/Shopmarks.php:372
10013
- msgid "Item Title"
10014
- msgstr ""
10015
-
10016
- #: src/Shopmarks.php:377
10017
- msgid "After Item"
10018
- msgstr ""
10019
-
10020
- #: src/Shopmarks.php:384
10021
- #: src/Shopmarks.php:406
10022
- msgid "Item Price"
10023
- msgstr ""
10024
-
10025
- #: src/Shopmarks.php:389
10026
- #: src/Shopmarks.php:411
10027
- #: src/Shopmarks.php:423
10028
- msgid "Item Name"
10029
- msgstr ""
10030
-
10031
- #: src/Shopmarks.php:394
10032
- msgid "After Item Name"
10033
- msgstr ""
10034
-
10035
- #: src/Shopmarks.php:399
10036
- #: src/Shopmarks.php:418
10037
- msgid "Subtotal"
10038
- msgstr ""
10039
-
10040
- #: src/Shopmarks.php:428
10041
- msgid "After Item Quantity"
10042
- msgstr ""
10043
-
10044
- #: src/Shopmarks.php:454
10045
- #: src/Shopmarks.php:460
10046
- #: src/Shopmarks.php:466
10047
- #: src/Shopmarks.php:473
10048
- #: src/Shopmarks.php:479
10049
- #: src/Shopmarks.php:485
10050
- msgctxt "shopmark"
10051
- msgid "Unit Price"
10052
- msgstr ""
10053
-
10054
- #: src/Shopmarks.php:455
10055
- #: src/Shopmarks.php:461
10056
- #: src/Shopmarks.php:467
10057
- #: src/Shopmarks.php:475
10058
- #: src/Shopmarks.php:481
10059
- #: src/Shopmarks.php:487
10060
- msgctxt "shopmark"
10061
- msgid "Delivery Time"
10062
- msgstr ""
10063
-
10064
- #: src/Shopmarks.php:456
10065
- #: src/Shopmarks.php:462
10066
- msgctxt "shopmark"
10067
- msgid "General"
10068
- msgstr ""
10069
-
10070
- #: src/Shopmarks.php:457
10071
- #: src/Shopmarks.php:463
10072
- #: src/Shopmarks.php:470
10073
- #: src/Shopmarks.php:474
10074
- #: src/Shopmarks.php:480
10075
- #: src/Shopmarks.php:486
10076
- msgctxt "shopmark"
10077
- msgid "Product Units"
10078
- msgstr ""
10079
-
10080
- #: src/Shopmarks.php:468
10081
- msgctxt "shopmark"
10082
- msgid "Tax"
10083
- msgstr ""
10084
-
10085
- #: src/Shopmarks.php:469
10086
- msgctxt "shopmark"
10087
- msgid "Shipping Costs"
10088
- msgstr ""
10089
-
10090
- #: src/Shopmarks.php:476
10091
- #: src/Shopmarks.php:482
10092
- #: src/Shopmarks.php:488
10093
- msgctxt "shopmark"
10094
- msgid "Cart Description"
10095
- msgstr ""
10096
-
10097
- #: templates/checkout/edit-data-notice.php:25
10098
- msgid "Please check all of your entries carefully. You may change your entries with the help of the button \"%s\"."
10099
- msgstr ""
10100
-
10101
- #: templates/checkout/edit-data-notice.php:27
10102
- msgid "Please check all of your entries carefully. You may change your entries with the help of the \"Back\" button in your browser"
10103
- msgstr ""
10104
-
10105
- #: templates/checkout/order-submit.php:26
10106
- msgid "Since your browser does not support JavaScript, or it is disabled, please ensure you click the %1$sUpdate Totals%2$s button before placing your order. You may be charged more than the amount stated above if you fail to do so."
10107
- msgstr ""
10108
-
10109
- #: templates/checkout/order-submit.php:29
10110
- msgid "Update totals"
10111
- msgstr ""
10112
-
10113
- #: templates/emails/customer-new-account-activation.php:25
10114
- #: templates/emails/plain/customer-new-account-activation.php:25
10115
- msgid "Thanks for creating an account on %s. Please follow the activation link to activate your account:"
10116
- msgstr ""
10117
-
10118
- #: templates/emails/customer-new-account-activation.php:28
10119
- msgid "Activate your account"
10120
- msgstr ""
10121
-
10122
- #: templates/emails/customer-new-account-activation.php:33
10123
- #: templates/emails/plain/customer-new-account-activation.php:35
10124
- msgid "Your password has been automatically generated: <strong>%s</strong>"
10125
- msgstr ""
10126
-
10127
- #: templates/emails/customer-new-account-activation.php:37
10128
- #: templates/emails/plain/customer-new-account-activation.php:39
10129
- msgid "If you haven't created an account on %s please ignore this email."
10130
- msgstr ""
10131
-
10132
- #: templates/emails/customer-new-account-activation.php:39
10133
- msgid "If you cannot follow the link above please copy this url and paste it to your browser bar: %s"
10134
- msgstr ""
10135
-
10136
- #: templates/emails/customer-paid-for-order.php:26
10137
- #: templates/emails/plain/customer-paid-for-order.php:25
10138
- msgid "Hi there. Thank you! We have successfully received your payment for order %s. Your order is now being processed."
10139
- msgstr ""
10140
-
10141
- #: templates/emails/customer-revocation.php:26
10142
- #: templates/emails/plain/customer-revocation.php:27
10143
- msgctxt "revocation-form"
10144
- msgid "By sending you this email we confirm your Revocation. Please review your data."
10145
- msgstr ""
10146
-
10147
- #: templates/emails/customer-sepa-direct-debit-mandate.php:25
10148
- msgid "Please see the SEPA direct debit mandate for order %s attached to this email."
10149
- msgstr ""
10150
-
10151
- #: templates/emails/email-sepa-data.php:29
10152
- msgid "SEPA Data"
10153
- msgstr ""
10154
-
10155
- #: templates/footer/sale-info.php:22
10156
- msgid "All striked out prices refer to prices used to be charged at this shop."
10157
- msgstr ""
10158
-
10159
- #: templates/footer/vat-info.php:22
10160
- msgid "All prices incl. VAT."
10161
- msgstr ""
10162
-
10163
- #: templates/footer/vat-info.php:22
10164
- msgid "All prices excl. VAT."
10165
- msgstr ""
10166
-
10167
- #: templates/forms/revocation-form.php:26
10168
- msgctxt "revocation-form"
10169
- msgid "To"
10170
- msgstr ""
10171
-
10172
- #: templates/forms/revocation-form.php:49
10173
- #: templates/forms/revocation-form.php:50
10174
- msgctxt "revocation-form"
10175
- msgid "Forward Revocation"
10176
- msgstr ""
10177
-
10178
- #: templates/global/complaints.php:22
10179
- msgid "Alternative Dispute Resolution in accordance with Art. 14 (1) ODR-VO and § 36 VSBG:"
10180
- msgstr ""
10181
-
10182
- #: templates/order/order-pay-now-button.php:25
10183
- msgid "Pay now"
10184
- msgstr ""
10185
-
10186
- #. translators: %s is the word upgrade with a link to a support page about upgrading
10187
- #: woocommerce-germanized.php:49
10188
- msgid "Germanized requires at least PHP 5.6 to work. Please %s your PHP version."
10189
  msgstr ""
10190
 
10191
- #: woocommerce-germanized.php:50
10192
- msgid "upgrade"
10193
  msgstr ""
10194
 
10195
- #: woocommerce-germanized.php:314
10196
- msgid "This version of the Corona Helper Plugin includes a bug which could lead to tax rates being added multiple times. Please <a href=\"%s\">deactivate</a> the plugin and check our <a href=\"%s\" target=\"_blank\">blog post</a>."
10197
  msgstr ""
10198
 
10199
- #: woocommerce-germanized.php:975
10200
- msgid "Pease wait while we are trying to redirect you to the payment provider."
10201
  msgstr ""
1
  # Copyright (C) 2021 vendidero
2
  # This file is distributed under the same license as the Germanized for WooCommerce plugin.
3
+ #, fuzzy
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Germanized for WooCommerce 3.3.4\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "POT-Creation-Date: 2021-07-08 14:24+0200\n"
14
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
17
+ "X-Poedit-Basepath: ../../..\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Generator: Poedit 2.4.3\n"
20
+ "X-Poedit-WPHeader: woocommerce-germanized/woocommerce-germanized.php\n"
21
+ "X-Poedit-SearchPath-0: woocommerce-germanized\n"
22
+ "X-Poedit-SearchPath-1: woocommerce-germanized-shipments\n"
23
+ "X-Poedit-SearchPath-2: woocommerce-trusted-shops\n"
24
+ "X-Poedit-SearchPath-3: woocommerce-germanized-dhl\n"
25
+ "X-Poedit-SearchPath-4: one-stop-shop-woocommerce\n"
26
+ "X-Poedit-SearchPathExcluded-0: woocommerce-germanized/node_modules\n"
27
+ "X-Poedit-SearchPathExcluded-1: woocommerce-germanized/tests\n"
28
+ "X-Poedit-SearchPathExcluded-2: woocommerce-germanized/tmp\n"
29
+ "X-Poedit-SearchPathExcluded-3: woocommerce-germanized/vendor\n"
30
+ "X-Poedit-SearchPathExcluded-4: woocommerce-germanized/packages\n"
31
+ "X-Poedit-SearchPathExcluded-5: woocommerce-germanized-shipments/node_modules\n"
32
+ "X-Poedit-SearchPathExcluded-6: woocommerce-germanized-shipments/vendor\n"
33
+ "X-Poedit-SearchPathExcluded-7: woocommerce-trusted-shops/vendor\n"
34
+ "X-Poedit-SearchPathExcluded-8: woocommerce-trusted-shops/node_modules\n"
35
+ "X-Poedit-SearchPathExcluded-9: woocommerce-germanized-dhl/vendor\n"
36
+ "X-Poedit-SearchPathExcluded-10: woocommerce-germanized-dhl/node_modules\n"
37
+ "X-Poedit-SearchPathExcluded-11: woocommerce-germanized/build\n"
38
+ "X-Poedit-SearchPathExcluded-12: woocommerce-trusted-shops/build\n"
39
+ "X-Poedit-SearchPathExcluded-13: woocommerce-germanized/assets\n"
40
+ "X-Poedit-SearchPathExcluded-14: one-stop-shop-woocommerce/vendor\n"
41
+ "X-Poedit-SearchPathExcluded-15: one-stop-shop-woocommerce/node_modules\n"
42
+ "X-Poedit-SearchPathExcluded-16: one-stop-shop-woocommerce/build\n"
43
+
44
+ #: one-stop-shop-woocommerce/one-stop-shop-woocommerce.php:44
45
+ #: one-stop-shop-woocommerce/one-stop-shop-woocommerce.php:62
46
+ #, php-format
47
+ msgctxt "oss"
48
+ msgid "Your installation of the One Stop Shop feature plugin is incomplete. Please run %1$s within the %2$s directory."
49
+ msgstr ""
50
+
51
+ #: one-stop-shop-woocommerce/src/Admin.php:76
52
+ #: one-stop-shop-woocommerce/src/Admin.php:77
53
+ msgctxt "oss"
54
+ msgid "Refresh VAT rates (OSS)"
55
+ msgstr ""
56
+
57
+ #: one-stop-shop-woocommerce/src/Admin.php:81
58
+ msgctxt "oss"
59
+ msgid "Note:"
60
+ msgstr ""
61
+
62
+ #: one-stop-shop-woocommerce/src/Admin.php:82
63
+ #, php-format
64
+ msgctxt "oss"
65
+ msgid "This option will delete all of your current EU VAT rates and re-import them based on your current <a href=\"%s\">OSS status</a>."
66
+ msgstr ""
67
+
68
+ #: one-stop-shop-woocommerce/src/Admin.php:212
69
+ #, php-format
70
+ msgctxt "oss"
71
+ msgid "Seems like you have reached (or are close to reaching) the delivery threshold for the current year. Please make sure to check the <a href=\"%s\" target=\"_blank\">report details</a> and take action in case necessary."
72
+ msgstr ""
73
+
74
+ #: one-stop-shop-woocommerce/src/Admin.php:216
75
+ msgctxt "oss"
76
+ msgid "Delivery threshold reached (OSS)"
77
+ msgstr ""
78
+
79
+ #: one-stop-shop-woocommerce/src/Admin.php:432
80
+ #: one-stop-shop-woocommerce/src/SettingsPage.php:17
81
+ msgctxt "oss"
82
+ msgid "OSS"
83
+ msgstr ""
84
+
85
+ #: one-stop-shop-woocommerce/src/Admin.php:432
86
+ #: one-stop-shop-woocommerce/src/Admin.php:550
87
+ #: one-stop-shop-woocommerce/src/SettingsPage.php:23
88
+ msgctxt "oss"
89
+ msgid "One Stop Shop"
90
+ msgstr ""
91
+
92
+ #: one-stop-shop-woocommerce/src/Admin.php:453
93
+ #: one-stop-shop-woocommerce/src/Package.php:264
94
+ #, php-format
95
+ msgctxt "oss"
96
+ msgid "Q%1$s/%2$s"
97
+ msgstr ""
98
+
99
+ #: one-stop-shop-woocommerce/src/Admin.php:462
100
+ #: one-stop-shop-woocommerce/src/Package.php:269
101
+ #, php-format
102
+ msgctxt "oss"
103
+ msgid "%1$s/%2$s"
104
+ msgstr ""
105
+
106
+ #: one-stop-shop-woocommerce/src/Admin.php:470
107
+ msgctxt "oss"
108
+ msgid "New Report"
109
+ msgstr ""
110
+
111
+ #: one-stop-shop-woocommerce/src/Admin.php:477
112
+ msgctxt "oss"
113
+ msgid "Type"
114
  msgstr ""
115
 
116
+ #: one-stop-shop-woocommerce/src/Admin.php:489
117
+ msgctxt "oss"
118
+ msgid "Year"
119
  msgstr ""
120
 
121
+ #: one-stop-shop-woocommerce/src/Admin.php:501
122
+ msgctxt "oss"
123
+ msgid "Quarter"
124
  msgstr ""
125
 
126
+ #: one-stop-shop-woocommerce/src/Admin.php:513
127
+ msgctxt "oss"
128
+ msgid "Month"
129
  msgstr ""
130
 
131
+ #: one-stop-shop-woocommerce/src/Admin.php:525
132
+ msgctxt "oss"
133
+ msgid "Date range"
134
  msgstr ""
135
 
136
+ #: one-stop-shop-woocommerce/src/Admin.php:537
137
+ msgctxt "oss"
138
+ msgid "Start report"
 
139
  msgstr ""
140
 
141
+ #: one-stop-shop-woocommerce/src/Admin.php:551
142
+ msgctxt "oss"
143
+ msgid "New report"
 
144
  msgstr ""
145
 
146
+ #: one-stop-shop-woocommerce/src/Admin.php:593
147
+ msgctxt "oss"
148
+ msgid "View"
 
149
  msgstr ""
150
 
151
+ #: one-stop-shop-woocommerce/src/Admin.php:597
152
+ msgctxt "oss"
153
+ msgid "Export"
 
 
 
154
  msgstr ""
155
 
156
+ #: one-stop-shop-woocommerce/src/Admin.php:601
157
+ msgctxt "oss"
158
+ msgid "Refresh"
 
 
 
 
 
 
 
159
  msgstr ""
160
 
161
+ #: one-stop-shop-woocommerce/src/Admin.php:605
162
+ msgctxt "oss"
163
+ msgid "Delete"
 
164
  msgstr ""
165
 
166
+ #: one-stop-shop-woocommerce/src/Admin.php:611
167
+ msgctxt "oss"
168
+ msgid "Cancel"
 
169
  msgstr ""
170
 
171
+ #: one-stop-shop-woocommerce/src/Admin.php:640
172
+ msgctxt "oss"
173
+ msgid "Country"
 
174
  msgstr ""
175
 
176
+ #: one-stop-shop-woocommerce/src/Admin.php:641
177
+ msgctxt "oss"
178
+ msgid "Tax Rate"
 
179
  msgstr ""
180
 
181
+ #: one-stop-shop-woocommerce/src/Admin.php:642
182
+ msgctxt "oss"
183
+ msgid "Net Total"
 
184
  msgstr ""
185
 
186
+ #: one-stop-shop-woocommerce/src/Admin.php:643
187
+ msgctxt "oss"
188
+ msgid "Tax Total"
 
189
  msgstr ""
190
 
191
+ #: one-stop-shop-woocommerce/src/Admin.php:674
192
+ #, php-format
193
+ msgctxt "oss"
194
+ msgid "%1$s %%"
195
  msgstr ""
196
 
197
+ #: one-stop-shop-woocommerce/src/Admin.php:686
198
+ #, php-format
199
+ msgctxt "oss"
200
+ msgid "Currently processed %1$s orders. Next iteration is scheduled for %2$s. <a href=\"%3$s\">Find pending actions</a>"
 
 
 
 
201
  msgstr ""
202
 
203
+ #: one-stop-shop-woocommerce/src/Admin.php:686
204
+ msgctxt "oss"
205
+ msgid "Not yet known"
 
 
 
 
 
 
 
 
 
 
 
206
  msgstr ""
207
 
208
+ #: one-stop-shop-woocommerce/src/Admin.php:717
209
+ #: one-stop-shop-woocommerce/src/ReportTable.php:39
210
+ #: one-stop-shop-woocommerce/src/SettingsPage.php:23
211
+ msgctxt "oss"
212
+ msgid "Reports"
 
213
  msgstr ""
214
 
215
+ #: one-stop-shop-woocommerce/src/AdminNote.php:39
216
+ msgctxt "oss"
217
+ msgid "Dismiss"
 
218
  msgstr ""
219
 
220
+ #: one-stop-shop-woocommerce/src/AsyncReportGenerator.php:244
221
+ msgctxt "oss"
222
+ msgid "No orders found."
 
223
  msgstr ""
224
 
225
+ #: one-stop-shop-woocommerce/src/CSVExporter.php:52
226
+ msgctxt "oss"
227
+ msgid "Country code"
 
228
  msgstr ""
229
 
230
+ #: one-stop-shop-woocommerce/src/CSVExporter.php:53
231
+ msgctxt "oss"
232
+ msgid "Tax rate"
 
233
  msgstr ""
234
 
235
+ #: one-stop-shop-woocommerce/src/CSVExporter.php:54
236
+ msgctxt "oss"
237
+ msgid "Taxable base"
 
 
 
238
  msgstr ""
239
 
240
+ #: one-stop-shop-woocommerce/src/CSVExporter.php:55
241
+ msgctxt "oss"
242
+ msgid "Amount"
 
243
  msgstr ""
244
 
245
+ #: one-stop-shop-woocommerce/src/DeliveryThresholdEmailNotification.php:19
246
+ msgctxt "oss"
247
+ msgid "OSS Delivery Threshold Notification"
 
 
 
 
 
 
 
 
 
 
 
248
  msgstr ""
249
 
250
+ #: one-stop-shop-woocommerce/src/DeliveryThresholdEmailNotification.php:20
251
+ msgctxt "oss"
252
+ msgid "This email notifies shop owners in case the delivery threshold (OSS) is close to being reached."
 
 
 
 
 
253
  msgstr ""
254
 
255
+ #: one-stop-shop-woocommerce/src/DeliveryThresholdEmailNotification.php:38
256
+ msgctxt "oss"
257
+ msgid "[{site_title}]: OSS delivery threshold reached"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
258
  msgstr ""
259
 
260
+ #: one-stop-shop-woocommerce/src/DeliveryThresholdEmailNotification.php:48
261
+ msgctxt "oss"
262
+ msgid "OSS delivery threshold reached"
 
 
 
263
  msgstr ""
264
 
265
+ #: one-stop-shop-woocommerce/src/DeliveryThresholdWarning.php:13
266
+ msgctxt "oss"
267
+ msgid "See details"
 
268
  msgstr ""
269
 
270
+ #: one-stop-shop-woocommerce/src/Package.php:80
271
+ msgctxt "oss"
272
+ msgid "To use the OSS for WooCommerce plugin please make sure that WooCommerce is installed and activated."
 
273
  msgstr ""
274
 
275
+ #: one-stop-shop-woocommerce/src/Package.php:249
276
+ #: one-stop-shop-woocommerce/src/ReportTable.php:40
277
+ msgctxt "oss"
278
+ msgid "Report"
 
 
 
 
 
 
 
 
 
 
 
 
279
  msgstr ""
280
 
281
+ #: one-stop-shop-woocommerce/src/Package.php:273
282
+ #, php-format
283
+ msgctxt "oss"
284
+ msgid "%1$s"
285
  msgstr ""
286
 
287
+ #: one-stop-shop-woocommerce/src/Package.php:278
288
+ #, php-format
289
+ msgctxt "oss"
290
+ msgid "%1$s - %2$s"
291
  msgstr ""
292
 
293
+ #: one-stop-shop-woocommerce/src/Package.php:283
294
+ #, php-format
295
+ msgctxt "oss"
296
+ msgid "Observer %1$s"
297
  msgstr ""
298
 
299
+ #: one-stop-shop-woocommerce/src/Package.php:482
300
+ msgctxt "oss"
301
+ msgid "Quarterly"
 
302
  msgstr ""
303
 
304
+ #: one-stop-shop-woocommerce/src/Package.php:483
305
+ msgctxt "oss"
306
+ msgid "Yearly"
 
 
 
 
 
 
 
307
  msgstr ""
308
 
309
+ #: one-stop-shop-woocommerce/src/Package.php:484
310
+ msgctxt "oss"
311
+ msgid "Monthly"
 
 
 
 
 
312
  msgstr ""
313
 
314
+ #: one-stop-shop-woocommerce/src/Package.php:485
315
+ msgctxt "oss"
316
+ msgid "Custom"
 
317
  msgstr ""
318
 
319
+ #: one-stop-shop-woocommerce/src/Package.php:489
320
+ msgctxt "oss"
321
+ msgid "Observer"
 
322
  msgstr ""
323
 
324
+ #: one-stop-shop-woocommerce/src/Package.php:503
325
+ msgctxt "oss"
326
+ msgid "Pending"
 
327
  msgstr ""
328
 
329
+ #: one-stop-shop-woocommerce/src/Package.php:504
330
+ msgctxt "oss"
331
+ msgid "Completed"
 
 
 
332
  msgstr ""
333
 
334
+ #: one-stop-shop-woocommerce/src/Package.php:505
335
+ msgctxt "oss"
336
+ msgid "Failed"
 
 
337
  msgstr ""
338
 
339
+ #: one-stop-shop-woocommerce/src/ReportTable.php:121
340
+ #, php-format
341
+ msgctxt "oss"
342
+ msgid "%d report deleted."
343
+ msgid_plural "%d reports deleted."
344
+ msgstr[0] ""
345
+ msgstr[1] ""
346
 
347
+ #: one-stop-shop-woocommerce/src/ReportTable.php:184
348
+ msgctxt "oss"
349
+ msgid "No reports found"
 
350
  msgstr ""
351
 
352
+ #: one-stop-shop-woocommerce/src/ReportTable.php:225
353
+ #, php-format
354
+ msgctxt "oss"
355
+ msgid "All <span class=\"count\">(%s)</span>"
356
+ msgid_plural "All <span class=\"count\">(%s)</span>"
357
+ msgstr[0] ""
358
+ msgstr[1] ""
359
+
360
+ #: one-stop-shop-woocommerce/src/ReportTable.php:250
361
+ #, php-format
362
+ msgctxt "oss"
363
+ msgid " <span class=\"count\">(%s)</span>"
364
+ msgid_plural " <span class=\"count\">(%s)</span>"
365
+ msgstr[0] ""
366
+ msgstr[1] ""
367
+
368
+ #: one-stop-shop-woocommerce/src/ReportTable.php:323
369
+ msgctxt "oss"
370
+ msgid "Filter"
371
  msgstr ""
372
 
373
+ #: one-stop-shop-woocommerce/src/ReportTable.php:350
374
+ msgctxt "oss"
375
+ msgid "Title"
 
376
  msgstr ""
377
 
378
+ #: one-stop-shop-woocommerce/src/ReportTable.php:351
379
+ msgctxt "oss"
380
+ msgid "Start"
 
 
 
381
  msgstr ""
382
 
383
+ #: one-stop-shop-woocommerce/src/ReportTable.php:352
384
+ msgctxt "oss"
385
+ msgid "End"
 
386
  msgstr ""
387
 
388
+ #: one-stop-shop-woocommerce/src/ReportTable.php:353
389
+ #: one-stop-shop-woocommerce/templates/emails/admin-delivery-threshold.php:25
390
+ msgctxt "oss"
391
+ msgid "Net total"
392
  msgstr ""
393
 
394
+ #: one-stop-shop-woocommerce/src/ReportTable.php:354
395
+ #: one-stop-shop-woocommerce/templates/emails/admin-delivery-threshold.php:26
396
+ msgctxt "oss"
397
+ msgid "Tax total"
398
  msgstr ""
399
 
400
+ #: one-stop-shop-woocommerce/src/ReportTable.php:355
401
+ msgctxt "oss"
402
+ msgid "Status"
 
403
  msgstr ""
404
 
405
+ #: one-stop-shop-woocommerce/src/ReportTable.php:356
406
+ msgctxt "oss"
407
+ msgid "Actions"
 
408
  msgstr ""
409
 
410
+ #: one-stop-shop-woocommerce/src/ReportTable.php:420
411
+ #, php-format
412
+ msgctxt "oss"
413
+ msgid "Select %s"
414
  msgstr ""
415
 
416
+ #: one-stop-shop-woocommerce/src/ReportTable.php:513
417
+ msgctxt "oss"
418
+ msgid "Delete Permanently"
 
419
  msgstr ""
420
 
421
+ #: one-stop-shop-woocommerce/src/Settings.php:14
422
+ msgctxt "oss"
423
+ msgid "General"
 
424
  msgstr ""
425
 
426
+ #: one-stop-shop-woocommerce/src/Settings.php:19
427
+ msgctxt "oss"
428
+ msgid "Find useful options regarding the <a href=\"https://ec.europa.eu/taxation_customs/business/vat/oss_en\" target=\"_blank\" rel=\"noopener\">One Stop Shop procedure</a> here."
 
429
  msgstr ""
430
 
431
+ #: one-stop-shop-woocommerce/src/Settings.php:31
432
+ msgctxt "oss"
433
+ msgid "OSS status"
 
434
  msgstr ""
435
 
436
+ #: one-stop-shop-woocommerce/src/Settings.php:32
437
+ msgctxt "oss"
438
+ msgid "Yes, I'm currently participating in the OSS procedure."
 
439
  msgstr ""
440
 
441
+ #: one-stop-shop-woocommerce/src/Settings.php:39
442
+ msgctxt "oss"
443
+ msgid "Observation"
 
444
  msgstr ""
445
 
446
+ #: one-stop-shop-woocommerce/src/Settings.php:40
447
+ msgctxt "oss"
448
+ msgid "Automatically observe the delivery threshold of the current year."
 
449
  msgstr ""
450
 
451
+ #: one-stop-shop-woocommerce/src/Settings.php:40
452
+ msgctxt "oss"
453
+ msgid "This option will automatically calculate the amount applicable for the OSS procedure delivery threshold once per day for the current year. The report will only recalculated for the days which are not yet subject to the observation to save processing time."
 
454
  msgstr ""
455
 
456
+ #: one-stop-shop-woocommerce/src/Settings.php:50
457
+ msgctxt "oss"
458
+ msgid "Delivery threshold"
 
459
  msgstr ""
460
 
461
+ #: one-stop-shop-woocommerce/src/Settings.php:60
462
+ msgctxt "oss"
463
+ msgid "Participation"
 
464
  msgstr ""
465
 
466
+ #: one-stop-shop-woocommerce/src/Settings.php:70
467
+ msgctxt "oss"
468
+ msgid "Fixed gross prices"
 
469
  msgstr ""
470
 
471
+ #: one-stop-shop-woocommerce/src/Settings.php:71
472
+ msgctxt "oss"
473
+ msgid "Apply the same gross price regardless of the tax rate."
 
474
  msgstr ""
475
 
476
+ #: one-stop-shop-woocommerce/src/Settings.php:71
477
+ msgctxt "oss"
478
+ msgid "This option will make sure that your customers pay the same price no matter the tax rate (based on the country chosen) to be applied."
 
 
 
 
 
 
 
 
 
 
479
  msgstr ""
480
 
481
+ #: one-stop-shop-woocommerce/src/Settings.php:92
482
+ msgctxt "oss"
483
+ msgid "Are you sure? Please backup your tax rates before proceeding."
 
484
  msgstr ""
485
 
486
+ #: one-stop-shop-woocommerce/src/Settings.php:92
487
+ msgctxt "oss"
488
+ msgid "End OSS participation"
 
489
  msgstr ""
490
 
491
+ #: one-stop-shop-woocommerce/src/Settings.php:92
492
+ msgctxt "oss"
493
+ msgid "Start OSS participation"
 
494
  msgstr ""
495
 
496
+ #: one-stop-shop-woocommerce/src/Settings.php:93
497
+ msgctxt "oss"
498
+ msgid "learn more"
 
499
  msgstr ""
500
 
501
+ #: one-stop-shop-woocommerce/src/Settings.php:95
502
+ msgctxt "oss"
503
+ msgid "Use this option to automatically adjust tax-related options in WooCommerce. Warning: This option will delete your current tax rates and add new tax rates based on your OSS participation status."
 
504
  msgstr ""
505
 
506
+ #: one-stop-shop-woocommerce/src/Settings.php:127
507
+ msgctxt "oss"
508
+ msgid "See status"
 
509
  msgstr ""
510
 
511
+ #: one-stop-shop-woocommerce/src/Settings.php:127
512
+ msgctxt "oss"
513
+ msgid "Start initial report"
 
514
  msgstr ""
515
 
516
+ #: one-stop-shop-woocommerce/src/Settings.php:128
517
+ #, php-format
518
+ msgctxt "oss"
519
+ msgid "Report not yet completed. %s"
520
  msgstr ""
521
 
522
+ #: one-stop-shop-woocommerce/src/Settings.php:128
523
+ #, php-format
524
+ msgctxt "oss"
525
+ msgid "Report not yet started. %s"
 
 
 
 
 
 
526
  msgstr ""
527
 
528
+ #: one-stop-shop-woocommerce/src/Settings.php:146
529
+ msgctxt "oss-amounts"
530
+ msgid "of"
 
531
  msgstr ""
532
 
533
+ #: one-stop-shop-woocommerce/src/Settings.php:146
534
+ #, php-format
535
+ msgctxt "oss"
536
+ msgid "As of: %s"
537
  msgstr ""
538
 
539
+ #: one-stop-shop-woocommerce/src/Settings.php:146
540
+ msgctxt "oss"
541
+ msgid "see details"
 
542
  msgstr ""
543
 
544
+ #: one-stop-shop-woocommerce/src/Settings.php:147
545
+ #, php-format
546
+ msgctxt "oss"
547
+ msgid "This value indicates your current net total amount applicable for the One Stop Shop procedure delivery threshold of the current year. You should take action in case the delivery threshold is or is close to being exceeded. <a href=\"%s\">Find out more</a> about the calculation."
548
  msgstr ""
549
 
550
+ #: one-stop-shop-woocommerce/src/SettingsPage.php:23
551
+ msgctxt "oss"
552
+ msgid "Learn More"
 
553
  msgstr ""
554
 
555
+ #: one-stop-shop-woocommerce/src/Tax.php:278
556
+ #: one-stop-shop-woocommerce/src/Tax.php:336
557
+ #, php-format
558
+ msgctxt "oss"
559
+ msgid "Tax class (%s)"
560
  msgstr ""
561
 
562
+ #: one-stop-shop-woocommerce/src/Tax.php:279
563
+ msgctxt "oss"
564
+ msgid "Same as parent"
 
565
  msgstr ""
566
 
567
+ #: one-stop-shop-woocommerce/src/Tax.php:281
568
+ #: one-stop-shop-woocommerce/src/Tax.php:314
569
+ #: one-stop-shop-woocommerce/src/Tax.php:338
570
+ #: one-stop-shop-woocommerce/src/Tax.php:372
571
+ msgctxt "oss"
572
+ msgid "remove"
573
  msgstr ""
574
 
575
+ #: one-stop-shop-woocommerce/src/Tax.php:291
576
+ #: one-stop-shop-woocommerce/src/Tax.php:349
577
+ msgctxt "oss"
578
+ msgid "Add country specific tax class (OSS)"
579
  msgstr ""
580
 
581
+ #: one-stop-shop-woocommerce/src/Tax.php:298
582
+ #: one-stop-shop-woocommerce/src/Tax.php:356
583
+ msgctxt "oss"
584
+ msgid "Select country"
585
  msgstr ""
586
 
587
+ #: one-stop-shop-woocommerce/src/Tax.php:452
588
+ #: one-stop-shop-woocommerce/src/Tax.php:579
589
+ msgid "Reduced rate"
 
 
 
590
  msgstr ""
591
 
592
+ #: one-stop-shop-woocommerce/src/Tax.php:455
593
+ #: one-stop-shop-woocommerce/src/Tax.php:571
594
+ msgctxt "oss"
595
+ msgid "Greater reduced rate"
596
  msgstr ""
597
 
598
+ #: one-stop-shop-woocommerce/src/Tax.php:458
599
+ #: one-stop-shop-woocommerce/src/Tax.php:575
600
+ msgctxt "oss"
601
+ msgid "Super reduced rate"
602
  msgstr ""
603
 
604
+ #: one-stop-shop-woocommerce/src/Tax.php:751
605
+ msgctxt "oss"
606
+ msgid "Madeira"
 
607
  msgstr ""
608
 
609
+ #: one-stop-shop-woocommerce/src/Tax.php:758
610
+ msgctxt "oss"
611
+ msgid "Acores"
 
 
 
 
 
612
  msgstr ""
613
 
614
+ #: one-stop-shop-woocommerce/src/Tax.php:794
615
+ msgctxt "oss"
616
+ msgid "Northern Ireland"
 
617
  msgstr ""
618
 
619
+ #: one-stop-shop-woocommerce/src/Tax.php:807
620
+ msgctxt "oss-tax-rate-import"
621
+ msgid "Exempt"
 
622
  msgstr ""
623
 
624
+ #: one-stop-shop-woocommerce/src/Tax.php:873
625
+ #, php-format
626
+ msgctxt "oss-tax-rate-import"
627
+ msgid "VAT %1$s %% %2$s"
628
  msgstr ""
629
 
630
+ #: one-stop-shop-woocommerce/templates/emails/admin-delivery-threshold.php:19
631
+ #, php-format
632
+ msgctxt "oss"
633
+ msgid "Your OSS delivery threshold of %1$s has been reached. Please take action immediately. Visit the <a href=\"%2$s\">OSS Settings Panel</a> for details."
634
  msgstr ""
635
 
636
+ #: one-stop-shop-woocommerce/templates/emails/admin-delivery-threshold.php:21
637
+ msgctxt "oss"
638
+ msgid "Report Details"
 
 
 
639
  msgstr ""
640
 
641
+ #: one-stop-shop-woocommerce/templates/emails/admin-delivery-threshold.php:24
642
+ msgctxt "oss"
643
+ msgid "Period"
 
 
 
644
  msgstr ""
645
 
646
+ #: one-stop-shop-woocommerce/templates/emails/admin-delivery-threshold.php:29
647
+ msgctxt "oss"
648
+ msgid "See report details"
 
649
  msgstr ""
650
 
651
+ #: one-stop-shop-woocommerce/templates/emails/plain/admin-delivery-threshold.php:17
652
+ #, php-format
653
+ msgctxt "oss"
654
+ msgid "Your OSS delivery threshold of %1$s has been reached. Please take action immediately. Visit the OSS Settings Panel (%2$s) for details."
 
 
 
 
655
  msgstr ""
656
 
657
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:208
658
+ #: woocommerce-germanized-dhl/src/Api/Paket.php:274
659
+ msgctxt "dhl day context"
660
+ msgid "None"
661
  msgstr ""
662
 
663
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:239
664
+ msgctxt "dhl"
665
+ msgid "Delivery Duty Unpaid"
 
 
 
666
  msgstr ""
667
 
668
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:240
669
+ msgctxt "dhl"
670
+ msgid "Delivery Duty Paid"
 
 
 
 
 
 
 
 
 
 
 
671
  msgstr ""
672
 
673
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:241
674
+ msgctxt "dhl"
675
+ msgid "Delivery Duty Paid (excl. VAT )"
 
676
  msgstr ""
677
 
678
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:242
679
+ msgctxt "dhl"
680
+ msgid "Delivery Duty Paid (excl. Duties, taxes and VAT)"
 
681
  msgstr ""
682
 
683
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:270
684
+ msgctxt "age context"
 
685
  msgid "None"
686
  msgstr ""
687
 
688
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:271
689
+ msgctxt "dhl"
690
+ msgid "Minimum age of 16"
 
691
  msgstr ""
692
 
693
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:272
694
+ msgctxt "dhl"
695
+ msgid "Minimum age of 18"
 
 
 
 
 
696
  msgstr ""
697
 
698
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:303
699
+ msgctxt "dhl"
700
+ msgid "Shipment #{shipment_id} to order {order_id}"
 
 
 
701
  msgstr ""
702
 
703
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:339
704
+ msgctxt "dhl"
705
+ msgid "Return #{shipment_id} to order {order_id}"
 
 
 
 
 
 
 
706
  msgstr ""
707
 
708
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:355
709
+ msgctxt "dhl"
710
+ msgid "Return shipment #{shipment_id} to order #{order_id}"
 
711
  msgstr ""
712
 
713
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:428
714
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:890
715
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1055
716
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1717
717
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:38
718
+ msgctxt "dhl"
719
+ msgid "Packstation"
 
720
  msgstr ""
721
 
722
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:429
723
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:430
724
+ msgctxt "dhl"
725
+ msgid "Postfiliale"
 
 
 
 
726
  msgstr ""
727
 
728
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:836
729
+ msgctxt "dhl"
730
+ msgid "DHL Retoure International A"
 
 
 
731
  msgstr ""
732
 
733
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:837
734
+ msgctxt "dhl"
735
+ msgid "DHL Retoure International B"
 
736
  msgstr ""
737
 
738
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:846
739
+ msgctxt "dhl"
740
+ msgid "DHL Retoure Online"
 
741
  msgstr ""
742
 
743
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:862
744
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:882
745
+ msgctxt "dhl"
746
+ msgid "DHL Paket International"
 
 
 
 
747
  msgstr ""
748
 
749
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:883
750
+ msgctxt "dhl"
751
+ msgid "DHL Paket Connect"
 
752
  msgstr ""
753
 
754
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:884
755
+ msgctxt "dhl"
756
+ msgid "DHL Europaket (B2B)"
 
757
  msgstr ""
758
 
759
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:953
760
+ msgctxt "dhl"
761
+ msgid "DHL Paket"
 
762
  msgstr ""
763
 
764
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:954
765
+ msgctxt "dhl"
766
+ msgid "DHL Paket PRIO"
 
767
  msgstr ""
768
 
769
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:955
770
+ msgctxt "dhl"
771
+ msgid "DHL Paket Taggleich"
 
772
  msgstr ""
773
 
774
+ #: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:956
775
+ msgctxt "dhl"
776
+ msgid "DHL Warenpost"
 
777
  msgstr ""
778
 
779
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:44
780
+ msgctxt "dhl"
781
+ msgid "Refreshed data successfully."
 
782
  msgstr ""
783
 
784
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:44
785
+ #, php-format
786
+ msgctxt "dhl"
787
+ msgid "Error while refreshing data. Please make sure that the Internetmarke API URL can be <a href=\"%s\">accessed</a>."
788
  msgstr ""
789
 
790
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:117
791
+ msgctxt "dhl"
792
+ msgid "Receiver Ids"
 
793
  msgstr ""
794
 
795
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:124
796
+ msgctxt "dhl"
797
+ msgid "Receiver Id"
 
798
  msgstr ""
799
 
800
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:124
801
+ msgctxt "dhl"
802
+ msgid "Find your Receiver Ids within your DHL contract data."
 
803
  msgstr ""
804
 
805
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:125
806
+ msgctxt "dhl"
807
+ msgid "Country Code"
 
808
  msgstr ""
809
 
810
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:125
811
+ msgctxt "dhl"
812
+ msgid "Leave empty to use the Receiver Id as fallback."
 
813
  msgstr ""
814
 
815
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:143
816
+ msgctxt "dhl"
817
+ msgid "+ Add receiver"
 
818
  msgstr ""
819
 
820
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:143
821
+ msgctxt "dhl"
822
+ msgid "Remove selected receiver(s)"
 
 
 
823
  msgstr ""
824
 
825
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:173
826
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:23
827
+ msgctxt "dhl"
828
+ msgid "DHL"
 
 
829
  msgstr ""
830
 
831
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:188
832
+ msgctxt "dhl"
833
+ msgid "DHL Label"
 
 
 
834
  msgstr ""
835
 
836
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:200
837
+ msgctxt "dhl"
838
+ msgid "This label has been generated by the DHL for WooCommerce Plugin and is shown for legacy purposes."
 
839
  msgstr ""
840
 
841
+ #: woocommerce-germanized-dhl/src/Admin/Admin.php:201
842
+ msgctxt "dhl"
843
+ msgid "Download label"
 
844
  msgstr ""
845
 
846
+ #: woocommerce-germanized-dhl/src/Admin/Status.php:22
847
+ msgctxt "dhl"
848
+ msgid "Ping Check"
 
849
  msgstr ""
850
 
851
+ #: woocommerce-germanized-dhl/src/Admin/Status.php:37
852
+ msgctxt "dhl"
853
+ msgid "Unable to connect to the URL. Please make sure that your webhost allows outgoing connections to that specific URL."
 
854
  msgstr ""
855
 
856
+ #: woocommerce-germanized-dhl/src/Admin/Status.php:49
857
+ msgctxt "dhl"
858
+ msgid "DHL & Post"
 
859
  msgstr ""
860
 
861
+ #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:31
862
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1203
863
+ msgctxt "dhl"
864
+ msgid "Monday"
865
  msgstr ""
866
 
867
+ #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:32
868
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1215
869
+ msgctxt "dhl"
870
+ msgid "Tuesday"
871
  msgstr ""
872
 
873
+ #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:33
874
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1226
875
+ msgctxt "dhl"
876
+ msgid "Wednesday"
877
  msgstr ""
878
 
879
+ #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:34
880
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1237
881
+ msgctxt "dhl"
882
+ msgid "Thursday"
883
  msgstr ""
884
 
885
+ #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:35
886
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1248
887
+ msgctxt "dhl"
888
+ msgid "Friday"
889
  msgstr ""
890
 
891
+ #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:36
892
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1259
893
+ msgctxt "dhl"
894
+ msgid "Saturday"
895
  msgstr ""
896
 
897
+ #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:37
898
+ msgctxt "dhl"
899
+ msgid "Sunday"
 
900
  msgstr ""
901
 
902
+ #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:84
903
+ msgctxt "dhl"
904
+ msgid "At least shipping city or zip is required."
 
905
  msgstr ""
906
 
907
+ #: woocommerce-germanized-dhl/src/Api/FinderSoap.php:111
908
+ #, php-format
909
+ msgctxt "dhl location name"
910
+ msgid "%s %s"
911
  msgstr ""
912
 
913
+ #: woocommerce-germanized-dhl/src/Api/ImProductList.php:302
914
+ msgctxt "dhl"
915
+ msgid "PRIO"
 
916
  msgstr ""
917
 
918
+ #: woocommerce-germanized-dhl/src/Api/ImProductList.php:303
919
+ msgctxt "dhl"
920
+ msgid "Einschreiben (Einwurf)"
 
921
  msgstr ""
922
 
923
+ #: woocommerce-germanized-dhl/src/Api/ImProductList.php:304
924
+ msgctxt "dhl"
925
+ msgid "Einschreiben"
 
926
  msgstr ""
927
 
928
+ #: woocommerce-germanized-dhl/src/Api/ImProductList.php:305
929
+ msgctxt "dhl"
930
+ msgid "Einschreiben (Eigenhändig)"
 
 
 
931
  msgstr ""
932
 
933
+ #: woocommerce-germanized-dhl/src/Api/ImProductList.php:306
934
+ msgctxt "dhl"
935
+ msgid "Alterssichtprüfung 16"
 
936
  msgstr ""
937
 
938
+ #: woocommerce-germanized-dhl/src/Api/ImProductList.php:307
939
+ msgctxt "dhl"
940
+ msgid "Alterssichtprüfung 18"
 
 
 
941
  msgstr ""
942
 
943
+ #: woocommerce-germanized-dhl/src/Api/ImProductList.php:308
944
+ msgctxt "dhl"
945
+ msgid "Zusatzentgelt MBf"
 
 
 
946
  msgstr ""
947
 
948
+ #: woocommerce-germanized-dhl/src/Api/ImProductList.php:309
949
+ msgctxt "dhl"
950
+ msgid "Unterschrift"
 
 
 
951
  msgstr ""
952
 
953
+ #: woocommerce-germanized-dhl/src/Api/ImProductList.php:310
954
+ msgctxt "dhl"
955
+ msgid "Tracked"
 
956
  msgstr ""
957
 
958
+ #: woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:45
959
+ #: woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:51
960
+ #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:511
961
+ msgctxt "dhl"
962
+ msgid "Error while fetching label PDF"
963
  msgstr ""
964
 
965
+ #: woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:76
966
+ msgctxt "dhl"
967
+ msgid "Missing shipment"
 
968
  msgstr ""
969
 
970
+ #: woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:215
971
+ msgctxt "dhl"
972
+ msgid "Invalid API response"
 
973
  msgstr ""
974
 
975
+ #: woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:237
976
+ msgctxt "dhl"
977
+ msgid "Error while authenticating user."
 
978
  msgstr ""
979
 
980
+ #: woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:325
981
+ msgctxt "dhl"
982
+ msgid "Error during Warenpost International request."
 
983
  msgstr ""
984
 
985
+ #: woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php:347
986
+ #, php-format
987
+ msgctxt "dhl"
988
+ msgid "Error during request: %s"
 
 
989
  msgstr ""
990
 
991
+ #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:65
992
+ #: woocommerce-germanized-dhl/src/Api/Soap.php:54
993
+ #: woocommerce-germanized-dhl/src/Package.php:105
994
+ #, php-format
995
+ msgctxt "dhl"
996
+ msgid "To enable communication between your shop and DHL, the PHP <a href=\"%s\">SOAPClient</a> is required. Please contact your host and make sure that SOAPClient is <a href=\"%s\">installed</a>."
997
  msgstr ""
998
 
999
+ #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:70
1000
+ #, php-format
1001
+ msgctxt "dhl"
1002
+ msgid "Error while instantiating main Internetmarke API: %s"
1003
  msgstr ""
1004
 
1005
+ #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:74
1006
+ msgctxt "dhl"
1007
+ msgid "Internetmarke is disabled. Please enable Internetmarke."
 
1008
  msgstr ""
1009
 
1010
+ #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:89
1011
+ msgctxt "dhl"
1012
+ msgid "Wrong username or password"
 
1013
  msgstr ""
1014
 
1015
+ #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:257
1016
+ #, php-format
1017
+ msgctxt "dhl"
1018
+ msgid "until %s"
1019
  msgstr ""
1020
 
1021
+ #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:358
1022
+ #, php-format
1023
+ msgctxt "dhl"
1024
+ msgid "Length: %s"
1025
  msgstr ""
1026
 
1027
+ #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:362
1028
+ #, php-format
1029
+ msgctxt "dhl"
1030
+ msgid "Width: %s"
1031
  msgstr ""
1032
 
1033
+ #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:366
1034
+ #, php-format
1035
+ msgctxt "dhl"
1036
+ msgid "Height: %s"
1037
  msgstr ""
1038
 
1039
+ #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:370
1040
+ #, php-format
1041
+ msgctxt "dhl"
1042
+ msgid "Weight: %s"
1043
  msgstr ""
1044
 
1045
+ #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:375
1046
+ msgctxt "dhl"
1047
+ msgid "Total"
 
1048
  msgstr ""
1049
 
1050
+ #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:565
1051
+ #, php-format
1052
+ msgctxt "dhl"
1053
+ msgid "Could not refund post label: %s"
1054
  msgstr ""
1055
 
1056
+ #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:579
1057
+ msgctxt "dhl"
1058
+ msgid "Refund API could not be instantiated"
 
1059
  msgstr ""
1060
 
1061
+ #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:717
1062
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:313
1063
+ #: woocommerce-germanized-dhl/src/Api/ReturnRest.php:34
1064
+ #, php-format
1065
+ msgctxt "dhl"
1066
+ msgid "Could not fetch shipment %d."
1067
  msgstr ""
1068
 
1069
+ #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:740
1070
+ msgctxt "dhl"
1071
+ msgid "Error while generating shop order id."
 
1072
  msgstr ""
1073
 
1074
+ #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:776
1075
+ #, php-format
1076
+ msgctxt "dhl"
1077
+ msgid "Error while trying to purchase the stamp. Please manually <a href=\"%s\">refresh</a> your product database and try again."
1078
  msgstr ""
1079
 
1080
+ #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:814
1081
+ msgctxt "dhl"
1082
+ msgid "Error while downloading the PDF stamp."
 
1083
  msgstr ""
1084
 
1085
+ #: woocommerce-germanized-dhl/src/Api/Internetmarke.php:821
1086
+ msgctxt "dhl"
1087
+ msgid "Invalid stamp response."
 
1088
  msgstr ""
1089
 
1090
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:98
1091
+ msgctxt "dhl"
1092
+ msgid "Your DHL API credentials seem to be invalid. Please check your DHL settings."
 
1093
  msgstr ""
1094
 
1095
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:102
1096
+ msgctxt "dhl"
1097
+ msgid "Your products are missing data relevant for custom declarations. Please provide missing DHL fields (country of origin, HS code) in your product data > shipping tab."
 
1098
  msgstr ""
1099
 
1100
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:112
1101
+ #, php-format
1102
+ msgctxt "dhl"
1103
+ msgid "There was an error contacting the DHL API: %s."
1104
  msgstr ""
1105
 
1106
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:115
1107
+ msgctxt "dhl"
1108
+ msgid "An error ocurred while contacting the DHL API. Please consider enabling the sandbox mode."
 
1109
  msgstr ""
1110
 
1111
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:137
1112
+ msgctxt "dhl"
1113
+ msgid "There was an error generating the label. Please try again or consider switching to sandbox mode."
 
1114
  msgstr ""
1115
 
1116
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:217
1117
+ #: woocommerce-germanized-dhl/src/Api/ReturnRest.php:155
1118
+ msgctxt "dhl"
1119
+ msgid "Error while creating and uploading the label"
1120
  msgstr ""
1121
 
1122
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:261
1123
+ #, php-format
1124
+ msgctxt "dhl"
1125
+ msgid "Could not delete label - %s"
1126
  msgstr ""
1127
 
1128
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:292
1129
+ msgctxt "dhl"
1130
+ msgid "Could not create account number - no product number."
 
1131
  msgstr ""
1132
 
1133
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:503
1134
+ #, php-format
1135
+ msgctxt "dhl"
1136
+ msgid "Your shipper address is incomplete. Please validate your <a href=\"%s\">settings</a> and try again."
1137
  msgstr ""
1138
 
1139
+ #: woocommerce-germanized-dhl/src/Api/LabelSoap.php:607
1140
+ #, php-format
1141
+ msgctxt "dhl"
1142
+ msgid "Only %s shipment items can be processed, your shipment has %s items."
1143
  msgstr ""
1144
 
1145
+ #: woocommerce-germanized-dhl/src/Api/Paket.php:61
1146
+ #, php-format
1147
+ msgctxt "dhl"
1148
+ msgid "Label API not available: %s"
1149
  msgstr ""
1150
 
1151
+ #: woocommerce-germanized-dhl/src/Api/Paket.php:63
1152
+ msgctxt "dhl"
1153
+ msgid "Label API not available"
 
1154
  msgstr ""
1155
 
1156
+ #: woocommerce-germanized-dhl/src/Api/Paket.php:80
1157
+ msgctxt "dhl"
1158
+ msgid "Parcel Finder API not available"
 
1159
  msgstr ""
1160
 
1161
+ #: woocommerce-germanized-dhl/src/Api/Paket.php:96
1162
+ msgctxt "dhl"
1163
+ msgid "Return API not available"
 
1164
  msgstr ""
1165
 
1166
+ #: woocommerce-germanized-dhl/src/Api/Paket.php:112
1167
+ msgctxt "dhl"
1168
+ msgid "Parcel API not available"
 
1169
  msgstr ""
1170
 
1171
+ #: woocommerce-germanized-dhl/src/Api/Paket.php:249
1172
+ msgctxt "dhl"
1173
+ msgid "Mon"
 
1174
  msgstr ""
1175
 
1176
+ #: woocommerce-germanized-dhl/src/Api/Paket.php:250
1177
+ msgctxt "dhl"
1178
+ msgid "Tue"
 
1179
  msgstr ""
1180
 
1181
+ #: woocommerce-germanized-dhl/src/Api/Paket.php:251
1182
+ msgctxt "dhl"
1183
+ msgid "Wed"
 
1184
  msgstr ""
1185
 
1186
+ #: woocommerce-germanized-dhl/src/Api/Paket.php:252
1187
+ msgctxt "dhl"
1188
+ msgid "Thu"
 
1189
  msgstr ""
1190
 
1191
+ #: woocommerce-germanized-dhl/src/Api/Paket.php:253
1192
+ msgctxt "dhl"
1193
+ msgid "Fri"
 
1194
  msgstr ""
1195
 
1196
+ #: woocommerce-germanized-dhl/src/Api/Paket.php:254
1197
+ msgctxt "dhl"
1198
+ msgid "Sat"
 
1199
  msgstr ""
1200
 
1201
+ #: woocommerce-germanized-dhl/src/Api/Paket.php:255
1202
+ msgctxt "dhl"
1203
+ msgid "Sun"
 
1204
  msgstr ""
1205
 
1206
+ #: woocommerce-germanized-dhl/src/Api/ParcelRest.php:25
1207
+ msgctxt "dhl"
1208
+ msgid "Please provide the receiver postnumber."
 
1209
  msgstr ""
1210
 
1211
+ #: woocommerce-germanized-dhl/src/Api/ParcelRest.php:29
1212
+ msgctxt "dhl"
1213
+ msgid "Please set an account in the DHL shipping settings."
 
1214
  msgstr ""
1215
 
1216
+ #: woocommerce-germanized-dhl/src/Api/ParcelRest.php:33
1217
+ msgctxt "dhl"
1218
+ msgid "Please provide the shipment start date."
 
1219
  msgstr ""
1220
 
1221
+ #: woocommerce-germanized-dhl/src/Api/Rest.php:101
1222
+ msgctxt "dhl"
1223
+ msgid "400 - "
 
1224
  msgstr ""
1225
 
1226
+ #: woocommerce-germanized-dhl/src/Api/Rest.php:104
1227
+ msgctxt "dhl"
1228
+ msgid "401 - Unauthorized Access - Invalid token or Authentication Header parameter"
 
1229
  msgstr ""
1230
 
1231
+ #: woocommerce-germanized-dhl/src/Api/Rest.php:107
1232
+ msgctxt "dhl"
1233
+ msgid "408 - Request Timeout"
 
1234
  msgstr ""
1235
 
1236
+ #: woocommerce-germanized-dhl/src/Api/Rest.php:110
1237
+ msgctxt "dhl"
1238
+ msgid "429 - Too many requests in given amount of time"
 
 
 
1239
  msgstr ""
1240
 
1241
+ #: woocommerce-germanized-dhl/src/Api/Rest.php:113
1242
+ msgctxt "dhl"
1243
+ msgid "503 - Service Unavailable"
1244
+ msgstr ""
 
 
 
1245
 
1246
+ #: woocommerce-germanized-dhl/src/Api/Rest.php:117
1247
+ msgctxt "dhl"
1248
+ msgid "GET error or timeout occured. Please try again later."
1249
+ msgstr ""
 
 
 
1250
 
1251
+ #: woocommerce-germanized-dhl/src/Api/Rest.php:170
1252
+ msgctxt "dhl"
1253
+ msgid "POST error or timeout occured. Please try again later."
 
1254
  msgstr ""
1255
 
1256
+ #: woocommerce-germanized-dhl/src/Label/DHL.php:85
1257
+ #, php-format
1258
+ msgctxt "dhl full name"
1259
+ msgid "%1$s"
1260
+ msgstr ""
 
 
1261
 
1262
+ #: woocommerce-germanized-dhl/src/Label/Label.php:143
1263
+ #: woocommerce-germanized-dhl/src/Order.php:306
1264
+ #, php-format
1265
+ msgctxt "dhl time-span"
1266
+ msgid "%s-%s"
1267
  msgstr ""
1268
 
1269
+ #: woocommerce-germanized-dhl/src/Legacy/DataStores/Label.php:323
1270
+ msgctxt "dhl"
1271
+ msgid "Invalid label."
 
1272
  msgstr ""
1273
 
1274
+ #: woocommerce-germanized-dhl/src/Package.php:1004
1275
+ msgctxt "dhl"
1276
+ msgid "Germany"
 
1277
  msgstr ""
1278
 
1279
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:105
1280
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:903
1281
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:932
1282
+ msgctxt "dhl"
1283
+ msgid "Address Type"
1284
  msgstr ""
1285
 
1286
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:108
1287
+ msgctxt "dhl"
1288
+ msgid "Select whether delivery to DHL locations should be enabled."
 
1289
  msgstr ""
1290
 
1291
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:113
1292
+ msgctxt "dhl"
1293
+ msgid "Postnumber"
 
 
 
1294
  msgstr ""
1295
 
1296
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:115
1297
+ msgctxt "dhl"
1298
+ msgid "In case delivery to packstation is selected please fill in the corresponding DHL post number."
 
1299
  msgstr ""
1300
 
1301
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:201
1302
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:596
1303
+ msgctxt "dhl"
1304
+ msgid "Invalid address type."
1305
  msgstr ""
1306
 
1307
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:669
1308
+ #, php-format
1309
+ msgctxt "dhl"
1310
+ msgid "Please provide a valid number within the %s field."
 
 
1311
  msgstr ""
1312
 
1313
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:676
1314
+ msgctxt "dhl"
1315
+ msgid "Sorry, but delivery to packstation is not available."
 
1316
  msgstr ""
1317
 
1318
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:681
1319
+ msgctxt "dhl"
1320
+ msgid "Sorry, but delivery to parcel shops is not available."
 
1321
  msgstr ""
1322
 
1323
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:685
1324
+ msgctxt "dhl"
1325
+ msgid "Sorry, but delivery to post offices is not available."
 
1326
  msgstr ""
1327
 
1328
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:692
1329
+ #, php-format
1330
+ msgctxt "dhl"
1331
+ msgid "Please indicate shipment to %s by one of the following values: %s."
1332
  msgstr ""
1333
 
1334
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:700
1335
+ msgctxt "dhl"
1336
+ msgid "Your DHL customer number (Post number) is not valid. Please check your number."
 
 
1337
  msgstr ""
1338
 
1339
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:703
1340
+ msgctxt "dhl"
1341
+ msgid "Your DHL customer number (Post number) is needed to ship to a packstation."
 
1342
  msgstr ""
1343
 
1344
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:752
1345
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:894
1346
+ msgctxt "dhl"
1347
+ msgid "Branch"
1348
  msgstr ""
1349
 
1350
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:753
1351
+ msgctxt "dhl"
1352
+ msgid "Postnumber "
 
1353
  msgstr ""
1354
 
1355
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:869
1356
+ #, php-format
1357
+ msgctxt "dhl"
1358
+ msgid "e.g. %s 456"
1359
  msgstr ""
1360
 
1361
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:894
1362
+ msgctxt "dhl"
1363
+ msgid "Branches"
 
1364
  msgstr ""
1365
 
1366
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:910
1367
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:943
1368
+ msgctxt "dhl"
1369
+ msgid "DHL customer number (Post number)"
1370
  msgstr ""
1371
 
1372
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:920
1373
+ msgctxt "dhl"
1374
+ msgid "Regular Address"
 
1375
  msgstr ""
1376
 
1377
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:947
1378
+ msgctxt "dhl"
1379
+ msgid "Not yet a DHL customer?"
 
1380
  msgstr ""
1381
 
1382
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:947
1383
+ msgctxt "dhl"
1384
+ msgid "Register now"
 
1385
  msgstr ""
1386
 
1387
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:996
1388
+ #, php-format
1389
+ msgctxt "dhl"
1390
+ msgid "Search %s"
1391
  msgstr ""
1392
 
1393
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:1101
1394
+ msgctxt "dhl"
1395
+ msgid "No DHL locations found"
 
1396
  msgstr ""
1397
 
1398
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:1116
1399
+ #, php-format
1400
+ msgctxt "dhl"
1401
+ msgid "There was an error while communicating with DHL. Please manually find a %s or %s."
1402
+ msgstr ""
1403
+
1404
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:1116
1405
+ msgctxt "dhl"
1406
+ msgid "DHL location"
1407
+ msgstr ""
1408
+
1409
+ #: woocommerce-germanized-dhl/src/ParcelLocator.php:1116
1410
+ msgctxt "dhl"
1411
+ msgid "retry"
1412
+ msgstr ""
1413
+
1414
+ #: woocommerce-germanized-dhl/src/ParcelServices.php:29
1415
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:227
1416
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1139
1417
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1670
1418
+ msgctxt "dhl"
1419
+ msgid "Preferred Day"
1420
+ msgstr ""
1421
+
1422
+ #: woocommerce-germanized-dhl/src/ParcelServices.php:36
1423
+ msgctxt "dhl"
1424
+ msgid "Preferred Time"
1425
+ msgstr ""
1426
+
1427
+ #: woocommerce-germanized-dhl/src/ParcelServices.php:43
1428
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:237
1429
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1161
1430
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1698
1431
+ msgctxt "dhl"
1432
+ msgid "Preferred Location"
1433
+ msgstr ""
1434
+
1435
+ #: woocommerce-germanized-dhl/src/ParcelServices.php:48
1436
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:249
1437
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1170
1438
+ msgctxt "dhl"
1439
+ msgid "Preferred Neighbor"
1440
+ msgstr ""
1441
+
1442
+ #: woocommerce-germanized-dhl/src/ParcelServices.php:133
1443
+ msgctxt "dhl"
1444
+ msgid "DHL Preferred Day"
1445
+ msgstr ""
1446
+
1447
+ #: woocommerce-germanized-dhl/src/ParcelServices.php:276
1448
+ msgctxt "dhl"
1449
+ msgid "Sorry, but the preferred day you have chosen is no longer available."
1450
+ msgstr ""
1451
+
1452
+ #: woocommerce-germanized-dhl/src/ParcelServices.php:299
1453
+ msgctxt "dhl"
1454
+ msgid "Please choose a preferred location."
1455
+ msgstr ""
1456
+
1457
+ #: woocommerce-germanized-dhl/src/ParcelServices.php:311
1458
+ msgctxt "dhl"
1459
+ msgid "Please choose name and address of your preferred neighbor."
1460
+ msgstr ""
1461
+
1462
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:31
1463
+ msgctxt "dhl"
1464
+ msgid "Complete DHL integration supporting labels, preferred services and packstation delivery."
1465
+ msgstr ""
1466
+
1467
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:118
1468
+ msgctxt "dhl"
1469
+ msgid "Parcel Pickup"
1470
+ msgstr ""
1471
+
1472
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:119
1473
+ msgctxt "dhl"
1474
+ msgid "Preferred Services"
1475
+ msgstr ""
1476
+
1477
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:135
1478
+ msgctxt "dhl"
1479
+ msgid "Receiver"
1480
+ msgstr ""
1481
+
1482
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:159
1483
+ msgctxt "dhl"
1484
+ msgid "COD Amount"
1485
+ msgstr ""
1486
+
1487
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:172
1488
+ msgctxt "dhl"
1489
+ msgid "Duties"
1490
+ msgstr ""
1491
+
1492
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:184
1493
+ msgctxt "dhl"
1494
+ msgid "Valid address only"
1495
+ msgstr ""
1496
+
1497
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:196
1498
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1400
1499
+ msgctxt "dhl"
1500
+ msgid "GoGreen"
1501
+ msgstr ""
1502
+
1503
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:205
1504
+ msgctxt "dhl"
1505
+ msgid "Additional insurance"
1506
+ msgstr ""
1507
+
1508
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:261
1509
+ msgctxt "dhl"
1510
+ msgid "Create inlay return label"
1511
+ msgstr ""
1512
+
1513
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:271
1514
+ msgctxt "dhl"
1515
+ msgid "Name"
1516
+ msgstr ""
1517
+
1518
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:280
1519
+ msgctxt "dhl"
1520
+ msgid "Company"
1521
+ msgstr ""
1522
+
1523
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:293
1524
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:586
1525
+ msgctxt "dhl"
1526
+ msgid "Street"
1527
+ msgstr ""
1528
+
1529
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:302
1530
+ msgctxt "dhl"
1531
+ msgid "Street No"
1532
+ msgstr ""
1533
+
1534
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:315
1535
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:587
1536
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:27
1537
+ msgctxt "dhl"
1538
+ msgid "Postcode"
1539
+ msgstr ""
1540
+
1541
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:324
1542
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:588
1543
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:30
1544
+ msgctxt "dhl"
1545
+ msgid "City"
1546
+ msgstr ""
1547
+
1548
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:337
1549
+ msgctxt "dhl"
1550
+ msgid "Phone"
1551
+ msgstr ""
1552
+
1553
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:346
1554
+ msgctxt "dhl"
1555
+ msgid "Email"
1556
+ msgstr ""
1557
+
1558
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:362
1559
+ msgctxt "dhl"
1560
+ msgid "Age check"
1561
+ msgstr ""
1562
+
1563
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:375
1564
+ msgctxt "dhl"
1565
+ msgid "Retail outlet routing"
1566
+ msgstr ""
1567
+
1568
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:389
1569
+ msgctxt "dhl"
1570
+ msgid "No neighbor"
1571
+ msgstr ""
1572
+
1573
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:402
1574
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1432
1575
+ msgctxt "dhl"
1576
+ msgid "Named person only"
1577
+ msgstr ""
1578
+
1579
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:411
1580
+ msgctxt "dhl"
1581
+ msgid "Bulky goods"
1582
+ msgstr ""
1583
+
1584
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:420
1585
+ msgctxt "dhl"
1586
+ msgid "Identity check"
1587
+ msgstr ""
1588
+
1589
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:434
1590
+ msgctxt "dhl"
1591
+ msgid "Date of Birth"
1592
+ msgstr ""
1593
+
1594
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:445
1595
+ msgctxt "dhl"
1596
+ msgid "Minimum age"
1597
+ msgstr ""
1598
+
1599
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:461
1600
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1482
1601
+ msgctxt "dhl"
1602
+ msgid "Premium"
1603
+ msgstr ""
1604
+
1605
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:521
1606
+ msgctxt "dhl"
1607
+ msgid "Receiver is missing or does not exist."
1608
+ msgstr ""
1609
+
1610
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:593
1611
+ #, php-format
1612
+ msgctxt "dhl"
1613
+ msgid "%s of the return address is a mandatory field."
1614
+ msgstr ""
1615
+
1616
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:598
1617
+ msgctxt "dhl"
1618
+ msgid "Please either add a return company or name."
1619
+ msgstr ""
1620
+
1621
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:618
1622
+ msgctxt "dhl"
1623
+ msgid "Error while parsing preferred day."
1624
+ msgstr ""
1625
+
1626
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:645
1627
+ msgctxt "dhl"
1628
+ msgid "The visual min age check is invalid."
1629
+ msgstr ""
1630
+
1631
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:669
1632
+ msgctxt "dhl"
1633
+ msgid "The ident min age check is invalid."
1634
+ msgstr ""
1635
+
1636
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:674
1637
+ msgctxt "dhl"
1638
+ msgid "There was an error parsing the date of birth for the identity check."
1639
+ msgstr ""
1640
+
1641
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:679
1642
+ msgctxt "dhl"
1643
+ msgid "Either a minimum age or a date of birth must be added to the ident check."
1644
+ msgstr ""
1645
+
1646
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:696
1647
+ #, php-format
1648
+ msgctxt "dhl"
1649
+ msgid "%s duties element does not exist."
1650
+ msgstr ""
1651
+
1652
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:953
1653
+ msgctxt "dhl"
1654
+ msgid "Customer Number (EKP)"
1655
+ msgstr ""
1656
+
1657
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:955
1658
+ #, php-format
1659
+ msgctxt "dhl"
1660
+ msgid "Your 10 digits DHL customer number, also called \"EKP\". Find your %s in the DHL business portal."
1661
+ msgstr ""
1662
+
1663
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:955
1664
+ msgctxt "dhl"
1665
+ msgid "customer number"
1666
+ msgstr ""
1667
+
1668
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:964
1669
+ msgctxt "dhl"
1670
+ msgid "API"
1671
+ msgstr ""
1672
+
1673
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:967
1674
+ msgctxt "dhl"
1675
+ msgid "Enable Sandbox"
1676
+ msgstr ""
1677
+
1678
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:968
1679
+ msgctxt "dhl"
1680
+ msgid "Activate Sandbox mode for testing purposes."
1681
  msgstr ""
1682
 
1683
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:975
1684
+ msgctxt "dhl"
1685
+ msgid "Live Username"
 
1686
  msgstr ""
1687
 
1688
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:977
1689
+ #, php-format
1690
+ msgctxt "dhl"
1691
+ msgid "Your username (<strong>not</strong> your email address) to the DHL business customer portal. Please make sure to test your access data in advance %s."
1692
  msgstr ""
1693
 
1694
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:977
1695
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:987
1696
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:996
1697
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1005
1698
+ msgctxt "dhl"
1699
+ msgid "here"
1700
  msgstr ""
1701
 
1702
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:985
1703
+ msgctxt "dhl"
1704
+ msgid "Live Password"
 
1705
  msgstr ""
1706
 
1707
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:987
1708
+ #, php-format
1709
+ msgctxt "dhl"
1710
+ msgid "Your password to the DHL business customer portal. Please note the new assignment of the password to 3 (Standard User) or 12 (System User) months and make sure to test your access data in advance %s."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1711
  msgstr ""
1712
 
1713
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:994
1714
+ msgctxt "dhl"
1715
+ msgid "Sandbox Username"
 
1716
  msgstr ""
1717
 
1718
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:996
1719
+ #, php-format
1720
+ msgctxt "dhl"
1721
+ msgid "Your username (<strong>not</strong> your email address) to the DHL developer portal. Please make sure to test your access data in advance %s."
1722
  msgstr ""
1723
 
1724
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1003
1725
+ msgctxt "dhl"
1726
+ msgid "Sandbox Password"
 
1727
  msgstr ""
1728
 
1729
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1005
1730
+ #, php-format
1731
+ msgctxt "dhl"
1732
+ msgid "Your password for the DHL developer portal. Please test your access data in advance %s."
1733
  msgstr ""
1734
 
1735
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1013
1736
+ msgctxt "dhl"
1737
+ msgid "Products and Participation Numbers"
 
1738
  msgstr ""
1739
 
1740
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1030
1741
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1364
1742
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1604
1743
+ msgctxt "dhl"
1744
+ msgid "Inlay Returns"
1745
  msgstr ""
1746
 
1747
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1042
1748
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:142
1749
+ msgctxt "dhl"
1750
+ msgid "Tracking"
1751
  msgstr ""
1752
 
1753
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1056
1754
+ msgctxt "dhl"
1755
+ msgid "Enable delivery to Packstation."
 
1756
  msgstr ""
1757
 
1758
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1057
1759
+ msgctxt "dhl"
1760
+ msgid "Let customers choose a Packstation as delivery address."
 
1761
  msgstr ""
1762
 
1763
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1065
1764
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:50
1765
+ msgctxt "dhl"
1766
+ msgid "Postoffice"
1767
  msgstr ""
1768
 
1769
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1066
1770
+ msgctxt "dhl"
1771
+ msgid "Enable delivery to Post Offices."
 
1772
  msgstr ""
1773
 
1774
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1067
1775
+ msgctxt "dhl"
1776
+ msgid "Let customers choose a Post Office as delivery address."
 
1777
  msgstr ""
1778
 
1779
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1075
1780
+ msgctxt "dhl"
1781
+ msgid "Parcel Shop"
 
1782
  msgstr ""
1783
 
1784
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1076
1785
+ msgctxt "dhl"
1786
+ msgid "Enable delivery to Parcel Shops."
 
1787
  msgstr ""
1788
 
1789
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1077
1790
+ msgctxt "dhl"
1791
+ msgid "Let customers choose a Parcel Shop as delivery address."
 
1792
  msgstr ""
1793
 
1794
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1085
1795
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1731
1796
+ msgctxt "dhl"
1797
+ msgid "Map"
 
1798
  msgstr ""
1799
 
1800
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1086
1801
+ msgctxt "dhl"
1802
+ msgid "Let customers find a DHL location on a map."
 
1803
  msgstr ""
1804
 
1805
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1086
1806
+ msgctxt "dhl"
1807
+ msgid "Enable this option to let your customers choose a pickup option from a map within the checkout. If this option is disabled a link to the DHL website is placed instead."
 
 
1808
  msgstr ""
1809
 
1810
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1095
1811
+ msgctxt "dhl"
1812
+ msgid "Google Maps Key"
 
 
1813
  msgstr ""
1814
 
1815
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1100
1816
+ #, php-format
1817
+ msgctxt "dhl"
1818
+ msgid "To integrate a map within your checkout you'll need a valid API key for Google Maps. You may %s."
 
1819
  msgstr ""
1820
 
1821
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1100
1822
+ msgctxt "dhl"
1823
+ msgid "retrieve a new one"
 
1824
  msgstr ""
1825
 
1826
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1106
1827
+ msgctxt "dhl"
1828
+ msgid "Limit results"
 
1829
  msgstr ""
1830
 
1831
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1111
1832
+ msgctxt "dhl"
1833
+ msgid "Limit the number of DHL locations shown on the map"
 
1834
  msgstr ""
1835
 
1836
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1140
1837
+ msgctxt "dhl"
1838
+ msgid "Enable preferred day delivery."
 
1839
  msgstr ""
1840
 
1841
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1140
1842
+ msgctxt "dhl"
1843
+ msgid "Enabling this option will display options for the user to select their preferred day of delivery during the checkout."
 
1844
  msgstr ""
1845
 
1846
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1148
1847
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1684
1848
+ msgctxt "dhl"
1849
+ msgid "Fee"
1850
  msgstr ""
1851
 
1852
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1150
1853
+ msgctxt "dhl"
1854
+ msgid "Insert gross value as surcharge for preferred day delivery. Insert 0 to offer service for free."
 
1855
  msgstr ""
1856
 
1857
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1162
1858
+ msgctxt "dhl"
1859
+ msgid "Enable preferred location delivery."
 
1860
  msgstr ""
1861
 
1862
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1162
1863
+ msgctxt "dhl"
1864
+ msgid "Enabling this option will display options for the user to select their preferred delivery location during the checkout."
 
1865
  msgstr ""
1866
 
1867
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1171
1868
+ msgctxt "dhl"
1869
+ msgid "Enable preferred neighbor delivery."
 
1870
  msgstr ""
1871
 
1872
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1171
1873
+ msgctxt "dhl"
1874
+ msgid "Enabling this option will display options for the user to deliver to their preferred neighbor during the checkout."
 
1875
  msgstr ""
1876
 
1877
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1179
1878
+ msgctxt "dhl"
1879
+ msgid "Cut-off time"
 
1880
  msgstr ""
1881
 
1882
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1184
1883
+ msgctxt "dhl"
1884
+ msgid "The cut-off time is the latest possible order time up to which the minimum preferred day (day of order + 2 working days) can be guaranteed. As soon as the time is exceeded, the earliest preferred day displayed in the frontend will be shifted to one day later (day of order + 3 working days)."
 
1885
  msgstr ""
1886
 
1887
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1190
1888
+ msgctxt "dhl"
1889
+ msgid "Preparation days"
 
1890
  msgstr ""
1891
 
1892
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1195
1893
+ msgctxt "dhl"
1894
+ msgid "If you need more time to prepare your shipments you might want to add a static preparation time to the possible starting date for preferred day delivery."
 
1895
  msgstr ""
1896
 
1897
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1202
1898
+ msgctxt "dhl"
1899
+ msgid "Exclude days of transfer"
 
1900
  msgstr ""
1901
 
1902
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1204
1903
+ msgctxt "dhl"
1904
+ msgid "Exclude days from transferring shipments to DHL."
 
1905
  msgstr ""
1906
 
1907
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1270
1908
+ msgctxt "dhl"
1909
+ msgid "Exclude gateways"
 
1910
  msgstr ""
1911
 
1912
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1272
1913
+ msgctxt "dhl"
1914
+ msgid "Select payment gateways to be excluded from showing preferred services."
 
1915
  msgstr ""
1916
 
1917
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1296
1918
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:178
1919
+ msgctxt "dhl"
1920
+ msgid "Products"
1921
  msgstr ""
1922
 
1923
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1299
1924
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:198
1925
+ msgctxt "dhl"
1926
+ msgid "Domestic Default Service"
1927
  msgstr ""
1928
 
1929
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1304
1930
+ msgctxt "dhl"
1931
+ msgid "Please select your default DHL shipping service for domestic shipments that you want to offer to your customers (you can always change this within each individual shipment afterwards)."
 
1932
  msgstr ""
1933
 
1934
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1310
1935
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:209
1936
+ msgctxt "dhl"
1937
+ msgid "EU Default Service"
 
 
1938
  msgstr ""
1939
 
1940
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1315
1941
+ msgctxt "dhl"
1942
+ msgid "Please select your default DHL shipping service for EU shipments that you want to offer to your customers (you can always change this within each individual shipment afterwards)."
 
1943
  msgstr ""
1944
 
1945
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1321
1946
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:220
1947
+ msgctxt "dhl"
1948
+ msgid "Int. Default Service"
1949
  msgstr ""
1950
 
1951
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1326
1952
+ msgctxt "dhl"
1953
+ msgid "Please select your default DHL shipping service for cross-border shipments that you want to offer to your customers (you can always change this within each individual shipment afterwards)."
 
1954
  msgstr ""
1955
 
1956
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1332
1957
+ msgctxt "dhl"
1958
+ msgid "Default Duty"
 
1959
  msgstr ""
1960
 
1961
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1337
1962
+ msgctxt "dhl"
1963
+ msgid "Please select a default duty type."
 
1964
  msgstr ""
1965
 
1966
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1344
1967
+ msgctxt "dhl"
1968
+ msgid "Codeable"
 
 
 
1969
  msgstr ""
1970
 
1971
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1345
1972
+ msgctxt "dhl"
1973
+ msgid "Generate label only if address can be automatically retrieved DHL."
 
1974
  msgstr ""
1975
 
1976
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1351
1977
+ msgctxt "dhl"
1978
+ msgid "Choose this option if you want to make sure that by default labels are only generated for codeable addresses."
 
1979
  msgstr ""
1980
 
1981
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1355
1982
+ msgctxt "dhl"
1983
+ msgid "Force email"
 
1984
  msgstr ""
1985
 
1986
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1356
1987
+ msgctxt "dhl"
1988
+ msgid "Force transferring customer email to DHL."
 
1989
  msgstr ""
1990
 
1991
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1356
1992
+ msgctxt "dhl"
1993
+ msgid "By default the customer email address is only transferred in case explicit consent has been given via a checkbox during checkout. You may force to transfer the customer email address during label creation to make sure your customers receive email notifications by DHL. Make sure to check your privacy policy and seek advice by a lawyer in case of doubt."
 
1994
  msgstr ""
1995
 
1996
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1365
1997
+ msgctxt "dhl"
1998
+ msgid "Additionally create inlay return labels for shipments that support returns."
 
1999
  msgstr ""
2000
 
2001
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1378
2002
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1381
2003
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1618
2004
+ msgctxt "dhl"
2005
+ msgid "Retoure"
2006
  msgstr ""
2007
 
2008
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1378
2009
+ #, php-format
2010
+ msgctxt "dhl"
2011
+ msgid "Adjust handling of return shipments through the DHL Retoure API. Make sure that your %s contains DHL Retoure Online."
2012
  msgstr ""
2013
 
2014
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1378
2015
+ msgctxt "dhl"
2016
+ msgid "contract"
 
2017
  msgstr ""
2018
 
2019
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1382
2020
+ msgctxt "dhl"
2021
+ msgid "Enable creating labels for return shipments."
 
2022
  msgstr ""
2023
+
2024
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1382
2025
+ msgctxt "dhl"
2026
+ msgid "By enabling this option you might generate retoure labels for return shipments and send them to your customer via email."
 
2027
  msgstr ""
2028
 
2029
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1398
2030
+ msgctxt "dhl"
2031
+ msgid "Default Services"
 
2032
  msgstr ""
2033
 
2034
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1398
2035
+ #, php-format
2036
+ msgctxt "dhl"
2037
+ msgid "Adjust services to be added to your labels by default. Find out more about these <a href=\"%s\" target=\"_blank\">services</a>."
2038
  msgstr ""
2039
 
2040
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1401
2041
+ msgctxt "dhl"
2042
+ msgid "Enable the GoGreen Service by default."
 
2043
  msgstr ""
2044
 
2045
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1408
2046
+ msgctxt "dhl"
2047
+ msgid "Additional Insurance"
 
 
 
2048
  msgstr ""
2049
 
2050
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1409
2051
+ msgctxt "dhl"
2052
+ msgid "Add an additional insurance to labels."
 
2053
  msgstr ""
2054
 
2055
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1416
2056
+ msgctxt "dhl"
2057
+ msgid "Retail Outlet Routing"
 
2058
  msgstr ""
2059
 
2060
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1417
2061
+ msgctxt "dhl"
2062
+ msgid "Send undeliverable items to nearest retail outlet instead of immediate return."
 
2063
  msgstr ""
2064
 
2065
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1424
2066
+ msgctxt "dhl"
2067
+ msgid "No Neighbor"
 
2068
  msgstr ""
2069
 
2070
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1425
2071
+ msgctxt "dhl"
2072
+ msgid "Do not deliver to neighbors."
 
2073
  msgstr ""
2074
 
2075
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1433
2076
+ msgctxt "dhl"
2077
+ msgid "Do only delivery to named person."
 
2078
  msgstr ""
2079
 
2080
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1440
2081
+ msgctxt "dhl"
2082
+ msgid "Bulky Goods"
 
2083
  msgstr ""
2084
 
2085
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1441
2086
+ msgctxt "dhl"
2087
+ msgid "Deliver as bulky goods."
 
2088
  msgstr ""
2089
 
2090
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1448
2091
+ msgctxt "dhl"
2092
+ msgid "Minimum age (Visual check)"
 
2093
  msgstr ""
2094
 
2095
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1454
2096
+ msgctxt "dhl"
2097
+ msgid "Choose this option if you want to let DHL check your customer's age."
 
2098
  msgstr ""
2099
 
2100
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1457
2101
+ msgctxt "dhl"
2102
+ msgid "Sync (Visual Check)"
 
2103
  msgstr ""
2104
 
2105
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1458
2106
+ msgctxt "dhl"
2107
+ msgid "Visually verify age if shipment contains applicable items."
 
2108
  msgstr ""
2109
 
2110
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1458
2111
+ #, php-format
2112
+ msgctxt "dhl"
2113
+ msgid "Germanized offers an %s to be enabled for certain products and/or product categories. By checking this option labels for shipments with applicable items will automatically have the visual age check service enabled."
2114
  msgstr ""
2115
 
2116
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1458
2117
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1475
2118
+ msgctxt "dhl"
2119
+ msgid "age verification checkbox"
2120
  msgstr ""
2121
 
2122
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1465
2123
+ msgctxt "dhl"
2124
+ msgid "Minimum age (Ident check)"
 
2125
  msgstr ""
2126
 
2127
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1471
2128
+ msgctxt "dhl"
2129
+ msgid "Choose this option if you want to let DHL check your customer's identity and age."
 
2130
  msgstr ""
2131
 
2132
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1474
2133
+ msgctxt "dhl"
2134
+ msgid "Sync (Ident Check)"
 
2135
  msgstr ""
2136
 
2137
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1475
2138
+ msgctxt "dhl"
2139
+ msgid "Verify identity and age if shipment contains applicable items."
 
2140
  msgstr ""
2141
 
2142
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1475
2143
+ #, php-format
2144
+ msgctxt "dhl"
2145
+ msgid "Germanized offers an %s to be enabled for certain products and/or product categories. By checking this option labels for shipments with applicable items will automatically have the identity check service enabled."
2146
  msgstr ""
2147
 
2148
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1483
2149
+ msgctxt "dhl"
2150
+ msgid "Premium delivery for international shipments."
 
2151
  msgstr ""
2152
 
2153
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1491
2154
+ msgctxt "dhl"
2155
+ msgid "Bank Account"
 
2156
  msgstr ""
2157
 
2158
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1491
2159
+ msgctxt "dhl"
2160
+ msgid "Enter your bank details needed for services that use COD."
 
2161
  msgstr ""
2162
 
2163
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1494
2164
+ msgctxt "dhl"
2165
+ msgid "Holder"
 
2166
  msgstr ""
2167
 
2168
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1502
2169
+ msgctxt "dhl"
2170
+ msgid "Bank Name"
 
2171
  msgstr ""
2172
 
2173
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1510
2174
+ msgctxt "dhl"
2175
+ msgid "IBAN"
 
2176
  msgstr ""
2177
 
2178
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1518
2179
+ msgctxt "dhl"
2180
+ msgid "BIC"
 
2181
  msgstr ""
2182
 
2183
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1526
2184
+ msgctxt "dhl"
2185
+ msgid "Payment Reference"
 
2186
  msgstr ""
2187
 
2188
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1531
2189
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1541
2190
+ #, php-format
2191
+ msgctxt "dhl"
2192
+ msgid "Use these placeholders to add info to the payment reference: %s. This text is limited to 35 characters."
2193
  msgstr ""
2194
 
2195
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1536
2196
+ msgctxt "dhl"
2197
+ msgid "Payment Reference 2"
 
 
 
 
2198
  msgstr ""
2199
 
2200
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1571
2201
+ msgctxt "dhl"
2202
+ msgid "Customer Number"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2203
  msgstr ""
2204
 
2205
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1572
2206
+ msgctxt "dhl"
2207
+ msgid "Insert your DHL business customer number (EKP) here. If you are not yet a business customer you might want to create a new account first."
 
 
 
2208
  msgstr ""
2209
 
2210
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1585
2211
+ msgctxt "dhl"
2212
+ msgid "API Access"
 
 
 
2213
  msgstr ""
2214
 
2215
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1586
2216
+ msgctxt "dhl"
2217
+ msgid "To create labels and embed DHL services, our software needs access to the API. You will need to fill out the username and password fields accordingly."
 
2218
  msgstr ""
2219
 
2220
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1605
2221
+ msgctxt "dhl"
2222
+ msgid "If you want to provide your customers with inlay return labels for your shipments you might enable this feature by default here."
 
 
 
2223
  msgstr ""
2224
 
2225
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1619
2226
+ msgctxt "dhl"
2227
+ msgid "If you want to create DHL labels to returns you should activate this feature. Make sure that you have DHL Online Retoure activated in your contract."
 
 
 
2228
  msgstr ""
2229
 
2230
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1632
2231
+ msgctxt "dhl"
2232
+ msgid "Age verification"
 
 
 
2233
  msgstr ""
2234
 
2235
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1633
2236
+ msgctxt "dhl"
2237
+ msgid "Use this feature to sync the Germanized age verification checkbox with the DHL visual minimum age verification service. As soon as applicable products are contained within the shipment, the service will be booked by default."
 
 
 
 
2238
  msgstr ""
2239
 
2240
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1651
2241
+ msgctxt "dhl"
2242
+ msgid "Automation"
 
 
 
 
2243
  msgstr ""
2244
 
2245
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1652
2246
+ msgctxt "dhl"
2247
+ msgid "You might want to save some time and let Germanized generate labels automatically as soon as a shipment switches to a certain status."
 
 
 
2248
  msgstr ""
2249
 
2250
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1671
2251
+ msgctxt "dhl"
2252
+ msgid "Let your customers choose a preferred day (if the service is available at the customer's location) of delivery within your checkout."
 
 
 
 
 
2253
  msgstr ""
2254
 
2255
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1685
2256
+ msgctxt "dhl"
2257
+ msgid "Optionally charge your customers an additional fee for preferred services like preferred day."
 
 
 
 
 
2258
  msgstr ""
2259
 
2260
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1699
2261
+ msgctxt "dhl"
2262
+ msgid "Allow your customers to send their parcels to a preferred location e.g. a neighbor. This service is free of charge for DHL shipments."
 
 
 
 
 
2263
  msgstr ""
2264
 
2265
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1718
2266
+ msgctxt "dhl"
2267
+ msgid "Allow your customers to choose packstation (and/or other DHL location types as configured below) as shipping address."
 
2268
  msgstr ""
2269
 
2270
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DHL.php:1732
2271
+ msgctxt "dhl"
2272
+ msgid "This option adds a map overlay view to let your customers choose a DHL location from a map nearby. You'll need a valid Google Maps API key to enable the map view."
 
 
 
2273
  msgstr ""
2274
 
2275
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:79
2276
+ msgctxt "dhl"
2277
+ msgid "Deutsche Post"
 
 
 
 
 
2278
  msgstr ""
2279
 
2280
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:87
2281
+ msgctxt "dhl"
2282
+ msgid "Integration for products of the Deutsche Post through Internetmarke."
 
 
2283
  msgstr ""
2284
 
2285
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:118
2286
+ msgctxt "dhl"
2287
+ msgid "Username"
 
2288
  msgstr ""
2289
 
2290
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:120
2291
+ #, php-format
2292
+ msgctxt "dhl"
2293
+ msgid "Your credentials to the <a href=\"%s\" target=\"_blank\">Portokasse</a>. Please test your credentials before connecting."
2294
  msgstr ""
2295
 
2296
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:128
2297
+ msgctxt "dhl"
2298
+ msgid "Password"
 
2299
  msgstr ""
2300
 
2301
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:162
2302
+ msgctxt "dhl"
2303
+ msgid "Portokasse"
 
2304
  msgstr ""
2305
 
2306
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:165
2307
+ msgctxt "dhl"
2308
+ msgid "Balance"
 
2309
  msgstr ""
2310
 
2311
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:171
2312
+ msgctxt "dhl"
2313
+ msgid "Charge (€)"
 
2314
  msgstr ""
2315
 
2316
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:181
2317
+ msgctxt "dhl"
2318
+ msgid "Available Products"
 
2319
  msgstr ""
2320
 
2321
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:184
2322
+ #, php-format
2323
+ msgctxt "dhl"
2324
+ msgid "Choose the products you want to be available for your shipments from the list above. Manually <a href=\"%s\">refresh</a> the product list to make sure it is up-to-date."
2325
  msgstr ""
2326
 
2327
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:203
2328
+ msgctxt "dhl"
2329
+ msgid "Please select your default shipping service for domestic shipments that you want to offer to your customers (you can always change this within each individual shipment afterwards)."
 
2330
  msgstr ""
2331
 
2332
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:214
2333
+ msgctxt "dhl"
2334
+ msgid "Please select your default shipping service for EU shipments that you want to offer to your customers."
 
2335
  msgstr ""
2336
 
2337
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:225
2338
+ msgctxt "dhl"
2339
+ msgid "Please select your default shipping service for cross-border shipments that you want to offer to your customers."
 
2340
  msgstr ""
2341
 
2342
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:235
2343
+ msgctxt "dhl"
2344
+ msgid "Printing"
 
 
2345
  msgstr ""
2346
 
2347
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:238
2348
+ msgctxt "dhl"
2349
+ msgid "Default Format"
 
2350
  msgstr ""
2351
 
2352
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:241
2353
+ #, php-format
2354
+ msgctxt "dhl"
2355
+ msgid "Choose a print format which will be selected by default when creating labels. Manually <a href=\"%s\">refresh</a> available print formats to make sure the list is up-to-date."
2356
  msgstr ""
2357
 
2358
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:248
2359
+ msgctxt "dhl"
2360
+ msgid "Print X-axis column"
 
2361
  msgstr ""
2362
 
2363
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:250
2364
+ msgctxt "dhl"
2365
+ msgid "Adjust the print X-axis start column for the label."
 
 
 
 
2366
  msgstr ""
2367
 
2368
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:258
2369
+ msgctxt "dhl"
2370
+ msgid "Print Y-axis column"
2371
  msgstr ""
2372
 
2373
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:260
2374
+ msgctxt "dhl"
2375
+ msgid "Adjust the print Y-axis start column for the label."
2376
  msgstr ""
2377
 
2378
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:272
2379
+ msgctxt "dhl"
2380
+ msgid "API Error"
2381
  msgstr ""
2382
 
2383
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:309
 
2384
  msgctxt "dhl"
2385
+ msgid "Charge Portokasse"
2386
  msgstr ""
2387
 
2388
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:310
2389
+ #, php-format
2390
+ msgctxt "dhl"
2391
+ msgid "The minimum amount is %s"
 
2392
  msgstr ""
2393
 
2394
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:374
2395
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:575
2396
+ #, php-format
2397
  msgctxt "dhl"
2398
+ msgid "Sorry but none of your selected <a href=\"%s\">Deutsche Post Products</a> is available for this shipment. Please verify your shipment data (e.g. weight) and try again."
2399
  msgstr ""
2400
 
2401
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:383
 
2402
  msgctxt "dhl"
2403
  msgid "Page Format"
2404
  msgstr ""
2405
 
2406
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:553
 
2407
  msgctxt "dhl"
2408
+ msgid "The services chosen are not available for the current product."
2409
  msgstr ""
2410
 
2411
+ #: woocommerce-germanized-dhl/src/ShippingProvider/DeutschePost.php:602
2412
+ #, php-format
2413
  msgctxt "dhl"
2414
+ msgid "Deutsche Post product is missing for %s."
2415
  msgstr ""
2416
 
2417
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:31
 
2418
  msgctxt "dhl"
2419
+ msgid "Opening Times"
2420
  msgstr ""
2421
 
2422
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:39
 
 
 
 
 
 
 
2423
  msgctxt "dhl"
2424
+ msgid "Services"
2425
  msgstr ""
2426
 
2427
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:41
 
 
 
2428
  msgctxt "dhl"
2429
+ msgid "Handicap Accessible"
2430
  msgstr ""
2431
 
2432
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:41
2433
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:42
 
 
 
 
 
 
2434
  msgctxt "dhl"
2435
+ msgid "Yes"
2436
  msgstr ""
2437
 
2438
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:41
2439
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:42
 
 
 
 
2440
  msgctxt "dhl"
2441
+ msgid "No"
2442
  msgstr ""
2443
 
2444
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:42
 
2445
  msgctxt "dhl"
2446
+ msgid "Parking"
2447
  msgstr ""
2448
 
2449
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder-result.php:47
 
 
 
 
 
2450
  msgctxt "dhl"
2451
+ msgid "Select "
2452
  msgstr ""
2453
 
2454
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:33
 
 
 
 
 
2455
  msgctxt "dhl"
2456
+ msgid "Address"
2457
  msgstr ""
2458
 
2459
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:44
 
 
 
 
 
 
 
2460
  msgctxt "dhl"
2461
+ msgid "Parcelshop"
2462
  msgstr ""
2463
 
2464
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:55
 
2465
  msgctxt "dhl"
2466
+ msgid "Search"
2467
  msgstr ""
2468
 
2469
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:27
 
 
 
 
 
 
 
 
 
2470
  msgctxt "dhl"
2471
+ msgid "DHL Preferred Delivery. Delivered just as you wish."
2472
  msgstr ""
2473
 
2474
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:30
 
 
 
 
 
 
 
 
 
2475
  msgctxt "dhl"
2476
+ msgid ""
2477
+ "Thanks to the flexible recipient services of DHL Preferred Delivery, you decide\n"
2478
+ "when and where you want to receive your parcels.<br/>\n"
2479
+ "Please choose your preferred delivery option."
2480
  msgstr ""
2481
 
2482
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:38
 
 
 
 
 
2483
  msgctxt "dhl"
2484
+ msgid "Preferred day: Delivery at your preferred day."
2485
  msgstr ""
2486
 
2487
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:38
 
 
 
 
 
2488
  msgctxt "dhl"
2489
+ msgid "Choose one of the displayed days as your preferred day for your parcel delivery. Other days are not possible due to delivery processes."
2490
  msgstr ""
2491
 
2492
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:42
2493
+ #, php-format
2494
  msgctxt "dhl"
2495
+ msgid "There is a surcharge of %1$s %2$s for this service.*"
2496
  msgstr ""
2497
 
2498
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:42
 
2499
  msgctxt "dhl"
2500
+ msgid "incl. VAT"
2501
  msgstr ""
2502
 
2503
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:42
 
2504
  msgctxt "dhl"
2505
+ msgid "excl. VAT"
2506
  msgstr ""
2507
 
2508
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:65
 
2509
  msgctxt "dhl"
2510
+ msgid "Preferred location or neighbor"
2511
  msgstr ""
2512
 
2513
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:71
2514
+ msgctxt "dhl location context"
2515
+ msgid "None"
 
 
 
 
 
2516
  msgstr ""
2517
 
2518
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:76
 
2519
  msgctxt "dhl"
2520
+ msgid "Location"
2521
  msgstr ""
2522
 
2523
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:82
 
2524
  msgctxt "dhl"
2525
+ msgid "Neighbor"
2526
  msgstr ""
2527
 
2528
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:89
 
2529
  msgctxt "dhl"
2530
+ msgid "Preferred location: Delivery to your preferred drop-off location"
2531
  msgstr ""
2532
 
2533
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:89
 
 
 
2534
  msgctxt "dhl"
2535
+ msgid "Choose a weather-protected and non-visible place on your property, where we can deposit the parcel in your absence."
2536
  msgstr ""
2537
 
2538
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:91
 
2539
  msgctxt "dhl"
2540
+ msgid "e.g. Garage, Terrace"
2541
  msgstr ""
2542
 
2543
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:98
 
2544
  msgctxt "dhl"
2545
+ msgid "Preferred neighbour: Delivery to a neighbour of your choice"
2546
  msgstr ""
2547
 
2548
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:98
 
2549
  msgctxt "dhl"
2550
+ msgid "Determine a person in your immediate neighborhood whom we can hand out your parcel in your absence. This person should live in the same building, directly opposite or next door."
2551
  msgstr ""
2552
 
2553
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:100
 
2554
  msgctxt "dhl"
2555
+ msgid "First name, last name of neighbor"
2556
  msgstr ""
2557
 
2558
+ #: woocommerce-germanized-dhl/templates/checkout/dhl/preferred-services.php:101
 
 
 
2559
  msgctxt "dhl"
2560
+ msgid "Street, number, postal code, city"
2561
  msgstr ""
2562
 
2563
+ #: woocommerce-germanized-dhl/woocommerce-germanized-dhl.php:40
2564
+ #: woocommerce-germanized-dhl/woocommerce-germanized-dhl.php:58
2565
+ #, php-format
2566
  msgctxt "dhl"
2567
+ msgid "Your installation of the Germanized DHL feature plugin is incomplete. Please run %1$s within the %2$s directory."
2568
  msgstr ""
2569
 
2570
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:32
2571
+ #, php-format
2572
+ msgctxt "shipments"
2573
+ msgid "Content (%s)"
 
 
2574
  msgstr ""
2575
 
2576
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:38
2577
+ #, php-format
2578
+ msgctxt "shipments"
2579
+ msgid "Dimensions (%s)"
2580
  msgstr ""
2581
 
2582
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:38
2583
+ msgctxt "shipments"
2584
+ msgid "LxWxH in decimal form."
 
2585
  msgstr ""
2586
 
2587
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:50
2588
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:416
2589
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:692
2590
+ msgctxt "shipments"
2591
+ msgid "Packaging"
2592
  msgstr ""
2593
 
2594
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:58
2595
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1074
2596
+ #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:24
2597
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:689
2598
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:244
2599
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:275
2600
+ msgctxt "shipments"
2601
+ msgid "Status"
2602
  msgstr ""
2603
 
2604
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:68
2605
+ msgctxt "shipments"
2606
+ msgid "Shipping method"
 
 
 
2607
  msgstr ""
2608
 
2609
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:78
2610
+ msgctxt "shipments"
2611
+ msgid "Shipping provider"
 
2612
  msgstr ""
2613
 
2614
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:89
2615
+ msgctxt "shipments"
2616
+ msgid "Tracking Number"
 
2617
  msgstr ""
2618
 
2619
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:155
2620
+ msgctxt "shipments"
2621
+ msgid "Add item"
 
2622
  msgstr ""
2623
 
2624
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:159
2625
+ msgctxt "shipments"
2626
+ msgid "Automatically adjust items and quantities based on order item data."
 
2627
  msgstr ""
2628
 
2629
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:159
2630
+ msgctxt "shipments"
2631
+ msgid "Sync items"
 
2632
  msgstr ""
2633
 
2634
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:179
2635
+ msgctxt "shipments"
2636
+ msgid "Add Item"
 
2637
  msgstr ""
2638
 
2639
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:189
2640
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:45
2641
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:224
2642
+ msgctxt "shipments"
2643
+ msgid "Item"
 
2644
  msgstr ""
2645
 
2646
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:190
2647
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:46
2648
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:229
2649
+ #: woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:55
2650
+ #: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:37
2651
+ #: woocommerce-germanized-shipments/templates/shipment/shipment-details.php:59
2652
+ msgctxt "shipments"
2653
+ msgid "Quantity"
2654
+ msgstr ""
2655
+
2656
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:208
2657
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:55
2658
+ msgctxt "shipments"
2659
+ msgid "Add"
2660
+ msgstr ""
2661
+
2662
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:232
2663
+ msgctxt "shipments"
2664
+ msgid "Send return instructions to your customer via email including return label as attachment (if available)."
2665
+ msgstr ""
2666
+
2667
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:232
2668
+ msgctxt "shipments"
2669
+ msgid "Resend notification"
2670
+ msgstr ""
2671
+
2672
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:232
2673
+ msgctxt "shipments"
2674
+ msgid "Notify customer"
2675
+ msgstr ""
2676
+
2677
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:234
2678
+ msgctxt "shipments"
2679
+ msgid "Confirm the return request to the customer. The customer receives an email notification possibly containing return instructions."
2680
+ msgstr ""
2681
+
2682
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:234
2683
+ #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:66
2684
+ msgctxt "shipments"
2685
+ msgid "Confirm return request"
2686
+ msgstr ""
2687
+
2688
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:238
2689
+ #, php-format
2690
+ msgctxt "shipments"
2691
+ msgid "Delete %s"
2692
  msgstr ""
2693
 
2694
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-item-count.php:16
2695
+ #, php-format
2696
+ msgctxt "shipments"
2697
+ msgid "%d of %d item"
2698
+ msgid_plural "%d of %d items"
2699
+ msgstr[0] ""
2700
+ msgstr[1] ""
2701
+
2702
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-item.php:28
2703
+ #: woocommerce-germanized-shipments/templates/shipment/add-return-shipment-item.php:59
2704
+ msgctxt "shipments return reason"
2705
  msgid "None"
2706
  msgstr ""
2707
 
2708
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-item.php:41
2709
+ #: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:26
2710
+ #: woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:37
2711
+ msgctxt "shipments"
2712
+ msgid "Delete"
2713
+ msgstr ""
2714
+
2715
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-list.php:22
2716
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:84
2717
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:211
2718
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:616
2719
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:737
2720
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:75
2721
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:172
2722
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:267
2723
+ #: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:36
2724
+ msgctxt "shipments"
2725
+ msgid "Returns"
2726
+ msgstr ""
2727
+
2728
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-packaging-select.php:17
2729
+ #: woocommerce-germanized-shipments/includes/wc-gzd-packaging-functions.php:52
2730
+ msgctxt "shipments-packaging"
2731
  msgid "None"
2732
  msgstr ""
2733
 
2734
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-packaging-select.php:32
2735
+ msgctxt "shipments"
2736
+ msgid "Does not fit"
 
2737
  msgstr ""
2738
 
2739
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment.php:16
2740
+ #, php-format
2741
+ msgctxt "shipment admin title"
2742
+ msgid "%s #%s"
2743
  msgstr ""
2744
 
2745
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:19
2746
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:77
2747
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:546
2748
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:615
2749
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:703
2750
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:770
2751
+ #: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:20
2752
+ msgctxt "shipments"
2753
+ msgid "Shipments"
2754
  msgstr ""
2755
 
2756
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:35
2757
+ msgctxt "shipments"
2758
+ msgid "Add Return"
2759
+ msgstr ""
2760
+
2761
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:66
2762
+ msgctxt "shipments"
2763
+ msgid "Add shipment"
2764
+ msgstr ""
2765
+
2766
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:70
2767
+ msgctxt "shipments"
2768
+ msgid "Add return"
2769
+ msgstr ""
2770
+
2771
+ #: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:76
2772
+ msgctxt "shipments"
2773
+ msgid "Save"
2774
+ msgstr ""
2775
+
2776
+ #: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:11
2777
+ #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:22
2778
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:687
2779
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:773
2780
+ msgctxt "shipments"
2781
+ msgid "Title"
2782
+ msgstr ""
2783
+
2784
+ #: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:12
2785
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:452
2786
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:782
2787
+ msgctxt "shipments"
2788
+ msgid "Description"
2789
+ msgstr ""
2790
+
2791
+ #: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:13
2792
+ msgctxt "shipments"
2793
+ msgid "Activated"
2794
+ msgstr ""
2795
+
2796
+ #: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:23
2797
+ msgctxt "shipments"
2798
+ msgid "Edit"
2799
+ msgstr ""
2800
+
2801
+ #: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:35
2802
+ msgctxt "shipments"
2803
+ msgid "Yes"
2804
+ msgstr ""
2805
+
2806
+ #: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:51
2807
+ #: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:52
2808
+ #: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:53
2809
+ msgctxt "shipments"
2810
+ msgid "Help"
2811
+ msgstr ""
2812
+
2813
+ #: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:57
2814
+ #: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:58
2815
+ msgctxt "shipments"
2816
+ msgid "Manage shipping provider"
2817
+ msgstr ""
2818
+
2819
+ #: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:59
2820
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shipments.php:48
2821
+ msgctxt "shipments"
2822
+ msgid "Manage"
2823
+ msgstr ""
2824
+
2825
+ #: woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label-backbone.php:13
2826
+ #: woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:41
2827
+ msgctxt "shipments"
2828
+ msgid "Create label"
2829
+ msgstr ""
2830
+
2831
+ #: woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label-backbone.php:27
2832
+ msgctxt "shipments"
2833
+ msgid "Create"
2834
+ msgstr ""
2835
+
2836
+ #: woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:16
2837
+ #, php-format
2838
+ msgctxt "shipments"
2839
+ msgid "%s Label"
2840
+ msgstr ""
2841
+
2842
+ #: woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:23
2843
+ msgctxt "shipments"
2844
+ msgid "Download"
2845
+ msgstr ""
2846
+
2847
+ #: woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:41
2848
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:834
2849
+ msgctxt "shipments"
2850
+ msgid "Create new label"
2851
+ msgstr ""
2852
+
2853
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-guest-return-shipment-request.php:41
2854
+ msgctxt "shipments"
2855
+ msgid "Order guest return request"
2856
+ msgstr ""
2857
+
2858
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-guest-return-shipment-request.php:42
2859
+ msgctxt "shipments"
2860
+ msgid "Order guest return request are sent to the customer after submitting a new return request as a guest."
2861
+ msgstr ""
2862
+
2863
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-guest-return-shipment-request.php:66
2864
+ msgctxt "shipments"
2865
+ msgid "Your return request to your order {order_number}"
2866
  msgstr ""
2867
 
2868
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-guest-return-shipment-request.php:76
2869
+ msgctxt "shipments"
2870
+ msgid "Return request to your order: {order_number}"
 
2871
  msgstr ""
2872
 
2873
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment-delivered.php:44
2874
+ msgctxt "shipments"
2875
+ msgid "Order return delivered"
 
2876
  msgstr ""
2877
 
2878
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment-delivered.php:45
2879
+ msgctxt "shipments"
2880
+ msgid "Order return notifications are sent to the customer after a return shipment has been returned (delivered) successfully."
 
2881
  msgstr ""
2882
 
2883
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment-delivered.php:75
2884
+ msgctxt "shipments"
2885
+ msgid "Return to your order {order_number} has been received"
 
2886
  msgstr ""
2887
 
2888
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment-delivered.php:85
2889
+ msgctxt "shipments"
2890
+ msgid "Received return to your order: {order_number}"
 
2891
  msgstr ""
2892
 
2893
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment.php:52
2894
+ msgctxt "shipments"
2895
+ msgid "Order return"
 
2896
  msgstr ""
2897
 
2898
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment.php:53
2899
+ msgctxt "shipments"
2900
+ msgid "Order return notifications are sent to the customer after a return shipment was marked as processing."
 
 
 
 
 
 
 
 
 
2901
  msgstr ""
2902
 
2903
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment.php:83
2904
+ msgctxt "shipments"
2905
+ msgid "Return to your order {order_number}"
 
 
 
2906
  msgstr ""
2907
 
2908
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-return-shipment.php:93
2909
+ msgctxt "shipments"
2910
+ msgid "Return to your order: {order_number}"
 
2911
  msgstr ""
2912
 
2913
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:55
2914
+ msgctxt "shipments"
2915
+ msgid "Order shipped"
 
 
 
2916
  msgstr ""
2917
 
2918
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:56
2919
+ msgctxt "shipments"
2920
+ msgid "Shipment notifications are sent to the customer when a shipment gets shipped."
 
2921
  msgstr ""
2922
 
2923
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:92
2924
+ msgctxt "shipments"
2925
+ msgid "Your {site_title} order #{order_number} has been partially shipped ({current_shipment_num}/{total_shipments})"
 
2926
  msgstr ""
2927
 
2928
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:94
2929
+ msgctxt "shipments"
2930
+ msgid "Your {site_title} order #{order_number} has been shipped ({current_shipment_num}/{total_shipments})"
 
2931
  msgstr ""
2932
 
2933
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:107
2934
+ msgctxt "shipments"
2935
+ msgid "Partial shipment to your order: {order_number}"
 
2936
  msgstr ""
2937
 
2938
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:109
2939
+ msgctxt "shipments"
2940
+ msgid "Shipment to your order: {order_number}"
 
2941
  msgstr ""
2942
 
2943
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:348
2944
+ #, php-format
2945
+ msgctxt "shipments"
2946
+ msgid "Available placeholders: %s"
2947
  msgstr ""
2948
 
2949
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:352
2950
+ msgctxt "shipments"
2951
+ msgid "Enable/Disable"
 
2952
  msgstr ""
2953
 
2954
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:354
2955
+ msgctxt "shipments"
2956
+ msgid "Enable this email notification"
 
2957
  msgstr ""
2958
 
2959
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:358
2960
+ msgctxt "shipments"
2961
+ msgid "Full shipment subject"
 
2962
  msgstr ""
2963
 
2964
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:366
2965
+ msgctxt "shipments"
2966
+ msgid "Partial shipment subject"
 
2967
  msgstr ""
2968
 
2969
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:374
2970
+ msgctxt "shipments"
2971
+ msgid "Full shipment email heading"
 
2972
  msgstr ""
2973
 
2974
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:382
2975
+ msgctxt "shipments"
2976
+ msgid "Partial shipment email heading"
 
 
 
2977
  msgstr ""
2978
 
2979
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:390
2980
+ msgctxt "shipments"
2981
+ msgid "Additional content"
 
 
 
2982
  msgstr ""
2983
 
2984
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:391
2985
+ msgctxt "shipments"
2986
+ msgid "Text to appear below the main email content."
 
2987
  msgstr ""
2988
 
2989
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:393
2990
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1006
2991
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1036
2992
+ #: woocommerce-germanized-shipments/templates/shipment/shipment-details-address.php:28
2993
+ msgctxt "shipments"
2994
+ msgid "N/A"
2995
  msgstr ""
2996
 
2997
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:399
2998
+ msgctxt "shipments"
2999
+ msgid "Email type"
 
3000
  msgstr ""
3001
 
3002
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:401
3003
+ msgctxt "shipments"
3004
+ msgid "Choose which format of email to send."
 
3005
  msgstr ""
3006
 
3007
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:42
3008
+ msgctxt "shipments"
3009
+ msgid "New order return request"
 
3010
  msgstr ""
3011
 
3012
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:43
3013
+ msgctxt "shipments"
3014
+ msgid "New order return request emails are sent to chosen recipient(s) when a new return is requested."
 
3015
  msgstr ""
3016
 
3017
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:73
3018
+ msgctxt "shipments"
3019
+ msgid "[{site_title}]: New return request to #{order_number}"
 
3020
  msgstr ""
3021
 
3022
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:83
3023
+ msgctxt "shipments"
3024
+ msgid "New return request to: #{order_number}"
 
3025
  msgstr ""
3026
 
3027
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:202
3028
+ msgctxt "shipments"
3029
+ msgid "Recipient(s)"
 
3030
  msgstr ""
3031
 
3032
+ #: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:205
3033
+ #, php-format
3034
+ msgctxt "shipments"
3035
+ msgid "Enter recipients (comma separated) for this email. Defaults to %s."
3036
  msgstr ""
3037
 
3038
+ #: woocommerce-germanized-shipments/includes/wc-gzd-packaging-functions.php:24
3039
+ msgctxt "shipments"
3040
+ msgid "Cardboard"
 
3041
  msgstr ""
3042
 
3043
+ #: woocommerce-germanized-shipments/includes/wc-gzd-packaging-functions.php:25
3044
+ msgctxt "shipments"
3045
+ msgid "Letter"
 
3046
  msgstr ""
3047
 
3048
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:76
3049
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1072
3050
+ msgctxt "shipments"
3051
+ msgid "Shipment"
3052
  msgstr ""
3053
 
3054
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:83
3055
+ msgctxt "shipments"
3056
+ msgid "Return"
 
3057
  msgstr ""
3058
 
3059
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:110
3060
+ msgctxt "shipments"
3061
+ msgid "Not shipped"
 
3062
  msgstr ""
3063
 
3064
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:111
3065
+ msgctxt "shipments"
3066
+ msgid "Partially shipped"
 
3067
  msgstr ""
3068
 
3069
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:112
3070
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:349
3071
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:860
3072
+ msgctxt "shipments"
3073
+ msgid "Shipped"
3074
  msgstr ""
3075
 
3076
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:129
3077
+ msgctxt "shipments"
3078
+ msgid "Open"
 
3079
  msgstr ""
3080
 
3081
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:130
3082
+ msgctxt "shipments"
3083
+ msgid "Partially returned"
 
3084
  msgstr ""
3085
 
3086
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:131
3087
+ msgctxt "shipments"
3088
+ msgid "Returned"
 
3089
  msgstr ""
3090
 
3091
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:347
3092
+ msgctxt "shipments"
3093
+ msgid "Draft"
 
3094
  msgstr ""
3095
 
3096
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:348
3097
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:852
3098
+ msgctxt "shipments"
3099
+ msgid "Processing"
3100
  msgstr ""
3101
 
3102
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:350
3103
+ #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:50
3104
+ msgctxt "shipments"
3105
+ msgid "Delivered"
3106
  msgstr ""
3107
 
3108
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:351
3109
+ msgctxt "shipments"
3110
+ msgid "Requested"
 
3111
  msgstr ""
3112
 
3113
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:400
3114
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:81
3115
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:135
3116
+ msgctxt "shipments"
3117
+ msgid "Invalid order."
3118
  msgstr ""
3119
 
3120
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:404
3121
+ msgctxt "shipments"
3122
+ msgid "This order is already fully returned."
 
3123
  msgstr ""
3124
 
3125
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:415
3126
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:456
3127
+ msgctxt "shipments"
3128
+ msgid "Error while creating the shipment instance"
3129
  msgstr ""
3130
 
3131
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:441
3132
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:445
3133
+ #: woocommerce-germanized-shipments/src/ReturnShipment.php:434
3134
+ #: woocommerce-germanized-shipments/src/ReturnShipment.php:506
3135
+ #: woocommerce-germanized-shipments/src/SimpleShipment.php:118
3136
+ #: woocommerce-germanized-shipments/src/SimpleShipment.php:240
3137
+ msgctxt "shipments"
3138
+ msgid "Invalid shipment order"
3139
  msgstr ""
3140
 
3141
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:475
3142
+ msgctxt "shipments"
3143
+ msgid "Invalid order item"
 
 
 
 
 
3144
  msgstr ""
3145
 
3146
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:597
3147
+ msgctxt "shipments"
3148
+ msgid "Invalid shipment item"
 
3149
  msgstr ""
3150
 
3151
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:676
3152
+ msgctxt "shipments"
3153
+ msgid "None"
 
3154
  msgstr ""
3155
 
3156
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:717
3157
+ msgctxt "shipments-shipping-provider"
3158
+ msgid "Unknown"
 
3159
  msgstr ""
3160
 
3161
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:762
3162
+ msgctxt "shipments"
3163
+ msgid "Error while uploading file."
 
3164
  msgstr ""
3165
 
3166
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1073
3167
+ #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:23
3168
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:688
3169
+ msgctxt "shipments"
3170
+ msgid "Date"
3171
  msgstr ""
3172
 
3173
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1075
3174
+ #: woocommerce-germanized-shipments/templates/shipment/shipment-details-tracking.php:23
3175
+ msgctxt "shipments"
3176
+ msgid "Tracking"
3177
  msgstr ""
3178
 
3179
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1076
3180
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:234
3181
+ #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:30
3182
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:696
3183
+ msgctxt "shipments"
3184
+ msgid "Actions"
3185
  msgstr ""
3186
 
3187
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1312
3188
+ msgctxt "shipments"
3189
+ msgid "View"
 
3190
  msgstr ""
3191
 
3192
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1319
3193
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:871
3194
+ #: woocommerce-germanized-shipments/src/Ajax.php:335
3195
+ #: woocommerce-germanized-shipments/templates/shipment/shipment-return-instructions.php:29
3196
+ msgctxt "shipments"
3197
+ msgid "Download label"
3198
  msgstr ""
3199
 
3200
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:81
3201
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:115
3202
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:135
3203
+ msgctxt "shipments"
3204
+ msgid "My account"
 
 
 
3205
  msgstr ""
3206
 
3207
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:115
3208
+ #: woocommerce-germanized-shipments/src/DataStores/Shipment.php:360
3209
+ msgctxt "shipments"
3210
+ msgid "Invalid shipment."
3211
  msgstr ""
3212
 
3213
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:140
3214
+ msgctxt "shipments"
3215
+ msgid "Currently you cannot add new return requests to that order. If you have questions regarding the return of that order please contact us for further information."
 
 
 
 
 
3216
  msgstr ""
3217
 
3218
+ #: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:140
3219
+ msgctxt "shipments"
3220
+ msgid "View order"
 
3221
  msgstr ""
3222
 
3223
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:73
3224
+ msgctxt "shipments"
3225
+ msgid "Select a country"
 
3226
  msgstr ""
3227
 
3228
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:77
3229
+ msgctxt "shipments"
3230
+ msgid "HS-Code (Customs)"
 
3231
  msgstr ""
3232
+
3233
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:79
3234
+ msgctxt "shipments"
3235
+ msgid "The HS Code is a number assigned to every possible commodity that can be imported or exported from any country."
 
 
 
 
 
3236
  msgstr ""
3237
 
3238
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:86
3239
+ msgctxt "shipments"
3240
+ msgid "Country of manufacture (Customs)"
 
3241
  msgstr ""
3242
 
3243
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:88
3244
+ msgctxt "shipments"
3245
+ msgid "The country of manufacture is needed for customs of international shipping."
 
3246
  msgstr ""
3247
 
3248
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:125
3249
+ #, php-format
3250
+ msgctxt "shipments"
3251
+ msgid "Shipments upload directory missing. Please manually create the folder %s and make sure that it is writeable."
 
 
3252
  msgstr ""
3253
 
3254
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:162
3255
+ msgctxt "shipments"
3256
+ msgid "View Shipments"
 
3257
  msgstr ""
3258
 
3259
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:163
3260
+ msgctxt "shipments"
3261
+ msgid "Endpoint for the \"My account &rarr; View shipments\" page."
 
3262
  msgstr ""
3263
 
3264
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:170
3265
+ msgctxt "shipments"
3266
+ msgid "View shipment"
 
3267
  msgstr ""
3268
 
3269
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:171
3270
+ msgctxt "shipments"
3271
+ msgid "Endpoint for the \"My account &rarr; View shipment\" page."
 
 
 
3272
  msgstr ""
3273
 
3274
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:178
3275
+ msgctxt "shipments"
3276
+ msgid "Add Return Shipment"
 
3277
  msgstr ""
3278
 
3279
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:179
3280
+ msgctxt "shipments"
3281
+ msgid "Endpoint for the \"My account &rarr; Add return shipment\" page."
 
 
 
3282
  msgstr ""
3283
 
3284
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:242
3285
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:377
3286
+ #: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:36
3287
+ msgctxt "shipments"
3288
+ msgid "Reason"
3289
  msgstr ""
3290
 
3291
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:369
3292
+ msgctxt "shipments"
3293
+ msgid "Return reasons"
 
3294
  msgstr ""
3295
 
3296
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:376
3297
+ msgctxt "shipments"
3298
+ msgid "Reason code"
 
3299
  msgstr ""
3300
 
3301
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:376
3302
+ msgctxt "shipments"
3303
+ msgid "The reason code is used to identify the reason."
 
3304
  msgstr ""
3305
 
3306
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:377
3307
+ msgctxt "shipments"
3308
+ msgid "Choose a reason text."
 
3309
  msgstr ""
3310
 
3311
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:396
3312
+ msgctxt "shipments"
3313
+ msgid "+ Add reason"
 
3314
  msgstr ""
3315
 
3316
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:396
3317
+ msgctxt "shipments"
3318
+ msgid "Remove selected reason(s)"
 
3319
  msgstr ""
3320
 
3321
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:429
3322
+ msgctxt "shipments"
3323
+ msgid "Available Packaging"
 
3324
  msgstr ""
3325
 
3326
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:452
3327
+ msgctxt "shipments"
3328
+ msgid "A description to help you identify the packaging."
 
3329
  msgstr ""
3330
 
3331
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:453
3332
+ msgctxt "shipments"
3333
+ msgid "Type"
 
 
 
 
 
 
 
 
 
3334
  msgstr ""
3335
 
3336
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:454
3337
+ #, php-format
3338
+ msgctxt "shipments"
3339
+ msgid "Weight (%s)"
3340
  msgstr ""
3341
 
3342
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:454
3343
+ msgctxt "shipments"
3344
+ msgid "The weight of the packaging."
 
3345
  msgstr ""
3346
 
3347
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:455
3348
+ #, php-format
3349
+ msgctxt "shipments"
3350
+ msgid "Dimensions (LxWxH, %s)"
3351
  msgstr ""
3352
 
3353
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:456
3354
+ msgctxt "shipments"
3355
+ msgid "Max weight (kg)"
 
3356
  msgstr ""
3357
 
3358
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:456
3359
+ msgctxt "shipments"
3360
+ msgid "The maximum weight this packaging can hold. Leave empty to not restrict maximum weight."
 
3361
  msgstr ""
3362
 
3363
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:481
3364
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:522
3365
+ msgctxt "shipments"
3366
+ msgid "Length"
3367
  msgstr ""
3368
 
3369
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:482
3370
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:523
3371
+ msgctxt "shipments"
3372
+ msgid "Width"
 
 
3373
  msgstr ""
3374
 
3375
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:483
3376
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:524
3377
+ msgctxt "shipments"
3378
+ msgid "Height"
3379
  msgstr ""
3380
 
3381
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:496
3382
+ msgctxt "shipments"
3383
+ msgid "+ Add packaging"
 
3384
  msgstr ""
3385
 
3386
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:496
3387
+ msgctxt "shipments"
3388
+ msgid "Remove selected packaging"
 
3389
  msgstr ""
3390
 
3391
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:600
3392
+ msgctxt "shipments"
3393
+ msgid "Create shipments"
 
 
 
3394
  msgstr ""
3395
 
3396
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:715
3397
+ msgctxt "shipments"
3398
+ msgid "Search shipments"
 
3399
  msgstr ""
3400
 
3401
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:749
3402
+ msgctxt "shipments"
3403
+ msgid "Search returns"
 
 
 
3404
  msgstr ""
3405
 
3406
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:827
3407
+ msgctxt "shipments"
3408
+ msgid "Do you really want to delete the shipment?"
 
3409
  msgstr ""
3410
 
3411
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:833
3412
+ msgctxt "shipments"
3413
+ msgid "Do you really want to delete the label?"
 
3414
  msgstr ""
3415
 
3416
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:835
3417
+ msgctxt "shipments"
3418
+ msgid "Please save the shipment before creating a new label"
 
3419
  msgstr ""
3420
 
3421
+ #: woocommerce-germanized-shipments/src/Admin/Admin.php:885
3422
+ msgctxt "shipments"
3423
+ msgid "Do you really want to delete the shipping provider? Some of your existing shipments might be linked to that provider and might need adjustments."
 
3424
  msgstr ""
3425
 
3426
+ #: woocommerce-germanized-shipments/src/Admin/BulkActionHandler.php:80
3427
+ msgctxt "shipments"
3428
+ msgid "Successfully processed shipments."
 
3429
  msgstr ""
3430
 
3431
+ #: woocommerce-germanized-shipments/src/Admin/BulkLabel.php:30
3432
+ msgctxt "shipments"
3433
+ msgid "Generating labels..."
 
3434
  msgstr ""
3435
 
3436
+ #: woocommerce-germanized-shipments/src/Admin/BulkLabel.php:83
3437
+ msgctxt "shipments"
3438
+ msgid "Download labels"
 
 
 
3439
  msgstr ""
3440
 
3441
+ #: woocommerce-germanized-shipments/src/Admin/BulkLabel.php:93
3442
+ msgctxt "shipments"
3443
+ msgid "The chosen shipments were not suitable for automatic label creation. Please check the shipping provider option of the corresponding shipments."
 
 
 
3444
  msgstr ""
3445
 
3446
+ #: woocommerce-germanized-shipments/src/Admin/BulkLabel.php:95
3447
+ #, php-format
3448
+ msgctxt "shipments"
3449
+ msgid "Successfully generated labels. %s"
 
 
3450
  msgstr ""
3451
 
3452
+ #: woocommerce-germanized-shipments/src/Admin/BulkLabel.php:103
3453
+ #, php-format
3454
+ msgctxt "shipments"
3455
+ msgid "Labels partially generated. %s"
 
 
3456
  msgstr ""
3457
 
3458
+ #: woocommerce-germanized-shipments/src/Admin/BulkLabel.php:143
3459
+ #, php-format
3460
+ msgctxt "shipments"
3461
+ msgid "Error while creating label for %s: %s"
3462
  msgstr ""
3463
 
3464
+ #: woocommerce-germanized-shipments/src/Admin/BulkLabel.php:143
3465
+ #, php-format
3466
+ msgctxt "shipments"
3467
+ msgid "shipment #%d"
3468
  msgstr ""
3469
 
3470
+ #: woocommerce-germanized-shipments/src/Admin/ProviderSettings.php:90
3471
+ #: woocommerce-germanized-shipments/src/Admin/ProviderSettings.php:147
3472
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Method.php:140
3473
+ msgctxt "shipments"
3474
+ msgid "Shipping Provider"
3475
  msgstr ""
3476
 
3477
+ #: woocommerce-germanized-shipments/src/Admin/ProviderSettings.php:91
3478
+ msgctxt "shipments"
3479
+ msgid "You may find all the available shipping providers as a list here. Click on the link to edit the provider-specific settings."
 
3480
  msgstr ""
3481
 
3482
+ #: woocommerce-germanized-shipments/src/Admin/ProviderSettings.php:104
3483
+ msgctxt "shipments"
3484
+ msgid "Activate"
 
3485
  msgstr ""
3486
 
3487
+ #: woocommerce-germanized-shipments/src/Admin/ProviderSettings.php:105
3488
+ msgctxt "shipments"
3489
+ msgid "Activate or deactivate a shipping provider by toggling this button."
 
3490
  msgstr ""
3491
 
3492
+ #: woocommerce-germanized-shipments/src/Admin/ProviderSettings.php:118
3493
+ msgctxt "shipments"
3494
+ msgid "Add new"
 
3495
  msgstr ""
3496
 
3497
+ #: woocommerce-germanized-shipments/src/Admin/ProviderSettings.php:119
3498
+ msgctxt "shipments"
3499
+ msgid "You may want to manually add a new shipping provider in case an automatic integration does not exist."
 
3500
  msgstr ""
3501
 
3502
+ #: woocommerce-germanized-shipments/src/Admin/ProviderSettings.php:154
3503
+ msgctxt "shipments-shipping-provider"
3504
+ msgid "New"
 
3505
  msgstr ""
3506
 
3507
+ #: woocommerce-germanized-shipments/src/Admin/ProviderSettings.php:182
3508
+ #: woocommerce-germanized-shipments/src/Admin/ProviderSettings.php:192
3509
+ msgctxt "shipments"
3510
+ msgid "Learn more"
 
 
3511
  msgstr ""
3512
 
3513
+ #: woocommerce-germanized-shipments/src/Admin/ProviderSettings.php:186
3514
+ msgctxt "shipments"
3515
+ msgid "Not yet a customer?"
 
3516
  msgstr ""
3517
 
3518
+ #: woocommerce-germanized-shipments/src/Admin/ProviderSettings.php:189
3519
+ msgctxt "shipments"
3520
+ msgid "Add provider"
 
3521
  msgstr ""
3522
 
3523
+ #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:25
3524
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:690
3525
+ msgctxt "shipments"
3526
+ msgid "Items"
3527
  msgstr ""
3528
 
3529
+ #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:26
3530
+ msgctxt "shipments"
3531
+ msgid "Sender"
 
3532
  msgstr ""
3533
 
3534
+ #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:27
3535
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:693
3536
+ msgctxt "shipments"
3537
+ msgid "Weight"
3538
  msgstr ""
3539
 
3540
+ #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:28
3541
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:694
3542
+ msgctxt "shipments"
3543
+ msgid "Dimensions"
3544
  msgstr ""
3545
 
3546
+ #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:29
3547
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:695
3548
+ msgctxt "shipments"
3549
+ msgid "Order"
3550
  msgstr ""
3551
 
3552
+ #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:58
3553
+ msgctxt "shipments"
3554
+ msgid "Send notification to customer"
 
3555
  msgstr ""
3556
 
3557
+ #: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:79
3558
+ msgctxt "shipments"
3559
+ msgid "Confirm open return requests"
 
3560
  msgstr ""
3561
 
3562
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:33
3563
+ msgctxt "shipments"
3564
+ msgid "Manage shipments"
 
3565
  msgstr ""
3566
 
3567
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:34
3568
+ msgctxt "shipments"
3569
+ msgid "To view all your existing shipments in a list you might follow this link or click on the shipments link within the WooCommerce sub-menu."
 
3570
  msgstr ""
3571
 
3572
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:47
3573
+ msgctxt "shipments"
3574
+ msgid "E-Mail Notification"
 
3575
  msgstr ""
3576
 
3577
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:48
3578
+ msgctxt "shipments"
3579
+ msgid "By enabling this option customers receive an email notification as soon as a shipment is marked as shipped."
 
3580
  msgstr ""
3581
 
3582
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:61
3583
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:117
3584
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:229
3585
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:346
3586
+ msgctxt "shipments"
3587
+ msgid "Automation"
3588
  msgstr ""
3589
 
3590
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:62
3591
+ msgctxt "shipments"
3592
+ msgid "Decide whether you want to automatically create shipments to orders reaching a specific status. You can always adjust your shipments by manually editing the shipment within the edit order screen."
 
3593
  msgstr ""
3594
 
3595
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:76
3596
+ #, php-format
3597
+ msgctxt "shipments"
3598
+ msgid "Germanized can help you to minimize manual work while handling customer returns. Learn more about returns within our %s."
3599
  msgstr ""
3600
 
3601
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:76
3602
+ msgctxt "shipments"
3603
+ msgid "documentation"
 
3604
  msgstr ""
3605
 
3606
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:98
3607
+ msgctxt "shipments"
3608
+ msgid "Notify"
 
3609
  msgstr ""
3610
 
3611
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:99
3612
+ msgctxt "shipments"
3613
+ msgid "Notify customers about new shipments."
 
3614
  msgstr ""
3615
 
3616
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:99
3617
+ #, php-format
3618
+ msgctxt "shipments"
3619
+ msgid "Notify customers by email as soon as a shipment is marked as shipped. %s the notification email."
3620
  msgstr ""
3621
 
3622
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:99
3623
+ msgctxt "shipments notification"
3624
+ msgid "Manage"
 
 
 
3625
  msgstr ""
3626
 
3627
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:106
3628
+ msgctxt "shipments"
3629
+ msgid "Default provider"
 
3630
  msgstr ""
3631
 
3632
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:107
3633
+ msgctxt "shipments"
3634
+ msgid "Select a default shipping provider which will be selected by default in case no provider could be determined automatically."
 
3635
  msgstr ""
3636
 
3637
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:120
3638
+ msgctxt "shipments"
3639
+ msgid "Enable"
 
3640
  msgstr ""
3641
 
3642
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:121
3643
+ msgctxt "shipments"
3644
+ msgid "Automatically create shipments for orders."
 
3645
  msgstr ""
3646
 
3647
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:128
3648
+ msgctxt "shipments"
3649
+ msgid "Order statuses"
 
3650
  msgstr ""
3651
 
3652
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:129
3653
+ msgctxt "shipments"
3654
+ msgid "Create shipments as soon as the order reaches one of the following status(es)."
 
3655
  msgstr ""
3656
 
3657
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:137
3658
+ msgctxt "shipments"
3659
+ msgid "On new order creation"
 
 
 
3660
  msgstr ""
3661
 
3662
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:142
3663
+ msgctxt "shipments"
3664
+ msgid "Default status"
 
 
 
3665
  msgstr ""
3666
 
3667
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:143
3668
+ msgctxt "shipments"
3669
+ msgid "Choose a default status for the automatically created shipment."
 
 
 
 
 
3670
  msgstr ""
3671
 
3672
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:155
3673
+ msgctxt "shipments"
3674
+ msgid "Update status"
 
 
 
3675
  msgstr ""
3676
 
3677
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:156
3678
+ msgctxt "shipments"
3679
+ msgid "Mark order as completed after order is fully shipped."
 
 
 
3680
  msgstr ""
3681
 
3682
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:156
3683
+ msgctxt "shipments"
3684
+ msgid "This option will automatically update the order status to completed as soon as all required shipments have been marked as shipped."
 
 
 
3685
  msgstr ""
3686
 
3687
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:163
3688
+ msgctxt "shipments"
3689
+ msgid "Mark as shipped"
 
3690
  msgstr ""
3691
 
3692
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:164
3693
+ msgctxt "shipments"
3694
+ msgid "Mark shipments as shipped after order completion."
 
3695
  msgstr ""
3696
 
3697
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:164
3698
+ msgctxt "shipments"
3699
+ msgid "This option will automatically update contained shipments to shipped (if possible, e.g. not yet delivered) as soon as the order was marked as completed."
 
3700
  msgstr ""
3701
 
3702
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:172
3703
+ #, php-format
3704
+ msgctxt "shipments"
3705
+ msgid "Returns can be added manually by the shop manager or by the customer. Decide what suits you best by turning customer-added returns on or off in your %s."
3706
  msgstr ""
3707
 
3708
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:172
3709
+ msgctxt "shipments"
3710
+ msgid "shipping provider settings"
 
3711
  msgstr ""
3712
 
3713
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:179
3714
+ msgctxt "shipments"
3715
+ msgid "Days to return"
 
3716
  msgstr ""
3717
 
3718
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:180
3719
+ #, php-format
3720
+ msgctxt "shipments"
3721
+ msgid "In case one of your %s supports returns added by customers you might want to limit the number of days a customer is allowed to add returns to an order. The days are counted starting with the date the order was shipped, completed or created (by checking for existance in this order)."
3722
  msgstr ""
3723
 
3724
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:180
3725
+ msgctxt "shipments"
3726
+ msgid "shipping providers"
 
3727
  msgstr ""
3728
 
3729
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:189
3730
+ msgctxt "shipments"
3731
+ msgid "Customer Account"
 
3732
  msgstr ""
3733
 
3734
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:192
3735
+ msgctxt "shipments"
3736
+ msgid "List"
 
3737
  msgstr ""
3738
 
3739
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:193
3740
+ msgctxt "shipments"
3741
+ msgid "List shipments on customer account order screen."
 
3742
  msgstr ""
3743
 
3744
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:207
3745
+ msgctxt "shipments"
 
3746
  msgid "Shipper Address"
3747
  msgstr ""
3748
 
3749
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:210
3750
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:285
3751
+ msgctxt "shipments"
3752
+ msgid "First Name"
 
 
3753
  msgstr ""
3754
 
3755
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:217
3756
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:293
3757
+ msgctxt "shipments"
3758
+ msgid "Last Name"
 
 
3759
  msgstr ""
3760
 
3761
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:224
3762
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:301
3763
+ msgctxt "shipments"
3764
+ msgid "Company"
3765
  msgstr ""
3766
 
3767
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:231
3768
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:309
3769
+ msgctxt "shipments"
3770
+ msgid "Address 1"
3771
  msgstr ""
3772
 
3773
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:238
3774
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:317
3775
+ msgctxt "shipments"
3776
+ msgid "Address 2"
3777
  msgstr ""
3778
 
3779
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:245
3780
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:325
3781
+ msgctxt "shipments"
3782
+ msgid "City"
3783
  msgstr ""
3784
 
3785
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:252
3786
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:333
3787
+ msgctxt "shipments"
3788
+ msgid "Country / State"
3789
  msgstr ""
3790
 
3791
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:260
3792
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:342
3793
+ msgctxt "shipments"
3794
+ msgid "Postcode"
3795
  msgstr ""
3796
 
3797
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:267
3798
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:350
3799
+ msgctxt "shipments"
3800
+ msgid "Phone"
3801
  msgstr ""
3802
 
3803
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:274
3804
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:358
3805
+ msgctxt "shipments"
3806
+ msgid "Email"
3807
  msgstr ""
3808
 
3809
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:282
3810
+ msgctxt "shipments"
3811
+ msgid "Return Address"
 
 
 
3812
  msgstr ""
3813
 
3814
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:380
3815
+ msgctxt "shipments"
3816
+ msgid "Default packaging"
 
3817
  msgstr ""
3818
 
3819
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:381
3820
+ msgctxt "shipments"
3821
+ msgid "Choose a packaging which serves as fallback or default in case no suitable packaging could be matched for a certain shipment."
 
3822
  msgstr ""
3823
 
3824
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:415
3825
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:344
3826
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:1094
3827
+ msgctxt "shipments"
3828
+ msgid "General"
3829
  msgstr ""
3830
 
3831
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:417
3832
+ msgctxt "shipments"
3833
+ msgid "Addresses"
 
3834
  msgstr ""
3835
 
3836
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:529
3837
+ msgctxt "shipments"
3838
+ msgid "More services"
 
3839
  msgstr ""
3840
 
3841
+ #: woocommerce-germanized-shipments/src/Admin/Settings.php:532
3842
+ msgctxt "shipments"
3843
+ msgid "Fewer services"
 
3844
  msgstr ""
3845
 
3846
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:193
3847
+ #, php-format
3848
+ msgctxt "shipments"
3849
+ msgid "%d shipment deleted."
3850
+ msgid_plural "%d shipments deleted."
3851
+ msgstr[0] ""
3852
+ msgstr[1] ""
3853
 
3854
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:203
3855
+ #, php-format
3856
+ msgctxt "shipments"
3857
+ msgid "%d shipment status changed."
3858
+ msgid_plural "%d shipment statuses changed."
3859
+ msgstr[0] ""
3860
+ msgstr[1] ""
3861
 
3862
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:372
3863
+ msgctxt "shipments"
3864
+ msgid "No shipments found"
 
3865
  msgstr ""
3866
 
3867
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:412
3868
+ #, php-format
3869
+ msgctxt "shipments"
3870
+ msgid "All <span class=\"count\">(%s)</span>"
3871
+ msgid_plural "All <span class=\"count\">(%s)</span>"
3872
+ msgstr[0] ""
3873
+ msgstr[1] ""
3874
+
3875
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:437
3876
+ #, php-format
3877
+ msgctxt "shipments"
3878
+ msgid " <span class=\"count\">(%s)</span>"
3879
+ msgid_plural " <span class=\"count\">(%s)</span>"
3880
+ msgstr[0] ""
3881
+ msgstr[1] ""
3882
+
3883
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:527
3884
+ msgctxt "shipments"
3885
+ msgid "Filter by date"
3886
  msgstr ""
3887
 
3888
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:529
3889
+ msgctxt "shipments"
3890
+ msgid "All dates"
 
3891
  msgstr ""
3892
 
3893
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:544
3894
+ #, php-format
3895
+ msgid "%1$s %2$d"
 
3896
  msgstr ""
3897
 
3898
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:565
3899
+ msgctxt "shipments"
3900
+ msgid "Processing bulk actions..."
 
3901
  msgstr ""
3902
 
3903
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:649
3904
+ msgctxt "shipments"
3905
+ msgid "Filter"
 
3906
  msgstr ""
3907
 
3908
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:665
3909
+ #: woocommerce-germanized-shipments/src/Ajax.php:812
3910
+ #, php-format
3911
+ msgctxt "shipments"
3912
+ msgid "Order #%s"
3913
  msgstr ""
3914
 
3915
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:670
3916
+ msgctxt "shipments"
3917
+ msgid "Filter by order"
 
 
 
3918
  msgstr ""
3919
 
3920
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:691
3921
+ msgctxt "shipments"
3922
+ msgid "Address"
 
3923
  msgstr ""
3924
 
3925
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:787
3926
+ #: woocommerce-germanized-shipments/templates/myaccount/shipments.php:68
3927
+ #, php-format
3928
+ msgctxt "shipment title"
3929
+ msgid "%s #%s"
 
3930
  msgstr ""
3931
 
3932
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:798
3933
+ #, php-format
3934
+ msgctxt "shipments"
3935
+ msgid "%s"
 
 
3936
  msgstr ""
3937
 
3938
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:804
3939
+ #, php-format
3940
+ msgctxt "shipments"
3941
+ msgid "via %s"
 
 
3942
  msgstr ""
3943
 
3944
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:880
3945
+ msgctxt "shipments"
3946
+ msgid "Generate label"
 
 
 
3947
  msgstr ""
3948
 
3949
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:930
3950
+ #, php-format
3951
+ msgctxt "shipments"
3952
+ msgid "Select %s"
 
 
3953
  msgstr ""
3954
 
3955
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:957
3956
+ msgctxt "shipments"
3957
+ msgid "SKU:"
 
3958
  msgstr ""
3959
 
3960
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:1066
3961
+ #, php-format
3962
+ msgctxt "%s = human-readable time difference"
3963
+ msgid "%s ago"
3964
  msgstr ""
3965
 
3966
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:1078
3967
+ msgctxt "shipments"
3968
+ msgid "M j, Y"
 
3969
  msgstr ""
3970
 
3971
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:1135
3972
+ msgctxt "shipments"
3973
+ msgid "Delete Permanently"
 
3974
  msgstr ""
3975
 
3976
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:1138
3977
+ msgctxt "shipments"
3978
+ msgid "Change status to processing"
 
3979
  msgstr ""
3980
 
3981
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:1139
3982
+ msgctxt "shipments"
3983
+ msgid "Change status to shipped"
 
3984
  msgstr ""
3985
 
3986
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:1140
3987
+ msgctxt "shipments"
3988
+ msgid "Change status to delivered"
 
3989
  msgstr ""
3990
 
3991
+ #: woocommerce-germanized-shipments/src/Admin/Table.php:1141
3992
+ msgctxt "shipments"
3993
+ msgid "Generate and download labels"
 
3994
  msgstr ""
3995
 
3996
+ #: woocommerce-germanized-shipments/src/Ajax.php:97
3997
+ msgctxt "shipments"
3998
+ msgid "Notification successfully sent to customer."
 
3999
  msgstr ""
4000
 
4001
+ #: woocommerce-germanized-shipments/src/Ajax.php:104
4002
+ msgctxt "shipments"
4003
+ msgid "There was an error while sending the notification."
 
4004
  msgstr ""
4005
 
4006
+ #: woocommerce-germanized-shipments/src/Ajax.php:144
4007
+ msgctxt "shipments"
4008
+ msgid "Return request confirmed successfully."
 
4009
  msgstr ""
4010
 
4011
+ #: woocommerce-germanized-shipments/src/Ajax.php:156
4012
+ msgctxt "shipments"
4013
+ msgid "There was an error while confirming the request."
 
4014
  msgstr ""
4015
 
4016
+ #: woocommerce-germanized-shipments/src/Ajax.php:176
4017
+ msgctxt "shipments"
4018
+ msgid "There was an error creating the label."
 
4019
  msgstr ""
4020
 
4021
+ #: woocommerce-germanized-shipments/src/Ajax.php:210
4022
+ msgctxt "shipments"
4023
+ msgid "There was an error deleting the label."
 
4024
  msgstr ""
4025
 
4026
+ #: woocommerce-germanized-shipments/src/Ajax.php:251
4027
+ msgctxt "shipments"
4028
+ msgid "There was an error processing the label."
 
4029
  msgstr ""
4030
 
4031
+ #: woocommerce-germanized-shipments/src/Ajax.php:347
4032
+ msgctxt "shipments"
4033
+ msgid "There was an error while trying to save the shipping provider status."
 
4034
  msgstr ""
4035
 
4036
+ #: woocommerce-germanized-shipments/src/Ajax.php:385
4037
+ msgctxt "shipments"
4038
+ msgid "There was an error while trying to delete the shipping provider."
 
4039
  msgstr ""
4040
 
4041
+ #: woocommerce-germanized-shipments/src/Ajax.php:418
4042
+ msgctxt "shipments"
4043
+ msgid "There was an error while bulk processing shipments."
 
4044
  msgstr ""
4045
 
4046
+ #: woocommerce-germanized-shipments/src/Ajax.php:530
4047
+ #: woocommerce-germanized-shipments/src/Ajax.php:631
4048
+ #: woocommerce-germanized-shipments/src/Ajax.php:688
4049
+ #: woocommerce-germanized-shipments/src/Ajax.php:725
4050
+ #: woocommerce-germanized-shipments/src/Ajax.php:850
4051
+ #: woocommerce-germanized-shipments/src/Ajax.php:896
4052
+ #: woocommerce-germanized-shipments/src/Ajax.php:963
4053
+ #: woocommerce-germanized-shipments/src/Ajax.php:996
4054
+ #: woocommerce-germanized-shipments/src/Ajax.php:1045
4055
+ #: woocommerce-germanized-shipments/src/Ajax.php:1113
4056
+ #: woocommerce-germanized-shipments/src/Ajax.php:1154
4057
+ #: woocommerce-germanized-shipments/src/Ajax.php:1209
4058
+ #: woocommerce-germanized-shipments/src/Ajax.php:1253
4059
+ msgctxt "shipments"
4060
+ msgid "There was an error processing the shipment"
4061
  msgstr ""
4062
 
4063
+ #: woocommerce-germanized-shipments/src/Ajax.php:572
4064
+ msgctxt "shipments"
4065
+ msgid "There was an error while adding the shipment"
 
4066
  msgstr ""
4067
 
4068
+ #: woocommerce-germanized-shipments/src/Ajax.php:593
4069
+ msgctxt "shipments"
4070
+ msgid "This order contains enough shipments already."
 
4071
  msgstr ""
4072
 
4073
+ #: woocommerce-germanized-shipments/src/Ajax.php:650
4074
+ msgctxt "shipments"
4075
+ msgid "This order contains enough returns already."
 
4076
  msgstr ""
4077
 
4078
+ #: woocommerce-germanized-shipments/src/Api.php:104
4079
+ msgctxt "shipments"
4080
+ msgid "List of shipments."
 
4081
  msgstr ""
4082
 
4083
+ #: woocommerce-germanized-shipments/src/Api.php:112
4084
+ msgctxt "shipments"
4085
+ msgid "Shipment ID."
 
4086
  msgstr ""
4087
 
4088
+ #: woocommerce-germanized-shipments/src/Api.php:118
4089
+ msgctxt "shipments"
4090
+ msgid "Shipment status."
 
4091
  msgstr ""
4092
 
4093
+ #: woocommerce-germanized-shipments/src/Api.php:125
4094
+ msgctxt "shipments"
4095
+ msgid "Shipment tracking id."
 
4096
  msgstr ""
4097
 
4098
+ #: woocommerce-germanized-shipments/src/Api.php:131
4099
+ msgctxt "shipments"
4100
+ msgid "Shipment tracking url."
 
4101
  msgstr ""
4102
 
4103
+ #: woocommerce-germanized-shipments/src/Api.php:137
4104
+ msgctxt "shipments"
4105
+ msgid "Shipment shipping provider."
 
4106
  msgstr ""
4107
 
4108
+ #: woocommerce-germanized-shipments/src/Api.php:143
4109
+ msgctxt "shipments"
4110
+ msgid "The date the shipment was created, in the site's timezone."
 
 
 
4111
  msgstr ""
4112
 
4113
+ #: woocommerce-germanized-shipments/src/Api.php:149
4114
+ msgctxt "shipments"
4115
+ msgid "The date the shipment was created, as GMT."
 
4116
  msgstr ""
4117
 
4118
+ #: woocommerce-germanized-shipments/src/Api.php:155
4119
+ msgctxt "shipments"
4120
+ msgid "The date the shipment was sent, in the site's timezone."
 
4121
  msgstr ""
4122
 
4123
+ #: woocommerce-germanized-shipments/src/Api.php:161
4124
+ msgctxt "shipments"
4125
+ msgid "The date the shipment was sent, as GMT."
 
4126
  msgstr ""
4127
 
4128
+ #: woocommerce-germanized-shipments/src/Api.php:167
4129
+ msgctxt "shipments"
4130
+ msgid "The estimated delivery date of the shipment, in the site's timezone."
 
4131
  msgstr ""
4132
 
4133
+ #: woocommerce-germanized-shipments/src/Api.php:173
4134
+ msgctxt "shipments"
4135
+ msgid "The estimated delivery date of the shipment, as GMT."
 
4136
  msgstr ""
4137
 
4138
+ #: woocommerce-germanized-shipments/src/Api.php:180
4139
+ #, php-format
4140
+ msgctxt "shipments"
4141
+ msgid "Shipment weight (%s)."
4142
  msgstr ""
4143
 
4144
+ #: woocommerce-germanized-shipments/src/Api.php:186
4145
+ msgctxt "shipments"
4146
+ msgid "Shipment dimensions."
 
4147
  msgstr ""
4148
 
4149
+ #: woocommerce-germanized-shipments/src/Api.php:193
4150
+ #, php-format
4151
+ msgctxt "shipments"
4152
+ msgid "Shipment length (%s)."
4153
  msgstr ""
4154
 
4155
+ #: woocommerce-germanized-shipments/src/Api.php:200
4156
+ #, php-format
4157
+ msgctxt "shipments"
4158
+ msgid "Shipment width (%s)."
4159
  msgstr ""
4160
 
4161
+ #: woocommerce-germanized-shipments/src/Api.php:207
4162
+ #, php-format
4163
+ msgctxt "shipments"
4164
+ msgid "Shipment height (%s)."
4165
  msgstr ""
4166
 
4167
+ #: woocommerce-germanized-shipments/src/Api.php:215
4168
+ msgctxt "shipments"
4169
+ msgid "Shipping address."
 
4170
  msgstr ""
4171
 
4172
+ #: woocommerce-germanized-shipments/src/Api.php:221
4173
+ msgctxt "shipments"
4174
+ msgid "First name."
 
4175
  msgstr ""
4176
 
4177
+ #: woocommerce-germanized-shipments/src/Api.php:227
4178
+ msgctxt "shipments"
4179
+ msgid "Last name."
 
4180
  msgstr ""
4181
 
4182
+ #: woocommerce-germanized-shipments/src/Api.php:233
4183
+ msgctxt "shipments"
4184
+ msgid "Company name."
 
4185
  msgstr ""
4186
 
4187
+ #: woocommerce-germanized-shipments/src/Api.php:239
4188
+ msgctxt "shipments"
4189
+ msgid "Address line 1"
 
4190
  msgstr ""
4191
 
4192
+ #: woocommerce-germanized-shipments/src/Api.php:245
4193
+ msgctxt "shipments"
4194
+ msgid "Address line 2"
 
4195
  msgstr ""
4196
 
4197
+ #: woocommerce-germanized-shipments/src/Api.php:251
4198
+ msgctxt "shipments"
4199
+ msgid "City name."
 
4200
  msgstr ""
4201
 
4202
+ #: woocommerce-germanized-shipments/src/Api.php:257
4203
+ msgctxt "shipments"
4204
+ msgid "ISO code or name of the state, province or district."
 
4205
  msgstr ""
4206
 
4207
+ #: woocommerce-germanized-shipments/src/Api.php:263
4208
+ msgctxt "shipments"
4209
+ msgid "Postal code."
 
 
 
 
 
4210
  msgstr ""
4211
 
4212
+ #: woocommerce-germanized-shipments/src/Api.php:269
4213
+ msgctxt "shipments"
4214
+ msgid "Country code in ISO 3166-1 alpha-2 format."
 
4215
  msgstr ""
4216
 
4217
+ #: woocommerce-germanized-shipments/src/Api.php:277
4218
+ msgctxt "shipments"
4219
+ msgid "Shipment items."
 
4220
  msgstr ""
4221
 
4222
+ #: woocommerce-germanized-shipments/src/Api.php:285
4223
+ msgctxt "shipments"
4224
+ msgid "Item ID."
 
4225
  msgstr ""
4226
 
4227
+ #: woocommerce-germanized-shipments/src/Api.php:291
4228
+ msgctxt "shipments"
4229
+ msgid "Item name."
 
4230
  msgstr ""
4231
 
4232
+ #: woocommerce-germanized-shipments/src/Api.php:297
4233
+ msgctxt "shipments"
4234
+ msgid "Order Item ID."
 
4235
  msgstr ""
4236
 
4237
+ #: woocommerce-germanized-shipments/src/Api.php:303
4238
+ msgctxt "shipments"
4239
+ msgid "Product ID."
 
 
 
 
 
4240
  msgstr ""
4241
 
4242
+ #: woocommerce-germanized-shipments/src/Api.php:309
4243
+ msgctxt "shipments"
4244
+ msgid "Quantity."
 
4245
  msgstr ""
4246
 
4247
+ #: woocommerce-germanized-shipments/src/Automation.php:127
4248
+ msgctxt "shipments"
4249
+ msgid "Order is fully shipped."
 
4250
  msgstr ""
4251
 
4252
+ #: woocommerce-germanized-shipments/src/DataStores/Label.php:297
4253
+ msgctxt "shipments"
4254
+ msgid "Invalid label."
 
4255
  msgstr ""
4256
 
4257
+ #: woocommerce-germanized-shipments/src/DataStores/Packaging.php:239
4258
+ msgctxt "shipments"
4259
+ msgid "Invalid packaging."
 
4260
  msgstr ""
4261
 
4262
+ #: woocommerce-germanized-shipments/src/DataStores/ShipmentItem.php:200
4263
+ msgctxt "shipments"
4264
+ msgid "Invalid shipment item."
 
4265
  msgstr ""
4266
 
4267
+ #: woocommerce-germanized-shipments/src/DataStores/ShippingProvider.php:257
4268
+ msgctxt "shipments"
4269
+ msgid "Invalid shipping provider."
 
4270
  msgstr ""
4271
 
4272
+ #: woocommerce-germanized-shipments/src/FormHandler.php:31
4273
+ msgctxt "shipments"
4274
+ msgid "Your return request was submitted successfully. We will now review your request and get in contact with you as soon as possible."
 
4275
  msgstr ""
4276
 
4277
+ #: woocommerce-germanized-shipments/src/FormHandler.php:33
4278
+ msgctxt "shipments"
4279
+ msgid "Your return request was submitted successfully. You'll receive an email with further instructions in a few minutes."
 
4280
  msgstr ""
4281
 
4282
+ #: woocommerce-germanized-shipments/src/FormHandler.php:99
4283
+ #: woocommerce-germanized-shipments/src/FormHandler.php:103
4284
+ msgctxt "shipments"
4285
+ msgid "Error:"
4286
  msgstr ""
4287
 
4288
+ #: woocommerce-germanized-shipments/src/FormHandler.php:99
4289
+ msgctxt "shipments"
4290
+ msgid "We were not able to find a matching order."
 
4291
  msgstr ""
4292
 
4293
+ #: woocommerce-germanized-shipments/src/FormHandler.php:103
4294
+ msgctxt "shipments"
4295
+ msgid "This order is currently not eligible for returns. Please contact us for further details."
 
4296
  msgstr ""
4297
 
4298
+ #: woocommerce-germanized-shipments/src/FormHandler.php:112
4299
+ msgctxt "shipments"
4300
+ msgid "Thank you. You'll receive an email containing a link to create a new return to your order."
 
 
 
 
 
4301
  msgstr ""
4302
 
4303
+ #: woocommerce-germanized-shipments/src/FormHandler.php:146
4304
+ msgctxt "shipments"
4305
+ msgid "You are not allowed to add returns to that order."
 
4306
  msgstr ""
4307
 
4308
+ #: woocommerce-germanized-shipments/src/FormHandler.php:151
4309
+ msgctxt "shipments"
4310
+ msgid "Sorry, but this order does not support returns any longer."
 
4311
  msgstr ""
4312
 
4313
+ #: woocommerce-germanized-shipments/src/FormHandler.php:156
4314
+ #: woocommerce-germanized-shipments/src/FormHandler.php:192
4315
+ msgctxt "shipments"
4316
+ msgid "Please choose one or more items from the list."
 
 
 
 
4317
  msgstr ""
4318
 
4319
+ #: woocommerce-germanized-shipments/src/FormHandler.php:172
4320
+ msgctxt "shipments"
4321
+ msgid "The return reason you have chosen does not exist."
 
4322
  msgstr ""
4323
 
4324
+ #: woocommerce-germanized-shipments/src/FormHandler.php:175
4325
+ msgctxt "shipments"
4326
+ msgid "Please choose a return reason from the list."
 
4327
  msgstr ""
4328
 
4329
+ #: woocommerce-germanized-shipments/src/FormHandler.php:180
4330
+ msgctxt "shipments"
4331
+ msgid "Please check your item quantities. Quantities must not exceed maximum quantities."
 
4332
  msgstr ""
4333
 
4334
+ #: woocommerce-germanized-shipments/src/FormHandler.php:227
4335
+ msgctxt "shipments"
4336
+ msgid "There was an error while creating the return. Please contact us for further information."
 
4337
  msgstr ""
4338
 
4339
+ #: woocommerce-germanized-shipments/src/Install.php:50
4340
+ msgctxt "shipments"
4341
+ msgid "Wrong product or size ordered"
 
4342
  msgstr ""
4343
 
4344
+ #: woocommerce-germanized-shipments/src/Install.php:55
4345
+ msgctxt "shipments"
4346
+ msgid "Product no longer needed"
 
4347
  msgstr ""
4348
 
4349
+ #: woocommerce-germanized-shipments/src/Install.php:60
4350
+ msgctxt "shipments"
4351
+ msgid "Don't like the look"
 
 
 
4352
  msgstr ""
4353
 
4354
+ #: woocommerce-germanized-shipments/src/Install.php:79
4355
+ msgctxt "shipments"
4356
+ msgid "Cardboard S"
 
4357
  msgstr ""
4358
 
4359
+ #: woocommerce-germanized-shipments/src/Install.php:88
4360
+ msgctxt "shipments"
4361
+ msgid "Cardboard M"
 
4362
  msgstr ""
4363
 
4364
+ #: woocommerce-germanized-shipments/src/Install.php:97
4365
+ msgctxt "shipments"
4366
+ msgid "Cardboard L"
 
4367
  msgstr ""
4368
 
4369
+ #: woocommerce-germanized-shipments/src/Install.php:106
4370
+ msgctxt "shipments"
4371
+ msgid "Letter C5/6"
 
4372
  msgstr ""
4373
 
4374
+ #: woocommerce-germanized-shipments/src/Install.php:115
4375
+ msgctxt "shipments"
4376
+ msgid "Letter C4"
 
4377
  msgstr ""
4378
 
4379
+ #: woocommerce-germanized-shipments/src/Labels/Label.php:464
4380
+ msgctxt "shipments"
4381
+ msgid "This label misses the API implementation"
 
4382
  msgstr ""
4383
 
4384
+ #: woocommerce-germanized-shipments/src/Labels/Label.php:498
4385
+ msgctxt "shipments"
4386
+ msgid "Error while uploading label."
 
4387
  msgstr ""
4388
 
4389
+ #: woocommerce-germanized-shipments/src/Labels/Label.php:520
4390
+ #: woocommerce-germanized-shipments/src/Labels/Label.php:527
4391
+ #: woocommerce-germanized-shipments/src/Labels/Label.php:556
4392
+ msgctxt "shipments"
4393
+ msgid "Error while downloading the PDF file."
4394
  msgstr ""
4395
 
4396
+ #: woocommerce-germanized-shipments/src/Labels/ReturnLabel.php:89
4397
+ #, php-format
4398
+ msgctxt "shipments full name"
4399
+ msgid "%1$s"
4400
  msgstr ""
4401
 
4402
+ #: woocommerce-germanized-shipments/src/Package.php:88
4403
+ msgctxt "shipments"
4404
+ msgid "Sorry, this order is invalid and cannot be returned."
 
4405
  msgstr ""
4406
 
4407
+ #: woocommerce-germanized-shipments/src/Packaging.php:270
4408
+ #, php-format
4409
+ msgctxt "shipments-packaging-title"
4410
+ msgid "%1$s (%2$s, %3$s)"
4411
  msgstr ""
4412
 
4413
+ #: woocommerce-germanized-shipments/src/ReturnShipment.php:362
4414
+ #: woocommerce-germanized-shipments/src/Shipment.php:1047
4415
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:361
4416
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:425
4417
+ #, php-format
4418
+ msgctxt "full name"
4419
+ msgid "%1$s %2$s"
4420
  msgstr ""
4421
 
4422
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:236
4423
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:345
4424
+ msgctxt "shipments"
4425
+ msgid "Labels"
4426
  msgstr ""
4427
 
4428
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:237
4429
+ msgctxt "shipments"
4430
+ msgid "Automatically create labels for shipments."
 
4431
  msgstr ""
4432
 
4433
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:247
4434
+ msgctxt "shipments"
4435
+ msgid "Choose a shipment status which should trigger generation of a label."
 
4436
  msgstr ""
4437
 
4438
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:247
4439
+ #, php-format
4440
+ msgctxt "shipments"
4441
+ msgid "Your current default shipment status is: <em>%s</em>."
4442
  msgstr ""
4443
 
4444
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:255
4445
+ msgctxt "shipments"
4446
+ msgid "Shipment Status"
 
4447
  msgstr ""
4448
 
4449
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:256
4450
+ msgctxt "shipments"
4451
+ msgid "Mark shipment as shipped after label has been created successfully."
 
4452
  msgstr ""
4453
 
4454
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:268
4455
+ msgctxt "shipments"
4456
+ msgid "Automatically create labels for returns."
 
4457
  msgstr ""
4458
 
4459
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:278
4460
+ msgctxt "shipments"
4461
+ msgid "Choose a shipment status which should trigger generation of a return label."
 
4462
  msgstr ""
4463
 
4464
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:303
4465
+ msgctxt "shipments"
4466
+ msgid "Default content weight (kg)"
 
4467
  msgstr ""
4468
 
4469
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:305
4470
+ msgctxt "shipments"
4471
+ msgid "Choose a default shipment content weight to be used for labels if no weight has been applied to the shipment."
 
4472
  msgstr ""
4473
 
4474
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:315
4475
+ msgctxt "shipments"
4476
+ msgid "Minimum weight (kg)"
 
4477
  msgstr ""
4478
 
4479
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:317
4480
+ msgctxt "shipments"
4481
+ msgid "Choose a minimum weight to be used for labels e.g. to prevent low shipment weight errors."
 
4482
  msgstr ""
4483
 
4484
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:375
4485
+ #, php-format
4486
+ msgctxt "shipments"
4487
+ msgid "%s Product"
4488
  msgstr ""
4489
 
4490
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Auto.php:520
4491
+ msgctxt "shipments"
4492
+ msgid "Error while creating the label."
 
4493
  msgstr ""
4494
 
4495
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Method.php:134
4496
+ msgctxt "shipments"
4497
+ msgid "Shipping Provider Settings"
 
 
 
4498
  msgstr ""
4499
 
4500
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Method.php:137
4501
+ msgctxt "shipments"
4502
+ msgid "Adjust shipping provider settings used for managing shipments."
 
4503
  msgstr ""
4504
 
4505
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Method.php:152
4506
+ msgctxt "shipments"
4507
+ msgid "Choose a shipping provider which will be selected by default for an eligible shipment."
 
4508
  msgstr ""
4509
 
4510
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:305
4511
+ msgctxt "shipments"
4512
+ msgid "Your shipment is being processed by {shipping_provider}. If you want to track the shipment, please use the following tracking number: {tracking_id}. Depending on the chosen shipping method it is possible that the tracking data does not reflect the current status when receiving this email."
 
 
 
 
 
4513
  msgstr ""
4514
 
4515
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:774
4516
+ msgctxt "shipments"
4517
+ msgid "Choose a title for the shipping provider."
 
4518
  msgstr ""
4519
 
4520
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:783
4521
+ msgctxt "shipments"
4522
+ msgid "Choose a description for the shipping provider."
 
4523
  msgstr ""
4524
 
4525
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:795
4526
+ msgctxt "shipments"
4527
+ msgid "Tracking URL"
 
4528
  msgstr ""
4529
 
4530
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:796
4531
+ #, php-format
4532
+ msgctxt "shipments"
4533
+ msgid "Adjust the placeholder used to construct the tracking URL for this shipping provider. You may use on of the following placeholders to insert the tracking id or other dynamic data: %s"
 
 
4534
  msgstr ""
4535
 
4536
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:806
4537
+ msgctxt "shipments"
4538
+ msgid "Tracking description"
 
4539
  msgstr ""
4540
 
4541
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:807
4542
+ #, php-format
4543
+ msgctxt "shipments"
4544
+ msgid "Adjust the placeholder used to construct the tracking description for this shipping provider (e.g. used within notification emails). You may use on of the following placeholders to insert the tracking id or other dynamic data: %s"
4545
  msgstr ""
4546
 
4547
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:951
4548
+ msgctxt "shipments"
4549
+ msgid "Customer returns"
 
4550
  msgstr ""
4551
 
4552
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:952
4553
+ msgctxt "shipments"
4554
+ msgid "Allow customers to submit return requests to shipments."
 
4555
  msgstr ""
4556
 
4557
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:952
4558
+ #, php-format
4559
+ msgctxt "shipments"
4560
+ msgid "This option will allow your customers to submit return requests to orders. Return requests will be visible within your %s. To learn more about return requests by customers and/or guests, please check the %s."
4561
  msgstr ""
4562
 
4563
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:952
4564
+ msgctxt "shipments"
4565
+ msgid "Return Dashboard"
 
4566
  msgstr ""
4567
 
4568
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:952
4569
+ msgctxt "shipments"
4570
+ msgid "docs"
 
 
 
4571
  msgstr ""
4572
 
4573
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:961
4574
+ msgctxt "shipments"
4575
+ msgid "Guest returns"
 
4576
  msgstr ""
4577
 
4578
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:962
4579
+ msgctxt "shipments"
4580
+ msgid "Allow guests to submit return requests to shipments."
 
4581
  msgstr ""
4582
 
4583
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:962
4584
+ #, php-format
4585
+ msgctxt "shipments"
4586
+ msgid "Guests will need to provide their email address and the order id to receive a one-time link to submit a return request. The placeholder %s might be used to place the request form on your site."
4587
  msgstr ""
4588
 
4589
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:973
4590
+ msgctxt "shipments"
4591
+ msgid "Manual confirmation"
 
 
 
4592
  msgstr ""
4593
 
4594
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:974
4595
+ msgctxt "shipments"
4596
+ msgid "Return requests need manual confirmation."
 
4597
  msgstr ""
4598
 
4599
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:974
4600
+ msgctxt "shipments"
4601
+ msgid "By default return request need manual confirmation e.g. a shop manager needs to review return requests which by default are added with the status \"requested\" after a customer submitted a return request. If you choose to disable this option, customer return requests will be added as \"processing\" and an email confirmation including instructions will be sent immediately to the customer."
 
4602
  msgstr ""
4603
 
4604
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:986
4605
+ msgctxt "shipments"
4606
+ msgid "Return instructions"
 
4607
  msgstr ""
4608
 
4609
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:987
4610
+ msgctxt "shipments"
4611
+ msgid "Provide your customer with instructions on how to return the shipment after a return request has been confirmed e.g. explain how to prepare the return for shipment. In case a label cannot be generated automatically, make sure to provide your customer with information on how to obain a return label."
 
4612
  msgstr ""
4613
 
4614
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:1073
4615
+ #, php-format
4616
+ msgctxt "shipments"
4617
+ msgid "These settings override your <a href=\"%1$s\">global %2$s options</a>. Do only adjust these settings in case you would like to specifically adjust them for this specific shipping method."
4618
  msgstr ""
4619
 
4620
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:1098
4621
+ msgctxt "shipments"
4622
+ msgid "Return Requests"
 
4623
  msgstr ""
4624
 
4625
+ #: woocommerce-germanized-shipments/src/ShippingProvider/Simple.php:1129
4626
+ msgctxt "shipments"
4627
+ msgid "This shipping provider does not support creating labels."
 
4628
  msgstr ""
4629
 
4630
+ #: woocommerce-germanized-shipments/src/WPMLHelper.php:73
4631
+ #, php-format
4632
+ msgctxt "shipments"
4633
+ msgid "%s tracking description"
4634
  msgstr ""
4635
 
4636
+ #: woocommerce-germanized-shipments/src/WPMLHelper.php:74
4637
+ #, php-format
4638
+ msgctxt "shipments"
4639
+ msgid "%s tracking URL"
4640
  msgstr ""
4641
 
4642
+ #: woocommerce-germanized-shipments/src/WPMLHelper.php:75
4643
+ #, php-format
4644
+ msgctxt "shipments"
4645
+ msgid "%s return instructions"
4646
  msgstr ""
4647
 
4648
+ #: woocommerce-germanized-shipments/templates/emails/admin-new-return-shipment-request.php:30
4649
+ #: woocommerce-germanized-shipments/templates/emails/plain/admin-new-return-shipment-request.php:24
4650
+ #, php-format
4651
+ msgctxt "shipments"
4652
+ msgid "You’ve received the following return request from %s:"
4653
  msgstr ""
4654
 
4655
+ #: woocommerce-germanized-shipments/templates/emails/customer-guest-return-shipment-request.php:27
4656
+ #: woocommerce-germanized-shipments/templates/emails/customer-return-shipment-delivered.php:27
4657
+ #: woocommerce-germanized-shipments/templates/emails/customer-return-shipment.php:27
4658
+ #: woocommerce-germanized-shipments/templates/emails/customer-shipment.php:27
4659
+ #: woocommerce-germanized-shipments/templates/emails/plain/customer-guest-return-shipment-request.php:24
4660
+ #: woocommerce-germanized-shipments/templates/emails/plain/customer-return-shipment-delivered.php:24
4661
+ #: woocommerce-germanized-shipments/templates/emails/plain/customer-return-shipment.php:24
4662
+ #: woocommerce-germanized-shipments/templates/emails/plain/customer-shipment.php:24
4663
+ #: woocommerce-germanized/templates/emails/customer-cancelled-order.php:27
4664
+ #: woocommerce-germanized/templates/emails/plain/customer-cancelled-order.php:24
4665
+ #, php-format
4666
+ msgid "Hi %s,"
4667
  msgstr ""
4668
+
4669
+ #: woocommerce-germanized-shipments/templates/emails/customer-guest-return-shipment-request.php:30
4670
+ #: woocommerce-germanized-shipments/templates/emails/plain/customer-guest-return-shipment-request.php:26
4671
+ #, php-format
4672
+ msgctxt "shipments"
4673
+ msgid "You've requested a return to your order %s. Please follow the link to add your return request."
 
4674
  msgstr ""
4675
 
4676
+ #: woocommerce-germanized-shipments/templates/emails/customer-guest-return-shipment-request.php:34
4677
+ #: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:30
4678
+ msgctxt "shipments"
4679
+ msgid "Add return request"
4680
  msgstr ""
4681
 
4682
+ #: woocommerce-germanized-shipments/templates/emails/customer-guest-return-shipment-request.php:37
4683
+ #, php-format
4684
+ msgctxt "shipments"
4685
+ msgid "If you cannot follow the link above please copy this url and paste it to your browser bar: %s"
4686
  msgstr ""
4687
 
4688
+ #: woocommerce-germanized-shipments/templates/emails/customer-return-shipment-delivered.php:30
4689
+ #: woocommerce-germanized-shipments/templates/emails/plain/customer-return-shipment-delivered.php:26
4690
+ msgctxt "shipments"
4691
+ msgid "Thank you! Your return has been received successfully. There are more details below for your reference:"
4692
  msgstr ""
4693
 
4694
+ #: woocommerce-germanized-shipments/templates/emails/customer-return-shipment.php:32
4695
+ #: woocommerce-germanized-shipments/templates/emails/plain/customer-return-shipment.php:28
4696
+ msgctxt "shipments"
4697
+ msgid "Your return request has been accepted. Please follow the instructions beneath to return your shipment."
4698
  msgstr ""
4699
 
4700
+ #: woocommerce-germanized-shipments/templates/emails/customer-return-shipment.php:34
4701
+ #: woocommerce-germanized-shipments/templates/emails/plain/customer-return-shipment.php:30
4702
+ msgctxt "shipments"
4703
+ msgid "A new return has been added to your order. Please follow the instructions beneath to return your shipment."
4704
  msgstr ""
4705
 
4706
+ #: woocommerce-germanized-shipments/templates/emails/customer-shipment.php:33
4707
+ #: woocommerce-germanized-shipments/templates/emails/plain/customer-shipment.php:28
4708
+ #, php-format
4709
+ msgctxt "shipments"
4710
+ msgid "Your order on %1$s has been partially shipped via %2$s. Find details below for your reference:"
4711
  msgstr ""
4712
 
4713
+ #: woocommerce-germanized-shipments/templates/emails/customer-shipment.php:36
4714
+ #: woocommerce-germanized-shipments/templates/emails/plain/customer-shipment.php:31
4715
+ #, php-format
4716
+ msgctxt "shipments"
4717
+ msgid "Your order on %1$s has been shipped via %2$s. Find details below for your reference:"
 
4718
  msgstr ""
4719
 
4720
+ #: woocommerce-germanized-shipments/templates/emails/email-order-shipments.php:29
4721
+ #: woocommerce-germanized-shipments/templates/emails/plain/email-order-shipments.php:29
4722
+ #, php-format
4723
+ msgctxt "shipments"
4724
+ msgid "Shipment %d of %d"
 
4725
  msgstr ""
4726
 
4727
+ #: woocommerce-germanized-shipments/templates/emails/email-order-shipments.php:33
4728
+ #: woocommerce-germanized-shipments/templates/emails/email-shipment-tracking.php:30
4729
+ #: woocommerce-germanized-shipments/templates/emails/plain/email-order-shipments.php:33
4730
+ #: woocommerce-germanized-shipments/templates/emails/plain/email-shipment-tracking.php:24
4731
+ msgctxt "shipments"
4732
+ msgid "Estimated date:"
4733
  msgstr ""
4734
 
4735
+ #: woocommerce-germanized-shipments/templates/emails/email-order-shipments.php:38
4736
+ #: woocommerce-germanized-shipments/templates/emails/email-shipment-tracking.php:34
4737
+ #: woocommerce-germanized-shipments/templates/emails/plain/email-order-shipments.php:38
4738
+ #: woocommerce-germanized-shipments/templates/emails/plain/email-shipment-tracking.php:28
4739
+ #: woocommerce-germanized-shipments/templates/shipment/shipment-details-tracking.php:26
4740
+ msgctxt "shipments"
4741
+ msgid "Track your shipment"
4742
  msgstr ""
4743
 
4744
+ #: woocommerce-germanized-shipments/templates/emails/email-order-shipments.php:45
4745
+ #: woocommerce-germanized-shipments/templates/emails/plain/email-order-shipments.php:45
4746
+ msgctxt "shipments"
4747
+ msgid "Sorry, this shipment does currently not support tracking."
4748
  msgstr ""
4749
 
4750
+ #: woocommerce-germanized-shipments/templates/emails/email-shipment-address.php:27
4751
+ #: woocommerce-germanized-shipments/templates/emails/plain/email-shipment-address.php:19
4752
+ msgctxt "shipments"
4753
+ msgid "Shipment goes to:"
4754
  msgstr ""
4755
 
4756
+ #: woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:46
4757
+ #: woocommerce-germanized-shipments/templates/emails/plain/email-shipment-details.php:23
4758
+ #, php-format
4759
+ msgctxt "shipments"
4760
+ msgid "Details to your %s"
4761
  msgstr ""
4762
 
4763
+ #: woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:46
4764
+ #: woocommerce-germanized-shipments/templates/emails/plain/email-shipment-details.php:23
4765
+ #, php-format
4766
+ msgctxt "shipments"
4767
+ msgid "[%s #%s]"
4768
  msgstr ""
4769
 
4770
+ #: woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:54
4771
+ #: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:35
4772
+ #: woocommerce-germanized-shipments/templates/shipment/shipment-details.php:58
4773
+ msgctxt "shipments"
4774
+ msgid "Product"
 
 
4775
  msgstr ""
4776
 
4777
+ #: woocommerce-germanized-shipments/templates/emails/email-shipment-tracking.php:27
4778
+ msgctxt "shipments"
4779
+ msgid "Tracking:"
 
4780
  msgstr ""
4781
 
4782
+ #: woocommerce-germanized-shipments/templates/emails/plain/email-shipment-details.php:39
4783
+ #, php-format
4784
+ msgctxt "shipments"
4785
+ msgid "View shipment: %s"
4786
  msgstr ""
4787
 
4788
+ #: woocommerce-germanized-shipments/templates/emails/plain/email-shipment-tracking.php:21
4789
+ msgctxt "shipments"
4790
+ msgid "Delivery:"
 
4791
  msgstr ""
4792
 
4793
+ #: woocommerce-germanized-shipments/templates/global/form-return-request.php:29
4794
+ msgctxt "shipments"
4795
+ msgid "Order email"
 
4796
  msgstr ""
4797
 
4798
+ #: woocommerce-germanized-shipments/templates/global/form-return-request.php:34
4799
+ msgctxt "shipments"
4800
+ msgid "Order id"
 
4801
  msgstr ""
4802
 
4803
+ #: woocommerce-germanized-shipments/templates/global/form-return-request.php:44
4804
+ msgctxt "shipments"
4805
+ msgid "Submit"
 
4806
  msgstr ""
4807
 
4808
+ #: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:18
4809
+ msgctxt "shipments"
4810
+ msgid "New return request"
 
4811
  msgstr ""
4812
 
4813
+ #: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:20
4814
+ msgctxt "shipments"
4815
+ msgid "Please select one or more items to return."
 
4816
  msgstr ""
4817
 
4818
+ #: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:23
4819
+ msgctxt "shipments"
4820
+ msgid "After submitting your return request we will review it and notify you via email about the next steps."
 
4821
  msgstr ""
4822
 
4823
+ #: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:25
4824
+ msgctxt "shipments"
4825
+ msgid "After submitting your return request you'll receive an email with further information to the return process."
 
4826
  msgstr ""
4827
 
4828
+ #: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:81
4829
+ msgctxt "shipments"
4830
+ msgid "Send request"
 
4831
  msgstr ""
4832
 
4833
+ #: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:32
4834
+ msgctxt "shipments"
4835
+ msgid "Adding return requests to this order is no longer available. You may contact us for further information."
 
4836
  msgstr ""
4837
 
4838
+ #: woocommerce-germanized-shipments/templates/myaccount/shipments.php:79
4839
+ msgctxt "shipments"
4840
+ msgid "track now"
 
4841
  msgstr ""
4842
 
4843
+ #: woocommerce-germanized-shipments/templates/myaccount/view-shipment.php:24
4844
+ #, php-format
4845
+ msgctxt "shipments"
4846
+ msgid "Shipment #%1$s was created on %2$s and is currently %3$s."
4847
  msgstr ""
4848
 
4849
+ #: woocommerce-germanized-shipments/templates/shipment/add-return-shipment-item.php:61
4850
+ msgctxt "shipments return reason"
4851
+ msgid "Please choose"
 
 
 
 
4852
  msgstr ""
4853
 
4854
+ #: woocommerce-germanized-shipments/templates/shipment/shipment-details-address.php:25
4855
+ msgctxt "shipments"
4856
+ msgid "Shipment receiver"
4857
  msgstr ""
4858
 
4859
+ #: woocommerce-germanized-shipments/templates/shipment/shipment-details.php:52
4860
+ msgctxt "shipments"
4861
+ msgid "Shipment details"
4862
  msgstr ""
4863
 
4864
+ #: woocommerce-germanized-shipments/woocommerce-germanized-shipments.php:40
4865
+ #: woocommerce-germanized-shipments/woocommerce-germanized-shipments.php:58
4866
+ #, php-format
4867
+ msgctxt "shipments"
4868
+ msgid "Your installation of the Germanized Shipments feature plugin is incomplete. Please run %1$s within the %2$s directory."
4869
  msgstr ""
4870
 
4871
+ #: woocommerce-germanized/i18n/labels.php:18
4872
  msgid "RRP: "
4873
  msgstr ""
4874
 
4875
+ #: woocommerce-germanized/i18n/labels.php:19
4876
  msgid "New Price: "
4877
  msgstr ""
4878
 
4879
+ #: woocommerce-germanized/i18n/labels.php:20
4880
  msgid "Old Price: "
4881
  msgstr ""
4882
 
4883
+ #: woocommerce-germanized/i18n/units.php:18
4884
  msgid "kg"
4885
  msgstr ""
4886
 
4887
+ #: woocommerce-germanized/i18n/units.php:19
4888
  msgid "g"
4889
  msgstr ""
4890
 
4891
+ #: woocommerce-germanized/i18n/units.php:20
4892
  msgid "lbs"
4893
  msgstr ""
4894
 
4895
+ #: woocommerce-germanized/i18n/units.php:21
4896
  msgid "oz"
4897
  msgstr ""
4898
 
4899
+ #: woocommerce-germanized/i18n/units.php:22
4900
  msgid "m"
4901
  msgstr ""
4902
 
4903
+ #: woocommerce-germanized/i18n/units.php:23
4904
  msgid "cm"
4905
  msgstr ""
4906
 
4907
+ #: woocommerce-germanized/i18n/units.php:24
4908
  msgid "mm"
4909
  msgstr ""
4910
 
4911
+ #: woocommerce-germanized/i18n/units.php:25
4912
  msgid "in"
4913
  msgstr ""
4914
 
4915
+ #: woocommerce-germanized/i18n/units.php:26
4916
  msgid "yd"
4917
  msgstr ""
4918
 
4919
+ #: woocommerce-germanized/i18n/units.php:27
4920
  msgid "ml"
4921
  msgstr ""
4922
 
4923
+ #: woocommerce-germanized/i18n/units.php:28
4924
  msgid "l"
4925
  msgstr ""
4926
 
4927
+ #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:566
4928
+ #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:576
4929
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:453
4930
+ #: woocommerce-germanized/includes/wc-gzd-template-functions.php:597
4931
+ #: woocommerce-germanized/includes/wc-gzd-template-functions.php:605
4932
  msgid "incl. VAT"
4933
  msgstr ""
4934
 
4935
+ #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:566
4936
  msgid "excl. VAT"
4937
  msgstr ""
4938
 
4939
+ #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:568
4940
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:453
4941
+ #, php-format
4942
  msgid "incl. %s%% VAT"
4943
  msgstr ""
4944
 
4945
+ #: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:568
4946
+ #, php-format
4947
  msgid "excl. %s%% VAT"
4948
  msgstr ""
4949
 
4950
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-customer.php:52
4951
  msgid "Double opt in"
4952
  msgstr ""
4953
 
4954
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-customer.php:58
4955
  msgid "Yes, customer opted in"
4956
  msgstr ""
4957
 
4958
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-customer.php:62
4959
  msgid "Resend activation link"
4960
  msgstr ""
4961
 
4962
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:63
4963
  msgid "Please choose a page as your privacy policy first."
4964
  msgstr ""
4965
 
4966
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:63
4967
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:190
4968
  msgid "Found"
4969
  msgstr ""
4970
 
4971
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:63
4972
  msgid "Not found within label."
4973
  msgstr ""
4974
 
4975
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:63
4976
  msgid "Adjust label"
4977
  msgstr ""
4978
 
4979
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:69
4980
  msgid "Global minimum age"
4981
  msgstr ""
4982
 
4983
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:73
4984
  msgid "Choose a global minimum age necessary to buy your products. Can be overridden by product specific settings."
4985
  msgstr ""
4986
 
4987
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:84
4988
  msgid "e.g. include your privacy policy: {data_security_page}Privacy Policy{/data_security_page}"
4989
  msgstr ""
4990
 
4991
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:90
4992
  msgid "Policy Status"
4993
  msgstr ""
4994
 
4995
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:93
4996
  msgid "This option shows whether you have already embedded your privacy policy within your legal text."
4997
  msgstr ""
4998
 
4999
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:104
5000
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:129
5001
  msgid "Confirmation"
5002
  msgstr ""
5003
 
5004
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:108
5005
  msgid "This text will be appended to your order processing email if the order contains service products."
5006
  msgstr ""
5007
 
5008
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:109
5009
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:134
5010
+ #, php-format
5011
+ msgid "To insert a link to your cancellation policy use the following placeholder: %s"
5012
  msgstr ""
5013
 
5014
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:110
5015
+ #: woocommerce-germanized/includes/updates/woocommerce-gzd-update-2.0.1.php:33
5016
  msgid "Furthermore you have expressly agreed to start the performance of the contract for services before expiry of the withdrawal period. I have noted to lose my {link}right of withdrawal{/link} with the beginning of the performance of the contract."
5017
  msgstr ""
5018
 
5019
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:122
5020
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:444
5021
  msgid "Downloadable Product"
5022
  msgstr ""
5023
 
5024
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:123
5025
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:445
5026
  msgid "Virtual Product"
5027
  msgstr ""
5028
 
5029
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:124
5030
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:46
5031
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:168
5032
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:446
5033
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:146
5034
  msgid "Service"
5035
  msgstr ""
5036
 
5037
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:133
5038
  msgid "This text will be appended to your order processing email if the order contains digital products."
5039
  msgstr ""
5040
 
5041
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:135
5042
+ #: woocommerce-germanized/includes/updates/woocommerce-gzd-update-2.0.1.php:27
5043
  msgid "Furthermore you have expressly agreed to start the performance of the contract for digital items (e.g. downloads) before expiry of the withdrawal period. I have noted to lose my {link}right of withdrawal{/link} with the beginning of the performance of the contract."
5044
  msgstr ""
5045
 
5046
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:138
5047
  msgid "Digital Product types"
5048
  msgstr ""
5049
 
5050
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:139
5051
+ msgid "Select product types for which the loss of the right of withdrawal notice is shown. Product types like \"simple product\" may be redundant because they include virtual and downloadable products."
5052
  msgstr ""
5053
 
5054
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:158
5055
  msgid "Show checkbox"
5056
  msgstr ""
5057
 
5058
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:159
5059
  msgid "Choose whether you like to always show the parcel delivery checkbox or do only show for certain shipping methods."
5060
  msgstr ""
5061
 
5062
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:164
5063
  msgid "For certain shipping methods."
5064
  msgstr ""
5065
 
5066
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:165
5067
  msgid "Always show."
5068
  msgstr ""
5069
 
5070
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:170
5071
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:50
5072
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:114
5073
  msgid "Shipping Methods"
5074
  msgstr ""
5075
 
5076
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-legal-checkboxes.php:171
5077
  msgid "Select shipping methods which are applicable for the Opt-In Checkbox."
5078
  msgstr ""
5079
 
5080
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-notices.php:115
5081
+ #, php-format
5082
  msgid "<strong>Be aware!</strong> This update is not compatible with your current Germanized Pro version. Please check for updates (%s) before updating Germanized to prevent compatibility issues."
5083
  msgstr ""
5084
 
5085
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-product-categories.php:58
5086
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-product-categories.php:79
5087
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:183
5088
  msgid "Age Verification"
5089
  msgstr ""
5090
 
5091
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-product-categories.php:60
5092
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:75
5093
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:85
5094
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:154
5095
  msgid "Same as Parent"
5096
  msgstr ""
5097
 
5098
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-product-categories.php:82
5099
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:453
5100
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:549
5101
  msgid "None"
5102
  msgstr ""
5103
 
5104
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:62
5105
  msgid "Germanize"
5106
  msgstr ""
5107
 
5108
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:69
5109
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:144
5110
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:79
5111
+ #: woocommerce-germanized/woocommerce-germanized.php:783
5112
  msgid "Settings"
5113
  msgstr ""
5114
 
5115
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:76
5116
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shipping-provider.php:82
5117
+ msgid "Shipping Provider"
5118
+ msgstr ""
5119
+
5120
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:83
5121
+ #: woocommerce-germanized/includes/admin/views/setup/first-steps.php:9
5122
  msgid "First Steps"
5123
  msgstr ""
5124
 
5125
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:87
5126
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:17
5127
  msgid "Start tutorial"
5128
  msgstr ""
5129
 
5130
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:97
5131
+ #: woocommerce-germanized/includes/admin/views/setup/encrypt.php:10
5132
+ msgid "Encryption"
5133
  msgstr ""
5134
 
5135
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:102
5136
+ msgid "Insert key"
 
5137
  msgstr ""
5138
 
5139
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:102
5140
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:386
5141
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:388
5142
+ msgid "Continue"
5143
  msgstr ""
5144
 
5145
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:134
5146
  msgid "Pages"
5147
  msgstr ""
5148
 
5149
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:135
5150
  msgid "Create legal pages placeholders e.g. terms & conditions."
5151
  msgstr ""
5152
 
5153
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:145
5154
  msgid "Germanize WooCommerce settings (e.g. currency, tax display)."
5155
  msgstr ""
5156
 
5157
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:152
5158
  msgctxt "install"
5159
+ msgid "OSS status"
5160
  msgstr ""
5161
 
5162
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:153
5163
+ #, php-format
5164
+ msgid "I'm participating in the <a href=\"%s\" target=\"_blank\" rel=\"noopener\">One Stop Shop procedure</a>."
5165
  msgstr ""
5166
 
5167
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:159
5168
  msgctxt "install"
5169
+ msgid "VAT"
5170
  msgstr ""
5171
 
5172
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:160
5173
+ msgid "Let Germanized insert EU VAT rates."
5174
  msgstr ""
5175
 
5176
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:171
5177
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:202
5178
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:42
5179
  msgid "Small-Enterprise-Regulation"
5180
  msgstr ""
5181
 
5182
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:172
5183
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:203
5184
  msgid "VAT based on &#167;19 UStG"
5185
  msgstr ""
5186
 
5187
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:172
5188
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:203
5189
+ #, php-format
5190
  msgid "Enable this option if you have chosen to apply to <a href=\"%s\" target=\"_blank\">&#167;19 UStG</a>."
5191
  msgstr ""
5192
 
5193
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:178
5194
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-doi.php:21
5195
  msgid "Double Opt In"
5196
  msgstr ""
5197
 
5198
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:179
5199
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-doi.php:38
5200
  msgid "Enable customer double opt in during registration."
5201
  msgstr ""
5202
 
5203
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:179
5204
+ #, php-format
5205
  msgid "Sends an email to the customer after registration to verify his account. <strong>By default unactivated customers will be deleted after 7 days</strong>. You may adjust your DOI <a href=\"%s\" target=\"_blank\">settings</a> accordingly."
5206
  msgstr ""
5207
 
5208
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:196
5209
+ #, php-format
5210
+ msgid "Enable %s integration"
5211
+ msgstr ""
5212
+
5213
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:213
5214
  msgid "Setup"
5215
  msgstr ""
5216
 
5217
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:311
5218
  msgid "Germanized &rsaquo; Setup Wizard"
5219
  msgstr ""
5220
 
5221
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:382
5222
  msgid "Skip Step"
5223
  msgstr ""
5224
 
5225
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:394
 
 
 
 
 
5226
  msgid "Return to WP Admin"
5227
  msgstr ""
5228
 
5229
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:45
5230
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:53
5231
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:136
5232
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:240
5233
  msgid "Terms & Conditions"
5234
  msgstr ""
5235
 
5236
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:46
5237
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:63
5238
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:241
5239
+ msgid "Cancellation Policy"
5240
  msgstr ""
5241
 
5242
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:47
5243
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:84
5244
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:136
5245
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:242
5246
  msgid "Imprint"
5247
  msgstr ""
5248
 
5249
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:48
5250
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:94
5251
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:202
5252
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:243
5253
+ msgid "Privacy Policy"
5254
  msgstr ""
5255
 
5256
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:49
5257
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:104
5258
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:247
5259
  msgid "Payment Methods"
5260
  msgstr ""
5261
 
5262
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-welcome.php:52
5263
  msgid "About Germanized"
5264
  msgstr ""
5265
 
5266
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-welcome.php:53
5267
  msgid "Welcome to Germanized"
5268
  msgstr ""
5269
 
5270
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin-welcome.php:285
5271
  msgid "Go to Germanized Settings"
5272
  msgstr ""
5273
 
5274
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:34
5275
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:43
5276
+ #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:26
5277
+ #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:35
5278
+ #: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:24
5279
+ #: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:33
5280
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:21
5281
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:30
5282
+ #: woocommerce-germanized/includes/class-wc-gzd-dependencies.php:56
5283
+ #: woocommerce-germanized/includes/class-wc-gzd-dependencies.php:65
5284
+ #: woocommerce-germanized/includes/class-wc-gzd-hook-priorities.php:35
5285
+ #: woocommerce-germanized/includes/class-wc-gzd-hook-priorities.php:44
5286
+ #: woocommerce-germanized/includes/class-wc-gzd-order-helper.php:21
5287
+ #: woocommerce-germanized/includes/class-wc-gzd-order-helper.php:30
5288
+ #: woocommerce-germanized/includes/class-wc-gzd-product-attribute-helper.php:21
5289
+ #: woocommerce-germanized/includes/class-wc-gzd-product-attribute-helper.php:30
5290
+ #: woocommerce-germanized/includes/export/class-wc-gzd-product-export.php:23
5291
+ #: woocommerce-germanized/includes/export/class-wc-gzd-product-export.php:32
5292
+ #: woocommerce-germanized/includes/import/class-wc-gzd-product-import.php:23
5293
+ #: woocommerce-germanized/includes/import/class-wc-gzd-product-import.php:32
5294
+ #: woocommerce-germanized/woocommerce-germanized.php:125
5295
+ #: woocommerce-germanized/woocommerce-germanized.php:134
5296
  msgid "Cheatin&#8217; huh?"
5297
  msgstr ""
5298
 
5299
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:121
5300
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:155
5301
  msgctxt "dhl"
5302
  msgid "Action failed. Please refresh the page and retry."
5303
  msgstr ""
5304
 
5305
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:125
5306
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:159
5307
  msgctxt "dhl"
5308
  msgid "You don't have permission to do this."
5309
  msgstr ""
5310
 
5311
+ #. Plugin Name of the plugin/theme
5312
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:235
5313
+ msgid "Germanized for WooCommerce"
5314
+ msgstr ""
5315
+
5316
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:345
5317
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:49
5318
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:62
5319
  msgid "Yes"
5320
  msgstr ""
5321
 
5322
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:345
5323
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:62
5324
  msgid "No"
5325
  msgstr ""
5326
 
5327
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:417
5328
  msgid "Paid for order notification manually sent to customer."
5329
  msgstr ""
5330
 
5331
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:437
5332
  msgid "Order confirmation manually sent to customer."
5333
  msgstr ""
5334
 
5335
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:457
5336
  msgid "Resend order confirmation"
5337
  msgstr ""
5338
 
5339
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:458
5340
  msgid "Send paid for order notification"
5341
  msgstr ""
5342
 
5343
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:468
5344
+ #: woocommerce-germanized/includes/admin/settings/abstract-wc-gzd-settings-tab.php:121
5345
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:23
5346
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shipping-provider.php:68
5347
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:9
5348
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:27
5349
  msgid "Germanized"
5350
  msgstr ""
5351
 
5352
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:482
5353
  msgid "Parcel Delivery Data Transfer:"
5354
  msgstr ""
5355
 
5356
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:483
5357
  msgid "allowed"
5358
  msgstr ""
5359
 
5360
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:483
5361
  msgid "not allowed"
5362
  msgstr ""
5363
 
5364
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:566
5365
  msgid "Optional Email Content"
5366
  msgstr ""
5367
 
5368
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:584
5369
  msgid "Add content which will be replacing default page content within emails."
5370
  msgstr ""
5371
 
5372
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:598
5373
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:164
5374
  msgid "Optional Mini Description"
5375
  msgstr ""
5376
 
5377
+ #: woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:620
5378
  msgid "This content will be shown as short product description within checkout and emails."
5379
  msgstr ""
5380
 
5381
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:46
5382
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:169
5383
  msgid "Service products do not sell physical products."
5384
  msgstr ""
5385
 
5386
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:73
5387
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:195
5388
  msgid "Sale Label"
5389
  msgstr ""
5390
 
5391
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:83
5392
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:202
5393
  msgid "Sale Regular Label"
5394
  msgstr ""
5395
 
5396
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:102
5397
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:217
5398
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:232
5399
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:264
5400
+ #: woocommerce-germanized/includes/compatibility/elementor/widgets/class-wc-gzd-elementor-widget-product-units.php:10
5401
  msgid "Product Units"
5402
  msgstr ""
5403
 
5404
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:102
5405
  msgid "Number of units included per default product price. Example: 1000 ml. Leave blank to use parent value."
5406
  msgstr ""
5407
 
5408
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:109
5409
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:248
5410
  msgid "Calculation"
5411
  msgstr ""
5412
 
5413
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:114
5414
  msgid "Calculate unit prices automatically"
5415
  msgstr ""
5416
 
5417
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:119
5418
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:253
5419
  msgid "Regular Unit Price"
5420
  msgstr ""
5421
 
5422
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:126
5423
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:258
5424
  msgid "Sale Unit Price"
5425
  msgstr ""
5426
 
5427
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:133
5428
+ #, php-format
5429
+ msgid "To enable unit prices on variation level please choose a unit and unit price units within %s."
5430
  msgstr ""
5431
 
5432
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:133
5433
  msgid "general product data"
5434
  msgstr ""
5435
 
5436
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:138
5437
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:309
5438
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:32
5439
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:204
5440
+ #: woocommerce-germanized/includes/compatibility/elementor/widgets/class-wc-gzd-elementor-widget-product-delivery-time.php:10
5441
  msgid "Delivery Time"
5442
  msgstr ""
5443
 
5444
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:143
5445
  msgid "Same as parent"
5446
  msgstr ""
5447
 
5448
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:152
5449
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:268
5450
  msgid "Minimum Age"
5451
  msgstr ""
5452
 
5453
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:176
5454
  msgid "Diff. Taxation"
5455
  msgstr ""
5456
 
5457
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:177
5458
  msgid "Product applies to differential taxation based on §25a UStG."
5459
  msgstr ""
5460
 
5461
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:196
5462
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:203
5463
  msgid "Select Price Label"
5464
  msgstr ""
5465
 
5466
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:198
5467
  msgid "If the product is on sale you may want to show a price label right before outputting the old price to inform the customer."
5468
  msgstr ""
5469
 
5470
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:205
5471
  msgid "If the product is on sale you may want to show a price label right before outputting the new price to inform the customer."
5472
  msgstr ""
5473
 
5474
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:210
5475
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:107
5476
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:98
5477
  msgid "Unit"
5478
  msgstr ""
5479
 
5480
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:211
5481
  msgid "Select unit"
5482
  msgstr ""
5483
 
5484
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:213
5485
  msgid "Needed if selling on a per unit basis"
5486
  msgstr ""
5487
 
5488
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:220
5489
  msgid "Number of units included per default product price. Example: 1000 ml."
5490
  msgstr ""
5491
 
5492
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:224
5493
+ msgid "Unit Price Units"
 
 
 
 
5494
  msgstr ""
5495
 
5496
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:227
5497
+ msgid "Unit price units. Example unit price: 0,99 € / 100 ml. Insert 100 as unit price unit amount."
5498
  msgstr ""
5499
 
5500
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:249
5501
+ msgid "Calculate unit prices automatically."
5502
  msgstr ""
5503
 
5504
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:270
 
 
 
 
5505
  msgid "Adds an age verification checkbox while purchasing this product."
5506
  msgstr ""
5507
 
5508
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:281
5509
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:313
5510
  msgid "Search for a delivery time&hellip;"
5511
  msgstr ""
5512
 
5513
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:322
5514
  msgid "Free shipping?"
5515
  msgstr ""
5516
 
5517
+ #: woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:323
5518
  msgid "This option disables the \"plus shipping costs\" notice on product page"
5519
  msgstr ""
5520
 
5521
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:29
5522
  msgctxt "dhl"
5523
  msgid "DHL built-in Integration"
5524
  msgstr ""
5525
 
5526
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:33
5527
  msgctxt "dhl"
5528
  msgid "It seems like you are currently using the DHL for WooCommerce plugin. Germanized does now fully integrate DHL services and switching is as simple as can be. Check your advantages by using the DHL integration in Germanized and let Germanized import your current settings for you."
5529
  msgstr ""
5530
 
5531
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:35
5532
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:35
5533
  msgctxt "dhl"
5534
  msgid "No need to use an external plugin which might lead to incompatibilities"
5535
  msgstr ""
5536
 
5537
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:36
5538
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:36
5539
+ #, php-format
5540
  msgctxt "dhl"
5541
  msgid "Many improved features such as automation, services per shipping method and %s"
5542
  msgstr ""
5543
 
5544
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:36
5545
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:36
5546
  msgctxt "dhl"
5547
  msgid "many more"
5548
  msgstr ""
5549
 
5550
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:37
5551
  msgctxt "dhl"
5552
  msgid "Perfectly integrated in Germanized &ndash; easily create labels for shipments"
5553
  msgstr ""
5554
 
5555
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:47
5556
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:47
5557
  msgctxt "dhl"
5558
  msgid "Import settings and activate"
5559
  msgstr ""
5560
 
5561
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-dhl-importer.php:53
5562
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:53
5563
  msgctxt "dhl"
5564
  msgid "Learn more"
5565
  msgstr ""
5566
 
5567
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-encryption.php:33
5568
+ msgid "Encryption key is missing"
5569
+ msgstr ""
5570
+
5571
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-encryption.php:46
5572
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-shipping-excl-tax.php:45
5573
+ #: woocommerce-germanized/includes/admin/settings/abstract-wc-gzd-settings-tab.php:159
5574
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:61
5575
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:284
5576
+ msgid "Learn more"
5577
+ msgstr ""
5578
+
5579
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-encryption.php:55
5580
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:282
5581
+ msgid "Auto insert"
5582
+ msgstr ""
5583
+
5584
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:29
5585
  msgctxt "dhl"
5586
  msgid "Internetmarke built-in Integration"
5587
  msgstr ""
5588
 
5589
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:33
5590
  msgctxt "dhl"
5591
  msgid "It seems like you are currently using the Deutsche Post Internetmarke plugin. Germanized does now fully integrate Internetmarke and switching is as simple as can be. Check your advantages by using the Internetmarke integration in Germanized and let Germanized import your current settings for you."
5592
  msgstr ""
5593
 
5594
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-internetmarke-importer.php:37
5595
  msgctxt "dhl"
5596
  msgid "Perfectly integrated in Germanized &ndash; easily create stamps for shipments"
5597
  msgstr ""
5598
 
5599
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-pro.php:23
5600
  msgid "For professionals: Upgrade to Pro-Version"
5601
  msgstr ""
5602
 
5603
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-pro.php:27
5604
  msgid "Do you enjoy Germanized? Do you want to benefit from even more and better features? You may consider an uprade to Pro. Check out some of the main Pro features:"
5605
  msgstr ""
5606
 
5607
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-pro.php:29
5608
  msgid "PDF invoices and packing slips"
5609
  msgstr ""
5610
 
5611
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-pro.php:30
5612
+ msgid "Generator for terms & conditions and cancellation policy"
5613
  msgstr ""
5614
 
5615
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-pro.php:31
5616
  msgid "Multistep Checkout"
5617
  msgstr ""
5618
 
5619
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-pro.php:32
5620
  msgid "Premium Ticket Support"
5621
  msgstr ""
5622
 
5623
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-pro.php:43
5624
  msgid "Learn more about Pro Version"
5625
  msgstr ""
5626
 
5627
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-review.php:24
5628
  msgid "Do you like Germanized?"
5629
  msgstr ""
5630
 
5631
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-review.php:28
5632
  msgid "If you like Germanized and our Plugin does a good job it would be great if you would write a review about WooCommerce Germanized on WordPress.org. Thank you for your support!"
5633
  msgstr ""
5634
 
5635
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-review.php:40
5636
  msgid "I've added my review"
5637
  msgstr ""
5638
 
5639
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-review.php:47
5640
  msgid "Write review now"
5641
  msgstr ""
5642
 
5643
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-review.php:53
5644
  msgid "Found Bugs?"
5645
  msgstr ""
5646
 
5647
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-shipping-excl-tax.php:29
5648
  msgid "Shipping and fee taxes"
5649
  msgstr ""
5650
 
5651
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-shipping-excl-tax.php:33
5652
  msgid "Starting with the newest Germanized version your <strong>shipping costs and fees will no longer be treated including tax</strong>. This change in Germanized was necessary due to your prices being treated excluding taxes (see your WooCommerce tax settings). Due to the way WooCommerce calculates taxes for orders (based on prices excluding taxes) there is no consistent way to (re-)calculate shipping costs and/or fee taxes if they are treated including taxes. Please check your shipping costs and fees and edit costs accordingly."
5653
  msgstr ""
5654
 
5655
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-shipping-excl-tax.php:40
5656
  msgid "Manage shipping methods"
5657
  msgstr ""
5658
 
5659
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-template-outdated.php:53
 
 
 
 
 
 
 
5660
  msgid "Your theme contains outdated Germanized template files"
5661
  msgstr ""
5662
 
5663
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-template-outdated.php:57
5664
  msgid "These files may need updating to ensure they are compatible with the current version of Germanized. Suggestions to fix this:"
5665
  msgstr ""
5666
 
5667
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-template-outdated.php:59
5668
  msgid "Update your theme to the latest version. If no update is available contact your theme author asking about compatibility with the current Germanized version."
5669
  msgstr ""
5670
 
5671
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-template-outdated.php:60
5672
  msgid "If you copied over a template file to change something, then you will need to copy the new version of the template and apply your changes again."
5673
  msgstr ""
5674
 
5675
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-template-outdated.php:70
5676
  msgid "View affected templates"
5677
  msgstr ""
5678
 
5679
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-theme-supported.php:40
5680
+ #, php-format
5681
  msgid "Enable full %s support"
5682
  msgstr ""
5683
 
5684
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-theme-supported.php:46
5685
+ #, php-format
5686
  msgid "Your current theme %s needs some adaptions to seamlessly integrate with Germanized. Our Pro Version will <strong>enable support for %s</strong> and makes sure Germanized settings are shown and styled within frontend for a better user experience. A better user experience will help you selling more products."
5687
  msgstr ""
5688
 
5689
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-theme-supported.php:55
5690
+ #, php-format
5691
  msgid "Enable support for %s"
5692
  msgstr ""
5693
 
5694
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-update.php:25
5695
  msgid "Germanized Data Update Required"
5696
  msgstr ""
5697
 
5698
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-update.php:29
5699
+ msgid "We just need to update your install to the latest version."
5700
  msgstr ""
5701
 
5702
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note-update.php:40
5703
  msgid "Run the updater"
5704
  msgstr ""
5705
 
5706
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note.php:184
5707
  msgid "Not now"
5708
  msgstr ""
5709
 
5710
+ #: woocommerce-germanized/includes/admin/notes/class-wc-gzd-admin-note.php:188
 
5711
  msgid "Deactivate"
5712
  msgstr ""
5713
 
5714
+ #: woocommerce-germanized/includes/admin/settings/abstract-wc-gzd-settings-tab.php:39
5715
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:52
5716
+ #: woocommerce-germanized/includes/admin/views/html-settings-pro.php:23
5717
  msgid "Get Germanized Pro to unlock"
5718
  msgstr ""
5719
 
5720
+ #: woocommerce-germanized/includes/admin/settings/abstract-wc-gzd-settings-tab.php:40
5721
+ #: woocommerce-germanized/includes/admin/views/html-settings-pro.php:24
5722
  msgid "Enjoy even more professional features such as invoices, legal text generators, B2B VAT settings and premium support!"
5723
  msgstr ""
5724
 
5725
+ #: woocommerce-germanized/includes/admin/settings/abstract-wc-gzd-settings-tab.php:42
5726
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-pointers.php:177
5727
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:63
5728
+ #: woocommerce-germanized/includes/admin/views/html-settings-pro.php:26
5729
+ #: woocommerce-germanized/includes/admin/views/setup/first-steps.php:35
5730
+ #: woocommerce-germanized/includes/compatibility/elementor/widgets/abstact-class-wc-gzd-elementor-widget.php:54
5731
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:90
5732
  msgid "Upgrade now"
5733
  msgstr ""
5734
 
5735
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-pointers.php:78
5736
  msgid "Setting tabs"
5737
  msgstr ""
5738
 
5739
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-pointers.php:79
5740
  msgid "To make it more comfortable for you, we've splitted the settings into multiple tabs."
5741
  msgstr ""
5742
 
5743
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-pointers.php:92
5744
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:785
5745
  msgid "Status"
5746
  msgstr ""
5747
 
5748
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-pointers.php:93
5749
  msgid "Some features can be switched on or off explicitly by toggling the input."
5750
  msgstr ""
5751
 
5752
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-pointers.php:144
5753
  msgid "Dismiss"
5754
  msgstr ""
5755
 
5756
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-pointers.php:145
5757
  msgid "Next"
5758
  msgstr ""
5759
 
5760
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-pointers.php:152
5761
  msgid "Let's go"
5762
  msgstr ""
5763
 
5764
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:17
5765
  msgid "These settings will help you to make sure your checkout complies with the button solution."
5766
  msgstr ""
5767
 
5768
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:21
5769
  msgid "Button Solution"
5770
  msgstr ""
5771
 
5772
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:41
5773
  msgid "Buy now button"
5774
  msgstr ""
5775
 
5776
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:42
5777
  msgid "These settings help you comply to the button solution. The buy now button text is forced and static so that no payment gateway might override it."
5778
  msgstr ""
5779
 
5780
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:55
5781
  msgid "Product table background"
5782
  msgstr ""
5783
 
5784
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:56
5785
  msgid "The product table within your checkout should be noticeable for your customers. You might want to choose a different background color for it."
5786
  msgstr ""
5787
 
5788
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:74
5789
  msgid "Button Text"
5790
  msgstr ""
5791
 
5792
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:75
5793
  msgid "This text serves as Button text for the Order Submit Button."
5794
  msgstr ""
5795
 
5796
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:79
5797
  msgid "Buy Now"
5798
  msgstr ""
5799
 
5800
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:82
5801
  msgid "Product attributes"
5802
  msgstr ""
5803
 
5804
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:83
5805
  msgid "List all product attributes during cart and checkout."
5806
  msgstr ""
5807
 
5808
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:87
5809
  msgid "This option forces WooCommerce to output a list of all product attributes during cart and checkout."
5810
  msgstr ""
5811
 
5812
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:90
5813
  msgid "Back to cart"
5814
  msgstr ""
5815
 
5816
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:91
5817
  msgid "Add a back to cart button to the checkout table."
5818
  msgstr ""
5819
 
5820
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:91
5821
  msgid "This button may let your customer edit their order before submitting. Some people state that this button should be hidden to avoid legal problems."
5822
  msgstr ""
5823
 
5824
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:97
5825
  msgid "Edit data notice"
5826
  msgstr ""
5827
 
5828
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:98
5829
  msgid "Display an edit-your-data notice within checkout."
5830
  msgstr ""
5831
 
5832
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:102
5833
  msgid "This notice will be added right before the order comments field."
5834
  msgstr ""
5835
 
5836
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:105
5837
  msgid "Product Table Color"
5838
  msgstr ""
5839
 
5840
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:107
5841
  msgid "Choose the color of your checkout product table. This table should be highlighted within your checkout page."
5842
  msgstr ""
5843
 
5844
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:112
5845
  msgid "Thumbnails"
5846
  msgstr ""
5847
 
5848
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:113
5849
  msgid "Show product thumbnails within checkout table."
5850
  msgstr ""
5851
 
5852
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:117
5853
  msgid "Uncheck if you don't want to show your product thumbnails within checkout table."
5854
  msgstr ""
5855
 
5856
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:120
5857
  msgid "Hide Shipping Select"
5858
  msgstr ""
5859
 
5860
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:121
5861
  msgid "Hide shipping rate selection from checkout."
5862
  msgstr ""
5863
 
5864
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:125
5865
  msgid "This option will hide shipping rate selection from checkout. By then customers will only be able to change their shipping rate on cart page."
5866
  msgstr ""
5867
 
5868
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:128
5869
  msgid "Estimated taxes"
5870
  msgstr ""
5871
 
5872
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:129
5873
  msgid "Hide the \"taxes and shipping estimated\" text from the cart."
5874
  msgstr ""
5875
 
5876
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:133
5877
  msgid "By default WooCommerce adds a \"taxes and shipping estimated\" text to your cart. This might puzzle your customers and may not meet german law."
5878
  msgstr ""
5879
 
5880
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:136
5881
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:65
5882
  msgid "Fallback Mode"
5883
  msgstr ""
5884
 
5885
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:137
5886
  msgid "Force default WooCommerce checkout template."
5887
  msgstr ""
5888
 
5889
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:137
5890
  msgid "If you are facing problems within your checkout e.g. legally relevant data is not showing (terms, delivery time, unit price etc.) your theme seems to be incompatible (not using default WooCommerce hooks and filters). As a workaround you may use this fallback which ensures default review-order.php and form-checkout.php is used."
5891
  msgstr ""
5892
 
5893
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:145
5894
  msgid "Thankyou Page"
5895
  msgstr ""
5896
 
5897
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:151
5898
  msgid "Information"
5899
  msgstr ""
5900
 
5901
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:152
5902
  msgid "Hide product table and customer data on order thankyou page."
5903
  msgstr ""
5904
 
5905
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:158
5906
  msgid "Order Success Text"
5907
  msgstr ""
5908
 
5909
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-button-solution.php:159
5910
  msgid "Choose a custom text to display on order success page."
5911
  msgstr ""
5912
 
5913
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:17
5914
  msgid "Ask your customers for a certain permission or action before a form may be submitted."
5915
  msgstr ""
5916
 
5917
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:21
5918
  msgid "Legal Checkboxes"
5919
  msgstr ""
5920
 
5921
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:41
5922
  msgid "Edit checkbox"
5923
  msgstr ""
5924
 
5925
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:42
5926
  msgid "Legal checkboxes help you obtain consent from your customers. You might edit a checkbox' label and other options by clicking on the link."
5927
  msgstr ""
5928
 
5929
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:62
5930
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:821
5931
  msgid "Label"
5932
  msgstr ""
5933
 
5934
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:63
5935
  msgid "Adjust the label of your checkbox which will be shown within your shop (e.g. checkout). Use placeholders to add links to your legal pages."
5936
  msgstr ""
5937
 
5938
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:104
5939
  msgid "New checkbox"
5940
  msgstr ""
5941
 
5942
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:130
5943
  msgid "Add checkbox"
5944
  msgstr ""
5945
 
5946
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:173
5947
  msgid "Edit failed. Please try again."
5948
  msgstr ""
5949
 
5950
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:206
5951
  msgid "Sorry, but this checkbox does not exist."
5952
  msgstr ""
5953
 
5954
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:233
5955
  msgid "Your changed data will be lost if you leave this page without saving."
5956
  msgstr ""
5957
 
5958
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:234
5959
  msgid "Are you sure you want to delete this checkbox? This action cannot be undone."
5960
  msgstr ""
5961
 
5962
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-checkboxes.php:235
5963
  msgid "Your changes were not saved. Please retry."
5964
  msgstr ""
5965
 
5966
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-contract.php:17
5967
  msgid "Adjust the time of closing contract with your customer."
5968
  msgstr ""
5969
 
5970
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-contract.php:21
5971
  msgid "Manual contract"
5972
  msgstr ""
5973
 
5974
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-contract.php:21
5975
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:32
5976
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:21
5977
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-multistep-checkout.php:21
5978
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-revocation-generator.php:21
5979
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-terms-generator.php:21
5980
  msgid "pro"
5981
  msgstr ""
5982
 
5983
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-doi.php:17
 
 
 
 
 
 
 
 
5984
  msgid "Extend the WooCommerce registration process with a double opt in."
5985
  msgstr ""
5986
 
5987
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-doi.php:29
5988
+ #, php-format
5989
  msgid "Caution: New customers that register within your store and do not activate their account will be deleted after %d day(s). You might adjust that behaviour within the Double-Opt-In settings."
5990
  msgstr ""
5991
 
5992
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-doi.php:37
5993
  msgid "Enable"
5994
  msgstr ""
5995
 
5996
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-doi.php:38
5997
+ msgid "If customer chooses to create a customer account an email with an activation link will be sent by mail. Customer account will be marked as activated if user clicks on the link within the email."
5998
  msgstr ""
5999
 
6000
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-doi.php:44
6001
  msgid "Disable"
6002
  msgstr ""
6003
 
6004
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-doi.php:45
6005
  msgid "Disable login and checkout for unactivated customers."
6006
  msgstr ""
6007
 
6008
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-doi.php:46
6009
  msgid "Customers that did not click on the activation link will not be able to complete checkout nor login to their account."
6010
  msgstr ""
6011
 
6012
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-doi.php:55
6013
  msgid "Delete unactivated after"
6014
  msgstr ""
6015
 
6016
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-doi.php:56
6017
  msgid "This will make sure unactivated customer accounts will be deleted after X days. Set to 0 if you don't want to automatically delete unactivated customers."
6018
  msgstr ""
6019
 
6020
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-doi.php:57
6021
  msgid "days"
6022
  msgstr ""
6023
 
6024
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:17
6025
  msgid "Adjust email related settings e.g. attach your legal page content to certain email templates."
6026
  msgstr ""
6027
 
6028
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:21
6029
  msgid "Emails"
6030
  msgstr ""
6031
 
6032
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:30
6033
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:21
6034
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:37
6035
  msgid "General"
6036
  msgstr ""
6037
 
6038
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:31
6039
  msgid "Visibility"
6040
  msgstr ""
6041
 
6042
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:32
6043
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:88
6044
  msgid "PDF Attachments"
6045
  msgstr ""
6046
 
6047
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:73
6048
  msgid "Email attachments"
6049
  msgstr ""
6050
 
6051
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:74
6052
  msgid "Choose which of your email templates (e.g. order confirmation) should contain your legal page content e.g. terms and conditions within it's footer."
6053
  msgstr ""
6054
 
6055
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:89
6056
  msgid "Customers of our pro version may attach PDF files instead of plain text content to emails."
6057
  msgstr ""
6058
 
6059
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:105
6060
  msgid "Use drag & drop to customize attachment order. Don't forget to save your changes."
6061
  msgstr ""
6062
 
6063
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:144
6064
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:165
6065
+ #, php-format
6066
  msgid "Want to attach automatically generated PDF files to emails instead of plain text? %sUpgrade to %spro%s%s"
6067
  msgstr ""
6068
 
6069
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:187
6070
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:232
6071
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:137
6072
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:144
6073
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:138
6074
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:145
6075
+ #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:598
6076
+ #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:611
6077
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:244
6078
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:252
6079
  msgid "Title"
6080
  msgstr ""
6081
 
6082
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:188
6083
  msgid "Adjust the title to be used within emails. Use {first_name}, {last_name} and {title} as placeholders."
6084
  msgstr ""
6085
 
6086
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:190
6087
  msgid "Hi {first_name},"
6088
  msgstr ""
6089
 
6090
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:194
6091
  msgid "Hide Username"
6092
  msgstr ""
6093
 
6094
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:195
6095
  msgid "Hide username from email content if password or password reset link is embedded."
6096
  msgstr ""
6097
 
6098
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:195
6099
  msgid "Trusted Shops advises to not show the username together with an account password or password reset link. This option hides (or masks) the username in those specific cases."
6100
  msgstr ""
6101
 
6102
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:202
6103
  msgid "Pay now Button"
6104
  msgstr ""
6105
 
6106
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:203
6107
  msgid "Add a pay now button to emails and order success page."
6108
  msgstr ""
6109
 
6110
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:204
6111
  msgid "Add a pay now button to order confirmation email and order success page if the order awaits payment (PayPal etc)."
6112
  msgstr ""
6113
 
6114
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:210
6115
  msgid "Disabled for"
6116
  msgstr ""
6117
 
6118
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:211
6119
  msgid "You may want to disable the pay now button for certain payment methods."
6120
  msgstr ""
6121
 
6122
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:238
6123
  msgid "Customer"
6124
  msgstr ""
6125
 
6126
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:238
6127
  msgid "Admin"
6128
  msgstr ""
6129
 
6130
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:255
6131
+ #, php-format
6132
  msgid "Attach %s"
6133
  msgstr ""
6134
 
6135
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:256
6136
+ #, php-format
6137
  msgid "Attach %s to the following email templates"
6138
  msgstr ""
6139
 
6140
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:17
6141
  msgid "Adjust general options e.g. legal pages."
6142
  msgstr ""
6143
 
6144
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:30
6145
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:367
6146
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:174
6147
  msgid "Legal Pages"
6148
  msgstr ""
6149
 
6150
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:31
6151
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:146
6152
  msgid "Dispute Resolution"
6153
  msgstr ""
6154
 
6155
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:32
6156
  msgid "Small Businesses"
6157
  msgstr ""
6158
 
6159
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:33
6160
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:632
6161
+ #: woocommerce-germanized/src/Shopmarks.php:299
6162
  msgid "Checkout"
6163
  msgstr ""
6164
 
6165
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:34
6166
  msgid "Shop"
6167
  msgstr ""
6168
 
6169
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:40
6170
+ #, php-format
6171
  msgid "Since Feb. 1 2017 regulations regarding alternative dispute resolution take effect. Further information regarding your duty to supply information can be found <a href=\"%s\" target=\"_blank\">here</a>."
6172
  msgstr ""
6173
 
6174
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:47
6175
+ #, php-format
6176
  msgid "Checkbox status: %s"
6177
  msgstr ""
6178
 
6179
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:54
6180
  msgid "This page should contain your terms & conditions."
6181
  msgstr ""
6182
 
6183
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:60
6184
+ #, php-format
6185
  msgid "Don't have terms & conditions yet? <a href=\"%s\">Generate now</a>!"
6186
  msgstr ""
6187
 
6188
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:64
6189
+ msgid "This page should contain information regarding your customer's Right of Withdrawal."
6190
  msgstr ""
6191
 
6192
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:70
6193
+ #, php-format
6194
  msgid "Don't have a revocation page yet? <a href=\"%s\">Generate now</a>!"
6195
  msgstr ""
6196
 
6197
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:74
6198
+ msgid "Send withdrawal to"
6199
  msgstr ""
6200
 
6201
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:75
6202
+ msgid "Type in an address, telephone/telefax number, email address which is to be used as the recipient address of the withdrawal."
6203
  msgstr ""
6204
 
6205
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:85
6206
  msgid "This page should contain an imprint with your company's information."
6207
  msgstr ""
6208
 
6209
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:95
6210
+ msgid "This page should contain information regarding your privacy policy."
 
 
 
 
 
6211
  msgstr ""
6212
 
6213
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:105
6214
  msgid "This page should contain information regarding the Payment Methods that are chooseable during checkout."
6215
  msgstr ""
6216
 
6217
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:115
6218
  msgid "This page should contain information regarding shipping methods that are chooseable during checkout."
6219
  msgstr ""
6220
 
6221
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:140
6222
  msgid "This status indicates whether your terms & conditions contain the [gzd_complaints] shortcode which outputs the complaints options chosen from above or not. If you've added the text manually, you might ignore this status."
6223
  msgstr ""
6224
 
6225
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:147
6226
  msgid "You may select whether you are willing, obliged or not willing to participate in dispute settlement proceeedings before a consumer arbitration board. The corresponding Resolution Text is attached to the [gzd_complaints] shortcode which you should add to your imprint. Trusted Shops advises you to add that text to your Terms & Conditions as well."
6227
  msgstr ""
6228
 
6229
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:153
6230
  msgid "Not obliged, not willing"
6231
  msgstr ""
6232
 
6233
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:154
6234
  msgid "Not obliged, willing"
6235
  msgstr ""
6236
 
6237
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:155
6238
  msgid "Obliged"
6239
  msgstr ""
6240
 
6241
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:159
6242
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:168
6243
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:177
6244
  msgid "Resolution Text"
6245
  msgstr ""
6246
 
6247
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:160
6248
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:169
6249
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:178
6250
  msgid "Adapt this example text regarding alternative dispute resolution to your needs. Text will be added to the [gzd_complaints] Shortcode. You may as well add this text to your terms & conditions."
6251
  msgstr ""
6252
 
6253
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:162
6254
  msgid "The european commission provides a platform for online dispute resolution (OS) which is accessible at https://ec.europa.eu/consumers/odr. We are not obliged nor willing to participate in dispute settlement proceedings before a consumer arbitration board."
6255
  msgstr ""
6256
 
6257
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:171
6258
  msgid "The european commission provides a platform for online dispute resolution (OS) which is accessible at https://ec.europa.eu/consumers/odr. Consumers may use this platform for the settlements of their disputes. We are in principle prepared to participate in an extrajudicial arbitration proceeding."
6259
  msgstr ""
6260
 
6261
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:180
6262
  msgid "The european commission provides a platform for online dispute resolution (OS) which is accessible at https://ec.europa.eu/consumers/odr. Consumers may contact [Name, Address, Website of arbitration board] for the settlements of their disputes. We are obliged to participate in arbitration proceeding before that board."
6263
  msgstr ""
6264
 
6265
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:186
6266
  msgid "Shortcode Status"
6267
  msgstr ""
6268
 
6269
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:190
6270
+ #, php-format
6271
  msgid "Not found within %s"
6272
  msgstr ""
6273
 
6274
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:190
6275
  msgid "Append it now"
6276
  msgstr ""
6277
 
6278
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:209
6279
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:388
6280
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:143
6281
  msgid "Notice Text"
6282
  msgstr ""
6283
 
6284
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:210
6285
  msgid "You may want to adjust the small buisness notice text to meet your criteria."
6286
  msgstr ""
6287
 
6288
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:217
6289
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:319
6290
  msgid "Value added tax is not collected, as small businesses according to §19 (1) UStG."
6291
  msgstr ""
6292
 
6293
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:233
6294
+ msgid "Add a title field to the address within checkout."
6295
  msgstr ""
6296
 
6297
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:239
6298
+ msgid "Validate street number"
6299
  msgstr ""
6300
 
6301
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:240
6302
+ msgid "Force the existence of a street number within the first address field."
6303
+ msgstr ""
6304
+
6305
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:245
6306
+ msgid "Never"
6307
  msgstr ""
6308
 
6309
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:246
6310
+ msgid "Always"
6311
+ msgstr ""
6312
+
6313
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:247
6314
+ msgid "Base country only"
6315
+ msgstr ""
6316
+
6317
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:248
6318
+ msgid "EU countries only"
6319
+ msgstr ""
6320
+
6321
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:252
6322
  msgid "Disallow cancellations"
6323
  msgstr ""
6324
 
6325
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:253
6326
  msgid "Don't allow customers to manually cancel orders."
6327
  msgstr ""
6328
 
6329
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:253
6330
  msgid "By default payment methods like PayPal allow order cancellation by clicking the abort link. This option will stop customers from manually cancel orders."
6331
  msgstr ""
6332
 
6333
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:259
6334
  msgid "Disallow gateway choosing"
6335
  msgstr ""
6336
 
6337
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:260
6338
  msgid "Don't allow customers to change the payment gateway after ordering."
6339
  msgstr ""
6340
 
6341
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:260
6342
  msgid "Customers paying through a gateway which allows later payment (e.g. PayPal) will find a link within their customer account which redirects them to a pay page. This page offers the possibility to choose another gateway than before which may lead to further problems e.g. additional gateway costs etc. which would require a new order submittal. This option makes sure the customer gets redirected directly to the gateways payment page, e.g. to PayPal."
6343
  msgstr ""
6344
 
6345
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:266
6346
  msgid "Free shipping"
6347
  msgstr ""
6348
 
6349
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:267
6350
  msgid "Force free shipping method if available."
6351
  msgstr ""
6352
 
6353
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:267
6354
  msgid "By default WooCommerce will let customers choose other shipping methods than free shipping (if available). This option will force free shipping if available."
6355
  msgstr ""
6356
 
6357
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:274
6358
  msgid "Exclude Methods"
6359
  msgstr ""
6360
 
6361
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:283
6362
  msgid "Optionally choose methods which should be excluded from hiding when free shipping is available (e.g. express shipping options)."
6363
  msgstr ""
6364
 
6365
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:295
 
 
 
 
 
 
 
 
 
 
 
 
 
6366
  msgid "Add to Cart"
6367
  msgstr ""
6368
 
6369
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:296
6370
  msgid "Show add to cart button on listings."
6371
  msgstr ""
6372
 
6373
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:300
6374
  msgid "unset this option if you don't want to show the add to cart button within the product listings"
6375
  msgstr ""
6376
 
6377
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:303
6378
  msgid "Link"
6379
  msgstr ""
6380
 
6381
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:304
6382
  msgid "Link to product details page instead of add to cart within listings."
6383
  msgstr ""
6384
 
6385
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:308
6386
  msgid "Decide whether you like to link to your product's details page instead of displaying an add to cart button within product listings."
6387
  msgstr ""
6388
 
6389
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:311
6390
  msgid "Product Details Text"
6391
  msgstr ""
6392
 
6393
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:313
6394
  msgid "Details"
6395
  msgstr ""
6396
 
6397
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:318
6398
  msgid "If you have chosen to link to product details page instead of add to cart URL you may want to change the button text."
6399
  msgstr ""
6400
 
6401
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:339
6402
  msgid "Overview"
6403
  msgstr ""
6404
 
6405
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:340
6406
  msgid "You can always return to the settings overview by navigating through the breadcrumb navigation."
6407
  msgstr ""
6408
 
6409
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:353
6410
  msgid "Sections"
6411
  msgstr ""
6412
 
6413
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:354
6414
  msgid "Each setting tab might have sub sections containing more specific options."
6415
  msgstr ""
6416
 
6417
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:368
6418
  msgid "Adjust legal pages e.g. terms and conditions. These pages are used to add links within checkboxes and text attachments to emails."
6419
  msgstr ""
6420
 
6421
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:17
6422
  msgid "Configure PDF invoices and packing slips."
6423
  msgstr ""
6424
 
6425
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:21
6426
  msgid "Invoices & Packing Slips"
6427
  msgstr ""
6428
 
6429
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:53
6430
  msgid "Generate custom and professional PDF invoices, cancellations and packing slips automatically with Germanized Pro."
6431
  msgstr ""
6432
 
6433
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:55
6434
  msgid "Customize your documents with the built-in document editor"
6435
  msgstr ""
6436
 
6437
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:56
6438
  msgid "Transfer your documents to your lexoffice and/or sevDesk account"
6439
  msgstr ""
6440
 
6441
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-invoices.php:57
6442
  msgid "Export your documents as CSV and ZIP"
6443
  msgstr ""
6444
 
6445
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-multistep-checkout.php:17
6446
  msgid "Transform your checkout into a multistep checkout process."
6447
  msgstr ""
6448
 
6449
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-multistep-checkout.php:21
6450
  msgid "Multistep checkout"
6451
  msgstr ""
6452
 
6453
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-oss.php:17
6454
+ msgid "Comply with the OSS procedure and conveniently generate tax reports."
6455
+ msgstr ""
6456
+
6457
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-oss.php:21
6458
+ msgid "One Stop Shop"
6459
+ msgstr ""
6460
+
6461
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-revocation-generator.php:17
6462
  msgid "Easily generate your revocation terms through our API."
6463
  msgstr ""
6464
 
6465
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-revocation-generator.php:21
6466
  msgid "Revocation Terms Generator"
6467
  msgstr ""
6468
 
6469
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shipments.php:19
6470
  msgid "Create shipments for your orders and improve default shipment handling."
6471
  msgstr ""
6472
 
6473
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shipments.php:23
6474
  msgid "Shipments"
6475
  msgstr ""
6476
 
6477
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shipments.php:71
6478
+ msgid "Automated packing"
6479
+ msgstr ""
6480
+
6481
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shipments.php:74
6482
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:87
6483
+ #, php-format
6484
+ msgid "%sUpgrade to %spro%s%s to unlock this feature and enjoy premium support."
6485
+ msgstr ""
6486
+
6487
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shipping-provider.php:22
6488
+ msgid "Manage your shipping provider integrations."
6489
+ msgstr ""
6490
+
6491
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shipping-provider.php:25
6492
+ msgid "Manage your shipping provider integrations, e.g. for DHL & Deutsche Post."
6493
+ msgstr ""
6494
+
6495
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:20
6496
  msgid "Adjust shopmark related settings. Choose which and where they shall be attached to your product data."
6497
  msgstr ""
6498
 
6499
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:24
6500
  msgid "Shopmarks"
6501
  msgstr ""
6502
 
6503
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:38
6504
  msgid "Delivery times"
6505
  msgstr ""
6506
 
6507
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:39
6508
  msgid "Unit prices"
6509
  msgstr ""
6510
 
6511
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:40
6512
  msgid "Price labels"
6513
  msgstr ""
6514
 
6515
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:48
6516
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:210
6517
  msgid "Widgets & Blocks"
6518
  msgstr ""
6519
 
6520
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:49
6521
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:255
6522
  msgid "E-Mails"
6523
  msgstr ""
6524
 
6525
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:68
6526
  msgid "Shopmark Display"
6527
  msgstr ""
6528
 
6529
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:69
6530
  msgid "By adjusting the display settings you might determine where to show or hide your shopmarks e.g. the tax notice on single product pages."
6531
  msgstr ""
6532
 
6533
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:87
6534
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:330
6535
  msgid "Location"
6536
  msgstr ""
6537
 
6538
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:88
6539
  msgid "Adjust the location of the shopmark by selecting a location from the list. Some Themes might apply the locations at different positions that's why the result may differ from Theme to Theme."
6540
  msgstr ""
6541
 
6542
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:101
6543
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:345
6544
  msgid "Priority"
6545
  msgstr ""
6546
 
6547
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:102
6548
  msgid "Many different information may be attached to the location selected. By adjusting the priority you can choose whether the shopmark gets applied earlier (lower) or later (higher)."
6549
  msgstr ""
6550
 
6551
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:120
6552
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:52
6553
  msgid "Default Delivery Time"
6554
  msgstr ""
6555
 
6556
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:121
6557
  msgid "Choose a delivery time that serves as fallback in case no delivery time was added to the product."
6558
  msgstr ""
6559
 
6560
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:134
6561
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:475
6562
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:522
6563
  msgid "Format"
6564
  msgstr ""
6565
 
6566
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:135
6567
  msgid "You may want to adjust the delivery time output format. You might use {delivery_time} to output the current product's delivery time."
6568
  msgstr ""
6569
 
6570
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:153
6571
  msgid "Default Sale Label"
6572
  msgstr ""
6573
 
6574
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:154
6575
  msgid "Price labels are added to sale products to inform the customers of the different prices' meaning. You may add a fallback label in case a product does not contain a label."
6576
  msgstr ""
6577
 
6578
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:195
6579
  msgid "Adjust Product Widgets & Blocks visibility options."
6580
  msgstr ""
6581
 
6582
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:199
6583
+ #, php-format
6584
  msgid "Adjust %s visibility options and choose which shopmarks to be displayed at which locations."
6585
  msgstr ""
6586
 
6587
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:211
6588
  msgid "Shipping Costs notice"
6589
  msgstr ""
6590
 
6591
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:218
6592
  msgid "Tax Info"
6593
  msgstr ""
6594
 
6595
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:225
6596
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:256
6597
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:130
6598
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:296
6599
+ #: woocommerce-germanized/includes/compatibility/elementor/widgets/class-wc-gzd-elementor-widget-product-unit-price.php:10
6600
+ msgid "Unit Price"
6601
  msgstr ""
6602
 
6603
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:239
6604
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:272
6605
  msgid "Delivery Time Notice"
6606
  msgstr ""
6607
 
6608
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:280
6609
  msgid "Short Description"
6610
  msgstr ""
6611
 
6612
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:303
6613
+ #, php-format
6614
  msgid "Show %s shopmark"
6615
  msgstr ""
6616
 
6617
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:311
6618
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:103
6619
  msgid "Tax"
6620
  msgstr ""
6621
 
6622
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:312
6623
  msgid "Show Tax shopmark"
6624
  msgstr ""
6625
 
6626
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:320
6627
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:382
6628
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:248
6629
  msgid "Shipping Costs"
6630
  msgstr ""
6631
 
6632
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:321
6633
  msgid "Show Shipping Costs shopmark"
6634
  msgstr ""
6635
 
6636
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:331
6637
  msgid "Choose a location for the shopmark. Locations are mapped to specific WooCommerce hooks and may differ from Theme to Theme."
6638
  msgstr ""
6639
 
6640
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:346
6641
+ #, php-format
6642
  msgid "Choose a priority by which the shopmark should be attached to the location. The higher the priority, the later the shopmark will be attached. Defaults to %d."
6643
  msgstr ""
6644
 
6645
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:365
6646
+ msgid "Price Ranges"
6647
+ msgstr ""
6648
+
6649
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:371
6650
+ msgid "Price Range Format"
6651
+ msgstr ""
6652
+
6653
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:372
6654
+ msgid "Adjust the price range format e.g. for variable products. Use {min_price} as placeholder for the minimum price. Use {max_price} as placeholder for the maximum price."
6655
+ msgstr ""
6656
+
6657
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:376
6658
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:936
6659
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:940
6660
+ msgid "{min_price} &ndash; {max_price}"
6661
+ msgstr ""
6662
+
6663
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:389
6664
  msgid "This text will be used to inform the customer about shipping costs. Use {link}{/link} to insert link to shipping costs page."
6665
  msgstr ""
6666
 
6667
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:394
6668
  msgid "plus {link}Shipping Costs{/link}"
6669
  msgstr ""
6670
 
6671
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:397
6672
  msgid "Free Shipping Text"
6673
  msgstr ""
6674
 
6675
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:398
6676
  msgid "This text will be used to inform the customer about free shipping. Leave empty to disable notice. Use {link}{/link} to insert link to shipping costs page."
6677
  msgstr ""
6678
 
6679
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:406
6680
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:504
6681
  msgid "Hide Notice"
6682
  msgstr ""
6683
 
6684
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:407
6685
  msgid "Select product types for which you might want to disable the shipping costs notice."
6686
  msgstr ""
6687
 
6688
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:417
6689
  msgid "Footer"
6690
  msgstr ""
6691
 
6692
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:420
6693
  msgid "Notice"
6694
  msgstr ""
6695
 
6696
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:421
6697
  msgid "Attach a global VAT notice to your footer."
6698
  msgstr ""
6699
 
6700
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:428
6701
  msgid "Attach a global sale price notice to your footer."
6702
  msgstr ""
6703
 
6704
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:464
6705
  msgid "Fallback"
6706
  msgstr ""
6707
 
6708
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:465
6709
  msgid "This delivery time will be added to every product if no delivery time has been chosen individually"
6710
  msgstr ""
6711
 
6712
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:472
6713
  msgid "Manage Delivery Times"
6714
  msgstr ""
6715
 
6716
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:476
6717
  msgid "This text will be used to indicate delivery time for products. Use {delivery_time} as placeholder."
6718
  msgstr ""
6719
 
6720
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:480
6721
  msgid "Delivery time: {delivery_time}"
6722
  msgstr ""
6723
 
6724
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:483
6725
  msgid "Digital text"
6726
  msgstr ""
6727
 
6728
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:487
6729
  msgid "Enter a text which will be shown as digital delivery time text (replacement for default digital time on digital products)."
6730
  msgstr ""
6731
 
6732
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:490
6733
  msgid "Backorder"
6734
  msgstr ""
6735
 
6736
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:491
6737
  msgid "Hide delivery time if a product is on backorder."
6738
  msgstr ""
6739
 
6740
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:497
6741
  msgid "Not in Stock"
6742
  msgstr ""
6743
 
6744
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:498
6745
  msgid "Hide delivery time if a product is not in stock."
6746
  msgstr ""
6747
 
6748
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:505
6749
  msgid "Select product types for which you might want to disable the delivery time notice."
6750
  msgstr ""
6751
 
6752
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:523
6753
+ msgid "This text will be used to display the unit price. Use {price} to insert the price. If you want to specifically format unit price output use {base}, {unit} and {unit_price} as placeholders."
6754
  msgstr ""
6755
 
6756
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:527
6757
  msgid "{price}"
6758
  msgstr ""
6759
 
6760
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:530
6761
+ msgid "Product units format"
6762
  msgstr ""
6763
 
6764
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:531
6765
+ msgid "This text will be used to display the product units. Use {product_units} to insert the amount of product units. Use {unit} to insert the unit. Optionally display the formatted unit price with {unit_price}."
6766
  msgstr ""
6767
 
6768
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:535
6769
+ msgid "Product contains: {product_units} {unit}"
6770
  msgstr ""
6771
 
6772
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:538
6773
+ msgid "Variable Unit Price"
6774
  msgstr ""
6775
 
6776
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:539
6777
+ msgid "Enable price range unit prices for variable products."
6778
  msgstr ""
6779
 
6780
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:554
6781
  msgid "Fallback Sale Label"
6782
  msgstr ""
6783
 
6784
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:561
6785
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:571
6786
  msgid "Manage Price Labels"
6787
  msgstr ""
6788
 
6789
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:561
6790
  msgid "Choose whether you would like to have a default sale price label to inform the customer about the regular price (e.g. Recommended Retail Price)."
6791
  msgstr ""
6792
 
6793
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:564
6794
  msgid "Fallback Regular Label"
6795
  msgstr ""
6796
 
6797
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:571
6798
  msgid "Choose whether you would like to have a default sale price regular label to inform the customer about the sale price (e.g. New Price)."
6799
  msgstr ""
6800
 
6801
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:575
6802
+ #: woocommerce-germanized/src/Shopmarks.php:294
6803
  msgid "Single Product"
6804
  msgstr ""
6805
 
6806
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:576
6807
  msgid "Show price labels on single product page."
6808
  msgstr ""
6809
 
6810
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:583
6811
  msgid "Loop"
6812
  msgstr ""
6813
 
6814
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:584
6815
  msgid "Show price labels in product loops."
6816
  msgstr ""
6817
 
6818
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:17
6819
  msgid "Adjust tax related settings e.g. Split-tax calculation for shipping costs."
6820
  msgstr ""
6821
 
6822
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:21
6823
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:86
6824
  msgid "Taxes"
6825
  msgstr ""
6826
 
6827
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:30
6828
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:455
6829
  msgid "VAT"
6830
  msgstr ""
6831
 
6832
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:31
6833
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:113
6834
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:91
6835
  msgid "Split-tax"
6836
  msgstr ""
6837
 
6838
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:32
6839
  msgid "Differential Taxation"
6840
  msgstr ""
6841
 
6842
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:42
6843
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:101
6844
  msgid "Virtual VAT"
6845
  msgstr ""
6846
 
6847
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:43
6848
  msgid "Enable if you want to charge your customer's countries' VAT for virtual products."
6849
  msgstr ""
6850
 
6851
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:43
6852
+ #, php-format
6853
  msgid "New EU VAT rule applies on 01.01.2015. Make sure that every digital or virtual product has chosen the right tax class (Virtual Rate or Virtual Reduced Rate). Gross prices will not differ from the prices you have chosen for affected products. In fact the net price will differ depending on the VAT rate of your customers' country. Shop settings will be adjusted to show prices including tax. More information can be found <a href=\"%s\" target=\"_blank\">here</a>."
6854
  msgstr ""
6855
 
6856
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:55
6857
  msgid "Tax Rate"
6858
  msgstr ""
6859
 
6860
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:56
6861
  msgid "Hide specific tax rate within shop pages."
6862
  msgstr ""
6863
 
6864
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:60
6865
  msgid "This option will make sure that within shop pages no specific tax rates are shown. Instead only incl. tax or excl. tax notice is shown."
6866
  msgstr ""
6867
 
6868
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:64
6869
+ msgid "Tax totals"
6870
  msgstr ""
6871
 
6872
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:69
6873
+ msgid "Before total amount"
6874
  msgstr ""
6875
 
6876
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:70
6877
+ msgid "After total amount"
6878
+ msgstr ""
6879
+
6880
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:72
6881
+ msgid "Decide whether to show tax totals before or after total amount."
6882
+ msgstr ""
6883
+
6884
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:84
6885
+ msgid "VAT ID"
6886
+ msgstr ""
6887
+
6888
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:103
6889
+ #, php-format
6890
  msgid "By choosing this option shipping cost and fee taxes will be calculated based on the tax rates included within the cart. Imagine the following example. The tax share is calculated based on net prices. Further information can be found <a href=\"%s\" target=\"_blank\">here</a>. %s"
6891
  msgstr ""
6892
 
6893
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:103
6894
  msgid "Product"
6895
  msgstr ""
6896
 
6897
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:103
6898
  msgid "Price"
6899
  msgstr ""
6900
 
6901
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:103
6902
  msgid "Price (net)"
6903
  msgstr ""
6904
 
6905
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:103
6906
  msgid "Tax rate"
6907
  msgstr ""
6908
 
6909
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:103
6910
  msgid "Share"
6911
  msgstr ""
6912
 
6913
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:103
6914
  msgid "Book"
6915
  msgstr ""
6916
 
6917
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:103
6918
  msgid "DVD"
6919
  msgstr ""
6920
 
6921
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:103
6922
  msgid "Shipping"
6923
  msgstr ""
6924
 
6925
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:114
6926
  msgid "Enable split-tax calculation for additional costs (shipping costs and fees)."
6927
  msgstr ""
6928
 
6929
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:129
6930
  msgid "Taxation Notice"
6931
  msgstr ""
6932
 
6933
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:130
6934
  msgid "Enable differential taxation text notice beneath product price."
6935
  msgstr ""
6936
 
6937
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:130
6938
  msgid "If you have disabled this option, a normal VAT notice will be displayed, which is sufficient as Trusted Shops states. To further inform your customers you may enable this notice."
6939
  msgstr ""
6940
 
6941
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:136
6942
  msgid "Mixed carts"
6943
  msgstr ""
6944
 
6945
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:137
6946
  msgid "Disallow buying normal and differential taxed products at the same time."
6947
  msgstr ""
6948
 
6949
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:137
6950
+ #, php-format
6951
  msgid "Shipping costs for differential taxed products may not be taxed (compare %s) or must be taxed separately which is impossible within a single order. This option will prevent your customers from buying normal products and differential taxed products at the same time to prevent taxation problems."
6952
  msgstr ""
6953
 
6954
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:137
6955
  msgid "HK Hamburg"
6956
  msgstr ""
6957
 
6958
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:144
6959
  msgid "This text will be shown as a further notice for the customer to inform him about differential taxation."
6960
  msgstr ""
6961
 
6962
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:149
6963
  msgid "incl. VAT (differential taxation according to §25a UStG.)"
6964
  msgstr ""
6965
 
6966
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:153
6967
  msgid "Checkout & E-Mails"
6968
  msgstr ""
6969
 
6970
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:154
6971
  msgid "Enable differential taxation notice during checkout and in emails."
6972
  msgstr ""
6973
 
6974
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:199
6975
  msgid "Sorry, but the new Virtual VAT rules cannot be applied to small business."
6976
  msgstr ""
6977
 
6978
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-terms-generator.php:17
6979
  msgid "Easily generate your custom terms & conditions through our API."
6980
  msgstr ""
6981
 
6982
+ #: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-terms-generator.php:21
6983
  msgid "TOS Generator"
6984
  msgstr ""
6985
 
6986
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-page-checkboxes.php:10
6987
  msgid "Drag and drop to re-order checkboxes. This is the order being used for printing the fields."
6988
  msgstr ""
6989
 
6990
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-page-checkboxes.php:11
6991
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:27
6992
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:793
6993
  msgid "Name"
6994
  msgstr ""
6995
 
6996
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-page-checkboxes.php:12
6997
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:29
6998
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:812
6999
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:914
7000
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:124
7001
  msgid "Description"
7002
  msgstr ""
7003
 
7004
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-page-checkboxes.php:13
7005
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:28
7006
  msgid "Enabled"
7007
  msgstr ""
7008
 
7009
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-page-checkboxes.php:14
7010
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:849
7011
  msgid "Mandatory"
7012
  msgstr ""
7013
 
7014
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-page-checkboxes.php:15
7015
  msgid "Location(s)"
7016
  msgstr ""
7017
 
7018
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-page-checkboxes.php:28
7019
  msgid "Edit"
7020
  msgstr ""
7021
 
7022
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-page-checkboxes.php:30
7023
  msgid "Delete"
7024
  msgstr ""
7025
 
7026
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:13
7027
+ #, php-format
7028
  msgid "Upgrade to %s"
7029
  msgstr ""
7030
 
7031
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:21
7032
  msgid "Adapt your WooCommerce installation to the german market with Germanized."
7033
  msgstr ""
7034
 
7035
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:69
7036
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:70
7037
  msgid "Find out more"
7038
  msgstr ""
7039
 
7040
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:71
7041
  msgid "How to"
7042
  msgstr ""
7043
 
7044
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:75
7045
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:76
7046
  msgid "Manage settings"
7047
  msgstr ""
7048
 
7049
+ #: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:77
7050
  msgid "Manage"
7051
  msgstr ""
7052
 
7053
+ #: woocommerce-germanized/includes/admin/views/html-notice-dependencies.php:15
7054
  msgid "WooCommerce missing or outdated"
7055
  msgstr ""
7056
 
7057
+ #: woocommerce-germanized/includes/admin/views/html-notice-dependencies.php:21
7058
+ #, php-format
7059
  msgid "%1$sGermanized is inactive.%2$s The %3$sWooCommerce plugin%4$s must be active for Germanized to work. Please %5$sinstall WooCommerce &raquo;%6$s"
7060
  msgstr ""
7061
 
7062
+ #: woocommerce-germanized/includes/admin/views/html-notice-dependencies.php:27
7063
+ #, php-format
7064
  msgid "%1$sGermanized is inactive.%2$s The %3$sWooCommerce plugin%4$s must be active for Germanized to work. Please %5$sactivate WooCommerce &raquo;%6$s"
7065
  msgstr ""
7066
 
7067
+ #: woocommerce-germanized/includes/admin/views/html-notice-dependencies.php:33
7068
+ #, php-format
7069
  msgid "%1$sGermanized is inactive.%2$s This version of Germanized requires WooCommerce %3$s or newer. Please %4$supdate WooCommerce to version %3$s or newer &raquo;%5$s"
7070
  msgstr ""
7071
 
7072
+ #: woocommerce-germanized/includes/admin/views/html-notice-fallback.php:15
7073
  msgid "Hide"
7074
  msgstr ""
7075
 
7076
+ #: woocommerce-germanized/includes/admin/views/html-notice-update-pro-incompatible.php:15
7077
+ #, php-format
7078
  msgid "<strong>Be aware!</strong> This update is not compatible with your current Germanized Pro version. Please <a href=\"%s\">check for updates</a> before updating Germanized to prevent <a href=\"%s\">compatibility issues</a>."
7079
  msgstr ""
7080
 
7081
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:12
7082
  msgid "Please copy and paste this information in your ticket when contacting support:"
7083
  msgstr ""
7084
 
7085
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:14
7086
  msgid "Get System Report"
7087
  msgstr ""
7088
 
7089
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:19
7090
+ #: woocommerce-germanized/includes/admin/views/setup/encrypt.php:20
7091
  msgid "Copied!"
7092
  msgstr ""
7093
 
7094
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:19
7095
  msgid "Copy for Support"
7096
  msgstr ""
7097
 
7098
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:32
7099
  msgid "Version"
7100
  msgstr ""
7101
 
7102
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:37
7103
  msgid "Database Version"
7104
  msgstr ""
7105
 
7106
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:47
7107
+ msgid "PHP Sodium Extension"
7108
+ msgstr ""
7109
+
7110
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:62
7111
  msgid "Term doesn’t exist"
7112
  msgstr ""
7113
 
7114
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:96
7115
  msgid "Additional costs include taxes"
7116
  msgstr ""
7117
 
7118
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:106
7119
  msgid "Tax Rate Name Collision"
7120
  msgstr ""
7121
 
7122
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:109
7123
  msgid "Make sure, that different tax rates do not have the same names. WooCommerce will then merge these rates within checkout into one line."
7124
  msgstr ""
7125
 
7126
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:153
7127
  msgid "VAT Table Check"
7128
  msgstr ""
7129
 
7130
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:154
7131
  msgid "Checks whether all WooCommerce tax relevant tables have been added."
7132
  msgstr ""
7133
 
7134
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:155
7135
+ #, php-format
7136
  msgid "Missing: %s"
7137
  msgstr ""
7138
 
7139
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:183
7140
  msgid "Page doesn’t exist"
7141
  msgstr ""
7142
 
7143
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:203
7144
  msgid "Compatibility"
7145
  msgstr ""
7146
 
7147
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:219
7148
+ #, php-format
7149
  msgid "Checks whether compatibility options for %s are being applied."
7150
  msgstr ""
7151
 
7152
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:222
7153
+ #, php-format
7154
  msgid "Version %s not supported, supporting version %s - %s"
7155
  msgstr ""
7156
 
7157
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:244
7158
  msgid "Tools"
7159
  msgstr ""
7160
 
7161
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:249
7162
  msgid "German Formal"
7163
  msgstr ""
7164
 
7165
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:250
7166
  msgid "This option will install and activate German formal as your WordPress and WooCommerce language."
7167
  msgstr ""
7168
 
7169
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:253
7170
  msgid "Install de_DE_formal"
7171
  msgstr ""
7172
 
7173
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:256
7174
  msgid "Text Options"
7175
  msgstr ""
7176
 
7177
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:257
7178
  msgid "This option removes custom Germanized text options (e.g. Pay-Button-Text) and installs default options. You may use this options to reinstall text options e.g. after a language switch."
7179
  msgstr ""
7180
 
7181
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:260
7182
  msgid "Delete text options"
7183
  msgstr ""
7184
 
7185
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:263
7186
  msgid "Renew EU VAT Rates"
7187
  msgstr ""
7188
 
7189
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:264
7190
+ msgid "Insert VAT rates for EU countries based on your current OSS participation status. This option deletes all current rates before inserting."
7191
  msgstr ""
7192
 
7193
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:267
7194
  msgid "Renew VAT Rates"
7195
  msgstr ""
7196
 
7197
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:270
7198
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:273
7199
  msgid "Disable notices"
7200
  msgstr ""
7201
 
7202
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:271
7203
  msgid "Germanized might ask you to leave a review or notices you of using a possibly unsupported theme. If you want to disable these notices, check this option."
7204
  msgstr ""
7205
 
7206
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:273
7207
  msgid "Enable notices"
7208
  msgstr ""
7209
 
7210
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:278
7211
+ msgid "Encryption Key"
7212
+ msgstr ""
7213
+
7214
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:304
7215
  msgid "Templates"
7216
  msgstr ""
7217
 
7218
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:310
7219
  msgid "Overrides"
7220
  msgstr ""
7221
 
7222
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:319
7223
+ #, php-format
7224
  msgid "Version %s is out of date. The core version is %s."
7225
  msgstr ""
7226
 
7227
+ #: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:327
7228
  msgid "Learn how to update outdated templates"
7229
  msgstr ""
7230
 
7231
+ #: woocommerce-germanized/includes/admin/views/setup/dhl.php:10
7232
+ msgid "DHL"
7233
+ msgstr ""
7234
+
7235
+ #: woocommerce-germanized/includes/admin/views/setup/dhl.php:12
7236
  msgid "Want to easily ship your orders via DHL? Enable our deep DHL integration and start generating labels for shipments comfortably via your admin panel."
7237
  msgstr ""
7238
 
7239
+ #: woocommerce-germanized/includes/admin/views/setup/dhl.php:17
7240
  msgid "We've found out that you have been using DHL for WooCommerce already. We will automatically import your settings and you can start using our integration instead."
7241
  msgstr ""
7242
 
7243
+ #: woocommerce-germanized/includes/admin/views/setup/encrypt.php:24
7244
+ #, php-format
7245
+ msgid "Germanized supports <a href=\"%s\" target=\"_blank\">encrypting sensitive data</a>, e.g. your DHL or Deutsche Post credentials."
7246
+ msgstr ""
7247
+
7248
+ #: woocommerce-germanized/includes/admin/views/setup/encrypt.php:29
7249
+ #, php-format
7250
+ msgid "Please paste the following line to your <a href=\"%s\" target=\"_blank\">wp-config.php</a> file or use the insert key button:"
7251
+ msgstr ""
7252
+
7253
+ #: woocommerce-germanized/includes/admin/views/setup/encrypt.php:31
7254
+ #, php-format
7255
+ msgid "Please paste the following line to your <a href=\"%s\" target=\"_blank\">wp-config.php</a> file:"
7256
+ msgstr ""
7257
+
7258
+ #: woocommerce-germanized/includes/admin/views/setup/encrypt.php:35
7259
+ msgid "Perfect! Your key has been placed and is working like a charm!"
7260
+ msgstr ""
7261
+
7262
+ #: woocommerce-germanized/includes/admin/views/setup/first-steps.php:11
7263
  msgid "Congratulations! You are ready to go. You should now head over to the settings to configure Germanized in-deep."
7264
  msgstr ""
7265
 
7266
+ #: woocommerce-germanized/includes/admin/views/setup/first-steps.php:15
7267
  msgid "Resources"
7268
  msgstr ""
7269
 
7270
+ #: woocommerce-germanized/includes/admin/views/setup/first-steps.php:20
7271
  msgid "Knowledge Base"
7272
  msgstr ""
7273
 
7274
+ #: woocommerce-germanized/includes/admin/views/setup/first-steps.php:22
7275
  msgid "Stay tuned"
7276
  msgstr ""
7277
 
7278
+ #: woocommerce-germanized/includes/admin/views/setup/first-steps.php:25
7279
  msgid "Learn how to use WordPress"
7280
  msgstr ""
7281
 
7282
+ #: woocommerce-germanized/includes/admin/views/setup/first-steps.php:28
7283
  msgid "Learn how to use WooCommerce"
7284
  msgstr ""
7285
 
7286
+ #: woocommerce-germanized/includes/admin/views/setup/first-steps.php:36
7287
  msgid "Want more features and premium support?"
7288
  msgstr ""
7289
 
7290
+ #: woocommerce-germanized/includes/admin/views/setup/first-steps.php:39
7291
  msgid "Discover professional version"
7292
  msgstr ""
7293
 
7294
+ #: woocommerce-germanized/includes/admin/views/setup/germanize.php:12
7295
  msgid "Germany"
7296
  msgstr ""
7297
 
7298
+ #: woocommerce-germanized/includes/admin/views/setup/germanize.php:14
7299
  msgid "Germanize WooCommerce"
7300
  msgstr ""
7301
 
7302
+ #: woocommerce-germanized/includes/admin/views/setup/germanize.php:16
7303
+ #, php-format
7304
  msgid "Let Germanized help you to adjust your WooCommerce settings for %s."
7305
  msgstr ""
7306
 
7307
+ #: woocommerce-germanized/includes/admin/views/setup/internetmarke.php:10
7308
+ msgid "Internetmarke"
7309
+ msgstr ""
7310
+
7311
+ #: woocommerce-germanized/includes/admin/views/setup/internetmarke.php:12
7312
  msgid "Want to easily ship your orders via Deutsche Post? Enable our Internetmarke integration and start generating labels for shipments comfortably via your admin panel."
7313
  msgstr ""
7314
 
7315
+ #: woocommerce-germanized/includes/admin/views/setup/internetmarke.php:17
7316
  msgid "We've found out that you have been using the Internetmarke standalone Plugin already. We will automatically import your settings and you can start using our integration instead."
7317
  msgstr ""
7318
 
7319
+ #: woocommerce-germanized/includes/admin/views/setup/provider.php:7
7320
+ msgid "Choose integrations"
7321
+ msgstr ""
7322
+
7323
+ #: woocommerce-germanized/includes/admin/views/setup/provider.php:8
7324
+ msgid "Germanized offers seamless integration with your favourite shipping provider."
7325
+ msgstr ""
7326
+
7327
+ #: woocommerce-germanized/includes/admin/views/setup/settings.php:7
7328
  msgid "Adjust Germanized"
7329
  msgstr ""
7330
 
7331
+ #: woocommerce-germanized/includes/admin/views/setup/settings.php:9
7332
  msgid "Configure Germanized to your needs. You can always adjust these settings later on."
7333
  msgstr ""
7334
 
7335
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:152
7336
  msgid "Has been activated via DOI?"
7337
  msgstr ""
7338
 
7339
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:160
7340
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:159
7341
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:39
7342
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:910
7343
+ #: woocommerce-germanized/includes/gateways/direct-debit/views/html-export.php:30
7344
  msgid "Direct Debit"
7345
  msgstr ""
7346
 
7347
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:165
7348
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:164
7349
+ #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:85
7350
+ #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:117
7351
+ #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:166
7352
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:117
7353
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:601
7354
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:936
7355
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1082
7356
  msgid "Account Holder"
7357
  msgstr ""
7358
 
7359
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:170
7360
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:169
7361
+ #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:86
7362
+ #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:118
7363
+ #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:167
7364
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:124
7365
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:602
7366
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:944
7367
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1086
7368
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1216
7369
  msgid "IBAN"
7370
  msgstr ""
7371
 
7372
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:175
7373
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:174
7374
+ #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:87
7375
+ #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:119
7376
+ #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:168
7377
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:131
7378
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:603
7379
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1090
7380
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1217
7381
  msgid "BIC/SWIFT"
7382
  msgstr ""
7383
 
7384
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:152
7385
  msgid "Parcel Delivery Data Transfer"
7386
  msgstr ""
7387
 
7388
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:179
7389
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:138
7390
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:607
7391
  msgid "Mandate Reference ID"
7392
  msgstr ""
7393
 
7394
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:37
7395
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:209
7396
  msgid "Delivery Time ID"
7397
  msgstr ""
7398
 
7399
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:42
7400
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:214
7401
  msgid "Delivery Time Name"
7402
  msgstr ""
7403
 
7404
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:48
7405
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:220
7406
  msgid "Delivery Time Slug"
7407
  msgstr ""
7408
 
7409
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:53
7410
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:225
7411
  msgid "Delivery Time HTML"
7412
  msgstr ""
7413
 
7414
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:61
7415
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:84
7416
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:233
7417
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:256
7418
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:144
7419
  msgid "Price Label"
7420
  msgstr ""
7421
 
7422
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:66
7423
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:89
7424
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:238
7425
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:261
7426
  msgid "Price Label ID"
7427
  msgstr ""
7428
 
7429
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:71
7430
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:94
7431
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:243
7432
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:266
7433
  msgid "Price Label Name"
7434
  msgstr ""
7435
 
7436
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:77
7437
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:100
7438
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:249
7439
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:272
7440
  msgid "Price Label Slug"
7441
  msgstr ""
7442
 
7443
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:112
7444
  msgid "Unit ID"
7445
  msgstr ""
7446
 
7447
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:117
7448
  msgid "Unit Name"
7449
  msgstr ""
7450
 
7451
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:123
7452
  msgid "Unit Slug"
7453
  msgstr ""
7454
 
7455
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:135
7456
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:301
 
 
 
 
 
 
7457
  msgid "Unit Base"
7458
  msgstr ""
7459
 
7460
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:140
7461
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:306
7462
  msgid "Unit Product"
7463
  msgstr ""
7464
 
7465
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:145
7466
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:311
7467
  msgid "Unit Auto Calculation"
7468
  msgstr ""
7469
 
7470
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:151
7471
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:317
7472
  msgid "Current Unit Price"
7473
  msgstr ""
7474
 
7475
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:156
7476
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:322
7477
  msgid "Unit Regular Price"
7478
  msgstr ""
7479
 
7480
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:161
7481
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:327
7482
  msgid "Unit Sale Price"
7483
  msgstr ""
7484
 
7485
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:166
7486
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:332
7487
  msgid "Unit Price HTML"
7488
  msgstr ""
7489
 
7490
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:174
7491
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:285
7492
  msgid "Small Cart Product Description"
7493
  msgstr ""
7494
 
7495
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:179
7496
  msgid "Deactivate the hint for additional shipping costs"
7497
  msgstr ""
7498
 
7499
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:185
7500
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:290
7501
  msgid "Age verification minimum age."
7502
  msgstr ""
7503
 
7504
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:192
7505
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:279
7506
  msgid "Whether this product is a service or not"
7507
  msgstr ""
7508
 
7509
+ #: woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:198
7510
  msgid "Whether this product applies for differential taxation or not"
7511
  msgstr ""
7512
 
7513
+ #: woocommerce-germanized/includes/api/v1/class-wc-gzd-rest-product-delivery-times-v1-controller.php:73
7514
+ #: woocommerce-germanized/includes/api/v1/class-wc-gzd-rest-product-price-labels-v1-controller.php:73
7515
+ #: woocommerce-germanized/includes/api/v1/class-wc-gzd-rest-product-units-v1-controller.php:73
7516
  msgid "Unique identifier for the resource."
7517
  msgstr ""
7518
 
7519
+ #: woocommerce-germanized/includes/api/v1/class-wc-gzd-rest-product-delivery-times-v1-controller.php:79
7520
+ #: woocommerce-germanized/includes/api/v1/class-wc-gzd-rest-product-price-labels-v1-controller.php:79
7521
+ #: woocommerce-germanized/includes/api/v1/class-wc-gzd-rest-product-units-v1-controller.php:79
7522
  msgid "Resource name."
7523
  msgstr ""
7524
 
7525
+ #: woocommerce-germanized/includes/api/v1/class-wc-gzd-rest-product-delivery-times-v1-controller.php:87
7526
+ #: woocommerce-germanized/includes/api/v1/class-wc-gzd-rest-product-price-labels-v1-controller.php:87
7527
+ #: woocommerce-germanized/includes/api/v1/class-wc-gzd-rest-product-units-v1-controller.php:87
7528
  msgid "An alphanumeric identifier for the resource unique to its type."
7529
  msgstr ""
7530
 
7531
+ #: woocommerce-germanized/includes/api/v1/class-wc-gzd-rest-product-delivery-times-v1-controller.php:95
7532
+ #: woocommerce-germanized/includes/api/v1/class-wc-gzd-rest-product-price-labels-v1-controller.php:95
7533
+ #: woocommerce-germanized/includes/api/v1/class-wc-gzd-rest-product-units-v1-controller.php:95
7534
  msgid "HTML description of the resource."
7535
  msgstr ""
7536
 
7537
+ #: woocommerce-germanized/includes/api/v1/class-wc-gzd-rest-product-delivery-times-v1-controller.php:103
7538
+ #: woocommerce-germanized/includes/api/v1/class-wc-gzd-rest-product-price-labels-v1-controller.php:103
7539
+ #: woocommerce-germanized/includes/api/v1/class-wc-gzd-rest-product-units-v1-controller.php:103
7540
  msgid "Number of published products for the resource."
7541
  msgstr ""
7542
 
7543
+ #: woocommerce-germanized/includes/class-wc-gzd-ajax.php:189
7544
+ #, php-format
7545
  msgid "%s [new]"
7546
  msgstr ""
7547
 
7548
+ #: woocommerce-germanized/includes/class-wc-gzd-ajax.php:270
7549
  msgctxt "revocation-form"
7550
  msgid "is not a valid email address."
7551
  msgstr ""
7552
 
7553
+ #: woocommerce-germanized/includes/class-wc-gzd-ajax.php:274
7554
  msgctxt "revocation-form"
7555
  msgid "Please enter a valid postcode/ZIP"
7556
  msgstr ""
7557
 
7558
+ #: woocommerce-germanized/includes/class-wc-gzd-ajax.php:282
7559
  msgctxt "revocation-form"
7560
  msgid "is not valid."
7561
  msgstr ""
7562
 
7563
+ #: woocommerce-germanized/includes/class-wc-gzd-ajax.php:303
7564
  msgctxt "revocation-form"
7565
  msgid "Thank you. We have received your Revocation Request. You will receive a conformation email within a few minutes."
7566
  msgstr ""
7567
 
7568
+ #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:148
7569
+ msgid "Please check the street field and make sure to provide a valid street number."
7570
+ msgstr ""
7571
+
7572
+ #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:272
7573
  msgid "Sorry, but differential taxed products cannot be purchased with normal products at the same time."
7574
  msgstr ""
7575
 
7576
+ #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:278
7577
  msgid "Sorry, but normal products cannot be purchased together with differential taxed products at the same time."
7578
  msgstr ""
7579
 
7580
+ #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:992
7581
+ #: woocommerce-germanized/includes/class-wc-gzd-revocation.php:52
7582
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:608
7583
  msgid "Mr."
7584
  msgstr ""
7585
 
7586
+ #: woocommerce-germanized/includes/class-wc-gzd-checkout.php:993
7587
  msgctxt "customer-title-male-address"
7588
  msgid "Mr."
7589
  msgstr ""
7590
 
7591
+ #: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:72
7592
  msgid "The cart contains one or more vouchers. Vouchers cannot be mixed with normal coupons."
7593
  msgstr ""
7594
 
7595
+ #: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:74
7596
  msgid "The cart contains one or more coupons. Vouchers cannot be mixed with normal coupons. Please remove the coupon before adding your voucher."
7597
  msgstr ""
7598
 
7599
+ #: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:371
7600
  msgid "Is voucher?"
7601
  msgstr ""
7602
 
7603
+ #: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:372
7604
+ #, php-format
7605
  msgid "Whether or not this coupon is a voucher which has been sold to a customer without VAT and needs to be taxed as soon as the customer redeems the voucher. Find more information <a href=\"%s\" target=\"_blank\">here</a>."
7606
  msgstr ""
7607
 
7608
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:160
7609
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:231
7610
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:342
7611
  msgid "Please activate your account through clicking on the activation link received via email."
7612
  msgstr ""
7613
 
7614
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:173
7615
+ #, php-format
7616
  msgid "Did not receive the activation email? <a href=\"%s\">Try again</a>."
7617
  msgstr ""
7618
 
7619
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:354
7620
+ #, php-format
7621
  msgid "Continue without creating an account? <a href=\"%s\">Click here</a>"
7622
  msgstr ""
7623
 
7624
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:356
7625
  msgid "Please create an account or login before continuing to checkout"
7626
  msgstr ""
7627
 
7628
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:465
7629
+ #, php-format
7630
  msgid "Please activate your account through clicking on the activation link received via email. Did not receive the email? <a href=\"%s\">Try again</a>."
7631
  msgstr ""
7632
 
7633
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:497
7634
  msgid "This activation code has expired. We have sent you a new activation code via e-mail."
7635
  msgstr ""
7636
 
7637
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:499
7638
  msgid "Sorry, but this activation code cannot be found."
7639
  msgstr ""
7640
 
7641
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:503
7642
  msgid "Thank you. You have successfully activated your account."
7643
  msgstr ""
7644
 
7645
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:683
7646
  msgid "Expired activation key"
7647
  msgstr ""
7648
 
7649
+ #: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:688
7650
  msgid "Invalid activation key"
7651
  msgstr ""
7652
 
7653
+ #: woocommerce-germanized/includes/class-wc-gzd-emails.php:197
7654
  msgid "BCC recipients"
7655
  msgstr ""
7656
 
7657
+ #: woocommerce-germanized/includes/class-wc-gzd-emails.php:199
7658
  msgid "Enter blind-copy recipients (comma separated) for this email."
7659
  msgstr ""
7660
 
7661
+ #: woocommerce-germanized/includes/class-wc-gzd-emails.php:238
7662
  msgid "Confirmation text"
7663
  msgstr ""
7664
 
7665
+ #: woocommerce-germanized/includes/class-wc-gzd-emails.php:239
7666
  msgid "Your order has been received and is now being processed. Your order details are shown below for your reference:"
7667
  msgstr ""
7668
 
7669
+ #: woocommerce-germanized/includes/class-wc-gzd-emails.php:240
7670
  msgid "This text will be inserted within the order confirmation email. Use {order_number}, {site_title} or {order_date} as placeholder."
7671
  msgstr ""
7672
 
7673
+ #: woocommerce-germanized/includes/class-wc-gzd-emails.php:357
7674
  msgid "Your order has been received and is now being processed. Your order details are shown below for your reference."
7675
  msgstr ""
7676
 
7677
+ #: woocommerce-germanized/includes/class-wc-gzd-emails.php:403
7678
  msgid "Someone requested a password reset for your account."
7679
  msgstr ""
7680
 
7681
+ #: woocommerce-germanized/includes/class-wc-gzd-emails.php:418
7682
+ #, php-format
7683
  msgid "Thanks for creating an account on %s."
7684
  msgstr ""
7685
 
7686
+ #: woocommerce-germanized/includes/class-wc-gzd-emails.php:1133
7687
  msgctxt "revocation-form"
7688
+ msgid "Forward your withdrawal online"
7689
  msgstr ""
7690
 
7691
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:158
7692
+ #, php-format
7693
  msgid "Please install <a href=\"%s\" target=\"_blank\">WooCommerce</a> before installing WooCommerce Germanized. Thank you!"
7694
  msgstr ""
7695
 
7696
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:483
 
 
 
 
 
 
 
 
 
 
7697
  msgctxt "Page slug"
7698
  msgid "data-security"
7699
  msgstr ""
7700
 
7701
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:484
7702
  msgctxt "Page title"
7703
+ msgid "Privacy Policy"
7704
  msgstr ""
7705
 
7706
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:488
7707
  msgctxt "Page slug"
7708
  msgid "imprint"
7709
  msgstr ""
7710
 
7711
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:489
7712
  msgctxt "Page title"
7713
  msgid "Imprint"
7714
  msgstr ""
7715
 
7716
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:493
7717
  msgctxt "Page slug"
7718
  msgid "terms"
7719
  msgstr ""
7720
 
7721
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:494
7722
  msgctxt "Page title"
7723
  msgid "Terms & Conditions"
7724
  msgstr ""
7725
 
7726
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:498
7727
  msgctxt "Page slug"
7728
  msgid "revocation"
7729
  msgstr ""
7730
 
7731
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:499
7732
  msgctxt "Page title"
7733
+ msgid "Cancellation Policy"
7734
  msgstr ""
7735
 
7736
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:503
7737
  msgctxt "Page slug"
7738
  msgid "shipping-methods"
7739
  msgstr ""
7740
 
7741
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:504
7742
  msgctxt "Page title"
7743
  msgid "Shipping Methods"
7744
  msgstr ""
7745
 
7746
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:508
7747
  msgctxt "Page slug"
7748
  msgid "payment-methods"
7749
  msgstr ""
7750
 
7751
+ #: woocommerce-germanized/includes/class-wc-gzd-install.php:509
7752
  msgctxt "Page title"
7753
  msgid "Payment Methods"
7754
  msgstr ""
7755
 
7756
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:104
7757
+ msgid "With your order, you agree to have read and understood our {term_link}Terms and Conditions{/term_link}, {revocation_link}Cancellation Policy{/revocation_link} and our {data_security_link}Privacy Policy{/data_security_link}."
 
7758
  msgstr ""
7759
 
7760
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:105
7761
+ msgid "To complete the order you have to accept to our {term_link}Terms and Conditions{/term_link}, {revocation_link}Cancellation Policy{/revocation_link} and our {data_security_link}Privacy Policy{/data_security_link}."
 
7762
  msgstr ""
7763
 
7764
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:111
7765
  msgid "Legal"
7766
  msgstr ""
7767
 
7768
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:112
7769
  msgid "General legal checkbox which shall include terms, revocation and privacy notice."
7770
  msgstr ""
7771
 
7772
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:120
7773
+ #: woocommerce-germanized/includes/updates/woocommerce-gzd-update-2.0.1.php:24
7774
  msgid "For digital products: I strongly agree that the execution of the agreement starts before the revocation period has expired. I am aware that my right of withdrawal ceases with the beginning of the agreement."
7775
  msgstr ""
7776
 
7777
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:122
7778
+ #: woocommerce-germanized/includes/updates/woocommerce-gzd-update-2.0.1.php:25
7779
  msgid "To retrieve direct access to digital content you have to agree to the loss of your right of withdrawal."
7780
  msgstr ""
7781
 
7782
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:128
7783
  msgid "Digital"
7784
  msgstr ""
7785
 
7786
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:129
7787
  msgid "Asks the customer to skip revocation period for digital products."
7788
  msgstr ""
7789
 
7790
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:138
7791
+ #: woocommerce-germanized/includes/updates/woocommerce-gzd-update-2.0.1.php:31
7792
  msgid "For services: I demand and acknowledge the immediate performance of the service before the expiration of the withdrawal period. I acknowledge that thereby I lose my right to cancel once the service has begun."
7793
  msgstr ""
7794
 
7795
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:140
7796
+ #: woocommerce-germanized/includes/updates/woocommerce-gzd-update-2.0.1.php:32
7797
  msgid "To allow the immediate performance of the services you have to agree to the loss of your right of withdrawal."
7798
  msgstr ""
7799
 
7800
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:147
7801
  msgid "Asks the customer to skip revocation period for services."
7802
  msgstr ""
7803
 
7804
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:155
7805
+ #: woocommerce-germanized/includes/updates/woocommerce-gzd-update-2.0.1.php:40
7806
  msgid "Yes, I would like to be reminded via E-mail about parcel delivery ({shipping_method_title}). Your E-mail Address will only be transferred to our parcel service provider for that particular reason."
7807
  msgstr ""
7808
 
7809
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:160
7810
  msgid "Please accept our parcel delivery agreement"
7811
  msgstr ""
7812
 
7813
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:165
7814
  msgid "Parcel Delivery"
7815
  msgstr ""
7816
 
7817
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:166
7818
  msgid "Asks the customer to hand over data to the parcel delivery service provider."
7819
  msgstr ""
7820
 
7821
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:175
7822
  msgid "I hereby confirm that I'm at least {age} years old."
7823
  msgstr ""
7824
 
7825
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:177
7826
  msgid "Please confirm your age."
7827
  msgstr ""
7828
 
7829
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:184
7830
  msgid "Asks the customer to confirm a minimum age."
7831
  msgstr ""
7832
 
7833
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:193
7834
+ #: woocommerce-germanized/includes/updates/woocommerce-gzd-update-2.0.1.php:44
7835
  msgid "Yes, I’d like create a new account and have read and understood the {data_security_link}data privacy statement{/data_security_link}."
7836
  msgstr ""
7837
 
7838
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:197
7839
  msgid "Please accept our privacy policy to create a new customer account"
7840
  msgstr ""
7841
 
7842
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:203
7843
  msgid "Let customers accept your privacy policy before registering."
7844
  msgstr ""
7845
 
7846
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:228
7847
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1001
7848
  msgid "I hereby agree to the {link}direct debit mandate{/link}."
7849
  msgstr ""
7850
 
7851
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:234
7852
  msgid "Please accept the direct debit mandate."
7853
  msgstr ""
7854
 
7855
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:239
7856
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:202
7857
  msgid "SEPA"
7858
  msgstr ""
7859
 
7860
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:240
7861
  msgid "Asks the customer to issue the SEPA mandate."
7862
  msgstr ""
7863
 
7864
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:633
7865
  msgid "Register form"
7866
  msgstr ""
7867
 
7868
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:634
7869
  msgid "Pay for order"
7870
  msgstr ""
7871
 
7872
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:635
7873
  msgid "Reviews"
7874
  msgstr ""
7875
 
7876
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:699
7877
+ #, php-format
7878
  msgid "Checkbox location %s does not exist."
7879
  msgstr ""
7880
 
7881
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:725
7882
+ #, php-format
7883
  msgid "Please make sure to check %s checkbox."
7884
  msgstr ""
7885
 
7886
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:730
7887
+ #, php-format
7888
  msgid "Checkbox with name %s does already exist."
7889
  msgstr ""
7890
 
7891
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:344
7892
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:364
7893
+ #, php-format
7894
  msgid "%s is a mandatory field."
7895
  msgstr ""
7896
 
7897
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:788
7898
  msgid "Enable checkbox"
7899
  msgstr ""
7900
 
7901
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:797
7902
  msgid "Choose a name to identify your checkbox. Upon creating a new checkbox, this value is being used to generate the Id."
7903
  msgstr ""
7904
 
7905
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:802
7906
  msgid "Id"
7907
  msgstr ""
7908
 
7909
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:806
7910
  msgid "The checkbox Id is the unique indentifier which is used to identify the checkbox within the code. Cannot be edited after creating the checkbox."
7911
  msgstr ""
7912
 
7913
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:815
7914
  msgid "Describe the use case of your checkbox."
7915
  msgstr ""
7916
 
7917
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:825
7918
  msgid "Choose a label to be inserted next to the checkbox."
7919
  msgstr ""
7920
 
7921
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:826
7922
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:836
7923
+ #, php-format
7924
  msgid "You may use one of the following placeholders within the text: %s"
7925
  msgstr ""
7926
 
7927
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:831
7928
  msgid "Error Message"
7929
  msgstr ""
7930
 
7931
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:835
7932
  msgid "Choose an error message to be shown when the user has not confirmed the checkbox."
7933
  msgstr ""
7934
 
7935
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:841
7936
  msgid "Hide input"
7937
  msgstr ""
7938
 
7939
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:844
7940
  msgid "Do only show a label and hide the actual checkbox."
7941
  msgstr ""
7942
 
7943
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:852
7944
  msgid "Mark the checkbox as mandatory."
7945
  msgstr ""
7946
 
7947
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:857
7948
  msgid "Locations"
7949
  msgstr ""
7950
 
7951
+ #: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:861
7952
  msgid "Choose where to display your checkbox."
7953
  msgstr ""
7954
 
7955
+ #: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:150
7956
+ #: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:206
7957
+ #, php-format
7958
  msgid "%s payment charge"
7959
  msgstr ""
7960
 
7961
+ #: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:153
7962
+ #: woocommerce-germanized/includes/wc-gzd-order-functions.php:35
7963
+ #: woocommerce-germanized/includes/wc-gzd-template-functions.php:523
7964
+ #, php-format
7965
  msgid "Plus %s forwarding fee (charged by the transport agent)"
7966
  msgstr ""
7967
 
7968
+ #: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:240
7969
  msgid "Fee"
7970
  msgstr ""
7971
 
7972
+ #: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:242
7973
  msgid "This fee is being added if customer selects payment method within checkout."
7974
  msgstr ""
7975
 
7976
+ #: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:248
7977
  msgid "Fee is taxable?"
7978
  msgstr ""
7979
 
7980
+ #: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:250
7981
  msgid "Check if fee is taxable."
7982
  msgstr ""
7983
 
7984
+ #: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:256
7985
  msgid "Forwarding Fee"
7986
  msgstr ""
7987
 
7988
+ #: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:259
7989
  msgid "Forwarding fee will be charged by the transport agent in addition to the cash of delivery fee e.g. DHL - tax free."
7990
  msgstr ""
7991
 
7992
+ #: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:297
7993
  msgid "Payment charge"
7994
  msgstr ""
7995
 
7996
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:49
7997
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:51
7998
  msgid "Product Delivery Times"
7999
  msgstr ""
8000
 
8001
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:52
8002
  msgid "Product Delivery Time"
8003
  msgstr ""
8004
 
8005
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:53
8006
  msgctxt "Admin menu name"
8007
  msgid "Delivery Time"
8008
  msgstr ""
8009
 
8010
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:54
8011
  msgid "Search Delivery Times"
8012
  msgstr ""
8013
 
8014
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:55
8015
  msgid "All Product Delivery Times"
8016
  msgstr ""
8017
 
8018
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:56
8019
  msgid "Edit Product Delivery Time"
8020
  msgstr ""
8021
 
8022
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:57
8023
  msgid "Update Product Delivery Time"
8024
  msgstr ""
8025
 
8026
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:58
8027
  msgid "Add New Product Delivery Time"
8028
  msgstr ""
8029
 
8030
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:59
8031
  msgid "New Product Delivery Time Name"
8032
  msgstr ""
8033
 
8034
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:95
8035
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:97
8036
  msgid "Units"
8037
  msgstr ""
8038
 
8039
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:99
8040
  msgctxt "Admin menu name"
8041
  msgid "Units"
8042
  msgstr ""
8043
 
8044
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:100
8045
  msgid "Search Units"
8046
  msgstr ""
8047
 
8048
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:101
8049
  msgid "All Units"
8050
  msgstr ""
8051
 
8052
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:102
8053
  msgid "Edit Unit"
8054
  msgstr ""
8055
 
8056
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:103
8057
  msgid "Update Unit"
8058
  msgstr ""
8059
 
8060
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:104
8061
  msgid "Add New Unit"
8062
  msgstr ""
8063
 
8064
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:105
8065
  msgid "New Unit Name"
8066
  msgstr ""
8067
 
8068
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:141
8069
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:143
8070
  msgid "Price Labels"
8071
  msgstr ""
8072
 
8073
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:145
8074
  msgctxt "Admin menu name"
8075
  msgid "Price Labels"
8076
  msgstr ""
8077
 
8078
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:146
8079
  msgid "Search Price Labels"
8080
  msgstr ""
8081
 
8082
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:147
8083
  msgid "All Price Labels"
8084
  msgstr ""
8085
 
8086
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:148
8087
  msgid "Edit Price Label"
8088
  msgstr ""
8089
 
8090
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:149
8091
  msgid "Update Price Label"
8092
  msgstr ""
8093
 
8094
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:150
8095
  msgid "Add New Price Label"
8096
  msgstr ""
8097
 
8098
+ #: woocommerce-germanized/includes/class-wc-gzd-post-types.php:151
8099
  msgid "New Price Label Name"
8100
  msgstr ""
8101
 
8102
+ #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:82
8103
+ #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:116
8104
+ #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:163
8105
  msgid "Postnumber"
8106
  msgstr ""
8107
 
8108
+ #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:83
8109
+ #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:164
8110
  msgid "Billing Title"
8111
  msgstr ""
8112
 
8113
+ #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:84
8114
+ #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:165
8115
  msgid "Shipping Title"
8116
  msgstr ""
8117
 
8118
+ #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:95
8119
+ #, php-format
8120
  msgid "Removed customer \"%s\""
8121
  msgstr ""
8122
 
8123
+ #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:120
8124
  msgid "Mandate Date"
8125
  msgstr ""
8126
 
8127
+ #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:121
8128
  msgid "Mandate ID"
8129
  msgstr ""
8130
 
8131
+ #: woocommerce-germanized/includes/class-wc-gzd-privacy.php:122
8132
  msgid "Mandate Email"
8133
  msgstr ""
8134
 
8135
+ #: woocommerce-germanized/includes/class-wc-gzd-product-attribute-helper.php:67
8136
  msgid "Visible during checkout"
8137
  msgstr ""
8138
 
8139
+ #: woocommerce-germanized/includes/class-wc-gzd-revocation.php:33
8140
  msgctxt "revocation-form"
8141
+ msgid "Withdrawal"
8142
  msgstr ""
8143
 
8144
+ #: woocommerce-germanized/includes/class-wc-gzd-revocation.php:35
8145
  msgctxt "revocation-form"
8146
  msgid "Tip: Delete whatever entry does not apply, and provide, as needed"
8147
  msgstr ""
8148
 
8149
+ #: woocommerce-germanized/includes/class-wc-gzd-revocation.php:36
8150
  msgctxt "revocation-form"
8151
  msgid "I/We hereby give notice that I/We withdraw from my/our contract of sale of the following goods/provision of the following service: "
8152
  msgstr ""
8153
 
8154
+ #: woocommerce-germanized/includes/class-wc-gzd-revocation.php:40
8155
  msgctxt "revocation-form"
8156
  msgid "Received"
8157
  msgstr ""
8158
 
8159
+ #: woocommerce-germanized/includes/class-wc-gzd-revocation.php:44
8160
  msgctxt "revocation-form"
8161
  msgid "Order Date"
8162
  msgstr ""
8163
 
8164
+ #: woocommerce-germanized/includes/class-wc-gzd-revocation.php:46
8165
  msgctxt "revocation-form"
8166
  msgid "Customer Data"
8167
  msgstr ""
8168
 
8169
+ #: woocommerce-germanized/includes/class-wc-gzd-revocation.php:49
8170
  msgctxt "revocation-form"
8171
  msgid "Title"
8172
  msgstr ""
8173
 
8174
+ #: woocommerce-germanized/includes/class-wc-gzd-revocation.php:53
8175
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:609
8176
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:627
8177
  msgid "Ms."
8178
  msgstr ""
8179
 
8180
+ #: woocommerce-germanized/includes/class-wc-gzd-revocation.php:58
8181
  msgctxt "revocation-form"
8182
  msgid "First Name"
8183
  msgstr ""
8184
 
8185
+ #: woocommerce-germanized/includes/class-wc-gzd-revocation.php:63
8186
  msgctxt "revocation-form"
8187
  msgid "Last Name"
8188
  msgstr ""
8189
 
8190
+ #: woocommerce-germanized/includes/class-wc-gzd-revocation.php:68
8191
  msgctxt "revocation-form"
8192
  msgid "Street"
8193
  msgstr ""
8194
 
8195
+ #: woocommerce-germanized/includes/class-wc-gzd-revocation.php:73
8196
  msgctxt "revocation-form"
8197
  msgid "Postal Code"
8198
  msgstr ""
8199
 
8200
+ #: woocommerce-germanized/includes/class-wc-gzd-revocation.php:78
8201
  msgctxt "revocation-form"
8202
  msgid "City"
8203
  msgstr ""
8204
 
8205
+ #: woocommerce-germanized/includes/class-wc-gzd-revocation.php:83
8206
  msgctxt "revocation-form"
8207
  msgid "Country"
8208
  msgstr ""
8209
 
8210
+ #: woocommerce-germanized/includes/class-wc-gzd-revocation.php:89
8211
  msgctxt "revocation-form"
8212
  msgid "Mail"
8213
  msgstr ""
8214
 
8215
+ #: woocommerce-germanized/includes/class-wc-gzd-revocation.php:102
8216
+ #, php-format
8217
  msgctxt "revocation-form"
8218
  msgid "Please accept our <a href=\"%s\" target=\"_blank\">Pricacy Policy</a> so that we can process your inquiry."
8219
  msgstr ""
8220
 
8221
+ #: woocommerce-germanized/includes/class-wc-gzd-secret-box-helper.php:20
8222
+ msgid "General purpose encryption, e.g. application password stored within settings"
8223
+ msgstr ""
8224
+
8225
+ #: woocommerce-germanized/includes/class-wc-gzd-secret-box-helper.php:22
8226
+ #, php-format
8227
+ msgid "Encryption of type %s"
8228
+ msgstr ""
8229
+
8230
+ #: woocommerce-germanized/includes/class-wc-gzd-secret-box-helper.php:26
8231
+ #, php-format
8232
+ msgid "Attention! The <em>%1$s</em> (%2$s) constant is missing. Germanized uses a derived key based on the <em>LOGGED_IN_KEY</em> constant instead. This constant might change under certain circumstances. To prevent data losses, please insert the following snippet within your <a href=\"%3$s\" target=\"_blank\">wp-config.php</a> file:"
8233
+ msgstr ""
8234
+
8235
+ #: woocommerce-germanized/includes/compatibility/class-wc-gzd-compatibility-woo-poly-integration.php:272
8236
  msgctxt "polylang"
8237
  msgid "Unit Price Metas"
8238
  msgstr ""
8239
 
8240
+ #: woocommerce-germanized/includes/compatibility/class-wc-gzd-compatibility-woo-poly-integration.php:273
8241
  msgctxt "polylang"
8242
  msgid "Note the last unit price field is the final unit price taking into account the effect of unit sale price"
8243
  msgstr ""
8244
 
8245
+ #: woocommerce-germanized/includes/compatibility/class-wc-gzd-compatibility-woo-poly-integration.php:286
8246
  msgctxt "polylang"
8247
  msgid "Sale Price Labels"
8248
  msgstr ""
8249
 
8250
+ #: woocommerce-germanized/includes/compatibility/class-wc-gzd-compatibility-woo-poly-integration.php:287
8251
  msgctxt "polylang"
8252
  msgid "Sale price labels used to mark old prices (e.g. Recommended Retail Price)"
8253
  msgstr ""
8254
 
8255
+ #: woocommerce-germanized/includes/compatibility/elementor/widgets/abstact-class-wc-gzd-elementor-widget.php:54
8256
+ #, php-format
8257
  msgid "Upgrade to WooCommerce Germanized Pro to use your our custom Elementor Widgets. %s"
8258
  msgstr ""
8259
 
8260
+ #: woocommerce-germanized/includes/compatibility/elementor/widgets/class-wc-gzd-elementor-widget-product-shipping-notice.php:10
8261
  msgid "Shipping Notice"
8262
  msgstr ""
8263
 
8264
+ #: woocommerce-germanized/includes/compatibility/elementor/widgets/class-wc-gzd-elementor-widget-product-tax-notice.php:10
8265
  msgid "Tax Notice"
8266
  msgstr ""
8267
 
8268
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-cancelled-order.php:28
8269
+ msgid "Cancelled order"
8270
+ msgstr ""
8271
+
8272
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-cancelled-order.php:29
8273
+ msgid "This E-Mail is being sent to a customer in case the order was cancelled and/or has failed."
8274
+ msgstr ""
8275
+
8276
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-cancelled-order.php:60
8277
+ msgid "Your {site_title} order #{order_number} has failed"
8278
+ msgstr ""
8279
+
8280
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-cancelled-order.php:62
8281
+ msgid "Your {site_title} order #{order_number} has been cancelled"
8282
+ msgstr ""
8283
+
8284
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-cancelled-order.php:74
8285
+ msgid "Failed order: {order_number}"
8286
+ msgstr ""
8287
+
8288
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-cancelled-order.php:76
8289
+ msgid "Cancelled order: {order_number}"
8290
+ msgstr ""
8291
+
8292
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-cancelled-order.php:205
8293
+ #, php-format
8294
+ msgid "Available placeholders: %s"
8295
+ msgstr ""
8296
+
8297
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-cancelled-order.php:208
8298
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:901
8299
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:111
8300
+ msgid "Enable/Disable"
8301
+ msgstr ""
8302
+
8303
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-cancelled-order.php:210
8304
+ msgid "Enable this email notification"
8305
+ msgstr ""
8306
+
8307
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-cancelled-order.php:214
8308
+ msgid "Enable failed"
8309
+ msgstr ""
8310
+
8311
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-cancelled-order.php:216
8312
+ msgid "Enable failed order customer notification"
8313
+ msgstr ""
8314
+
8315
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-cancelled-order.php:220
8316
+ msgid "Cancelled email subject"
8317
+ msgstr ""
8318
+
8319
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-cancelled-order.php:228
8320
+ msgid "Failed email subject"
8321
+ msgstr ""
8322
+
8323
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-cancelled-order.php:236
8324
+ msgid "Cancelled email heading"
8325
+ msgstr ""
8326
+
8327
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-cancelled-order.php:244
8328
+ msgid "Failed email heading"
8329
+ msgstr ""
8330
+
8331
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-cancelled-order.php:252
8332
+ msgid "Additional content"
8333
+ msgstr ""
8334
+
8335
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-cancelled-order.php:253
8336
+ msgid "Text to appear below the main email content."
8337
+ msgstr ""
8338
+
8339
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-cancelled-order.php:255
8340
+ msgid "N/A"
8341
+ msgstr ""
8342
+
8343
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-cancelled-order.php:261
8344
+ msgid "Email type"
8345
+ msgstr ""
8346
+
8347
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-cancelled-order.php:263
8348
+ msgid "Choose which format of email to send."
8349
+ msgstr ""
8350
+
8351
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-new-account-activation.php:40
8352
  msgid "New account activation"
8353
  msgstr ""
8354
 
8355
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-new-account-activation.php:41
8356
  msgid "Customer \"new account activation\" emails are sent to the customer when a customer signs up via checkout or account pages. This mail is being used as double opt in for new customer accounts."
8357
  msgstr ""
8358
 
8359
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-new-account-activation.php:60
8360
  msgid "Activate your account on {site_title}"
8361
  msgstr ""
8362
 
8363
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-new-account-activation.php:70
8364
  msgid "Account activation {site_title}"
8365
  msgstr ""
8366
 
8367
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-paid-for-order.php:28
8368
  msgid "Paid for order"
8369
  msgstr ""
8370
 
8371
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-paid-for-order.php:29
8372
  msgid "This E-Mail is being sent to a customer after the order has been paid."
8373
  msgstr ""
8374
 
8375
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-paid-for-order.php:54
8376
  msgid "Payment received for order {order_number}"
8377
  msgstr ""
8378
 
8379
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-paid-for-order.php:64
8380
  msgid "Payment received"
8381
  msgstr ""
8382
 
8383
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-processing-order.php:47
8384
  msgid "Order Confirmation"
8385
  msgstr ""
8386
 
8387
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-processing-order.php:57
8388
  msgid "Confirmation of your order {order_number}"
8389
  msgstr ""
8390
 
8391
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-processing-order.php:67
8392
  msgid "Thank you for your order"
8393
  msgstr ""
8394
 
8395
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-revocation.php:33
8396
+ msgid "Withdrawal"
8397
  msgstr ""
8398
 
8399
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-revocation.php:34
8400
+ msgid "Email being sent if a customer fills out the form of withdrawal."
8401
  msgstr ""
8402
 
8403
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-revocation.php:53
8404
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-revocation.php:63
8405
  msgid "Your revocation"
8406
  msgstr ""
8407
 
8408
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-revocation.php:174
8409
  msgid "Admin email"
8410
  msgstr ""
8411
 
8412
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-revocation.php:177
8413
+ msgid "Insert the email address of your shop manager here. A copy of the withdrawal confirmation email is being sent to this address."
8414
  msgstr ""
8415
 
8416
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:32
8417
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:58
8418
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:68
8419
  msgid "SEPA Direct Debit Mandate"
8420
  msgstr ""
8421
 
8422
+ #: woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:33
8423
  msgid "Email contains a copy of the SEPA mandate generated by information provided by the customer."
8424
  msgstr ""
8425
 
8426
+ #: woocommerce-germanized/includes/export/class-wc-gzd-product-export.php:50
8427
  msgctxt "exporter"
8428
  msgid "Is service?"
8429
  msgstr ""
8430
 
8431
+ #: woocommerce-germanized/includes/export/class-wc-gzd-product-export.php:51
8432
  msgctxt "exporter"
8433
  msgid "Is differential taxed?"
8434
  msgstr ""
8435
 
8436
+ #: woocommerce-germanized/includes/export/class-wc-gzd-product-export.php:52
8437
  msgctxt "exporter"
8438
  msgid "Has free shipping?"
8439
  msgstr ""
8440
 
8441
+ #: woocommerce-germanized/includes/export/class-wc-gzd-product-export.php:53
8442
  msgctxt "exporter"
8443
  msgid "Unit price regular"
8444
  msgstr ""
8445
 
8446
+ #: woocommerce-germanized/includes/export/class-wc-gzd-product-export.php:54
8447
  msgctxt "exporter"
8448
  msgid "Unit price sale"
8449
  msgstr ""
8450
 
8451
+ #: woocommerce-germanized/includes/export/class-wc-gzd-product-export.php:55
8452
  msgctxt "exporter"
8453
  msgid "Unit price calculated automatically?"
8454
  msgstr ""
8455
 
8456
+ #: woocommerce-germanized/includes/export/class-wc-gzd-product-export.php:56
8457
  msgctxt "exporter"
8458
  msgid "Unit"
8459
  msgstr ""
8460
 
8461
+ #: woocommerce-germanized/includes/export/class-wc-gzd-product-export.php:57
8462
  msgctxt "exporter"
8463
  msgid "Unit base"
8464
  msgstr ""
8465
 
8466
+ #: woocommerce-germanized/includes/export/class-wc-gzd-product-export.php:58
8467
  msgctxt "exporter"
8468
  msgid "Unit product"
8469
  msgstr ""
8470
 
8471
+ #: woocommerce-germanized/includes/export/class-wc-gzd-product-export.php:59
8472
  msgctxt "exporter"
8473
  msgid "Cart description"
8474
  msgstr ""
8475
 
8476
+ #: woocommerce-germanized/includes/export/class-wc-gzd-product-export.php:60
8477
  msgctxt "exporter"
8478
  msgid "Delivery time"
8479
  msgstr ""
8480
 
8481
+ #: woocommerce-germanized/includes/export/class-wc-gzd-product-export.php:61
8482
  msgctxt "exporter"
8483
  msgid "Sale price label"
8484
  msgstr ""
8485
 
8486
+ #: woocommerce-germanized/includes/export/class-wc-gzd-product-export.php:62
8487
  msgctxt "exporter"
8488
  msgid "Sale price regular label"
8489
  msgstr ""
8490
 
8491
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:40
8492
+ #, php-format
8493
  msgid "Allows you to offer direct debit as a payment method to your customers. Adds SEPA fields to checkout. %s"
8494
  msgstr ""
8495
 
8496
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:40
8497
  msgid "SEPA XML Bulk Export"
8498
  msgstr ""
8499
 
8500
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:65
8501
  msgid ""
8502
  "[company_info]\n"
8503
  "debtee identification number: [company_identification_number]\n"
8527
  "Please notice: Period for pre-information of the SEPA direct debit is shortened to one day."
8528
  msgstr ""
8529
 
8530
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:210
8531
  msgid "SEPA XML"
8532
  msgstr ""
8533
 
8534
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:280
8535
  msgid "SEPA XML Export"
8536
  msgstr ""
8537
 
8538
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:502
8539
+ #, php-format
8540
  msgid "Order %s"
8541
  msgstr ""
8542
 
8543
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:533
8544
  msgid "Will be notified separately"
8545
  msgstr ""
8546
 
8547
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:622
8548
+ #, php-format
8549
  msgid "We will debit %s from your account by direct debit on or shortly after %s."
8550
  msgstr ""
8551
 
8552
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:798
8553
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:844
8554
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:877
8555
  msgid "a single payment"
8556
  msgstr ""
8557
 
8558
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:903
 
 
 
 
 
8559
  msgid "Enable Direct Debit Payment"
8560
  msgstr ""
8561
 
8562
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:907
8563
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:117
8564
  msgctxt "gateway"
8565
  msgid "Title"
8566
  msgstr ""
8567
 
8568
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:909
8569
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:119
8570
  msgid "This controls the title which the user sees during checkout."
8571
  msgstr ""
8572
 
8573
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:916
8574
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:126
8575
  msgid "Payment method description that the customer will see on your checkout."
8576
  msgstr ""
8577
 
8578
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:917
8579
  msgid "The order amount will be debited directly from your bank account."
8580
  msgstr ""
8581
 
8582
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:921
8583
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:131
8584
  msgid "Instructions"
8585
  msgstr ""
8586
 
8587
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:923
8588
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:133
8589
  msgid "Instructions that will be added to the thank you page and emails."
8590
  msgstr ""
8591
 
8592
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:928
8593
  msgid "Debtee"
8594
  msgstr ""
8595
 
8596
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:930
8597
  msgid "Insert your company information."
8598
  msgstr ""
8599
 
8600
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:932
8601
  msgid "Company Inc, John Doe Street, New York"
8602
  msgstr ""
8603
 
8604
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:938
8605
  msgid "Insert the bank account holder name."
8606
  msgstr ""
8607
 
8608
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:940
8609
  msgid "Company Inc"
8610
  msgstr ""
8611
 
8612
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:946
8613
  msgid "Insert the bank account IBAN."
8614
  msgstr ""
8615
 
8616
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:951
8617
  msgid "BIC"
8618
  msgstr ""
8619
 
8620
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:953
8621
  msgid "Insert the bank account BIC."
8622
  msgstr ""
8623
 
8624
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:958
8625
  msgid "Debtee identification number"
8626
  msgstr ""
8627
 
8628
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:960
8629
+ #, php-format
8630
  msgid "Insert your debtee indentification number. More information can be found <a href=\"%s\">here</a>."
8631
  msgstr ""
8632
 
8633
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:964
8634
  msgid "Generate Mandate ID"
8635
  msgstr ""
8636
 
8637
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:966
8638
  msgid "Automatically generate Mandate ID."
8639
  msgstr ""
8640
 
8641
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:967
8642
  msgid "Automatically generate Mandate ID after order completion (based on Order ID)."
8643
  msgstr ""
8644
 
8645
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:971
8646
  msgid "XML Pain Format"
8647
  msgstr ""
8648
 
8649
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:973
8650
  msgid "You may adjust the XML Export Pain Schema to your banks needs. Some banks may require pain.001.003.03."
8651
  msgstr ""
8652
 
8653
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:977
8654
  msgid "Mandate ID Format"
8655
  msgstr ""
8656
 
8657
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:979
8658
  msgid "You may extend the Mandate ID format by adding a prefix and/or suffix. Use {id} as placeholder to insert the automatically generated ID."
8659
  msgstr ""
8660
 
8661
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:983
8662
  msgid "Mandate Text"
8663
  msgstr ""
8664
 
8665
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:985
8666
  msgid "This text will be populated with live order/checkout data. Will be used as preview direct debit mandate and as email template text."
8667
  msgstr ""
8668
 
8669
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:991
8670
  msgid "Checkbox"
8671
  msgstr ""
8672
 
8673
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:992
8674
  msgid "Enable \"agree to SEPA mandate\" checkbox"
8675
  msgstr ""
8676
 
8677
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:994
8678
  msgid "Enable a checkbox linking to a SEPA direct debit mandate preview."
8679
  msgstr ""
8680
 
8681
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:998
8682
  msgid "Checkbox label"
8683
  msgstr ""
8684
 
8685
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1000
8686
  msgid "Customize the checkbox label. Use {link}link name{/link} to insert the preview link."
8687
  msgstr ""
8688
 
8689
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1005
8690
  msgid "Enable pre-notification"
8691
  msgstr ""
8692
 
8693
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1006
8694
  msgid "Insert pre-notification text within the order confirmation email."
8695
  msgstr ""
8696
 
8697
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1008
8698
  msgid "This option inserts a standard text containing a pre-notification for the customer."
8699
  msgstr ""
8700
 
8701
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1012
8702
  msgid "Debit days"
8703
  msgstr ""
8704
 
8705
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1014
8706
  msgid "This option is used to calculate the debit date and is added to the order date."
8707
  msgstr ""
8708
 
8709
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1018
8710
  msgid "Mask IBAN"
8711
  msgstr ""
8712
 
8713
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1019
8714
  msgid "Mask the IBAN within emails."
8715
  msgstr ""
8716
 
8717
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1021
8718
  msgid "This will lead to masked IBANs within emails (replaced by *). All but last 4 digits will be masked."
8719
  msgstr ""
8720
 
8721
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1031
8722
  msgid "Remember"
8723
  msgstr ""
8724
 
8725
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1032
8726
  msgid "Remember account data for returning customers."
8727
  msgstr ""
8728
 
8729
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1034
8730
  msgid "Save account data as user meta if user has/creates a customer account."
8731
  msgstr ""
8732
 
8733
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1144
8734
  msgid "Please insert your SEPA account data."
8735
  msgstr ""
8736
 
8737
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1166
8738
  msgid "Your IBAN seems to be invalid."
8739
  msgstr ""
8740
 
8741
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1168
8742
  msgid "Your IBAN's country code doesn’t match with your billing country."
8743
  msgstr ""
8744
 
8745
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1173
8746
  msgid "Your BIC seems to be invalid."
8747
  msgstr ""
8748
 
8749
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1218
8750
  msgid "is invalid"
8751
  msgstr ""
8752
 
8753
+ #: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1311
8754
  msgid "Awaiting Direct Debit Payment"
8755
  msgstr ""
8756
 
8757
+ #: woocommerce-germanized/includes/gateways/direct-debit/views/html-encryption-notice.php:18
8758
+ #, php-format
8759
  msgid "Please upgrade your PHP Version to at least 5.4 and make sure that you have <a href=\"%s\" target=\"_blank\">openssl</a> enabled and WP Version 4.4 or greater installed to support account data encryption."
8760
  msgstr ""
8761
 
8762
+ #: woocommerce-germanized/includes/gateways/direct-debit/views/html-encryption-notice.php:22
8763
+ #, php-format
8764
  msgid "Please insert the following code in your <a href=\"%s\" target=\"_blank\">wp-config.php</a> to enable encryption. You may of course choose your own key:"
8765
  msgstr ""
8766
 
8767
+ #: woocommerce-germanized/includes/gateways/direct-debit/views/html-encryption-notice.php:24
8768
+ #, php-format
8769
  msgid "Your customers’ account data (IBAN, BIC) will from then on be saved <a href=\"%s\" target=\"_blank\">encrypted</a> within your database."
8770
  msgstr ""
8771
 
8772
+ #: woocommerce-germanized/includes/gateways/direct-debit/views/html-export.php:36
8773
+ msgid "Start Date"
8774
+ msgstr ""
8775
+
8776
+ #: woocommerce-germanized/includes/gateways/direct-debit/views/html-export.php:40
8777
+ msgid "End Date"
8778
+ msgstr ""
8779
+
8780
+ #: woocommerce-germanized/includes/gateways/direct-debit/views/html-export.php:44
8781
+ msgid "Unpaid only"
8782
+ msgstr ""
8783
+
8784
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:35
8785
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:120
8786
+ msgid "Pay by Invoice"
8787
+ msgstr ""
8788
+
8789
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:36
8790
+ msgid "Customers will be able to pay by invoice."
8791
+ msgstr ""
8792
+
8793
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:86
8794
+ msgid "Automatically generate PDF invoices for this gateway?"
8795
+ msgstr ""
8796
+
8797
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:87
8798
+ msgid "By upgrading to the professional version you'll be able to automatically generate PDF invoices to this payment gateway. Furthermore you'll benefit from even more professional features such as a multistep checkout page, legal text generators, B2B VAT settings and premium support!"
8799
+ msgstr ""
8800
+
8801
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:93
8802
+ msgid "Learn more about PDF invoicing"
8803
+ msgstr ""
8804
+
8805
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:113
8806
+ msgid "Enable Pay by Invoice"
8807
+ msgstr ""
8808
+
8809
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:127
8810
+ msgid "You'll receive an invoice after your order. Please transfer the order amount to our bank account within 14 days."
8811
+ msgstr ""
8812
+
8813
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:138
8814
+ msgid "Order Status"
8815
+ msgstr ""
8816
+
8817
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:140
8818
+ msgid "Choose which order status should be applied after a customer has chosen to pay by invoice."
8819
+ msgstr ""
8820
+
8821
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:146
8822
+ msgid "Registered customers"
8823
+ msgstr ""
8824
+
8825
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:147
8826
+ msgid "Do only offer pay by invoice to registered/logged in customers."
8827
+ msgstr ""
8828
+
8829
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:149
8830
+ msgid "This will enable Pay by Invoice to logged in customers only"
8831
+ msgstr ""
8832
+
8833
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:154
8834
+ msgid "Customer limitation"
8835
+ msgstr ""
8836
+
8837
+ #: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:155
8838
+ msgid "Do only offer pay by invoice to customers who have at least completed one order."
8839
+ msgstr ""
8840
+
8841
+ #: woocommerce-germanized/includes/updates/woocommerce-gzd-update-2.0.1.php:18
8842
+ msgid "With your order, you agree to have read and understood our {term_link}Terms and Conditions{/term_link} your {revocation_link}Right of Recission{/revocation_link} and our {data_security_link}Privacy Policy{/data_security_link}."
8843
+ msgstr ""
8844
+
8845
+ #: woocommerce-germanized/includes/updates/woocommerce-gzd-update-2.0.1.php:19
8846
+ msgid "To finish the order you have to accept to our {term_link}Terms and Conditions{/term_link}, {revocation_link}Right of Recission{/revocation_link} and our {data_security_link}Privacy Policy{/data_security_link}."
8847
+ msgstr ""
8848
+
8849
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:195
8850
+ msgid ">= 12 years"
8851
+ msgstr ""
8852
+
8853
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:196
8854
+ msgid ">= 16 years"
8855
+ msgstr ""
8856
+
8857
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:197
8858
+ msgid ">= 18 years"
8859
+ msgstr ""
8860
+
8861
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:198
8862
+ msgid ">= 21 years"
8863
+ msgstr ""
8864
+
8865
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:199
8866
+ msgid ">= 25 years"
8867
+ msgstr ""
8868
+
8869
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:204
8870
+ msgctxt "age"
8871
+ msgid "None"
8872
+ msgstr ""
8873
+
8874
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:455
8875
+ #, php-format
8876
+ msgid "%s%% VAT"
8877
+ msgstr ""
8878
+
8879
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:607
8880
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:634
8881
+ msgctxt "title-option"
8882
+ msgid "None"
8883
+ msgstr ""
8884
+
8885
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:610
8886
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:634
8887
+ msgid "Mx"
8888
+ msgstr ""
8889
+
8890
+ #: woocommerce-germanized/includes/wc-gzd-core-functions.php:897
8891
+ msgid "More variants available"
8892
+ msgstr ""
8893
+
8894
+ #: woocommerce-germanized/includes/wc-gzd-template-functions.php:288
8895
+ #: woocommerce-germanized/templates/checkout/edit-data-notice.php:25
8896
+ msgid "Edit Order"
8897
+ msgstr ""
8898
+
8899
+ #: woocommerce-germanized/includes/wc-gzd-template-functions.php:299
8900
+ msgid "Choose a Payment Gateway"
8901
+ msgstr ""
8902
+
8903
+ #: woocommerce-germanized/includes/wc-gzd-template-functions.php:418
8904
+ msgid "Place order"
8905
+ msgstr ""
8906
+
8907
+ #: woocommerce-germanized/src/Autoloader.php:50
8908
+ #: woocommerce-germanized/src/Packages.php:101
8909
+ msgid "Your installation of Germanized is incomplete. If you installed Germanized from GitHub, please refer to this document to set up your development environment: https://github.com/vendidero/woocommerce-germanized/wiki/How-to-set-up-a-Germanized-development-environment"
8910
+ msgstr ""
8911
+
8912
+ #: woocommerce-germanized/src/Autoloader.php:62
8913
+ #: woocommerce-germanized/src/Packages.php:123
8914
+ #, php-format
8915
+ msgid "Your installation of Germanized is incomplete. If you installed Germanized from GitHub, %1$splease refer to this document%2$s to set up your development environment."
8916
+ msgstr ""
8917
+
8918
+ #: woocommerce-germanized/src/Packages.php:99
8919
+ #: woocommerce-germanized/src/Packages.php:114
8920
+ #, php-format
8921
+ msgid "Missing the Germanized %s package"
8922
+ msgstr ""
8923
+
8924
+ #: woocommerce-germanized/src/Shopmarks.php:295
8925
+ msgid "Single Product (Grouped)"
8926
+ msgstr ""
8927
+
8928
+ #: woocommerce-germanized/src/Shopmarks.php:296
8929
+ msgid "Product Loop"
8930
+ msgstr ""
8931
+
8932
+ #: woocommerce-germanized/src/Shopmarks.php:297
8933
+ msgid "Cart"
8934
+ msgstr ""
8935
+
8936
+ #: woocommerce-germanized/src/Shopmarks.php:298
8937
+ msgid "Mini Cart"
8938
+ msgstr ""
8939
+
8940
+ #: woocommerce-germanized/src/Shopmarks.php:313
8941
+ msgid "Summary"
8942
+ msgstr ""
8943
+
8944
+ #: woocommerce-germanized/src/Shopmarks.php:318
8945
+ msgid "Meta"
8946
+ msgstr ""
8947
+
8948
+ #: woocommerce-germanized/src/Shopmarks.php:323
8949
+ msgid "After Meta"
8950
+ msgstr ""
8951
+
8952
+ #: woocommerce-germanized/src/Shopmarks.php:328
8953
+ msgid "Before add to cart"
8954
+ msgstr ""
8955
+
8956
+ #: woocommerce-germanized/src/Shopmarks.php:333
8957
+ msgid "After add to cart"
8958
+ msgstr ""
8959
+
8960
+ #: woocommerce-germanized/src/Shopmarks.php:338
8961
+ msgid "After Summary"
8962
+ msgstr ""
8963
+
8964
+ #: woocommerce-germanized/src/Shopmarks.php:345
8965
+ msgid "Price Column"
8966
+ msgstr ""
8967
+
8968
+ #: woocommerce-germanized/src/Shopmarks.php:350
8969
+ msgid "Label Column"
8970
+ msgstr ""
8971
+
8972
+ #: woocommerce-germanized/src/Shopmarks.php:355
8973
+ msgid "Quantity Column"
8974
+ msgstr ""
8975
+
8976
+ #: woocommerce-germanized/src/Shopmarks.php:362
8977
+ msgid "After Item Title"
8978
+ msgstr ""
8979
+
8980
+ #: woocommerce-germanized/src/Shopmarks.php:367
8981
+ msgid "Before Item Title"
8982
+ msgstr ""
8983
+
8984
+ #: woocommerce-germanized/src/Shopmarks.php:372
8985
+ msgid "Item Title"
8986
+ msgstr ""
8987
+
8988
+ #: woocommerce-germanized/src/Shopmarks.php:377
8989
+ msgid "After Item"
8990
+ msgstr ""
8991
+
8992
+ #: woocommerce-germanized/src/Shopmarks.php:384
8993
+ #: woocommerce-germanized/src/Shopmarks.php:406
8994
+ msgid "Item Price"
8995
+ msgstr ""
8996
+
8997
+ #: woocommerce-germanized/src/Shopmarks.php:389
8998
+ #: woocommerce-germanized/src/Shopmarks.php:411
8999
+ #: woocommerce-germanized/src/Shopmarks.php:423
9000
+ msgid "Item Name"
9001
+ msgstr ""
9002
+
9003
+ #: woocommerce-germanized/src/Shopmarks.php:394
9004
+ msgid "After Item Name"
9005
+ msgstr ""
9006
+
9007
+ #: woocommerce-germanized/src/Shopmarks.php:399
9008
+ #: woocommerce-germanized/src/Shopmarks.php:418
9009
+ msgid "Subtotal"
9010
+ msgstr ""
9011
+
9012
+ #: woocommerce-germanized/src/Shopmarks.php:428
9013
+ msgid "After Item Quantity"
9014
+ msgstr ""
9015
+
9016
+ #: woocommerce-germanized/src/Shopmarks.php:454
9017
+ #: woocommerce-germanized/src/Shopmarks.php:460
9018
+ #: woocommerce-germanized/src/Shopmarks.php:466
9019
+ #: woocommerce-germanized/src/Shopmarks.php:473
9020
+ #: woocommerce-germanized/src/Shopmarks.php:479
9021
+ #: woocommerce-germanized/src/Shopmarks.php:485
9022
+ msgctxt "shopmark"
9023
+ msgid "Unit Price"
9024
+ msgstr ""
9025
+
9026
+ #: woocommerce-germanized/src/Shopmarks.php:455
9027
+ #: woocommerce-germanized/src/Shopmarks.php:461
9028
+ #: woocommerce-germanized/src/Shopmarks.php:467
9029
+ #: woocommerce-germanized/src/Shopmarks.php:475
9030
+ #: woocommerce-germanized/src/Shopmarks.php:481
9031
+ #: woocommerce-germanized/src/Shopmarks.php:487
9032
+ msgctxt "shopmark"
9033
+ msgid "Delivery Time"
9034
+ msgstr ""
9035
+
9036
+ #: woocommerce-germanized/src/Shopmarks.php:456
9037
+ #: woocommerce-germanized/src/Shopmarks.php:462
9038
+ msgctxt "shopmark"
9039
+ msgid "General"
9040
+ msgstr ""
9041
+
9042
+ #: woocommerce-germanized/src/Shopmarks.php:457
9043
+ #: woocommerce-germanized/src/Shopmarks.php:463
9044
+ #: woocommerce-germanized/src/Shopmarks.php:470
9045
+ #: woocommerce-germanized/src/Shopmarks.php:474
9046
+ #: woocommerce-germanized/src/Shopmarks.php:480
9047
+ #: woocommerce-germanized/src/Shopmarks.php:486
9048
+ msgctxt "shopmark"
9049
+ msgid "Product Units"
9050
+ msgstr ""
9051
+
9052
+ #: woocommerce-germanized/src/Shopmarks.php:468
9053
+ msgctxt "shopmark"
9054
+ msgid "Tax"
9055
  msgstr ""
9056
 
9057
+ #: woocommerce-germanized/src/Shopmarks.php:469
9058
+ msgctxt "shopmark"
9059
+ msgid "Shipping Costs"
9060
  msgstr ""
9061
 
9062
+ #: woocommerce-germanized/src/Shopmarks.php:476
9063
+ #: woocommerce-germanized/src/Shopmarks.php:482
9064
+ #: woocommerce-germanized/src/Shopmarks.php:488
9065
+ msgctxt "shopmark"
9066
+ msgid "Cart Description"
9067
  msgstr ""
9068
 
9069
+ #: woocommerce-germanized/templates/checkboxes/default.php:47
9070
+ #: woocommerce-germanized/templates/checkout/terms-sepa.php:46
9071
+ #: woocommerce-germanized/templates/checkout/terms.php:66
9072
+ msgid "required"
9073
  msgstr ""
9074
 
9075
+ #: woocommerce-germanized/templates/checkout/edit-data-notice.php:25
9076
+ #, php-format
9077
+ msgid "Please check all of your entries carefully. You may change your entries with the help of the button \"%s\"."
9078
  msgstr ""
9079
 
9080
+ #: woocommerce-germanized/templates/checkout/edit-data-notice.php:27
9081
+ msgid "Please check all of your entries carefully. You may change your entries with the help of the \"Back\" button in your browser"
9082
  msgstr ""
9083
 
9084
+ #: woocommerce-germanized/templates/checkout/order-submit.php:26
9085
+ #, php-format
9086
+ msgid "Since your browser does not support JavaScript, or it is disabled, please ensure you click the %1$sUpdate Totals%2$s button before placing your order. You may be charged more than the amount stated above if you fail to do so."
9087
  msgstr ""
9088
 
9089
+ #: woocommerce-germanized/templates/checkout/order-submit.php:29
9090
+ msgid "Update totals"
9091
  msgstr ""
9092
 
9093
+ #: woocommerce-germanized/templates/emails/customer-cancelled-order.php:31
9094
+ #: woocommerce-germanized/templates/emails/plain/customer-cancelled-order.php:28
9095
+ #, php-format
9096
+ msgid "Your order #%s has been cancelled:"
9097
  msgstr ""
9098
 
9099
+ #: woocommerce-germanized/templates/emails/customer-cancelled-order.php:34
9100
+ #: woocommerce-germanized/templates/emails/plain/customer-cancelled-order.php:31
9101
+ #, php-format
9102
+ msgid "Your order #%s has failed:"
9103
  msgstr ""
9104
 
9105
+ #: woocommerce-germanized/templates/emails/customer-new-account-activation.php:23
9106
+ #: woocommerce-germanized/templates/emails/plain/customer-new-account-activation.php:25
9107
+ #, php-format
9108
+ msgid "Thanks for creating an account on %s. Please follow the activation link to activate your account:"
9109
  msgstr ""
9110
 
9111
+ #: woocommerce-germanized/templates/emails/customer-new-account-activation.php:24
9112
+ msgid "Activate your account"
9113
  msgstr ""
9114
 
9115
+ #: woocommerce-germanized/templates/emails/customer-new-account-activation.php:26
9116
+ #: woocommerce-germanized/templates/emails/plain/customer-new-account-activation.php:35
9117
+ #, php-format
9118
+ msgid "Your password has been automatically generated: <strong>%s</strong>"
9119
  msgstr ""
9120
 
9121
+ #: woocommerce-germanized/templates/emails/customer-new-account-activation.php:28
9122
+ #: woocommerce-germanized/templates/emails/plain/customer-new-account-activation.php:39
9123
+ #, php-format
9124
+ msgid "If you haven't created an account on %s please ignore this email."
9125
  msgstr ""
9126
 
9127
+ #: woocommerce-germanized/templates/emails/customer-new-account-activation.php:29
9128
+ #, php-format
9129
+ msgid "If you cannot follow the link above please copy this url and paste it to your browser bar: %s"
9130
  msgstr ""
9131
 
9132
+ #: woocommerce-germanized/templates/emails/customer-paid-for-order.php:26
9133
+ #: woocommerce-germanized/templates/emails/plain/customer-paid-for-order.php:25
9134
+ #, php-format
9135
+ msgid "Hi there. Thank you! We have successfully received your payment for order %s. Your order is now being processed."
9136
  msgstr ""
9137
 
9138
+ #: woocommerce-germanized/templates/emails/customer-revocation.php:26
9139
+ msgctxt "revocation-form"
9140
+ msgid "By sending you this email we confirm receiving your withdrawal. Please review your data."
9141
  msgstr ""
9142
 
9143
+ #: woocommerce-germanized/templates/emails/customer-sepa-direct-debit-mandate.php:25
9144
+ #, php-format
9145
+ msgid "Please see the SEPA direct debit mandate for order %s attached to this email."
9146
  msgstr ""
9147
 
9148
+ #: woocommerce-germanized/templates/emails/email-sepa-data.php:29
9149
+ msgid "SEPA Data"
9150
  msgstr ""
9151
 
9152
+ #: woocommerce-germanized/templates/emails/plain/customer-revocation.php:27
9153
+ msgctxt "revocation-form"
9154
+ msgid "By sending you this email we confirm your Revocation. Please review your data."
9155
  msgstr ""
9156
 
9157
+ #: woocommerce-germanized/templates/footer/sale-info.php:22
9158
+ msgid "All striked out prices refer to prices used to be charged at this shop."
9159
  msgstr ""
9160
 
9161
+ #: woocommerce-germanized/templates/footer/vat-info.php:22
9162
+ msgid "All prices incl. VAT."
9163
  msgstr ""
9164
 
9165
+ #: woocommerce-germanized/templates/footer/vat-info.php:22
9166
+ msgid "All prices excl. VAT."
 
9167
  msgstr ""
9168
 
9169
+ #: woocommerce-germanized/templates/forms/revocation-form.php:26
9170
+ msgctxt "revocation-form"
9171
+ msgid "To"
9172
  msgstr ""
9173
 
9174
+ #: woocommerce-germanized/templates/forms/revocation-form.php:49
9175
+ #: woocommerce-germanized/templates/forms/revocation-form.php:50
9176
+ msgctxt "revocation-form"
9177
+ msgid "Forward Withdrawal"
9178
  msgstr ""
9179
 
9180
+ #: woocommerce-germanized/templates/global/complaints.php:22
9181
+ msgid "Alternative Dispute Resolution in accordance with Art. 14 (1) ODR-VO and § 36 VSBG:"
9182
  msgstr ""
9183
 
9184
+ #: woocommerce-germanized/templates/order/order-pay-now-button.php:25
9185
+ msgid "Pay now"
 
 
9186
  msgstr ""
9187
 
9188
+ #: woocommerce-germanized/woocommerce-germanized.php:49
9189
+ #, php-format
9190
+ msgid "Germanized requires at least PHP 5.6 to work. Please %s your PHP version."
9191
  msgstr ""
9192
 
9193
+ #: woocommerce-germanized/woocommerce-germanized.php:50
9194
+ msgid "upgrade"
 
9195
  msgstr ""
9196
 
9197
+ #: woocommerce-germanized/woocommerce-germanized.php:314
9198
+ #, php-format
9199
+ msgid "This version of the Corona Helper Plugin includes a bug which could lead to tax rates being added multiple times. Please <a href=\"%s\">deactivate</a> the plugin and check our <a href=\"%s\" target=\"_blank\">blog post</a>."
9200
  msgstr ""
9201
 
9202
+ #: woocommerce-germanized/woocommerce-germanized.php:979
9203
+ msgid "Pease wait while we are trying to redirect you to the payment provider."
9204
  msgstr ""
9205
 
9206
+ #: woocommerce-trusted-shops/includes/admin/settings/class-wc-ts-gzd-settings-tab.php:48
9207
  msgctxt "trusted-shops"
9208
  msgid "Setup your Trusted Shops Integration."
9209
  msgstr ""
9210
 
9211
+ #: woocommerce-trusted-shops/includes/admin/settings/class-wc-ts-gzd-settings-tab.php:52
9212
+ #: woocommerce-trusted-shops/includes/class-wc-ts-settings-handler.php:23
9213
  msgctxt "trusted-shops"
9214
  msgid "Trusted Shops"
9215
  msgstr ""
9216
 
9217
+ #: woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:16
9218
  msgctxt "trusted-shops"
9219
  msgid "Dependencies Missing or Outdated"
9220
  msgstr ""
9221
 
9222
+ #: woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:24
9223
  msgctxt "trusted-shops"
9224
  msgid "To use WooCommerce Trusted Shops you may at first install the following plugins:"
9225
  msgstr ""
9226
 
9227
+ #: woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:28
9228
+ #, php-format
9229
  msgctxt "trusted-shops"
9230
  msgid "Install %s"
9231
  msgstr ""
9232
 
9233
+ #: woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:36
9234
  msgctxt "trusted-shops"
9235
  msgid "To use WooCommerce Trusted Shops you may at first update the following plugins to a newer version:"
9236
  msgstr ""
9237
 
9238
+ #: woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:40
9239
+ #, php-format
9240
  msgctxt "trusted-shops"
9241
  msgid "%s required in at least version %s"
9242
  msgstr ""
9243
 
9244
+ #: woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:49
9245
  msgctxt "trusted-shops"
9246
  msgid "Check for Updates"
9247
  msgstr ""
9248
 
9249
+ #: woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:50
9250
  msgctxt "trusted-shops"
9251
  msgid "or"
9252
  msgstr ""
9253
 
9254
+ #: woocommerce-trusted-shops/includes/admin/views/html-notice-dependencies.php:51
9255
  msgctxt "trusted-shops"
9256
  msgid "Install an older version"
9257
  msgstr ""
9258
 
9259
+ #: woocommerce-trusted-shops/includes/admin/views/html-notice-update.php:14
9260
  msgctxt "trusted-shops"
9261
  msgid "<strong>WooCommerce Trusted Shops Data Update Required</strong> &#8211; We just need to update your installation to the latest version"
9262
  msgstr ""
9263
 
9264
+ #: woocommerce-trusted-shops/includes/admin/views/html-notice-update.php:15
9265
  msgctxt "trusted-shops"
9266
  msgid "Run the updater"
9267
  msgstr ""
9268
 
9269
+ #: woocommerce-trusted-shops/includes/admin/views/html-notice-update.php:19
9270
  msgctxt "trusted-shops"
9271
  msgid "It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?"
9272
  msgstr ""
9273
 
9274
+ #: woocommerce-trusted-shops/includes/admin/views/html-wpml-notice.php:11
9275
  msgctxt "trusted-shops"
9276
  msgid "WPML Support"
9277
  msgstr ""
9278
 
9279
+ #: woocommerce-trusted-shops/includes/admin/views/html-wpml-notice.php:14
9280
  msgctxt "trusted-shops"
9281
  msgid "These settings serve as default settings for all your languages. To adjust the settings for a certain language, please switch your admin language through the WPML language switcher and adjust the corresponding settings."
9282
  msgstr ""
9283
 
9284
+ #: woocommerce-trusted-shops/includes/admin/views/html-wpml-notice.php:16
9285
+ #, php-format
9286
  msgctxt "trusted-shops"
9287
  msgid "These settings apply for your %s shop. To adjust settings for another language, please switch your admin language through the WPML language switcher."
9288
  msgstr ""
9289
 
9290
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:84
9291
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:121
9292
  msgctxt "trusted-shops"
9293
  msgid "GTIN"
9294
  msgstr ""
9295
 
9296
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:84
9297
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:121
9298
  msgctxt "trusted-shops"
9299
  msgid "ID that allows your products to be identified worldwide. If you want to display your Trusted Shops Product Reviews in Google Shopping and paid Google adverts, Google needs the GTIN."
9300
  msgstr ""
9301
 
9302
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:88
9303
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:122
9304
  msgctxt "trusted-shops"
9305
  msgid "MPN"
9306
  msgstr ""
9307
 
9308
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:88
9309
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:122
9310
  msgctxt "trusted-shops"
9311
  msgid "If you don't have a GTIN for your products, you can pass the brand name and the MPN on to Google to use the Trusted Shops Google Integration."
9312
  msgstr ""
9313
 
9314
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:142
9315
  msgctxt "trusted-shops"
9316
  msgid "Brand"
9317
  msgstr ""
9318
 
9319
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:176
9320
  msgctxt "trusted-shops"
9321
  msgid "This field is mandatory"
9322
  msgstr ""
9323
 
9324
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:183
9325
  msgctxt "trusted-shops"
9326
  msgid "Trusted Shops Options"
9327
  msgstr ""
9328
 
9329
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:190
9330
  msgctxt "trusted-shops"
9331
  msgid "Arial"
9332
  msgstr ""
9333
 
9334
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:191
9335
  msgctxt "trusted-shops"
9336
  msgid "Geneva"
9337
  msgstr ""
9338
 
9339
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:192
9340
  msgctxt "trusted-shops"
9341
  msgid "Georgia"
9342
  msgstr ""
9343
 
9344
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:193
9345
  msgctxt "trusted-shops"
9346
  msgid "Helvetica"
9347
  msgstr ""
9348
 
9349
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:194
9350
  msgctxt "trusted-shops"
9351
  msgid "Sans-serif"
9352
  msgstr ""
9353
 
9354
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:195
9355
  msgctxt "trusted-shops"
9356
  msgid "Serif"
9357
  msgstr ""
9358
 
9359
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:196
9360
  msgctxt "trusted-shops"
9361
  msgid "Trebuchet MS"
9362
  msgstr ""
9363
 
9364
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:197
9365
  msgctxt "trusted-shops"
9366
  msgid "Verdana"
9367
  msgstr ""
9368
 
9369
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:220
9370
  msgctxt "trusted-shops"
9371
  msgid "Trusted Shops Integration"
9372
  msgstr ""
9373
 
9374
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:221
9375
+ #, php-format
9376
  msgctxt "trusted-shops"
9377
  msgid "Do you need help with integrating your Trustbadge? %s"
9378
  msgstr ""
9379
 
9380
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:221
9381
  msgctxt "trusted-shops"
9382
  msgid "To the step-by-step instructions"
9383
  msgstr ""
9384
 
9385
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:227
9386
  msgctxt "trusted-shops"
9387
  msgid "Trusted Shops ID"
9388
  msgstr ""
9389
 
9390
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:228
9391
  msgctxt "trusted-shops"
9392
  msgid "The Trusted Shops ID is a unique identifier for your shop. You can find your Trusted Shops ID in your My Trusted Shops account."
9393
  msgstr ""
9394
 
9395
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:237
9396
  msgctxt "trusted-shops"
9397
  msgid "Edit Mode"
9398
  msgstr ""
9399
 
9400
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:239
9401
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:300
9402
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:423
9403
  msgctxt "trusted-shops"
9404
  msgid "The advanced configuration is for users with programming skills. Here you can create even more individual settings."
9405
  msgstr ""
9406
 
9407
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:243
9408
  msgctxt "trusted-shops"
9409
  msgid "Standard configuration"
9410
  msgstr ""
9411
 
9412
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:244
9413
  msgctxt "trusted-shops"
9414
  msgid "Advanced configuration"
9415
  msgstr ""
9416
 
9417
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:252
9418
  msgctxt "trusted-shops"
9419
  msgid "Configure your Trustbadge"
9420
  msgstr ""
9421
 
9422
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:258
9423
  msgctxt "trusted-shops"
9424
  msgid "Display Trustbadge"
9425
  msgstr ""
9426
 
9427
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:260
9428
  msgctxt "trusted-shops"
9429
  msgid "Display the Trustbadge on all the pages of your shop."
9430
  msgstr ""
9431
 
9432
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:267
9433
  msgctxt "trusted-shops"
9434
  msgid "Variant"
9435
  msgstr ""
9436
 
9437
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:269
9438
  msgctxt "trusted-shops"
9439
  msgid "You can display your Trustbadge with or without Review Stars."
9440
  msgstr ""
9441
 
9442
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:273
9443
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:763
9444
  msgctxt "trusted-shops"
9445
  msgid "Display Trustbadge with review stars"
9446
  msgstr ""
9447
 
9448
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:274
9449
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:767
9450
  msgctxt "trusted-shops"
9451
  msgid "Display Trustbadge without review stars"
9452
  msgstr ""
9453
 
9454
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:280
9455
  msgctxt "trusted-shops"
9456
  msgid "Vertical Offset"
9457
  msgstr ""
9458
 
9459
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:281
9460
  msgctxt "trusted-shops"
9461
  msgid "Choose the distance that the Trustbadge will appear from the bottom-right corner of the screen."
9462
  msgstr ""
9463
 
9464
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:284
9465
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:492
9466
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:543
9467
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:558
9468
  msgctxt "trusted-shops"
9469
  msgid "px"
9470
  msgstr ""
9471
 
9472
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:290
9473
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:499
9474
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:549
9475
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:565
9476
+ #, php-format
9477
  msgctxt "trusted-shops"
9478
  msgid "Please choose a non-negative number (at least %d)"
9479
  msgstr ""
9480
 
9481
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:296
9482
  msgctxt "trusted-shops"
9483
  msgid "Trustbadge code"
9484
  msgstr ""
9485
 
9486
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:308
9487
  msgctxt "trusted-shops"
9488
  msgid "Configure your Shop Reviews"
9489
  msgstr ""
9490
 
9491
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:314
9492
  msgctxt "trusted-shops"
9493
  msgid "Display Shop Review Sticker"
9494
  msgstr ""
9495
 
9496
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:315
9497
  msgctxt "trusted-shops"
9498
  msgid "To display the Shop Review Sticker, you have to assign the widget \"Trusted Shops Review Sticker\"."
9499
  msgstr ""
9500
 
9501
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:316
9502
+ #, php-format
9503
  msgctxt "trusted-shops"
9504
  msgid "Assign widget %s"
9505
  msgstr ""
9506
 
9507
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:316
9508
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:588
9509
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:896
9510
  msgctxt "trusted-shops"
9511
  msgid "here"
9512
  msgstr ""
9513
 
9514
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:324
9515
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:472
9516
  msgctxt "trusted-shops"
9517
  msgid "Background color"
9518
  msgstr ""
9519
 
9520
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:325
9521
  msgctxt "trusted-shops"
9522
  msgid "Choose the background color for your Review Sticker."
9523
  msgstr ""
9524
 
9525
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:332
9526
  msgctxt "trusted-shops"
9527
  msgid "Font"
9528
  msgstr ""
9529
 
9530
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:334
9531
  msgctxt "trusted-shops"
9532
  msgid "Choose the font for your Review Sticker."
9533
  msgstr ""
9534
 
9535
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:341
9536
  msgctxt "trusted-shops"
9537
  msgid "Number of reviews displayed"
9538
  msgstr ""
9539
 
9540
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:342
9541
  msgctxt "trusted-shops"
9542
  msgid "Display x alternating Shop Reviews in your Shop Review Sticker. You can display between 1 and 5 alternating Shop Reviews."
9543
  msgstr ""
9544
 
9545
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:345
9546
  msgctxt "trusted-shops"
9547
  msgid "Show x alternating reviews"
9548
  msgstr ""
9549
 
9550
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:352
9551
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:369
9552
+ #, php-format
9553
  msgctxt "trusted-shops"
9554
  msgid "Please choose a non-negative number between %d and %d"
9555
  msgstr ""
9556
 
9557
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:358
9558
  msgctxt "trusted-shops"
9559
  msgid "Minimum rating displayed"
9560
  msgstr ""
9561
 
9562
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:359
9563
  msgctxt "trusted-shops"
9564
  msgid "Only show Shop Reviews with a minimum rating of x stars. "
9565
  msgstr ""
9566
 
9567
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:362
9568
  msgctxt "trusted-shops"
9569
  msgid "Star(s)"
9570
  msgstr ""
9571
 
9572
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:375
9573
  msgctxt "trusted-shops"
9574
  msgid "Sticker code"
9575
  msgstr ""
9576
 
9577
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:379
9578
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:506
9579
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:571
9580
  msgctxt "trusted-shops"
9581
  msgid "The advanced configuration is for users with programming skills. Here you can perform even more individual settings."
9582
  msgstr ""
9583
 
9584
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:385
9585
  msgctxt "trusted-shops"
9586
  msgid "Google Organic Search"
9587
  msgstr ""
9588
 
9589
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:386
9590
  msgctxt "trusted-shops"
9591
  msgid "Activate this option to give Google the opportunity to show your Shop Reviews in Google organic search results."
9592
  msgstr ""
9593
 
9594
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:387
9595
  msgctxt "trusted-shops"
9596
  msgid "By activating this option, rich snippets will be integrated in the selected pages so your shop review stars may be displayed in Google organic search results. If you use Product Reviews and already activated rich snippets in expert mode, we recommend integrating rich snippets for Shop Reviews on category pages only."
9597
  msgstr ""
9598
 
9599
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:394
9600
  msgctxt "trusted-shops"
9601
  msgid "Activate rich snippets on"
9602
  msgstr ""
9603
 
9604
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:395
9605
  msgctxt "trusted-shops"
9606
  msgid "category pages"
9607
  msgstr ""
9608
 
9609
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:403
9610
  msgctxt "trusted-shops"
9611
  msgid "product pages"
9612
  msgstr ""
9613
 
9614
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:411
9615
  msgctxt "trusted-shops"
9616
  msgid "homepage (not recommended)"
9617
  msgstr ""
9618
 
9619
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:419
9620
  msgctxt "trusted-shops"
9621
  msgid "Rich snippets code"
9622
  msgstr ""
9623
 
9624
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:431
9625
  msgctxt "trusted-shops"
9626
  msgid "Configure your Product Reviews "
9627
  msgstr ""
9628
 
9629
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:432
9630
+ #, php-format
9631
  msgctxt "trusted-shops"
9632
  msgid "To use Product Reviews, activate them in your %s first."
9633
  msgstr ""
9634
 
9635
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:432
9636
  msgctxt "trusted-shops"
9637
  msgid "Trusted Shops package"
9638
  msgstr ""
9639
 
9640
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:438
9641
  msgctxt "trusted-shops"
9642
  msgid "Collect Product Reviews"
9643
  msgstr ""
9644
 
9645
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:439
9646
  msgctxt "trusted-shops"
9647
  msgid "Show Product Reviews on the product page in a separate tab, just as shown on the picture on the right."
9648
  msgstr ""
9649
 
9650
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:447
9651
  msgctxt "trusted-shops"
9652
  msgid "Reviews"
9653
  msgstr ""
9654
 
9655
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:448
9656
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:457
9657
  msgctxt "trusted-shops"
9658
  msgid "You can choose a name for the tab with your Product Reviews."
9659
  msgstr ""
9660
 
9661
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:449
9662
  msgctxt "trusted-shops"
9663
  msgid "Show Product Reviews on the product detail page in an additional tab."
9664
  msgstr ""
9665
 
9666
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:456
9667
  msgctxt "trusted-shops"
9668
  msgid "Name of Product Reviews tab"
9669
  msgstr ""
9670
 
9671
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:460
9672
  msgctxt "trusted-shops"
9673
  msgid "Product reviews"
9674
  msgstr ""
9675
 
9676
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:464
9677
  msgctxt "trusted-shops"
9678
  msgid "Border color"
9679
  msgstr ""
9680
 
9681
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:465
9682
  msgctxt "trusted-shops"
9683
  msgid "Set the color for the frame around your Product Reviews."
9684
  msgstr ""
9685
 
9686
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:473
9687
  msgctxt "trusted-shops"
9688
  msgid "Set the background color for your Product Reviews."
9689
  msgstr ""
9690
 
9691
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:480
9692
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:530
9693
  msgctxt "trusted-shops"
9694
  msgid "Star color"
9695
  msgstr ""
9696
 
9697
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:481
9698
  msgctxt "trusted-shops"
9699
  msgid "Set the color for the Product Review stars in your Product Reviews tab."
9700
  msgstr ""
9701
 
9702
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:488
9703
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:538
9704
  msgctxt "trusted-shops"
9705
  msgid "Star size"
9706
  msgstr ""
9707
 
9708
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:493
9709
  msgctxt "trusted-shops"
9710
  msgid "Set the size for the Product Review stars in your Product Reviews tab."
9711
  msgstr ""
9712
 
9713
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:504
9714
  msgctxt "trusted-shops"
9715
  msgid "Product Sticker Code"
9716
  msgstr ""
9717
 
9718
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:513
9719
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:579
9720
  msgctxt "trusted-shops"
9721
  msgid "jQuerySelector"
9722
  msgstr ""
9723
 
9724
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:514
9725
  msgctxt "trusted-shops"
9726
  msgid "Please choose where your Product Reviews shall be displayed on the Product detail page."
9727
  msgstr ""
9728
 
9729
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:521
9730
  msgctxt "trusted-shops"
9731
  msgid "Rating stars"
9732
  msgstr ""
9733
 
9734
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:522
9735
  msgctxt "trusted-shops"
9736
  msgid "Show star ratings on the product detail page below your product name."
9737
  msgstr ""
9738
 
9739
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:523
9740
  msgctxt "trusted-shops"
9741
  msgid "Display Product Review stars on product pages below the product name, just as shown in the picture on the right."
9742
  msgstr ""
9743
 
9744
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:532
9745
  msgctxt "trusted-shops"
9746
  msgid "Set the color for the review stars, that are displayed on the product page, below your product name."
9747
  msgstr ""
9748
 
9749
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:540
9750
  msgctxt "trusted-shops"
9751
  msgid "Set the size for the review stars that are displayed on the product page, below your product name."
9752
  msgstr ""
9753
 
9754
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:554
9755
  msgctxt "trusted-shops"
9756
  msgid "Font size"
9757
  msgstr ""
9758
 
9759
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:556
9760
  msgctxt "trusted-shops"
9761
  msgid "Set the font size for the text that goes with your review stars."
9762
  msgstr ""
9763
 
9764
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:570
9765
  msgctxt "trusted-shops"
9766
  msgid "Product Review Code"
9767
  msgstr ""
9768
 
9769
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:580
9770
  msgctxt "trusted-shops"
9771
  msgid "Please choose where your Product Review Stars shall be displayed on the Product Detail page."
9772
  msgstr ""
9773
 
9774
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:587
9775
  msgctxt "trusted-shops"
9776
  msgid "Brand attribute"
9777
  msgstr ""
9778
 
9779
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:588
9780
+ #, php-format
9781
  msgctxt "trusted-shops"
9782
  msgid "Create brand attribute %s"
9783
  msgstr ""
9784
 
9785
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:589
9786
  msgctxt "trusted-shops"
9787
  msgid "Brand name of the product. By passing this information on to Google, you improve your chances of having Google identify your products. Assign your brand attribute. If your products don't have a GTIN, you can pass on the brand name and the MPN to use Google Integration."
9788
  msgstr ""
9789
 
9790
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:595
9791
  msgctxt "trusted-shops"
9792
  msgid "None"
9793
  msgstr ""
9794
 
9795
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:606
9796
  msgctxt "trusted-shops"
9797
  msgid "Configure your Review Requests"
9798
  msgstr ""
9799
 
9800
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:607
9801
  msgctxt "trusted-shops"
9802
  msgid "7 days after an order has been placed, Trusted Shops automatically sends an invite to your customers. If you want to set a different time for sending automatic Review Requests, please activate the option below. If you want to send review requests with legal certainty, you need your customers' consent to receive Review Requests. You also have to include an option to unsubscribe."
9803
  msgstr ""
9804
 
9805
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:613
9806
  msgctxt "trusted-shops"
9807
  msgid "Enable Review Requests"
9808
  msgstr ""
9809
 
9810
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:622
9811
  msgctxt "trusted-shops"
9812
  msgid "WooCommerce status"
9813
  msgstr ""
9814
 
9815
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:623
9816
  msgctxt "trusted-shops"
9817
  msgid "We recommend choosing the order status that you set when your products have been shipped."
9818
  msgstr ""
9819
 
9820
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:631
9821
  msgctxt "trusted-shops"
9822
  msgid "Days until Review Request"
9823
  msgstr ""
9824
 
9825
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:632
9826
  msgctxt "trusted-shops"
9827
  msgid "Set the number of days to wait after an order has reached the order status you selected above before having a review request sent to your customers."
9828
  msgstr ""
9829
 
9830
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:644
9831
  msgctxt "trusted-shops"
9832
  msgid "Permission via checkbox"
9833
  msgstr ""
9834
 
9835
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:645
9836
  msgctxt "trusted-shops"
9837
  msgid "If the checkbox is activated, only customers who gave their consent will receive Review Requests."
9838
  msgstr ""
9839
 
9840
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:649
9841
  msgctxt "trusted-shops"
9842
  msgid "Edit checkbox"
9843
  msgstr ""
9844
 
9845
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:653
9846
  msgctxt "trusted-shops"
9847
  msgid "Unsubscribe via link"
9848
  msgstr ""
9849
 
9850
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:654
9851
  msgctxt "trusted-shops"
9852
  msgid "Allows the customer to unsubscribe from Review Requests."
9853
  msgstr ""
9854
 
9855
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:755
9856
  msgctxt "trusted-shops"
9857
  msgid "How does Trusted Shops make your shop better?"
9858
  msgstr ""
9859
 
9860
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:757
9861
  msgctxt "trusted-shops"
9862
  msgid "Get your account"
9863
  msgstr ""
9864
 
9865
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:777
9866
  msgctxt "trusted-shops"
9867
  msgid "Product Reviews on the product detail page in an additional tab"
9868
  msgstr ""
9869
 
9870
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:780
9871
  msgctxt "trusted-shops"
9872
  msgid "Show Star-Ratings on the product detail page below your product name"
9873
  msgstr ""
9874
 
9875
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:784
9876
  msgctxt "trusted-shops"
9877
  msgid "Please note: If you want to send review requests through WooCommerce, you should deactivate automated review requests through Trusted Shops. To do so, please go to your My Trusted Shops account. Log in and go to Reviews > Settings and deactivate \"Collect reviews automatically\""
9878
  msgstr ""
9879
 
9880
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:785
9881
  msgctxt "trusted-shops"
9882
  msgid "To your My Trusted Shops account"
9883
  msgstr ""
9884
 
9885
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:789
9886
  msgctxt "trusted-shops"
9887
  msgid "Export your customer information here and upload it in the Trusted Shops Review Collector. To do so go to your My Trusted Shops account. Log in and go to Reviews > Shop Reviews > Review Collector"
9888
  msgstr ""
9889
 
9890
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:790
9891
  msgctxt "trusted-shops"
9892
  msgid "To the Trusted Shops Review Collector"
9893
  msgstr ""
9894
 
9895
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:880
9896
  msgctxt "trusted-shops"
9897
  msgid "Review Collector"
9898
  msgstr ""
9899
 
9900
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:882
9901
+ #, php-format
9902
  msgctxt "trusted-shops"
9903
  msgid "Want to collect reviews for orders that were placed before your Trusted Shops Integration? No problem. Export old orders here and upload them in your %s."
9904
  msgstr ""
9905
 
9906
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:882
9907
  msgctxt "trusted-shops"
9908
  msgid "My Trusted Shops account"
9909
  msgstr ""
9910
 
9911
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:888
9912
  msgctxt "trusted-shops"
9913
  msgid "Export orders"
9914
  msgstr ""
9915
 
9916
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:888
9917
  msgctxt "trusted-shops"
9918
  msgid "Export your customer and order information of the last x days and upload them in your My Trusted Shops Account."
9919
  msgstr ""
9920
 
9921
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:892
9922
  msgctxt "trusted-shops"
9923
  msgid "30 days"
9924
  msgstr ""
9925
 
9926
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:893
9927
  msgctxt "trusted-shops"
9928
  msgid "60 days"
9929
  msgstr ""
9930
 
9931
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:894
9932
  msgctxt "trusted-shops"
9933
  msgid "90 days"
9934
  msgstr ""
9935
 
9936
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:896
9937
+ #, php-format
9938
  msgctxt "trusted-shops"
9939
  msgid "Upload customer and order information %s."
9940
  msgstr ""
9941
 
9942
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:899
9943
  msgctxt "trusted-shops"
9944
  msgid "Days until reminder mail"
9945
  msgstr ""
9946
 
9947
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:899
9948
  msgctxt "trusted-shops"
9949
  msgid "Set the number of days to wait after the order date before having a Review Request sent to your customers."
9950
  msgstr ""
9951
 
9952
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-admin.php:903
9953
  msgctxt "trusted-shops"
9954
  msgid "Start export"
9955
  msgstr ""
9956
 
9957
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-core.php:53
9958
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-core.php:62
9959
+ #: woocommerce-trusted-shops/includes/class-wc-ts-dependencies.php:36
9960
+ #: woocommerce-trusted-shops/includes/class-wc-ts-dependencies.php:45
9961
  msgctxt "trusted-shops"
9962
  msgid "Cheatin&#8217; huh?"
9963
  msgstr ""
9964
 
9965
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-core.php:212
9966
  msgctxt "trusted-shops"
9967
  msgid "Yes"
9968
  msgstr ""
9969
 
9970
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-core.php:212
9971
  msgctxt "trusted-shops"
9972
  msgid "No"
9973
  msgstr ""
9974
 
9975
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-core.php:260
9976
+ #, php-format
9977
  msgctxt "trusted-shops"
9978
  msgid "If the <strong>App</strong> helped you, please leave a %s&#9733;&#9733;&#9733;&#9733;&#9733;%s in the Wordpress plugin repository."
9979
  msgstr ""
9980
 
9981
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-core.php:409
9982
  msgctxt "trusted-shops"
9983
  msgid "Settings"
9984
  msgstr ""
9985
 
9986
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-template-hooks.php:121
9987
+ #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9988
  msgctxt "trusted-shops"
9989
  msgid "Your review reminder e-mail has been cancelled successfully. Return to %s."
9990
  msgstr ""
9991
 
9992
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-template-hooks.php:121
9993
  msgctxt "trusted-shops"
9994
  msgid "Home"
9995
  msgstr ""
9996
 
9997
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-template-hooks.php:193
9998
  msgctxt "trusted-shops"
9999
  msgid "Yes, I would like to be reminded via e-mail after {days} day(s) to review my order. I am able to cancel the reminder at any time by clicking on the \"cancel review reminder\" link within the order confirmation."
10000
  msgstr ""
10001
 
10002
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-template-hooks.php:198
10003
  msgctxt "trusted-shops"
10004
  msgid "Please allow us to send a review reminder by e-mail."
10005
  msgstr ""
10006
 
10007
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-template-hooks.php:201
10008
  msgctxt "trusted-shops"
10009
  msgid "Review reminder"
10010
  msgstr ""
10011
 
10012
+ #: woocommerce-trusted-shops/includes/class-wc-trusted-shops-template-hooks.php:202
10013
  msgctxt "trusted-shops"
10014
  msgid "Asks the customer to receive a Trusted Shops review reminder."
10015
  msgstr ""
10016
 
10017
+ #: woocommerce-trusted-shops/includes/emails/class-wc-ts-email-customer-trusted-shops.php:26
10018
  msgctxt "trusted-shops"
10019
  msgid "Trusted Shops Review Reminder"
10020
  msgstr ""
10021
 
10022
+ #: woocommerce-trusted-shops/includes/emails/class-wc-ts-email-customer-trusted-shops.php:27
10023
  msgctxt "trusted-shops"
10024
  msgid "This E-Mail is being sent to a customer to remind him about the possibility to leave a review at Trusted Shops."
10025
  msgstr ""
10026
 
10027
+ #: woocommerce-trusted-shops/includes/emails/class-wc-ts-email-customer-trusted-shops.php:55
10028
  msgctxt "trusted-shops"
10029
  msgid "Please rate your {site_title} order from {order_date}"
10030
  msgstr ""
10031
 
10032
+ #: woocommerce-trusted-shops/includes/emails/class-wc-ts-email-customer-trusted-shops.php:65
10033
  msgctxt "trusted-shops"
10034
  msgid "Please rate your Order"
10035
  msgstr ""
10036
 
10037
+ #: woocommerce-trusted-shops/includes/widgets/class-wc-trusted-shops-widget-review-sticker.php:19
10038
  msgctxt "trusted-shops"
10039
  msgid "Show your TS shop review sticker."
10040
  msgstr ""
10041
 
10042
+ #: woocommerce-trusted-shops/includes/widgets/class-wc-trusted-shops-widget-review-sticker.php:21
10043
  msgctxt "trusted-shops"
10044
  msgid "Trusted Shops Shop Review Sticker"
10045
  msgstr ""
10046
 
10047
+ #: woocommerce-trusted-shops/includes/widgets/class-wc-trusted-shops-widget-review-sticker.php:25
10048
+ #: woocommerce-trusted-shops/includes/widgets/class-wc-trusted-shops-widget-review-sticker.php:46
10049
  msgctxt "trusted-shops"
10050
  msgid "Trusted Shops Reviews"
10051
  msgstr ""
10052
 
10053
+ #: woocommerce-trusted-shops/includes/widgets/class-wc-trusted-shops-widget-review-sticker.php:26
10054
  msgctxt "trusted-shops"
10055
  msgid "Title"
10056
  msgstr ""
10057
 
10058
+ #: woocommerce-trusted-shops/src/Package.php:55
10059
  msgctxt "trusted-shops"
10060
  msgid "Trustbadge Reviews for WooCommerce needs at least WooCommerce version 3.1 to run."
10061
  msgstr ""
10062
 
10063
+ #: woocommerce-trusted-shops/templates/emails/cancel-review-reminder.php:13
10064
+ #, php-format
10065
  msgctxt "trusted-shops"
10066
  msgid "If you do not want to receive the review reminder e-mail, please follow the %s link."
10067
  msgstr ""
10068
 
10069
+ #: woocommerce-trusted-shops/templates/emails/cancel-review-reminder.php:13
10070
  msgctxt "trusted-shops"
10071
  msgid "cancel review reminder"
10072
  msgstr ""
10073
 
10074
+ #: woocommerce-trusted-shops/templates/emails/customer-trusted-shops.php:17
10075
+ #: woocommerce-trusted-shops/templates/emails/plain/customer-trusted-shops.php:14
10076
+ #, php-format
10077
  msgctxt "trusted-shops"
10078
  msgid "Dear %s %s,"
10079
  msgstr ""
10080
 
10081
+ #: woocommerce-trusted-shops/templates/emails/customer-trusted-shops.php:18
10082
+ #: woocommerce-trusted-shops/templates/emails/plain/customer-trusted-shops.php:16
10083
+ #, php-format
10084
  msgctxt "trusted-shops"
10085
  msgid "You have recently shopped at %s. Thank you! We would be glad if you spent some time to write a review about your order. To do so please follow follow the link."
10086
  msgstr ""
10087
 
10088
+ #: woocommerce-trusted-shops/templates/emails/customer-trusted-shops.php:22
10089
  msgctxt "trusted-shops"
10090
  msgid "Rate Order now"
10091
  msgstr ""
10092
 
10093
+ #: woocommerce-trusted-shops/woocommerce-trusted-shops.php:41
10094
+ #: woocommerce-trusted-shops/woocommerce-trusted-shops.php:59
10095
+ #, php-format
10096
  msgctxt "trusted-shops"
10097
  msgid "Your installation of the Trustbadge Reviews for WooCommerce plugin is incomplete. Please run %1$s within the %2$s directory."
10098
  msgstr ""
10099
 
10100
+ #. Plugin URI of the plugin/theme
10101
+ msgid "https://www.vendidero.de/woocommerce-germanized"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10102
  msgstr ""
10103
 
10104
+ #. Description of the plugin/theme
10105
+ msgid "Germanized for WooCommerce extends WooCommerce to become a legally compliant store in the german market."
10106
  msgstr ""
10107
 
10108
+ #. Author of the plugin/theme
10109
+ msgid "vendidero"
10110
  msgstr ""
10111
 
10112
+ #. Author URI of the plugin/theme
10113
+ msgid "https://vendidero.de"
10114
  msgstr ""
includes/abstracts/abstract-wc-gzd-product.php CHANGED
@@ -527,7 +527,14 @@ class WC_GZD_Product {
527
  }
528
 
529
  public function hide_shopmarks_due_to_missing_price() {
530
- $has_empty_price = apply_filters( 'woocommerce_gzd_product_misses_price', ( '' === $this->get_price() && '' === $this->child->get_price_html() ), $this );
 
 
 
 
 
 
 
531
 
532
  return apply_filters( 'woocommerce_gzd_product_hide_shopmarks_empty_price', true, $this ) && $has_empty_price;
533
  }
@@ -1070,7 +1077,6 @@ class WC_GZD_Product {
1070
  * @return string
1071
  */
1072
  public function get_shipping_costs_html() {
1073
-
1074
  /**
1075
  * Filter to optionally disable shipping costs info for a certain product.
1076
  *
527
  }
528
 
529
  public function hide_shopmarks_due_to_missing_price() {
530
+ $price_html_checked = true;
531
+
532
+ // Prevent infinite loops in case the shopmark is added via the price_html filter
533
+ if ( ! doing_action( 'woocommerce_get_price_html' ) ) {
534
+ $price_html_checked = ( '' === $this->child->get_price_html() );
535
+ }
536
+
537
+ $has_empty_price = apply_filters( 'woocommerce_gzd_product_misses_price', ( '' === $this->get_price() && $price_html_checked ), $this );
538
 
539
  return apply_filters( 'woocommerce_gzd_product_hide_shopmarks_empty_price', true, $this ) && $has_empty_price;
540
  }
1077
  * @return string
1078
  */
1079
  public function get_shipping_costs_html() {
 
1080
  /**
1081
  * Filter to optionally disable shipping costs info for a certain product.
1082
  *
includes/admin/class-wc-gzd-admin-order.php CHANGED
@@ -40,9 +40,54 @@ class WC_GZD_Admin_Order {
40
  $this,
41
  'adjust_item_taxes'
42
  ), 10 );
 
 
 
 
 
 
 
 
 
 
43
  }
44
  }
45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  /**
47
  * @param WC_Order_Item $item
48
  * @param $for
40
  $this,
41
  'adjust_item_taxes'
42
  ), 10 );
43
+
44
+ add_action( 'woocommerce_order_before_calculate_totals', array(
45
+ $this,
46
+ 'set_shipping_total_filter'
47
+ ), 500, 2 );
48
+
49
+ add_action( 'woocommerce_order_after_calculate_totals', array(
50
+ $this,
51
+ 'remove_shipping_total_filter'
52
+ ), 500 );
53
  }
54
  }
55
 
56
+ /**
57
+ * When (re-) calculation order totals Woo does round shipping total to current price decimals.
58
+ * That is not the case within cart/checkout and leads to rounding issues. This filter forces recalculating
59
+ * the exact shipping total instead of using the already calculated shipping total amount while calculating order totals.
60
+ *
61
+ * @see WC_Abstract_Order::calculate_totals()
62
+ *
63
+ * @param $and_taxes
64
+ * @param WC_Order $order
65
+ */
66
+ public function set_shipping_total_filter( $and_taxes, $order ) {
67
+ add_filter( 'woocommerce_order_get_shipping_total', array( $this, 'force_shipping_total_exact' ), 10, 2 );
68
+ }
69
+
70
+ /**
71
+ * Remove the filter after order totals have been calculated successfully.
72
+ */
73
+ public function remove_shipping_total_filter() {
74
+ remove_filter( 'woocommerce_order_get_shipping_total', array( $this, 'force_shipping_total_exact' ), 10 );
75
+ }
76
+
77
+ /**
78
+ * @param $total
79
+ * @param WC_Order $order
80
+ */
81
+ public function force_shipping_total_exact( $total, $order ) {
82
+ $total = 0;
83
+
84
+ foreach( $order->get_shipping_methods() as $method ) {
85
+ $total += floatval( $method->get_total() );
86
+ }
87
+
88
+ return $total;
89
+ }
90
+
91
  /**
92
  * @param WC_Order_Item $item
93
  * @param $for
includes/class-wc-gzd-customer-helper.php CHANGED
@@ -324,7 +324,7 @@ class WC_GZD_Customer_Helper {
324
 
325
  } elseif ( ! WC()->session->get( 'disable_checkout_signup' ) ) {
326
 
327
- if ( is_checkout() && ( ! is_user_logged_in() || ( $this->enable_double_opt_in_for_user() && ! wc_gzd_is_customer_activated() ) ) ) {
328
 
329
  WC()->session->set( 'login_redirect', 'checkout' );
330
  wp_safe_redirect( $this->registration_redirect() );
324
 
325
  } elseif ( ! WC()->session->get( 'disable_checkout_signup' ) ) {
326
 
327
+ if ( is_checkout() && WC()->cart && WC()->cart->get_cart_contents_count() > 0 && ( ! is_user_logged_in() || ( $this->enable_double_opt_in_for_user() && ! wc_gzd_is_customer_activated() ) ) ) {
328
 
329
  WC()->session->set( 'login_redirect', 'checkout' );
330
  wp_safe_redirect( $this->registration_redirect() );
includes/gateways/direct-debit/assets/js/direct-debit.js CHANGED
@@ -3,8 +3,11 @@ jQuery( function( $ ) {
3
  var wc_gzd_direct_debit = {
4
 
5
  $checkoutForm: $( 'form.checkout, form#order_review' ),
 
6
 
7
  init: function() {
 
 
8
  this.$checkoutForm.on( 'blur input change', '#direct-debit-form input#direct-debit-account-holder', this.onValidateHolder );
9
  this.$checkoutForm.on( 'blur input change', '#direct-debit-form input#direct-debit-account-iban', this.onValidateIBAN );
10
  this.$checkoutForm.on( 'blur input change', '#direct-debit-form input#direct-debit-account-bic', this.onValidateSWIFT );
@@ -70,21 +73,20 @@ jQuery( function( $ ) {
70
  },
71
 
72
  onPrettyPhotoOpen: function( e ) {
 
 
73
  e.preventDefault();
74
 
75
- var url = $( this ).attr( 'href' );
76
-
77
- var data = {
78
- country: $( '#billing_country' ).val(),
79
- postcode: $( 'input#billing_postcode' ).val(),
80
- city: $( '#billing_city' ).val(),
81
- address: $( 'input#billing_address_1' ).val(),
82
- address_2: $( 'input#billing_address_2' ).val(),
83
- debit_holder: $( 'input#direct-debit-account-holder' ).val(),
84
- debit_iban: $( 'input#direct-debit-account-iban' ).val(),
85
- debit_swift: $( 'input#direct-debit-account-bic' ).val(),
86
- user: $( 'input#createaccount' ).val()
87
- };
88
 
89
  url += '&ajax=true&' + jQuery.param( data );
90
 
3
  var wc_gzd_direct_debit = {
4
 
5
  $checkoutForm: $( 'form.checkout, form#order_review' ),
6
+ params: {},
7
 
8
  init: function() {
9
+ this.params = direct_debit_params;
10
+
11
  this.$checkoutForm.on( 'blur input change', '#direct-debit-form input#direct-debit-account-holder', this.onValidateHolder );
12
  this.$checkoutForm.on( 'blur input change', '#direct-debit-form input#direct-debit-account-iban', this.onValidateIBAN );
13
  this.$checkoutForm.on( 'blur input change', '#direct-debit-form input#direct-debit-account-bic', this.onValidateSWIFT );
73
  },
74
 
75
  onPrettyPhotoOpen: function( e ) {
76
+ var self = wc_gzd_direct_debit;
77
+
78
  e.preventDefault();
79
 
80
+ var url = $( this ).attr( 'href' );
81
+ var data = {};
82
+
83
+ $.each( self.params.mandate_fields, function( key, selector ) {
84
+ if ( $( 'input' + selector + ', select' + selector ).length > 0 ) {
85
+ data[ key ] = $( 'input' + selector + ', select' + selector ).val();
86
+ } else {
87
+ data[ key ] = '';
88
+ }
89
+ } );
 
 
 
90
 
91
  url += '&ajax=true&' + jQuery.param( data );
92
 
includes/gateways/direct-debit/assets/js/direct-debit.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(function(e){var i={$checkoutForm:e("form.checkout, form#order_review"),init:function(){this.$checkoutForm.on("blur input change","#direct-debit-form input#direct-debit-account-holder",this.onValidateHolder),this.$checkoutForm.on("blur input change","#direct-debit-form input#direct-debit-account-iban",this.onValidateIBAN),this.$checkoutForm.on("blur input change","#direct-debit-form input#direct-debit-account-bic",this.onValidateSWIFT),this.$checkoutForm.on("blur input change","input, select",this.maybeShowCheckbox),e("body").bind("updated_checkout",this.maybeShowCheckbox),e(document).on("click","a#show-direct-debit-trigger",this.onPrettyPhotoOpen),this.initPrettyPhoto()},onValidateIBAN:function(){i.isValidIBAN(e(this).val())||(e(this).parents("p.form-row").removeClass("woocommerce-validated"),e(this).parents("p.form-row").addClass("woocommerce-invalid woocommerce-invalid-required-field"))},onValidateSWIFT:function(){i.isValidSWIFT(e(this).val())||(e(this).parents("p.form-row").removeClass("woocommerce-validated"),e(this).parents("p.form-row").addClass("woocommerce-invalid woocommerce-invalid-required-field"))},onValidateHolder:function(){e(this).val()||(e(this).parents("p.form-row").removeClass("woocommerce-validated"),e(this).parents("p.form-row").addClass("woocommerce-invalid woocommerce-invalid-required-field"))},isValidIBAN:function(t){return IBAN.isValid(t)},isValidSWIFT:function(t){return/^([a-zA-Z]){4}([a-zA-Z]){2}([0-9a-zA-Z]){2}([0-9a-zA-Z]{3})?$/.test(t)},maybeShowCheckbox:function(){var t=i;e(".direct-debit-checkbox").hide(),e("#direct-debit-form").length&&e("#payment_method_direct-debit").is(":checked")&&e("input#direct-debit-account-holder").val()&&e("input#direct-debit-account-iban").val()&&e("input#direct-debit-account-bic").val()&&(e(".direct-debit-checkbox").show(),t.initPrettyPhoto())},onPrettyPhotoOpen:function(t){t.preventDefault();var i=e(this).attr("href"),t={country:e("#billing_country").val(),postcode:e("input#billing_postcode").val(),city:e("#billing_city").val(),address:e("input#billing_address_1").val(),address_2:e("input#billing_address_2").val(),debit_holder:e("input#direct-debit-account-holder").val(),debit_iban:e("input#direct-debit-account-iban").val(),debit_swift:e("input#direct-debit-account-bic").val(),user:e("input#createaccount").val()};i+="&ajax=true&"+jQuery.param(t),e("#show-direct-debit-pretty").attr("href",i),e("#show-direct-debit-pretty").trigger("click")},initPrettyPhoto:function(){e("a#show-direct-debit-pretty").prettyPhoto({social_tools:!1,theme:"pp_woocommerce",horizontal_padding:20,opacity:.8,deeplinking:!1})}};i.init()});
1
+ jQuery(function(o){var r={$checkoutForm:o("form.checkout, form#order_review"),params:{},init:function(){this.params=direct_debit_params,this.$checkoutForm.on("blur input change","#direct-debit-form input#direct-debit-account-holder",this.onValidateHolder),this.$checkoutForm.on("blur input change","#direct-debit-form input#direct-debit-account-iban",this.onValidateIBAN),this.$checkoutForm.on("blur input change","#direct-debit-form input#direct-debit-account-bic",this.onValidateSWIFT),this.$checkoutForm.on("blur input change","input, select",this.maybeShowCheckbox),o("body").bind("updated_checkout",this.maybeShowCheckbox),o(document).on("click","a#show-direct-debit-trigger",this.onPrettyPhotoOpen),this.initPrettyPhoto()},onValidateIBAN:function(){r.isValidIBAN(o(this).val())||(o(this).parents("p.form-row").removeClass("woocommerce-validated"),o(this).parents("p.form-row").addClass("woocommerce-invalid woocommerce-invalid-required-field"))},onValidateSWIFT:function(){r.isValidSWIFT(o(this).val())||(o(this).parents("p.form-row").removeClass("woocommerce-validated"),o(this).parents("p.form-row").addClass("woocommerce-invalid woocommerce-invalid-required-field"))},onValidateHolder:function(){o(this).val()||(o(this).parents("p.form-row").removeClass("woocommerce-validated"),o(this).parents("p.form-row").addClass("woocommerce-invalid woocommerce-invalid-required-field"))},isValidIBAN:function(t){return IBAN.isValid(t)},isValidSWIFT:function(t){return/^([a-zA-Z]){4}([a-zA-Z]){2}([0-9a-zA-Z]){2}([0-9a-zA-Z]{3})?$/.test(t)},maybeShowCheckbox:function(){var t=r;o(".direct-debit-checkbox").hide(),o("#direct-debit-form").length&&o("#payment_method_direct-debit").is(":checked")&&o("input#direct-debit-account-holder").val()&&o("input#direct-debit-account-iban").val()&&o("input#direct-debit-account-bic").val()&&(o(".direct-debit-checkbox").show(),t.initPrettyPhoto())},onPrettyPhotoOpen:function(t){var e=r;t.preventDefault();var t=o(this).attr("href"),i={};o.each(e.params.mandate_fields,function(t,e){0<o("input"+e+", select"+e).length?i[t]=o("input"+e+", select"+e).val():i[t]=""}),t+="&ajax=true&"+jQuery.param(i),o("#show-direct-debit-pretty").attr("href",t),o("#show-direct-debit-pretty").trigger("click")},initPrettyPhoto:function(){o("a#show-direct-debit-pretty").prettyPhoto({social_tools:!1,theme:"pp_woocommerce",horizontal_padding:20,opacity:.8,deeplinking:!1})}};r.init()});
includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php CHANGED
@@ -778,24 +778,24 @@ Please notice: Period for pre-information of the SEPA direct debit is shortened
778
  exit();
779
  }
780
 
781
- $params = array(
782
- 'account_holder' => wc_clean( isset( $_GET['debit_holder'] ) ? $_GET['debit_holder'] : '' ),
783
- 'account_iban' => strtoupper( wc_clean( isset( $_GET['debit_iban'] ) ? $_GET['debit_iban'] : '' ) ),
784
- 'account_swift' => strtoupper( wc_clean( isset( $_GET['debit_swift'] ) ? $_GET['debit_swift'] : '' ) ),
785
- 'street' => wc_clean( isset( $_GET['address'] ) ? $_GET['address'] : '' ),
786
- 'postcode' => wc_clean( isset( $_GET['postcode'] ) ? $_GET['postcode'] : '' ),
787
- 'city' => wc_clean( isset( $_GET['city'] ) ? $_GET['city'] : '' ),
788
- 'country' => ( isset( $_GET['country'] ) && isset( WC()->countries->countries[ $_GET['country'] ] ) ? WC()->countries->countries[ $_GET['country'] ] : '' ),
789
- /**
790
- * Filter to adjust the default mandate type text.
791
- *
792
- * @param string $text The mandate type text.
793
- *
794
- * @since 1.8.5
795
- *
796
- */
797
- 'mandate_type_text' => apply_filters( 'woocommerce_gzd_direct_debit_mandate_type_text', __( 'a single payment', 'woocommerce-germanized' ) ),
798
- );
799
 
800
  $order_key = isset( $_GET['order_key'] ) ? wc_clean( wp_unslash( $_GET['order_key'] ) ) : '';
801
 
@@ -812,7 +812,7 @@ Please notice: Period for pre-information of the SEPA direct debit is shortened
812
  }
813
  }
814
 
815
- echo $this->generate_mandate_text( $params );
816
  exit();
817
  }
818
 
@@ -844,7 +844,7 @@ Please notice: Period for pre-information of the SEPA direct debit is shortened
844
  'mandate_type_text' => apply_filters( 'woocommerce_gzd_direct_debit_mandate_type_order_text', __( 'a single payment', 'woocommerce-germanized' ), $order ),
845
  );
846
 
847
- return $this->generate_mandate_text( $params );
848
  }
849
 
850
  public function mask( $data ) {
@@ -869,13 +869,13 @@ Please notice: Period for pre-information of the SEPA direct debit is shortened
869
  $tmp_post = isset( $GLOBALS['post'] ) ? $GLOBALS['post'] : false;
870
  $GLOBALS['post'] = false;
871
 
872
- $args = wp_parse_args( $args, array(
873
  'company_info' => $this->company_info,
874
  'company_identification_number' => $this->company_identification_number,
875
  'date' => date_i18n( wc_date_format(), strtotime( "now" ) ),
876
  'mandate_id' => $this->get_mandate_id(),
877
  'mandate_type_text' => __( 'a single payment', 'woocommerce-germanized' ),
878
- ) );
879
 
880
  $text = $this->mandate_text;
881
 
@@ -888,7 +888,7 @@ Please notice: Period for pre-information of the SEPA direct debit is shortened
888
  // Enable $post again
889
  $GLOBALS['post'] = $tmp_post;
890
 
891
- return $content;
892
  }
893
 
894
  /**
@@ -1213,13 +1213,28 @@ Please notice: Period for pre-information of the SEPA direct debit is shortened
1213
 
1214
  wp_register_script( 'wc-gzd-direct-debit', WC_germanized()->plugin_url() . '/includes/gateways/direct-debit/assets/js/direct-debit' . $suffix . '.js', array( 'wc-gzd-iban' ), WC_GERMANIZED_VERSION, true );
1215
  wp_localize_script( 'wc-gzd-direct-debit', 'direct_debit_params', array(
1216
- 'iban' => __( 'IBAN', 'woocommerce-germanized' ),
1217
- 'swift' => __( 'BIC/SWIFT', 'woocommerce-germanized' ),
1218
- 'is_invalid' => __( 'is invalid', 'woocommerce-germanized' ),
 
1219
  ) );
1220
  wp_enqueue_script( 'wc-gzd-direct-debit' );
1221
  }
1222
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1223
  /**
1224
  * Output for the order received page.
1225
  */
778
  exit();
779
  }
780
 
781
+ $params = array();
782
+
783
+ foreach( array_keys( $this->get_mandate_text_checkout_fields() ) as $field_name ) {
784
+ $params[ $field_name ] = wc_clean( isset( $_GET[ $field_name ] ) ? $_GET[ $field_name ] : '' );
785
+ }
786
+
787
+ $params['account_iban'] = strtoupper( wc_clean( isset( $_GET['account_iban'] ) ? $_GET['account_iban'] : '' ) );
788
+ $params['account_swift'] = strtoupper( wc_clean( isset( $_GET['account_swift'] ) ? $_GET['account_swift'] : '' ) );
789
+ $params['country'] = ( isset( $_GET['country'] ) && isset( WC()->countries->countries[ $_GET['country'] ] ) ? WC()->countries->countries[ $_GET['country'] ] : '' );
790
+
791
+ /**
792
+ * Filter to adjust the default mandate type text.
793
+ *
794
+ * @param string $text The mandate type text.
795
+ *
796
+ * @since 1.8.5
797
+ */
798
+ $params['mandate_type_text'] = apply_filters( 'woocommerce_gzd_direct_debit_mandate_type_text', __( 'a single payment', 'woocommerce-germanized' ) );
799
 
800
  $order_key = isset( $_GET['order_key'] ) ? wc_clean( wp_unslash( $_GET['order_key'] ) ) : '';
801
 
812
  }
813
  }
814
 
815
+ echo $this->generate_mandate_text( apply_filters( 'woocommerce_gzd_direct_debit_mandate_checkout_placeholders', $params ) );
816
  exit();
817
  }
818
 
844
  'mandate_type_text' => apply_filters( 'woocommerce_gzd_direct_debit_mandate_type_order_text', __( 'a single payment', 'woocommerce-germanized' ), $order ),
845
  );
846
 
847
+ return $this->generate_mandate_text( apply_filters( 'woocommerce_gzd_direct_debit_mandate_order_placeholders', $params, $order ) );
848
  }
849
 
850
  public function mask( $data ) {
869
  $tmp_post = isset( $GLOBALS['post'] ) ? $GLOBALS['post'] : false;
870
  $GLOBALS['post'] = false;
871
 
872
+ $args = apply_filters( 'woocommerce_gzd_direct_debit_mandate_text_placeholders', wp_parse_args( $args, array(
873
  'company_info' => $this->company_info,
874
  'company_identification_number' => $this->company_identification_number,
875
  'date' => date_i18n( wc_date_format(), strtotime( "now" ) ),
876
  'mandate_id' => $this->get_mandate_id(),
877
  'mandate_type_text' => __( 'a single payment', 'woocommerce-germanized' ),
878
+ ) ) );
879
 
880
  $text = $this->mandate_text;
881
 
888
  // Enable $post again
889
  $GLOBALS['post'] = $tmp_post;
890
 
891
+ return apply_filters( 'woocommerce_gzd_direct_debit_mandate_text', $content, $args );
892
  }
893
 
894
  /**
1213
 
1214
  wp_register_script( 'wc-gzd-direct-debit', WC_germanized()->plugin_url() . '/includes/gateways/direct-debit/assets/js/direct-debit' . $suffix . '.js', array( 'wc-gzd-iban' ), WC_GERMANIZED_VERSION, true );
1215
  wp_localize_script( 'wc-gzd-direct-debit', 'direct_debit_params', array(
1216
+ 'iban' => __( 'IBAN', 'woocommerce-germanized' ),
1217
+ 'swift' => __( 'BIC/SWIFT', 'woocommerce-germanized' ),
1218
+ 'is_invalid' => __( 'is invalid', 'woocommerce-germanized' ),
1219
+ 'mandate_fields' => $this->get_mandate_text_checkout_fields(),
1220
  ) );
1221
  wp_enqueue_script( 'wc-gzd-direct-debit' );
1222
  }
1223
 
1224
+ protected function get_mandate_text_checkout_fields() {
1225
+ return apply_filters( 'woocommerce_gzd_direct_debit_mandate_text_checkout_fields', array(
1226
+ 'country' => '#billing_country',
1227
+ 'postcode' => '#billing_postcode',
1228
+ 'city' => '#billing_city',
1229
+ 'street' => '#billing_address_1',
1230
+ 'address_2' => '#billing_address_2',
1231
+ 'account_holder' => '#direct-debit-account-holder',
1232
+ 'account_iban' => '#direct-debit-account-iban',
1233
+ 'account_swift' => '#direct-debit-account-bic',
1234
+ 'user' => '#createaccount'
1235
+ ) );
1236
+ }
1237
+
1238
  /**
1239
  * Output for the order received page.
1240
  */
packages/one-stop-shop-woocommerce/assets/css/admin.css CHANGED
@@ -67,6 +67,11 @@ p.oss-add-tax-class-by-country-field {
67
  .oss-settings-learn-more {
68
  margin-left: .5em; }
69
 
 
 
 
 
 
70
  .oss-woo-status {
71
  background: #eee;
72
  padding: .2em .5em;
67
  .oss-settings-learn-more {
68
  margin-left: .5em; }
69
 
70
+ .oss-observer-date-end {
71
+ color: #646970;
72
+ font-size: 12px;
73
+ margin-left: .5em; }
74
+
75
  .oss-woo-status {
76
  background: #eee;
77
  padding: .2em .5em;
packages/one-stop-shop-woocommerce/assets/css/admin.min.css CHANGED
@@ -1 +1 @@
1
- p.oss-woocommerce-additional-desc{margin-top:1em!important;line-height:1.5em;background:#fff;padding:.5em;font-style:normal;font-size:14px;box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}h2.oss-woocommerce-settings-title{margin-top:1.5em}h2.oss-woocommerce-settings-title .page-title-action{top:0}.oss-add-tax-class-by-country-template{display:none}a.oss-remove-tax-class-by-country{text-indent:0;overflow:hidden;color:#b32d2e;text-decoration:none;vertical-align:middle}p.oss-tax-class-by-country-field{display:flex;flex-wrap:wrap;align-items:center}p.oss-tax-class-by-country-field label{width:100%}p.oss-tax-class-by-country-field select{width:auto;flex-grow:1;flex-shrink:0;flex-basis:50%}p.oss-tax-class-by-country-field a.oss-remove-tax-class-by-country{margin-left:.5em}p.oss-add-tax-class-by-country-field{display:flex;align-items:center;width:100%}p.oss-add-tax-class-by-country-field a.oss-remove-tax-class-by-country{margin-left:.5em}p.oss-add-tax-class-by-country-field label{width:auto;flex-grow:0;flex-shrink:0;flex-basis:30%;margin-right:1em}p.oss-add-tax-class-by-country-field select.oss-tax-class-new-class{width:auto;flex-grow:1;flex-shrink:0;flex-basis:50%}.oss-observer-total{font-size:1.5em;background:#b1dabc;color:#1d4026;padding:3px;border-radius:2px}.oss-observer-total.observer-total-red{background:#dab1b4;color:#401d1d}.oss-settings-learn-more{margin-left:.5em}.oss-woo-status{background:#eee;padding:.2em .5em;font-size:.9em;border-radius:3px;display:inline-flex;white-space:nowrap}.oss-woo-status.report-status-pending{background:#f8dda7;color:#94660c}.oss-woo-status.report-status-failed{background:#eba3a3;color:#761919}.oss-woo-status.report-status-completed{background:#c6e1c6;color:#5b841b}.create-oss-reports{text-align:center;max-width:700px;margin:40px auto}.create-oss-reports .create-oss-report{background:#fff;overflow:hidden;padding:0;margin:0 0 16px;box-shadow:0 1px 3px rgba(0,0,0,.13);color:#555;text-align:left}.create-oss-reports header{border-bottom:1px solid #eee;margin:0;padding:24px 24px 0}.create-oss-reports header h2{margin:0 0 24px;color:#555;font-size:24px;font-weight:400;line-height:1em}.create-oss-reports section{padding:24px 24px 0}.create-oss-reports section .oss-report-options .select2-container{min-width:400px}.create-oss-reports section .oss-report-options td,.create-oss-reports section .oss-report-options th{vertical-align:middle;line-height:1.75em;padding:0 0 24px}.create-oss-reports section .oss-report-options th{width:25%;padding-right:20px}.create-oss-reports section .oss-report-options th label{color:#555;font-weight:400;position:relative;display:block}.create-oss-reports section .oss-report-hidden{display:none}.create-oss-reports .oss-actions{overflow:hidden;border-top:1px solid #eee;margin:0;padding:23px 24px 24px;line-height:3em;display:flex;flex-wrap:wrap;justify-content:flex-end}.create-oss-reports .oss-actions .button{font-size:1.25em;padding:.5em 1em!important;line-height:1.5em!important;margin-right:.5em;margin-bottom:2px;height:auto!important;border-radius:4px;opacity:1}.woocommerce_page_oss-reports .summary{font-family:HelveticaNeue-Light,"Helvetica Neue Light","Helvetica Neue",sans-serif;font-weight:400;line-height:1.6em;font-size:16px}.woocommerce_page_oss-reports .tablenav .actions{overflow:visible}.woocommerce_page_oss-reports .tablenav .select2-container{float:left;width:240px!important;font-size:14px;vertical-align:middle;margin:1px 6px 4px 1px}.woocommerce_page_oss-reports .tablenav .select2-container .select2-selection--single{height:32px}.woocommerce_page_oss-reports .tablenav .select2-container .select2-selection--single .select2-selection__rendered{line-height:29px}.woocommerce_page_oss-reports .tablenav .select2-container .select2-selection--single .select2-selection__arrow{height:30px}.woocommerce_page_oss-reports .tablenav input,.woocommerce_page_oss-reports .tablenav select{line-height:1;height:32px}.woocommerce_page_oss-reports .tablenav input{height:31px}.woocommerce_page_oss-reports .wp-list-table{margin-top:1em}.woocommerce_page_oss-reports .wp-list-table td,.woocommerce_page_oss-reports .wp-list-table th{padding:.5em 1em;width:10ch;vertical-align:middle}.woocommerce_page_oss-reports .wp-list-table tbody th,.woocommerce_page_oss-reports .wp-list-table td{line-height:26px}.woocommerce_page_oss-reports .wp-list-table thead th{padding:.5em 1em}.woocommerce_page_oss-reports .wp-list-table thead th.sortable a,.woocommerce_page_oss-reports .wp-list-table thead th.sorted a{padding:0}.woocommerce_page_oss-reports .wp-list-table thead th:last-child{padding-right:2em}.woocommerce_page_oss-reports .wp-list-table .check-column{width:16px;white-space:nowrap;padding:1em 1em 1em 1em!important;vertical-align:middle}.woocommerce_page_oss-reports .wp-list-table .check-column input{vertical-align:text-top;margin:1px 0}.woocommerce_page_oss-reports .wp-list-table td.column-title{font-weight:700}.woocommerce_page_oss-reports .wp-list-table .column-title{width:20ch}.woocommerce_page_oss-reports .wp-list-table .column-actions{width:10ch}.woocommerce_page_oss-reports .wp-list-table .column-actions{text-align:right}.woocommerce_page_oss-reports .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_oss-reports .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_oss-reports .wp-list-table .column-actions a.button.view::after{font-family:WooCommerce;content:"\e010"}.woocommerce_page_oss-reports .wp-list-table .column-actions a.button.refresh::after{content:"\f515"}.woocommerce_page_oss-reports .wp-list-table .column-actions a.button.cancel,.woocommerce_page_oss-reports .wp-list-table .column-actions a.button.delete{border-color:#a00;color:#a00}.woocommerce_page_oss-reports .wp-list-table .column-actions a.button.cancel:focus,.woocommerce_page_oss-reports .wp-list-table .column-actions a.button.delete:focus{box-shadow:0 0 0 1px #a00;border-color:#a00;color:#a00}.woocommerce_page_oss-reports .wp-list-table .column-actions a.button.cancel:hover,.woocommerce_page_oss-reports .wp-list-table .column-actions a.button.delete:hover{border-color:#910000;color:#910000}.woocommerce_page_oss-reports .wp-list-table .column-actions a.button.cancel::after,.woocommerce_page_oss-reports .wp-list-table .column-actions a.button.delete::after{font-family:Dashicons;content:"\f182"}.woocommerce_page_oss-reports .wp-list-table .column-actions a.button.export::after{content:"\f103"}.woocommerce_page_oss-reports .wp-list-table .column-address,.woocommerce_page_oss-reports .wp-list-table .column-sender{width:20ch}.woocommerce_page_oss-reports .wp-list-table .column-items{width:20ch}.woocommerce_page_oss-reports .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview{font-size:.9em;border-spacing:0}.woocommerce_page_oss-reports .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_oss-reports .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview tr td{border-bottom:1px solid #ccc!important}.woocommerce_page_oss-reports .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview tr:last-child td{border-bottom:none!important}.woocommerce_page_oss-reports .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td,.woocommerce_page_oss-reports .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th{padding:.3em 0;vertical-align:top;line-height:20px}.woocommerce_page_oss-reports .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-name,.woocommerce_page_oss-reports .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th.wc-gzd-shipment-item-column-name{width:70%}.woocommerce_page_oss-reports .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-name small,.woocommerce_page_oss-reports .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_oss-reports .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-quantity,.woocommerce_page_oss-reports .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}
1
+ p.oss-woocommerce-additional-desc{margin-top:1em!important;line-height:1.5em;background:#fff;padding:.5em;font-style:normal;font-size:14px;box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}h2.oss-woocommerce-settings-title{margin-top:1.5em}h2.oss-woocommerce-settings-title .page-title-action{top:0}.oss-add-tax-class-by-country-template{display:none}a.oss-remove-tax-class-by-country{text-indent:0;overflow:hidden;color:#b32d2e;text-decoration:none;vertical-align:middle}p.oss-tax-class-by-country-field{display:flex;flex-wrap:wrap;align-items:center}p.oss-tax-class-by-country-field label{width:100%}p.oss-tax-class-by-country-field select{width:auto;flex-grow:1;flex-shrink:0;flex-basis:50%}p.oss-tax-class-by-country-field a.oss-remove-tax-class-by-country{margin-left:.5em}p.oss-add-tax-class-by-country-field{display:flex;align-items:center;width:100%}p.oss-add-tax-class-by-country-field a.oss-remove-tax-class-by-country{margin-left:.5em}p.oss-add-tax-class-by-country-field label{width:auto;flex-grow:0;flex-shrink:0;flex-basis:30%;margin-right:1em}p.oss-add-tax-class-by-country-field select.oss-tax-class-new-class{width:auto;flex-grow:1;flex-shrink:0;flex-basis:50%}.oss-observer-total{font-size:1.5em;background:#b1dabc;color:#1d4026;padding:3px;border-radius:2px}.oss-observer-total.observer-total-red{background:#dab1b4;color:#401d1d}.oss-settings-learn-more{margin-left:.5em}.oss-observer-date-end{color:#646970;font-size:12px;margin-left:.5em}.oss-woo-status{background:#eee;padding:.2em .5em;font-size:.9em;border-radius:3px;display:inline-flex;white-space:nowrap}.oss-woo-status.report-status-pending{background:#f8dda7;color:#94660c}.oss-woo-status.report-status-failed{background:#eba3a3;color:#761919}.oss-woo-status.report-status-completed{background:#c6e1c6;color:#5b841b}.create-oss-reports{text-align:center;max-width:700px;margin:40px auto}.create-oss-reports .create-oss-report{background:#fff;overflow:hidden;padding:0;margin:0 0 16px;box-shadow:0 1px 3px rgba(0,0,0,.13);color:#555;text-align:left}.create-oss-reports header{border-bottom:1px solid #eee;margin:0;padding:24px 24px 0}.create-oss-reports header h2{margin:0 0 24px;color:#555;font-size:24px;font-weight:400;line-height:1em}.create-oss-reports section{padding:24px 24px 0}.create-oss-reports section .oss-report-options .select2-container{min-width:400px}.create-oss-reports section .oss-report-options td,.create-oss-reports section .oss-report-options th{vertical-align:middle;line-height:1.75em;padding:0 0 24px}.create-oss-reports section .oss-report-options th{width:25%;padding-right:20px}.create-oss-reports section .oss-report-options th label{color:#555;font-weight:400;position:relative;display:block}.create-oss-reports section .oss-report-hidden{display:none}.create-oss-reports .oss-actions{overflow:hidden;border-top:1px solid #eee;margin:0;padding:23px 24px 24px;line-height:3em;display:flex;flex-wrap:wrap;justify-content:flex-end}.create-oss-reports .oss-actions .button{font-size:1.25em;padding:.5em 1em!important;line-height:1.5em!important;margin-right:.5em;margin-bottom:2px;height:auto!important;border-radius:4px;opacity:1}.woocommerce_page_oss-reports .summary{font-family:HelveticaNeue-Light,"Helvetica Neue Light","Helvetica Neue",sans-serif;font-weight:400;line-height:1.6em;font-size:16px}.woocommerce_page_oss-reports .tablenav .actions{overflow:visible}.woocommerce_page_oss-reports .tablenav .select2-container{float:left;width:240px!important;font-size:14px;vertical-align:middle;margin:1px 6px 4px 1px}.woocommerce_page_oss-reports .tablenav .select2-container .select2-selection--single{height:32px}.woocommerce_page_oss-reports .tablenav .select2-container .select2-selection--single .select2-selection__rendered{line-height:29px}.woocommerce_page_oss-reports .tablenav .select2-container .select2-selection--single .select2-selection__arrow{height:30px}.woocommerce_page_oss-reports .tablenav input,.woocommerce_page_oss-reports .tablenav select{line-height:1;height:32px}.woocommerce_page_oss-reports .tablenav input{height:31px}.woocommerce_page_oss-reports .wp-list-table{margin-top:1em}.woocommerce_page_oss-reports .wp-list-table td,.woocommerce_page_oss-reports .wp-list-table th{padding:.5em 1em;width:10ch;vertical-align:middle}.woocommerce_page_oss-reports .wp-list-table tbody th,.woocommerce_page_oss-reports .wp-list-table td{line-height:26px}.woocommerce_page_oss-reports .wp-list-table thead th{padding:.5em 1em}.woocommerce_page_oss-reports .wp-list-table thead th.sortable a,.woocommerce_page_oss-reports .wp-list-table thead th.sorted a{padding:0}.woocommerce_page_oss-reports .wp-list-table thead th:last-child{padding-right:2em}.woocommerce_page_oss-reports .wp-list-table .check-column{width:16px;white-space:nowrap;padding:1em 1em 1em 1em!important;vertical-align:middle}.woocommerce_page_oss-reports .wp-list-table .check-column input{vertical-align:text-top;margin:1px 0}.woocommerce_page_oss-reports .wp-list-table td.column-title{font-weight:700}.woocommerce_page_oss-reports .wp-list-table .column-title{width:20ch}.woocommerce_page_oss-reports .wp-list-table .column-actions{width:10ch}.woocommerce_page_oss-reports .wp-list-table .column-actions{text-align:right}.woocommerce_page_oss-reports .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_oss-reports .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_oss-reports .wp-list-table .column-actions a.button.view::after{font-family:WooCommerce;content:"\e010"}.woocommerce_page_oss-reports .wp-list-table .column-actions a.button.refresh::after{content:"\f515"}.woocommerce_page_oss-reports .wp-list-table .column-actions a.button.cancel,.woocommerce_page_oss-reports .wp-list-table .column-actions a.button.delete{border-color:#a00;color:#a00}.woocommerce_page_oss-reports .wp-list-table .column-actions a.button.cancel:focus,.woocommerce_page_oss-reports .wp-list-table .column-actions a.button.delete:focus{box-shadow:0 0 0 1px #a00;border-color:#a00;color:#a00}.woocommerce_page_oss-reports .wp-list-table .column-actions a.button.cancel:hover,.woocommerce_page_oss-reports .wp-list-table .column-actions a.button.delete:hover{border-color:#910000;color:#910000}.woocommerce_page_oss-reports .wp-list-table .column-actions a.button.cancel::after,.woocommerce_page_oss-reports .wp-list-table .column-actions a.button.delete::after{font-family:Dashicons;content:"\f182"}.woocommerce_page_oss-reports .wp-list-table .column-actions a.button.export::after{content:"\f103"}.woocommerce_page_oss-reports .wp-list-table .column-address,.woocommerce_page_oss-reports .wp-list-table .column-sender{width:20ch}.woocommerce_page_oss-reports .wp-list-table .column-items{width:20ch}.woocommerce_page_oss-reports .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview{font-size:.9em;border-spacing:0}.woocommerce_page_oss-reports .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_oss-reports .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview tr td{border-bottom:1px solid #ccc!important}.woocommerce_page_oss-reports .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview tr:last-child td{border-bottom:none!important}.woocommerce_page_oss-reports .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td,.woocommerce_page_oss-reports .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th{padding:.3em 0;vertical-align:top;line-height:20px}.woocommerce_page_oss-reports .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-name,.woocommerce_page_oss-reports .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th.wc-gzd-shipment-item-column-name{width:70%}.woocommerce_page_oss-reports .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-name small,.woocommerce_page_oss-reports .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_oss-reports .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-quantity,.woocommerce_page_oss-reports .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}
packages/one-stop-shop-woocommerce/assets/css/admin.scss CHANGED
@@ -91,6 +91,12 @@ p.oss-add-tax-class-by-country-field {
91
  margin-left: .5em;
92
  }
93
 
 
 
 
 
 
 
94
  .oss-woo-status {
95
  background: #eee;
96
  padding: .2em .5em;
91
  margin-left: .5em;
92
  }
93
 
94
+ .oss-observer-date-end {
95
+ color: #646970;
96
+ font-size: 12px;
97
+ margin-left: .5em;
98
+ }
99
+
100
  .oss-woo-status {
101
  background: #eee;
102
  padding: .2em .5em;
packages/one-stop-shop-woocommerce/docs/_config.yml DELETED
@@ -1,8 +0,0 @@
1
- title: One Stop Shop
2
- description: A helper plugin to improve your WooCommerce shops compliance with the EU One Stop Shop procedure
3
- remote_theme: pmarsceill/just-the-docs
4
- color_scheme: oss
5
- permalink: /:slug
6
- plugins:
7
- - jekyll-seo-tag
8
- - jekyll-sitemap
 
 
 
 
 
 
 
 
packages/one-stop-shop-woocommerce/docs/_includes/footer_custom.html DELETED
@@ -1,4 +0,0 @@
1
- <p class="text-small text-grey-dk-100 mb-0">
2
- <a class="mr-3" href="https://vendidero.de/impressum" target="_blank">Imprint</a>
3
- <a href="https://github.com/pmarsceill/just-the-docs" target="_blank">Just the docs</a>
4
- </p>
 
 
 
 
packages/one-stop-shop-woocommerce/docs/_layouts/default.html DELETED
@@ -1,217 +0,0 @@
1
- ---
2
- layout: table_wrappers
3
- ---
4
-
5
- <!DOCTYPE html>
6
-
7
- <html lang="{{ site.lang | default: 'en-US' }}">
8
- {% include head.html %}
9
- <body>
10
- <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
11
- <symbol id="svg-link" viewBox="0 0 24 24">
12
- <title>Link</title>
13
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-link">
14
- <path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path>
15
- </svg>
16
- </symbol>
17
- <symbol id="svg-search" viewBox="0 0 24 24">
18
- <title>Search</title>
19
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search">
20
- <circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line>
21
- </svg>
22
- </symbol>
23
- <symbol id="svg-menu" viewBox="0 0 24 24">
24
- <title>Menu</title>
25
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-menu">
26
- <line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="18" x2="21" y2="18"></line>
27
- </svg>
28
- </symbol>
29
- <symbol id="svg-arrow-right" viewBox="0 0 24 24">
30
- <title>Expand</title>
31
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right">
32
- <polyline points="9 18 15 12 9 6"></polyline>
33
- </svg>
34
- </symbol>
35
- <symbol id="svg-doc" viewBox="0 0 24 24">
36
- <title>Document</title>
37
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file">
38
- <path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path><polyline points="13 2 13 9 20 9"></polyline>
39
- </svg>
40
- </symbol>
41
- </svg>
42
-
43
- <div class="side-bar">
44
- <div class="site-header">
45
- <a href="{{ '/' | absolute_url }}" class="site-title lh-tight">{% include title.html %}</a>
46
- <a href="#" id="menu-button" class="site-button">
47
- <svg viewBox="0 0 24 24" class="icon"><use xlink:href="#svg-menu"></use></svg>
48
- </a>
49
- </div>
50
- <nav role="navigation" aria-label="Main" id="site-nav" class="site-nav">
51
- {% if site.just_the_docs.collections %}
52
- {% assign collections_size = site.just_the_docs.collections | size %}
53
- {% for collection_entry in site.just_the_docs.collections %}
54
- {% assign collection_key = collection_entry[0] %}
55
- {% assign collection_value = collection_entry[1] %}
56
- {% assign collection = site[collection_key] %}
57
- {% if collection_value.nav_exclude != true %}
58
- {% if collections_size > 1 %}
59
- <div class="nav-category">{{ collection_value.name }}</div>
60
- {% endif %}
61
- {% include nav.html pages=collection %}
62
- {% endif %}
63
- {% endfor %}
64
- {% else %}
65
- {% include nav.html pages=site.html_pages %}
66
- {% endif %}
67
- </nav>
68
- <footer class="site-footer">
69
- <a href="https://vendidero.de" title="vendidero" target="_blank">
70
- <span class="icon-svg" style="fill: rgba(3,39,64,.8); ">
71
- <svg version="1.1"
72
- xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
73
- x="0px" y="0px" width="65px" height="65px" viewBox="0 0 90 90" xml:space="preserve">
74
- <circle style="fill: none; stroke: rgba(3,39,64,.6); stroke-width: 3.5; stroke-miterlimit: 10;" class="st0" cx="45" cy="45" r="42.75"/>
75
- <g>
76
- <path class="st1" style="fill: rgba(3,39,64,.6);" d="M37.04,21.38v6.97l-2.63,0.27c-2.22,0.18-3.28,1.32-2.57,3.52l13.85,37.24h0.5l13.55-39.99l-6.7-0.68v-7.33
77
- h18.74C65.19,14.38,55.64,9.24,45,9.24c-10.63,0-20.19,5.14-26.78,12.14H37.04z"/>
78
- <path class="st1" style="fill: rgba(3,39,64,.6);" d="M76.88,28.38L74,28.61c-1.81,0.18-2.42,0.92-3.12,2.75l-18.8,49.85C68.57,77.88,81,63.09,81,45.36
79
- C81,39.22,79.51,33.45,76.88,28.38z"/>
80
- <path class="st1" style="fill: rgba(3,39,64,.6);" d="M18.19,28.98l-5.25-0.25C10.43,33.72,9,39.37,9,45.36c0,17.96,12.74,32.88,29.54,35.97L18.19,28.98z"/>
81
- </g>
82
- </svg>
83
- </span>
84
- </a>
85
- </footer>
86
- </div>
87
- <div class="main" id="top">
88
- <div id="main-header" class="main-header">
89
- {% if site.search_enabled != false %}
90
- <div class="search">
91
- <div class="search-input-wrap">
92
- <input type="text" id="search-input" class="search-input" tabindex="0" placeholder="Search {{ site.title }}" aria-label="Search {{ site.title }}" autocomplete="off">
93
- <label for="search-input" class="search-label"><svg viewBox="0 0 24 24" class="search-icon"><use xlink:href="#svg-search"></use></svg></label>
94
- </div>
95
- <div id="search-results" class="search-results"></div>
96
- </div>
97
- {% endif %}
98
- {% include header_custom.html %}
99
- {% if site.aux_links %}
100
- <nav aria-label="Auxiliary" class="aux-nav">
101
- <ul class="aux-nav-list">
102
- {% for link in site.aux_links %}
103
- <li class="aux-nav-list-item">
104
- <a href="{{ link.last }}" class="site-button"
105
- {% if site.aux_links_new_tab %}
106
- target="_blank" rel="noopener noreferrer"
107
- {% endif %}
108
- >
109
- {{ link.first }}
110
- </a>
111
- </li>
112
- {% endfor %}
113
- </ul>
114
- </nav>
115
- {% endif %}
116
- </div>
117
- <div id="main-content-wrap" class="main-content-wrap">
118
- {% unless page.url == "/" %}
119
- {% if page.parent %}
120
- {%- for node in pages_list -%}
121
- {%- if node.parent == nil -%}
122
- {%- if page.parent == node.title or page.grand_parent == node.title -%}
123
- {%- assign first_level_url = node.url | absolute_url -%}
124
- {%- endif -%}
125
- {%- if node.has_children -%}
126
- {%- assign children_list = pages_list | where: "parent", node.title -%}
127
- {%- for child in children_list -%}
128
- {%- if page.url == child.url or page.parent == child.title -%}
129
- {%- assign second_level_url = child.url | absolute_url -%}
130
- {%- endif -%}
131
- {%- endfor -%}
132
- {%- endif -%}
133
- {%- endif -%}
134
- {%- endfor -%}
135
- <nav aria-label="Breadcrumb" class="breadcrumb-nav">
136
- <ol class="breadcrumb-nav-list">
137
- {% if page.grand_parent %}
138
- <li class="breadcrumb-nav-list-item"><a href="{{ first_level_url }}">{{ page.grand_parent }}</a></li>
139
- <li class="breadcrumb-nav-list-item"><a href="{{ second_level_url }}">{{ page.parent }}</a></li>
140
- {% else %}
141
- <li class="breadcrumb-nav-list-item"><a href="{{ first_level_url }}">{{ page.parent }}</a></li>
142
- {% endif %}
143
- <li class="breadcrumb-nav-list-item"><span>{{ page.title }}</span></li>
144
- </ol>
145
- </nav>
146
- {% endif %}
147
- {% endunless %}
148
- <div id="main-content" class="main-content" role="main">
149
- {% if site.heading_anchors != false %}
150
- {% include vendor/anchor_headings.html html=content beforeHeading="true" anchorBody="<svg viewBox=\"0 0 16 16\" aria-hidden=\"true\"><use xlink:href=\"#svg-link\"></use></svg>" anchorClass="anchor-heading" anchorAttrs="aria-labelledby=\"%html_id%\"" %}
151
- {% else %}
152
- {{ content }}
153
- {% endif %}
154
-
155
- {% if page.has_children == true and page.has_toc != false %}
156
- <hr>
157
- <h2 class="text-delta">Table of contents</h2>
158
- <ul>
159
- {%- assign children_list = pages_list | where: "parent", page.title | where: "grand_parent", page.parent -%}
160
- {% for child in children_list %}
161
- <li>
162
- <a href="{{ child.url | absolute_url }}">{{ child.title }}</a>{% if child.summary %} - {{ child.summary }}{% endif %}
163
- </li>
164
- {% endfor %}
165
- </ul>
166
- {% endif %}
167
-
168
- {% capture footer_custom %}
169
- {%- include footer_custom.html -%}
170
- {% endcapture %}
171
- {% if footer_custom != "" or site.last_edit_timestamp or site.gh_edit_link %}
172
- <hr>
173
- <footer>
174
- {% if site.back_to_top %}
175
- <p><a href="#top" id="back-to-top">{{ site.back_to_top_text }}</a></p>
176
- {% endif %}
177
-
178
- {{ footer_custom }}
179
-
180
- {% if site.last_edit_timestamp or site.gh_edit_link %}
181
- <div class="d-flex mt-2">
182
- {% if site.last_edit_timestamp and site.last_edit_time_format and page.last_modified_date %}
183
- <p class="text-small text-grey-dk-000 mb-0 mr-2">
184
- Page last modified: <span class="d-inline-block">{{ page.last_modified_date | date: site.last_edit_time_format }}</span>.
185
- </p>
186
- {% endif %}
187
- {% if
188
- site.gh_edit_link and
189
- site.gh_edit_link_text and
190
- site.gh_edit_repository and
191
- site.gh_edit_branch and
192
- site.gh_edit_view_mode
193
- %}
194
- <p class="text-small text-grey-dk-000 mb-0">
195
- <a href="{{ site.gh_edit_repository }}/{{ site.gh_edit_view_mode }}/{{ site.gh_edit_branch }}{% if site.gh_edit_source %}/{{ site.gh_edit_source }}{% endif %}/{{ page.path }}" id="edit-this-page">{{ site.gh_edit_link_text }}</a>
196
- </p>
197
- {% endif %}
198
- </div>
199
- {% endif %}
200
- </footer>
201
- {% endif %}
202
-
203
- </div>
204
- </div>
205
-
206
- {% if site.search_enabled != false %}
207
- {% if site.search.button %}
208
- <a href="#" id="search-button" class="search-button">
209
- <svg viewBox="0 0 24 24" class="icon"><use xlink:href="#svg-search"></use></svg>
210
- </a>
211
- {% endif %}
212
-
213
- <div class="search-overlay"></div>
214
- {% endif %}
215
- </div>
216
- </body>
217
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
packages/one-stop-shop-woocommerce/docs/_sass/color_schemes/oss.scss DELETED
@@ -1,12 +0,0 @@
1
- $oss-000: #6589d4;
2
- $oss-100: #5c7ec6;
3
- $oss-200: #6182c8;
4
- $oss-300: #4463a4;
5
-
6
- $purple-000: $oss-000;
7
- $purple-100: $oss-100;
8
- $purple-200: $oss-200;
9
- $purple-300: $oss-300;
10
-
11
- $link-color: $oss-000;
12
- $btn-primary-color: $oss-100
 
 
 
 
 
 
 
 
 
 
 
 
packages/one-stop-shop-woocommerce/docs/_sass/custom/custom.scss DELETED
File without changes
packages/one-stop-shop-woocommerce/i18n/languages/oss-woocommerce-de_DE.mo CHANGED
Binary file
packages/one-stop-shop-woocommerce/i18n/languages/oss-woocommerce-de_DE.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: One Stop Shop for WooCommerce\n"
4
- "POT-Creation-Date: 2021-06-16 10:20+0200\n"
5
- "PO-Revision-Date: 2021-06-16 10:23+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: de_DE\n"
@@ -22,19 +22,10 @@ msgstr ""
22
  "X-Poedit-SearchPathExcluded-0: *.min.js\n"
23
  "X-Poedit-SearchPathExcluded-1: vendor\n"
24
  "X-Poedit-SearchPathExcluded-2: node_modules\n"
 
25
 
26
  #. translators: 1: composer command. 2: plugin directory
27
- #: build/one-stop-shop-woocommerce-git/one-stop-shop-woocommerce.php:43
28
- #: build/one-stop-shop-woocommerce-git/one-stop-shop-woocommerce.php:61
29
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/one-stop-shop-woocommerce.php:43
30
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/one-stop-shop-woocommerce.php:61
31
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/one-stop-shop-woocommerce.php:43
32
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/one-stop-shop-woocommerce.php:61
33
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/one-stop-shop-woocommerce.php:43
34
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/one-stop-shop-woocommerce.php:61
35
- #: build/one-stop-shop-woocommerce-svn/trunk/one-stop-shop-woocommerce.php:43
36
- #: build/one-stop-shop-woocommerce-svn/trunk/one-stop-shop-woocommerce.php:61
37
- #: one-stop-shop-woocommerce.php:43 one-stop-shop-woocommerce.php:61
38
  #, php-format
39
  msgctxt "oss"
40
  msgid ""
@@ -44,12 +35,27 @@ msgstr ""
44
  "Deine Installation des One Stop Shop Feature Plugins ist nicht komplett. "
45
  "Bitte führe %1$s innerhalb des %2$s Verzeichnisses aus."
46
 
47
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:153
48
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:153
49
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:153
50
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:153
51
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:153
52
- #: src/Admin.php:178
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  #, php-format
54
  msgctxt "oss"
55
  msgid ""
@@ -61,270 +67,125 @@ msgstr ""
61
  "Jahr überschritten. Bitte prüfe die <a href=\"%s\" target=\"_blank\">Details "
62
  "des Berichts</a> und unternimm weitere Schritte."
63
 
64
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:157
65
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:157
66
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:157
67
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:157
68
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:157
69
- #: src/Admin.php:182
70
  msgctxt "oss"
71
  msgid "Delivery threshold reached (OSS)"
72
  msgstr "Lieferschwelle erreicht (OSS)"
73
 
74
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:344
75
- #: build/one-stop-shop-woocommerce-git/src/SettingsPage.php:17
76
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:342
77
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/SettingsPage.php:17
78
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:344
79
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/SettingsPage.php:17
80
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:344
81
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/SettingsPage.php:17
82
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:344
83
- #: build/one-stop-shop-woocommerce-svn/trunk/src/SettingsPage.php:17
84
- #: src/Admin.php:369 src/SettingsPage.php:17
85
  msgctxt "oss"
86
  msgid "OSS"
87
  msgstr "OSS"
88
 
89
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:344
90
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:462
91
- #: build/one-stop-shop-woocommerce-git/src/SettingsPage.php:23
92
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:342
93
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:460
94
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/SettingsPage.php:23
95
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:344
96
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:462
97
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/SettingsPage.php:23
98
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:344
99
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:462
100
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/SettingsPage.php:23
101
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:344
102
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:462
103
- #: build/one-stop-shop-woocommerce-svn/trunk/src/SettingsPage.php:23
104
- #: src/Admin.php:369 src/Admin.php:487 src/SettingsPage.php:23
105
  msgctxt "oss"
106
  msgid "One Stop Shop"
107
  msgstr "One Stop Shop"
108
 
109
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:365
110
- #: build/one-stop-shop-woocommerce-git/src/Package.php:267
111
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:363
112
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:267
113
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:365
114
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:267
115
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:365
116
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:267
117
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:365
118
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:267
119
- #: src/Admin.php:390 src/Package.php:267
120
  #, php-format
121
  msgctxt "oss"
122
  msgid "Q%1$s/%2$s"
123
  msgstr "Q%1$s/%2$s"
124
 
125
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:374
126
- #: build/one-stop-shop-woocommerce-git/src/Package.php:272
127
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:372
128
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:272
129
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:374
130
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:272
131
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:374
132
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:272
133
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:374
134
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:272
135
- #: src/Admin.php:399 src/Package.php:272
136
  #, php-format
137
  msgctxt "oss"
138
  msgid "%1$s/%2$s"
139
  msgstr "%1$s/%2$s"
140
 
141
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:382
142
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:380
143
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:382
144
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:382
145
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:382
146
- #: src/Admin.php:407
147
  msgctxt "oss"
148
  msgid "New Report"
149
  msgstr "Neuer Bericht"
150
 
151
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:389
152
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:387
153
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:389
154
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:389
155
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:389
156
- #: src/Admin.php:414
157
  msgctxt "oss"
158
  msgid "Type"
159
  msgstr "Typ"
160
 
161
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:401
162
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:399
163
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:401
164
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:401
165
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:401
166
- #: src/Admin.php:426
167
- msgctxt "storeabill-core"
168
  msgid "Year"
169
  msgstr "Jahr"
170
 
171
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:413
172
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:411
173
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:413
174
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:413
175
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:413
176
- #: src/Admin.php:438
177
- msgctxt "storeabill-core"
178
  msgid "Quarter"
179
  msgstr "Quartal"
180
 
181
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:425
182
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:423
183
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:425
184
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:425
185
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:425
186
- #: src/Admin.php:450
187
- msgctxt "storeabill-core"
188
  msgid "Month"
189
  msgstr "Monat"
190
 
191
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:437
192
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:435
193
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:437
194
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:437
195
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:437
196
- #: src/Admin.php:462
197
- msgctxt "storeabill-core"
198
  msgid "Date range"
199
  msgstr "Zeitraum"
200
 
201
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:449
202
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:447
203
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:449
204
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:449
205
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:449
206
- #: src/Admin.php:474
207
  msgctxt "oss"
208
  msgid "Start report"
209
  msgstr "Bericht starten"
210
 
211
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:463
212
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:461
213
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:463
214
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:463
215
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:463
216
- #: src/Admin.php:488
217
  msgctxt "oss"
218
  msgid "New report"
219
  msgstr "Neuer Bericht"
220
 
221
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:505
222
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:503
223
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:505
224
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:505
225
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:505
226
- #: src/Admin.php:530
227
  msgctxt "oss"
228
  msgid "View"
229
  msgstr "Ansehen"
230
 
231
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:509
232
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:507
233
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:509
234
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:509
235
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:509
236
- #: src/Admin.php:534
237
  msgctxt "oss"
238
  msgid "Export"
239
  msgstr "Exportieren"
240
 
241
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:513
242
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:511
243
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:513
244
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:513
245
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:513
246
- #: src/Admin.php:538
247
  msgctxt "oss"
248
  msgid "Refresh"
249
  msgstr "Aktualisieren"
250
 
251
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:517
252
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:515
253
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:517
254
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:517
255
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:517
256
- #: src/Admin.php:542
257
  msgctxt "oss"
258
  msgid "Delete"
259
  msgstr "Löschen"
260
 
261
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:523
262
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:521
263
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:523
264
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:523
265
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:523
266
- #: src/Admin.php:548
267
  msgctxt "oss"
268
  msgid "Cancel"
269
  msgstr "Abbrechen"
270
 
271
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:552
272
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:550
273
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:552
274
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:552
275
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:552
276
- #: src/Admin.php:577
277
  msgctxt "oss"
278
  msgid "Country"
279
  msgstr "Land"
280
 
281
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:553
282
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:551
283
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:553
284
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:553
285
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:553
286
- #: src/Admin.php:578
287
  msgctxt "oss"
288
  msgid "Tax Rate"
289
  msgstr "Steuersatz"
290
 
291
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:554
292
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:552
293
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:554
294
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:554
295
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:554
296
- #: src/Admin.php:579
297
  msgctxt "oss"
298
  msgid "Net Total"
299
  msgstr "Nettobetrag"
300
 
301
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:555
302
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:553
303
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:555
304
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:555
305
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:555
306
- #: src/Admin.php:580
307
  msgctxt "oss"
308
  msgid "Tax Total"
309
  msgstr "Steuerbertrag"
310
 
311
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:586
312
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:584
313
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:586
314
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:586
315
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:586
316
- #: src/Admin.php:611
317
  #, php-format
318
  msgctxt "oss"
319
  msgid "%1$s %%"
320
  msgstr "%1$s %%"
321
 
322
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:598
323
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:596
324
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:598
325
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:598
326
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:598
327
- #: src/Admin.php:623
328
  #, php-format
329
  msgctxt "oss"
330
  msgid ""
@@ -334,111 +195,51 @@ msgstr ""
334
  "Aktuell %1$s Bestellung verarbeitet. Nächster Durchlauf planmäßig am %2$s. "
335
  "<a href=\"%3$s\">Offene Aktionen finden</a>"
336
 
337
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:598
338
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:596
339
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:598
340
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:598
341
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:598
342
- #: src/Admin.php:623
343
  msgctxt "oss"
344
  msgid "Not yet known"
345
  msgstr "Noch nicht bekannt"
346
 
347
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:629
348
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:39
349
- #: build/one-stop-shop-woocommerce-git/src/SettingsPage.php:23
350
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:627
351
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:39
352
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/SettingsPage.php:23
353
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:629
354
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:39
355
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/SettingsPage.php:23
356
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:629
357
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:39
358
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/SettingsPage.php:23
359
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:629
360
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:39
361
- #: build/one-stop-shop-woocommerce-svn/trunk/src/SettingsPage.php:23
362
- #: src/Admin.php:654 src/ReportTable.php:39 src/SettingsPage.php:23
363
  msgctxt "oss"
364
  msgid "Reports"
365
  msgstr "Berichte"
366
 
367
- #: build/one-stop-shop-woocommerce-git/src/AdminNote.php:39
368
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/AdminNote.php:39
369
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/AdminNote.php:39
370
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/AdminNote.php:39
371
- #: build/one-stop-shop-woocommerce-svn/trunk/src/AdminNote.php:39
372
  #: src/AdminNote.php:39
373
  msgctxt "oss"
374
  msgid "Dismiss"
375
  msgstr "Ausblenden"
376
 
377
- #: build/one-stop-shop-woocommerce-git/src/AsyncReportGenerator.php:172
378
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/AsyncReportGenerator.php:172
379
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/AsyncReportGenerator.php:172
380
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/AsyncReportGenerator.php:172
381
- #: build/one-stop-shop-woocommerce-svn/trunk/src/AsyncReportGenerator.php:172
382
- #: src/AsyncReportGenerator.php:195
383
  msgctxt "oss"
384
  msgid "No orders found."
385
  msgstr "Keine Bestellungen gefunden."
386
 
387
- #: build/one-stop-shop-woocommerce-git/src/CSVExporter.php:52
388
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/CSVExporter.php:52
389
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/CSVExporter.php:52
390
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/CSVExporter.php:52
391
- #: build/one-stop-shop-woocommerce-svn/trunk/src/CSVExporter.php:52
392
  #: src/CSVExporter.php:52
393
  msgctxt "oss"
394
  msgid "Country code"
395
  msgstr "Land des Verbrauchs"
396
 
397
- #: build/one-stop-shop-woocommerce-git/src/CSVExporter.php:53
398
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/CSVExporter.php:53
399
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/CSVExporter.php:53
400
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/CSVExporter.php:53
401
- #: build/one-stop-shop-woocommerce-svn/trunk/src/CSVExporter.php:53
402
  #: src/CSVExporter.php:53
403
  msgctxt "oss"
404
  msgid "Tax rate"
405
  msgstr "Umsatzsteuersatz"
406
 
407
- #: build/one-stop-shop-woocommerce-git/src/CSVExporter.php:54
408
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/CSVExporter.php:54
409
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/CSVExporter.php:54
410
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/CSVExporter.php:54
411
- #: build/one-stop-shop-woocommerce-svn/trunk/src/CSVExporter.php:54
412
  #: src/CSVExporter.php:54
413
  msgctxt "oss"
414
  msgid "Taxable base"
415
  msgstr "Nettobetrag"
416
 
417
- #: build/one-stop-shop-woocommerce-git/src/CSVExporter.php:55
418
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/CSVExporter.php:55
419
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/CSVExporter.php:55
420
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/CSVExporter.php:55
421
- #: build/one-stop-shop-woocommerce-svn/trunk/src/CSVExporter.php:55
422
  #: src/CSVExporter.php:55
423
  msgctxt "oss"
424
  msgid "Amount"
425
  msgstr "Umsatzsteuerbetrag"
426
 
427
- #: build/one-stop-shop-woocommerce-git/src/DeliveryThresholdEmailNotification.php:19
428
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/DeliveryThresholdEmailNotification.php:19
429
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/DeliveryThresholdEmailNotification.php:19
430
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/DeliveryThresholdEmailNotification.php:19
431
- #: build/one-stop-shop-woocommerce-svn/trunk/src/DeliveryThresholdEmailNotification.php:19
432
  #: src/DeliveryThresholdEmailNotification.php:19
433
  msgctxt "oss"
434
  msgid "OSS Delivery Threshold Notification"
435
  msgstr "OSS Lieferschwelle Benachrichtigung"
436
 
437
- #: build/one-stop-shop-woocommerce-git/src/DeliveryThresholdEmailNotification.php:20
438
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/DeliveryThresholdEmailNotification.php:20
439
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/DeliveryThresholdEmailNotification.php:20
440
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/DeliveryThresholdEmailNotification.php:20
441
- #: build/one-stop-shop-woocommerce-svn/trunk/src/DeliveryThresholdEmailNotification.php:20
442
  #: src/DeliveryThresholdEmailNotification.php:20
443
  msgctxt "oss"
444
  msgid ""
@@ -448,42 +249,22 @@ msgstr ""
448
  "Diese E-Mail benachrichtigt den Shopbetreiber über eine in Kürze anstehende "
449
  "Überschreitung der Lieferschwelle (OSS)."
450
 
451
- #: build/one-stop-shop-woocommerce-git/src/DeliveryThresholdEmailNotification.php:38
452
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/DeliveryThresholdEmailNotification.php:38
453
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/DeliveryThresholdEmailNotification.php:38
454
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/DeliveryThresholdEmailNotification.php:38
455
- #: build/one-stop-shop-woocommerce-svn/trunk/src/DeliveryThresholdEmailNotification.php:38
456
  #: src/DeliveryThresholdEmailNotification.php:38
457
  msgctxt "oss"
458
  msgid "[{site_title}]: OSS delivery threshold reached"
459
  msgstr "[{site_title}]: OSS Lieferschwelle erreicht"
460
 
461
- #: build/one-stop-shop-woocommerce-git/src/DeliveryThresholdEmailNotification.php:48
462
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/DeliveryThresholdEmailNotification.php:48
463
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/DeliveryThresholdEmailNotification.php:48
464
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/DeliveryThresholdEmailNotification.php:48
465
- #: build/one-stop-shop-woocommerce-svn/trunk/src/DeliveryThresholdEmailNotification.php:48
466
  #: src/DeliveryThresholdEmailNotification.php:48
467
  msgctxt "oss"
468
  msgid "OSS delivery threshold reached"
469
  msgstr "OSS Lieferschwelle erreicht"
470
 
471
- #: build/one-stop-shop-woocommerce-git/src/DeliveryThresholdWarning.php:13
472
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/DeliveryThresholdWarning.php:13
473
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/DeliveryThresholdWarning.php:13
474
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/DeliveryThresholdWarning.php:13
475
- #: build/one-stop-shop-woocommerce-svn/trunk/src/DeliveryThresholdWarning.php:13
476
  #: src/DeliveryThresholdWarning.php:13
477
  msgctxt "oss"
478
  msgid "See details"
479
  msgstr "Details ansehen"
480
 
481
- #: build/one-stop-shop-woocommerce-git/src/Package.php:83
482
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:83
483
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:83
484
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:83
485
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:83
486
- #: src/Package.php:83
487
  msgctxt "oss"
488
  msgid ""
489
  "To use the OSS for WooCommerce plugin please make sure that WooCommerce is "
@@ -492,139 +273,69 @@ msgstr ""
492
  "Um das OSS für WooCommerce Plugin nutzen zu können muss WooCommerce "
493
  "installiert und aktiviert sein."
494
 
495
- #: build/one-stop-shop-woocommerce-git/src/Package.php:252
496
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:40
497
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:252
498
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:40
499
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:252
500
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:40
501
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:252
502
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:40
503
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:252
504
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:40
505
- #: src/Package.php:252 src/ReportTable.php:40
506
  msgctxt "oss"
507
  msgid "Report"
508
  msgstr "Bericht"
509
 
510
- #: build/one-stop-shop-woocommerce-git/src/Package.php:276
511
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:276
512
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:276
513
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:276
514
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:276
515
- #: src/Package.php:276
516
  #, php-format
517
  msgctxt "oss"
518
  msgid "%1$s"
519
  msgstr "%1$s"
520
 
521
- #: build/one-stop-shop-woocommerce-git/src/Package.php:281
522
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:281
523
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:281
524
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:281
525
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:281
526
- #: src/Package.php:281
527
  #, php-format
528
  msgctxt "oss"
529
  msgid "%1$s - %2$s"
530
  msgstr "%1$s - %2$s"
531
 
532
- #: build/one-stop-shop-woocommerce-git/src/Package.php:286
533
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:286
534
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:286
535
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:286
536
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:286
537
- #: src/Package.php:286
538
  #, php-format
539
  msgctxt "oss"
540
  msgid "Observer %1$s"
541
  msgstr "Beobachter %1$s"
542
 
543
- #: build/one-stop-shop-woocommerce-git/src/Package.php:463
544
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:463
545
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:463
546
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:463
547
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:463
548
- #: src/Package.php:463
549
  msgctxt "oss"
550
  msgid "Quarterly"
551
  msgstr "Quartalsweise"
552
 
553
- #: build/one-stop-shop-woocommerce-git/src/Package.php:464
554
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:464
555
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:464
556
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:464
557
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:464
558
- #: src/Package.php:464
559
  msgctxt "oss"
560
  msgid "Yearly"
561
  msgstr "Jährlich"
562
 
563
- #: build/one-stop-shop-woocommerce-git/src/Package.php:465
564
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:465
565
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:465
566
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:465
567
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:465
568
- #: src/Package.php:465
569
  msgctxt "oss"
570
  msgid "Monthly"
571
  msgstr "Monatlich"
572
 
573
- #: build/one-stop-shop-woocommerce-git/src/Package.php:466
574
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:466
575
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:466
576
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:466
577
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:466
578
- #: src/Package.php:466
579
  msgctxt "oss"
580
  msgid "Custom"
581
  msgstr "Individuell"
582
 
583
- #: build/one-stop-shop-woocommerce-git/src/Package.php:470
584
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:470
585
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:470
586
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:470
587
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:470
588
- #: src/Package.php:470
589
  msgctxt "oss"
590
  msgid "Observer"
591
  msgstr "Beobachter"
592
 
593
- #: build/one-stop-shop-woocommerce-git/src/Package.php:484
594
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:484
595
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:484
596
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:484
597
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:484
598
- #: src/Package.php:484
599
  msgctxt "oss"
600
  msgid "Pending"
601
  msgstr "In Bearbeitung"
602
 
603
- #: build/one-stop-shop-woocommerce-git/src/Package.php:485
604
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:485
605
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:485
606
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:485
607
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:485
608
- #: src/Package.php:485
609
  msgctxt "oss"
610
  msgid "Completed"
611
  msgstr "Fertiggestellt"
612
 
613
- #: build/one-stop-shop-woocommerce-git/src/Package.php:486
614
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:486
615
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:486
616
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:486
617
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:486
618
- #: src/Package.php:486
619
  msgctxt "oss"
620
  msgid "Failed"
621
  msgstr "Fehlgeschlagen"
622
 
623
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:121
624
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:121
625
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:121
626
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:121
627
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:121
628
  #: src/ReportTable.php:121
629
  #, php-format
630
  msgctxt "oss"
@@ -633,21 +344,11 @@ msgid_plural "%d reports deleted."
633
  msgstr[0] "%d Bericht gelöscht."
634
  msgstr[1] "%d Berichte gelöscht."
635
 
636
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:184
637
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:184
638
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:184
639
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:184
640
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:184
641
  #: src/ReportTable.php:184
642
  msgctxt "oss"
643
  msgid "No reports found"
644
  msgstr "Keine Berichte gefunden"
645
 
646
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:225
647
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:225
648
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:225
649
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:225
650
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:225
651
  #: src/ReportTable.php:225
652
  #, php-format
653
  msgctxt "oss"
@@ -656,11 +357,6 @@ msgid_plural "All <span class=\"count\">(%s)</span>"
656
  msgstr[0] "Alle <span class=\"count\">(%s)</span>"
657
  msgstr[1] "Alle <span class=\"count\">(%s)</span>"
658
 
659
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:250
660
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:250
661
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:250
662
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:250
663
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:250
664
  #: src/ReportTable.php:250
665
  #, php-format
666
  msgctxt "oss"
@@ -669,131 +365,62 @@ msgid_plural " <span class=\"count\">(%s)</span>"
669
  msgstr[0] " <span class=\"count\">(%s)</span>"
670
  msgstr[1] " <span class=\"count\">(%s)</span>"
671
 
672
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:323
673
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:323
674
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:323
675
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:323
676
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:323
677
  #: src/ReportTable.php:323
678
  msgctxt "oss"
679
  msgid "Filter"
680
  msgstr "Filtern"
681
 
682
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:350
683
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:350
684
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:350
685
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:350
686
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:350
687
  #: src/ReportTable.php:350
688
  msgctxt "oss"
689
  msgid "Title"
690
  msgstr "Titel"
691
 
692
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:351
693
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:351
694
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:351
695
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:351
696
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:351
697
  #: src/ReportTable.php:351
698
  msgctxt "oss"
699
  msgid "Start"
700
  msgstr "Start"
701
 
702
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:352
703
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:352
704
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:352
705
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:352
706
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:352
707
  #: src/ReportTable.php:352
708
  msgctxt "oss"
709
  msgid "End"
710
  msgstr "Ende"
711
 
712
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:353
713
- #: build/one-stop-shop-woocommerce-git/templates/emails/admin-delivery-threshold.php:25
714
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:353
715
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/templates/emails/admin-delivery-threshold.php:25
716
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:353
717
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/templates/emails/admin-delivery-threshold.php:25
718
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:353
719
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/templates/emails/admin-delivery-threshold.php:25
720
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:353
721
- #: build/one-stop-shop-woocommerce-svn/trunk/templates/emails/admin-delivery-threshold.php:25
722
  #: src/ReportTable.php:353 templates/emails/admin-delivery-threshold.php:25
723
  msgctxt "oss"
724
  msgid "Net total"
725
  msgstr "Nettobetrag"
726
 
727
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:354
728
- #: build/one-stop-shop-woocommerce-git/templates/emails/admin-delivery-threshold.php:26
729
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:354
730
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/templates/emails/admin-delivery-threshold.php:26
731
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:354
732
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/templates/emails/admin-delivery-threshold.php:26
733
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:354
734
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/templates/emails/admin-delivery-threshold.php:26
735
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:354
736
- #: build/one-stop-shop-woocommerce-svn/trunk/templates/emails/admin-delivery-threshold.php:26
737
  #: src/ReportTable.php:354 templates/emails/admin-delivery-threshold.php:26
738
  msgctxt "oss"
739
  msgid "Tax total"
740
  msgstr "Steuerbertrag"
741
 
742
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:355
743
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:355
744
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:355
745
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:355
746
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:355
747
  #: src/ReportTable.php:355
748
  msgctxt "oss"
749
  msgid "Status"
750
  msgstr "Status"
751
 
752
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:356
753
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:356
754
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:356
755
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:356
756
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:356
757
  #: src/ReportTable.php:356
758
  msgctxt "oss"
759
  msgid "Actions"
760
  msgstr "Aktionen"
761
 
762
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:420
763
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:420
764
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:420
765
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:420
766
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:420
767
  #: src/ReportTable.php:420
768
  #, php-format
769
  msgctxt "oss"
770
  msgid "Select %s"
771
  msgstr "%s auswählen"
772
 
773
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:513
774
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:513
775
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:513
776
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:513
777
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:513
778
  #: src/ReportTable.php:513
779
  msgctxt "oss"
780
  msgid "Delete Permanently"
781
  msgstr "Unwiderruflich löschen"
782
 
783
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:14
784
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:14
785
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:14
786
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:14
787
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:14
788
  #: src/Settings.php:14
789
  msgctxt "oss"
790
  msgid "General"
791
  msgstr "Allgemein"
792
 
793
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:19
794
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:19
795
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:19
796
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:19
797
  #: src/Settings.php:19
798
  msgctxt "oss"
799
  msgid ""
@@ -805,51 +432,26 @@ msgstr ""
805
  "taxation_customs/business/vat/oss_de\" target=\"_blank\" rel=\"noopener"
806
  "\">One Stop Shop Verfahren</a>."
807
 
808
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:31
809
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:31
810
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:31
811
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:31
812
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:31
813
  #: src/Settings.php:31
814
  msgctxt "oss"
815
  msgid "OSS status"
816
  msgstr "OSS Status"
817
 
818
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:32
819
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:32
820
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:32
821
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:32
822
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:32
823
  #: src/Settings.php:32
824
  msgctxt "oss"
825
  msgid "Yes, I'm currently participating in the OSS procedure."
826
  msgstr "Ja, ich nehme aktuell am One Stop Shop Verfahren teil."
827
 
828
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:39
829
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:39
830
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:39
831
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:39
832
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:39
833
  #: src/Settings.php:39
834
  msgctxt "oss"
835
  msgid "Observation"
836
  msgstr "Überwachung"
837
 
838
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:40
839
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:40
840
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:40
841
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:40
842
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:40
843
  #: src/Settings.php:40
844
  msgctxt "oss"
845
  msgid "Automatically observe the delivery threshold of the current year."
846
  msgstr "Überwache die Lieferschwelle des aktuellen Jahres automatisch."
847
 
848
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:40
849
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:40
850
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:40
851
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:40
852
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:40
853
  #: src/Settings.php:40
854
  msgctxt "oss"
855
  msgid ""
@@ -863,72 +465,56 @@ msgstr ""
863
  "nachberechnet wird. Der Bericht wird nur für die Tage nachberechnet, für die "
864
  "aktuell noch keine Überwachung stattfindet."
865
 
866
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:50
867
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:50
868
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:50
869
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:50
870
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:50
871
  #: src/Settings.php:50
872
  msgctxt "oss"
873
  msgid "Delivery threshold"
874
  msgstr "Lieferschwelle"
875
 
876
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:60
877
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:60
878
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:60
879
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:60
880
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:60
881
  #: src/Settings.php:60
882
  msgctxt "oss"
883
  msgid "Participation"
884
  msgstr "Teilnahme"
885
 
886
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:80
887
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:80
888
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:80
889
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:80
890
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:80
891
- #: src/Settings.php:80
 
 
 
 
 
 
 
 
 
 
 
 
 
 
892
  msgctxt "oss"
893
  msgid "Are you sure? Please backup your tax rates before proceeding."
894
  msgstr "Bist du sicher? Bitte erstelle vorab ein Backup deiner Steuersätze."
895
 
896
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:80
897
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:80
898
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:80
899
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:80
900
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:80
901
- #: src/Settings.php:80
902
  msgctxt "oss"
903
  msgid "End OSS participation"
904
  msgstr "OSS Teilnahme beenden"
905
 
906
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:80
907
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:80
908
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:80
909
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:80
910
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:80
911
- #: src/Settings.php:80
912
  msgctxt "oss"
913
  msgid "Start OSS participation"
914
  msgstr "OSS Teilnahme starten"
915
 
916
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:81
917
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:81
918
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:81
919
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:81
920
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:81
921
- #: src/Settings.php:81
922
  msgctxt "oss"
923
  msgid "learn more"
924
  msgstr "Mehr erfahren"
925
 
926
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:83
927
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:83
928
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:83
929
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:83
930
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:83
931
- #: src/Settings.php:83
932
  msgctxt "oss"
933
  msgid ""
934
  "Use this option to automatically adjust tax-related options in WooCommerce. "
@@ -939,74 +525,45 @@ msgstr ""
939
  "anpassen zu lassen. Achtung: Diese Option löscht deine aktuellen Steuersätze "
940
  "und fügt neue Steuersätze basierend auf deinem OSS Status hinzu."
941
 
942
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:105
943
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:105
944
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:105
945
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:105
946
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:105
947
- #: src/Settings.php:105
948
  msgctxt "oss"
949
  msgid "See status"
950
  msgstr "Status ansehen"
951
 
952
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:105
953
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:105
954
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:105
955
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:105
956
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:105
957
- #: src/Settings.php:105
958
  msgctxt "oss"
959
  msgid "Start initial report"
960
  msgstr "Initialen Bericht erstellen"
961
 
962
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:106
963
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:106
964
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:106
965
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:106
966
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:106
967
- #: src/Settings.php:106
968
  #, php-format
969
  msgctxt "oss"
970
  msgid "Report not yet completed. %s"
971
  msgstr "Bericht noch nicht abgeschlossen. %s"
972
 
973
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:106
974
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:106
975
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:106
976
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:106
977
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:106
978
- #: src/Settings.php:106
979
  #, php-format
980
  msgctxt "oss"
981
  msgid "Report not yet started. %s"
982
  msgstr "Bericht noch nicht gestartet. %s"
983
 
984
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:124
985
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:124
986
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:124
987
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:124
988
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:124
989
- #: src/Settings.php:124
990
  msgctxt "oss-amounts"
991
  msgid "of"
992
  msgstr "von"
993
 
994
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:124
995
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:124
996
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:124
997
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:124
998
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:124
999
- #: src/Settings.php:124
 
1000
  msgctxt "oss"
1001
  msgid "see details"
1002
  msgstr "Details ansehen"
1003
 
1004
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:125
1005
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:125
1006
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:125
1007
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:125
1008
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:125
1009
- #: src/Settings.php:125
1010
  #, php-format
1011
  msgctxt "oss"
1012
  msgid ""
@@ -1021,157 +578,79 @@ msgstr ""
1021
  "oder bereits überschritten wurde. <a href=\"%s\">Erfahre mehr</a> über die "
1022
  "Berechnung."
1023
 
1024
- #: build/one-stop-shop-woocommerce-git/src/SettingsPage.php:23
1025
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/SettingsPage.php:23
1026
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/SettingsPage.php:23
1027
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/SettingsPage.php:23
1028
- #: build/one-stop-shop-woocommerce-svn/trunk/src/SettingsPage.php:23
1029
  #: src/SettingsPage.php:23
1030
  msgctxt "oss"
1031
  msgid "Learn More"
1032
  msgstr "Mehr erfahren"
1033
 
1034
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:167
1035
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:225
1036
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:167
1037
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:225
1038
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:167
1039
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:225
1040
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:167
1041
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:225
1042
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:167
1043
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:225 src/Tax.php:168
1044
- #: src/Tax.php:226
1045
  #, php-format
1046
  msgctxt "oss"
1047
  msgid "Tax class (%s)"
1048
  msgstr "Steuerklasse (%s)"
1049
 
1050
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:168
1051
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:168
1052
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:168
1053
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:168
1054
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:168 src/Tax.php:169
1055
  msgctxt "oss"
1056
  msgid "Same as parent"
1057
  msgstr "Gleiche wie übergeordnet"
1058
 
1059
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:170
1060
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:203
1061
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:227
1062
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:261
1063
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:170
1064
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:203
1065
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:227
1066
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:261
1067
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:170
1068
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:203
1069
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:227
1070
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:261
1071
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:170
1072
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:203
1073
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:227
1074
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:261
1075
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:170
1076
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:203
1077
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:227
1078
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:261 src/Tax.php:171
1079
- #: src/Tax.php:204 src/Tax.php:228 src/Tax.php:262
1080
  msgctxt "oss"
1081
  msgid "remove"
1082
  msgstr "Löschen"
1083
 
1084
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:180
1085
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:238
1086
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:180
1087
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:238
1088
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:180
1089
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:238
1090
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:180
1091
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:238
1092
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:180
1093
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:238 src/Tax.php:181
1094
- #: src/Tax.php:239
1095
  msgctxt "oss"
1096
  msgid "Add country specific tax class (OSS)"
1097
  msgstr "Länderspezifische Steuerklasse hinzufügen (OSS)"
1098
 
1099
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:187
1100
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:245
1101
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:187
1102
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:245
1103
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:187
1104
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:245
1105
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:187
1106
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:245
1107
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:187
1108
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:245 src/Tax.php:188
1109
- #: src/Tax.php:246
1110
  msgctxt "oss"
1111
  msgid "Select country"
1112
  msgstr "Land auswählen"
1113
 
1114
  #. translators: Do not translate
1115
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:333
1116
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:412
1117
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:333
1118
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:406
1119
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:333
1120
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:412
1121
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:333
1122
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:412
1123
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:333
1124
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:412 src/Tax.php:341
1125
- #: src/Tax.php:420
1126
  msgid "Reduced rate"
1127
  msgstr ""
1128
 
1129
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:336
1130
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:404
1131
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:336
1132
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:402
1133
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:336
1134
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:404
1135
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:336
1136
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:404
1137
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:336
1138
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:404 src/Tax.php:344
1139
- #: src/Tax.php:412
1140
  msgctxt "oss"
1141
  msgid "Greater reduced rate"
1142
  msgstr "Zusätzlicher reduzierter Preis"
1143
 
1144
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:339
1145
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:408
1146
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:339
1147
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:404
1148
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:339
1149
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:408
1150
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:339
1151
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:408
1152
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:339
1153
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:408 src/Tax.php:347
1154
- #: src/Tax.php:416
1155
  msgctxt "oss"
1156
  msgid "Super reduced rate"
1157
  msgstr "Stark reduzierter Preis"
1158
 
1159
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:567
1160
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:561
1161
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:567
1162
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:567
1163
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:567 src/Tax.php:607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1164
  #, php-format
1165
  msgctxt "oss-tax-rate-import"
1166
- msgid "VAT %s"
1167
- msgstr "MwSt. %s"
1168
 
1169
  #. translators: %s: Customer billing full name
1170
- #: build/one-stop-shop-woocommerce-git/templates/emails/admin-delivery-threshold.php:19
1171
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/templates/emails/admin-delivery-threshold.php:19
1172
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/templates/emails/admin-delivery-threshold.php:19
1173
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/templates/emails/admin-delivery-threshold.php:19
1174
- #: build/one-stop-shop-woocommerce-svn/trunk/templates/emails/admin-delivery-threshold.php:19
1175
  #: templates/emails/admin-delivery-threshold.php:19
1176
  #, php-format
1177
  msgctxt "oss"
@@ -1183,41 +662,21 @@ msgstr ""
1183
  "tätig. Besuche die <a href=\"%2$s\">OSS Einstellungen</a> um Details zu "
1184
  "erfahren."
1185
 
1186
- #: build/one-stop-shop-woocommerce-git/templates/emails/admin-delivery-threshold.php:21
1187
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/templates/emails/admin-delivery-threshold.php:21
1188
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/templates/emails/admin-delivery-threshold.php:21
1189
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/templates/emails/admin-delivery-threshold.php:21
1190
- #: build/one-stop-shop-woocommerce-svn/trunk/templates/emails/admin-delivery-threshold.php:21
1191
  #: templates/emails/admin-delivery-threshold.php:21
1192
  msgctxt "oss"
1193
  msgid "Report Details"
1194
  msgstr "Details des Berichts"
1195
 
1196
- #: build/one-stop-shop-woocommerce-git/templates/emails/admin-delivery-threshold.php:24
1197
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/templates/emails/admin-delivery-threshold.php:24
1198
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/templates/emails/admin-delivery-threshold.php:24
1199
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/templates/emails/admin-delivery-threshold.php:24
1200
- #: build/one-stop-shop-woocommerce-svn/trunk/templates/emails/admin-delivery-threshold.php:24
1201
  #: templates/emails/admin-delivery-threshold.php:24
1202
  msgctxt "oss"
1203
  msgid "Period"
1204
  msgstr "Periode"
1205
 
1206
- #: build/one-stop-shop-woocommerce-git/templates/emails/admin-delivery-threshold.php:29
1207
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/templates/emails/admin-delivery-threshold.php:29
1208
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/templates/emails/admin-delivery-threshold.php:29
1209
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/templates/emails/admin-delivery-threshold.php:29
1210
- #: build/one-stop-shop-woocommerce-svn/trunk/templates/emails/admin-delivery-threshold.php:29
1211
  #: templates/emails/admin-delivery-threshold.php:29
1212
  msgctxt "oss"
1213
  msgid "See report details"
1214
  msgstr "Details des Berichts abrufen"
1215
 
1216
- #: build/one-stop-shop-woocommerce-git/templates/emails/plain/admin-delivery-threshold.php:17
1217
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/templates/emails/plain/admin-delivery-threshold.php:17
1218
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/templates/emails/plain/admin-delivery-threshold.php:17
1219
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/templates/emails/plain/admin-delivery-threshold.php:17
1220
- #: build/one-stop-shop-woocommerce-svn/trunk/templates/emails/plain/admin-delivery-threshold.php:17
1221
  #: templates/emails/plain/admin-delivery-threshold.php:17
1222
  #, php-format
1223
  msgctxt "oss"
@@ -1228,37 +687,6 @@ msgstr ""
1228
  "Deine OSS Lieferschwelle von %1$s wurde erreicht. Bitte werde umgehend "
1229
  "tätig. Besuche die OSS Einstellungen (%2$s) um Details zu erfahren."
1230
 
1231
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:19
1232
- msgctxt "oss"
1233
- msgid ""
1234
- "Find useful options regarding the <a href=\"https://ec.europa.eu/"
1235
- "taxation_customs/business/vat/modernising-vat-cross-border-ecommerce_en\" "
1236
- "target=\"_blank\" rel=\"noopener\">One Stop Shop procedure</a> here."
1237
- msgstr ""
1238
- "Finde hier nützliche Optionen zum <a href=\"https://ec.europa.eu/"
1239
- "taxation_customs/business/vat/modernising-vat-cross-border-ecommerce_de\" "
1240
- "target=\"_blank\" rel=\"noopener\">One Stop Shop Verfahren</a>."
1241
-
1242
- #: src/Admin.php:54 src/Admin.php:55
1243
- msgctxt "oss"
1244
- msgid "Refresh VAT rates (OSS)"
1245
- msgstr "EU Steuersätze erneuern (OSS)"
1246
-
1247
- #: src/Admin.php:59
1248
- msgctxt "oss"
1249
- msgid "Note:"
1250
- msgstr "Hinweis:"
1251
-
1252
- #: src/Admin.php:60
1253
- #, php-format
1254
- msgctxt "oss"
1255
- msgid ""
1256
- "This option will delete all of your current EU VAT rates and re-import them "
1257
- "based on your current <a href=\"%s\">OSS status</a>."
1258
- msgstr ""
1259
- "Diese Option löscht alle deine aktuellen EU Steuersätze und importiert sie "
1260
- "anschließend auf Basis deines <a href=\"%s\">OSS Status</a> neu."
1261
-
1262
  #. Plugin Name of the plugin/theme
1263
  msgid "One Stop Shop for WooCommerce"
1264
  msgstr "One Stop Shop für WooCommerce"
@@ -1278,3 +706,34 @@ msgstr "vendidero"
1278
  #. Author URI of the plugin/theme
1279
  msgid "https://vendidero.de"
1280
  msgstr "https://vendidero.de"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: One Stop Shop for WooCommerce\n"
4
+ "POT-Creation-Date: 2021-07-08 14:08+0200\n"
5
+ "PO-Revision-Date: 2021-07-08 14:08+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: de_DE\n"
22
  "X-Poedit-SearchPathExcluded-0: *.min.js\n"
23
  "X-Poedit-SearchPathExcluded-1: vendor\n"
24
  "X-Poedit-SearchPathExcluded-2: node_modules\n"
25
+ "X-Poedit-SearchPathExcluded-3: build\n"
26
 
27
  #. translators: 1: composer command. 2: plugin directory
28
+ #: one-stop-shop-woocommerce.php:44 one-stop-shop-woocommerce.php:62
 
 
 
 
 
 
 
 
 
 
29
  #, php-format
30
  msgctxt "oss"
31
  msgid ""
35
  "Deine Installation des One Stop Shop Feature Plugins ist nicht komplett. "
36
  "Bitte führe %1$s innerhalb des %2$s Verzeichnisses aus."
37
 
38
+ #: src/Admin.php:76 src/Admin.php:77
39
+ msgctxt "oss"
40
+ msgid "Refresh VAT rates (OSS)"
41
+ msgstr "EU Steuersätze erneuern (OSS)"
42
+
43
+ #: src/Admin.php:81
44
+ msgctxt "oss"
45
+ msgid "Note:"
46
+ msgstr "Hinweis:"
47
+
48
+ #: src/Admin.php:82
49
+ #, php-format
50
+ msgctxt "oss"
51
+ msgid ""
52
+ "This option will delete all of your current EU VAT rates and re-import them "
53
+ "based on your current <a href=\"%s\">OSS status</a>."
54
+ msgstr ""
55
+ "Diese Option löscht alle deine aktuellen EU Steuersätze und importiert sie "
56
+ "anschließend auf Basis deines <a href=\"%s\">OSS Status</a> neu."
57
+
58
+ #: src/Admin.php:212
59
  #, php-format
60
  msgctxt "oss"
61
  msgid ""
67
  "Jahr überschritten. Bitte prüfe die <a href=\"%s\" target=\"_blank\">Details "
68
  "des Berichts</a> und unternimm weitere Schritte."
69
 
70
+ #: src/Admin.php:216
 
 
 
 
 
71
  msgctxt "oss"
72
  msgid "Delivery threshold reached (OSS)"
73
  msgstr "Lieferschwelle erreicht (OSS)"
74
 
75
+ #: src/Admin.php:432 src/SettingsPage.php:17
 
 
 
 
 
 
 
 
 
 
76
  msgctxt "oss"
77
  msgid "OSS"
78
  msgstr "OSS"
79
 
80
+ #: src/Admin.php:432 src/Admin.php:550 src/SettingsPage.php:23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
  msgctxt "oss"
82
  msgid "One Stop Shop"
83
  msgstr "One Stop Shop"
84
 
85
+ #: src/Admin.php:453 src/Package.php:264
 
 
 
 
 
 
 
 
 
 
86
  #, php-format
87
  msgctxt "oss"
88
  msgid "Q%1$s/%2$s"
89
  msgstr "Q%1$s/%2$s"
90
 
91
+ #: src/Admin.php:462 src/Package.php:269
 
 
 
 
 
 
 
 
 
 
92
  #, php-format
93
  msgctxt "oss"
94
  msgid "%1$s/%2$s"
95
  msgstr "%1$s/%2$s"
96
 
97
+ #: src/Admin.php:470
 
 
 
 
 
98
  msgctxt "oss"
99
  msgid "New Report"
100
  msgstr "Neuer Bericht"
101
 
102
+ #: src/Admin.php:477
 
 
 
 
 
103
  msgctxt "oss"
104
  msgid "Type"
105
  msgstr "Typ"
106
 
107
+ #: src/Admin.php:489
108
+ msgctxt "oss"
 
 
 
 
 
109
  msgid "Year"
110
  msgstr "Jahr"
111
 
112
+ #: src/Admin.php:501
113
+ msgctxt "oss"
 
 
 
 
 
114
  msgid "Quarter"
115
  msgstr "Quartal"
116
 
117
+ #: src/Admin.php:513
118
+ msgctxt "oss"
 
 
 
 
 
119
  msgid "Month"
120
  msgstr "Monat"
121
 
122
+ #: src/Admin.php:525
123
+ msgctxt "oss"
 
 
 
 
 
124
  msgid "Date range"
125
  msgstr "Zeitraum"
126
 
127
+ #: src/Admin.php:537
 
 
 
 
 
128
  msgctxt "oss"
129
  msgid "Start report"
130
  msgstr "Bericht starten"
131
 
132
+ #: src/Admin.php:551
 
 
 
 
 
133
  msgctxt "oss"
134
  msgid "New report"
135
  msgstr "Neuer Bericht"
136
 
137
+ #: src/Admin.php:593
 
 
 
 
 
138
  msgctxt "oss"
139
  msgid "View"
140
  msgstr "Ansehen"
141
 
142
+ #: src/Admin.php:597
 
 
 
 
 
143
  msgctxt "oss"
144
  msgid "Export"
145
  msgstr "Exportieren"
146
 
147
+ #: src/Admin.php:601
 
 
 
 
 
148
  msgctxt "oss"
149
  msgid "Refresh"
150
  msgstr "Aktualisieren"
151
 
152
+ #: src/Admin.php:605
 
 
 
 
 
153
  msgctxt "oss"
154
  msgid "Delete"
155
  msgstr "Löschen"
156
 
157
+ #: src/Admin.php:611
 
 
 
 
 
158
  msgctxt "oss"
159
  msgid "Cancel"
160
  msgstr "Abbrechen"
161
 
162
+ #: src/Admin.php:640
 
 
 
 
 
163
  msgctxt "oss"
164
  msgid "Country"
165
  msgstr "Land"
166
 
167
+ #: src/Admin.php:641
 
 
 
 
 
168
  msgctxt "oss"
169
  msgid "Tax Rate"
170
  msgstr "Steuersatz"
171
 
172
+ #: src/Admin.php:642
 
 
 
 
 
173
  msgctxt "oss"
174
  msgid "Net Total"
175
  msgstr "Nettobetrag"
176
 
177
+ #: src/Admin.php:643
 
 
 
 
 
178
  msgctxt "oss"
179
  msgid "Tax Total"
180
  msgstr "Steuerbertrag"
181
 
182
+ #: src/Admin.php:674
 
 
 
 
 
183
  #, php-format
184
  msgctxt "oss"
185
  msgid "%1$s %%"
186
  msgstr "%1$s %%"
187
 
188
+ #: src/Admin.php:686
 
 
 
 
 
189
  #, php-format
190
  msgctxt "oss"
191
  msgid ""
195
  "Aktuell %1$s Bestellung verarbeitet. Nächster Durchlauf planmäßig am %2$s. "
196
  "<a href=\"%3$s\">Offene Aktionen finden</a>"
197
 
198
+ #: src/Admin.php:686
 
 
 
 
 
199
  msgctxt "oss"
200
  msgid "Not yet known"
201
  msgstr "Noch nicht bekannt"
202
 
203
+ #: src/Admin.php:717 src/ReportTable.php:39 src/SettingsPage.php:23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
204
  msgctxt "oss"
205
  msgid "Reports"
206
  msgstr "Berichte"
207
 
 
 
 
 
 
208
  #: src/AdminNote.php:39
209
  msgctxt "oss"
210
  msgid "Dismiss"
211
  msgstr "Ausblenden"
212
 
213
+ #: src/AsyncReportGenerator.php:244
 
 
 
 
 
214
  msgctxt "oss"
215
  msgid "No orders found."
216
  msgstr "Keine Bestellungen gefunden."
217
 
 
 
 
 
 
218
  #: src/CSVExporter.php:52
219
  msgctxt "oss"
220
  msgid "Country code"
221
  msgstr "Land des Verbrauchs"
222
 
 
 
 
 
 
223
  #: src/CSVExporter.php:53
224
  msgctxt "oss"
225
  msgid "Tax rate"
226
  msgstr "Umsatzsteuersatz"
227
 
 
 
 
 
 
228
  #: src/CSVExporter.php:54
229
  msgctxt "oss"
230
  msgid "Taxable base"
231
  msgstr "Nettobetrag"
232
 
 
 
 
 
 
233
  #: src/CSVExporter.php:55
234
  msgctxt "oss"
235
  msgid "Amount"
236
  msgstr "Umsatzsteuerbetrag"
237
 
 
 
 
 
 
238
  #: src/DeliveryThresholdEmailNotification.php:19
239
  msgctxt "oss"
240
  msgid "OSS Delivery Threshold Notification"
241
  msgstr "OSS Lieferschwelle Benachrichtigung"
242
 
 
 
 
 
 
243
  #: src/DeliveryThresholdEmailNotification.php:20
244
  msgctxt "oss"
245
  msgid ""
249
  "Diese E-Mail benachrichtigt den Shopbetreiber über eine in Kürze anstehende "
250
  "Überschreitung der Lieferschwelle (OSS)."
251
 
 
 
 
 
 
252
  #: src/DeliveryThresholdEmailNotification.php:38
253
  msgctxt "oss"
254
  msgid "[{site_title}]: OSS delivery threshold reached"
255
  msgstr "[{site_title}]: OSS Lieferschwelle erreicht"
256
 
 
 
 
 
 
257
  #: src/DeliveryThresholdEmailNotification.php:48
258
  msgctxt "oss"
259
  msgid "OSS delivery threshold reached"
260
  msgstr "OSS Lieferschwelle erreicht"
261
 
 
 
 
 
 
262
  #: src/DeliveryThresholdWarning.php:13
263
  msgctxt "oss"
264
  msgid "See details"
265
  msgstr "Details ansehen"
266
 
267
+ #: src/Package.php:80
 
 
 
 
 
268
  msgctxt "oss"
269
  msgid ""
270
  "To use the OSS for WooCommerce plugin please make sure that WooCommerce is "
273
  "Um das OSS für WooCommerce Plugin nutzen zu können muss WooCommerce "
274
  "installiert und aktiviert sein."
275
 
276
+ #: src/Package.php:249 src/ReportTable.php:40
 
 
 
 
 
 
 
 
 
 
277
  msgctxt "oss"
278
  msgid "Report"
279
  msgstr "Bericht"
280
 
281
+ #: src/Package.php:273
 
 
 
 
 
282
  #, php-format
283
  msgctxt "oss"
284
  msgid "%1$s"
285
  msgstr "%1$s"
286
 
287
+ #: src/Package.php:278
 
 
 
 
 
288
  #, php-format
289
  msgctxt "oss"
290
  msgid "%1$s - %2$s"
291
  msgstr "%1$s - %2$s"
292
 
293
+ #: src/Package.php:283
 
 
 
 
 
294
  #, php-format
295
  msgctxt "oss"
296
  msgid "Observer %1$s"
297
  msgstr "Beobachter %1$s"
298
 
299
+ #: src/Package.php:482
 
 
 
 
 
300
  msgctxt "oss"
301
  msgid "Quarterly"
302
  msgstr "Quartalsweise"
303
 
304
+ #: src/Package.php:483
 
 
 
 
 
305
  msgctxt "oss"
306
  msgid "Yearly"
307
  msgstr "Jährlich"
308
 
309
+ #: src/Package.php:484
 
 
 
 
 
310
  msgctxt "oss"
311
  msgid "Monthly"
312
  msgstr "Monatlich"
313
 
314
+ #: src/Package.php:485
 
 
 
 
 
315
  msgctxt "oss"
316
  msgid "Custom"
317
  msgstr "Individuell"
318
 
319
+ #: src/Package.php:489
 
 
 
 
 
320
  msgctxt "oss"
321
  msgid "Observer"
322
  msgstr "Beobachter"
323
 
324
+ #: src/Package.php:503
 
 
 
 
 
325
  msgctxt "oss"
326
  msgid "Pending"
327
  msgstr "In Bearbeitung"
328
 
329
+ #: src/Package.php:504
 
 
 
 
 
330
  msgctxt "oss"
331
  msgid "Completed"
332
  msgstr "Fertiggestellt"
333
 
334
+ #: src/Package.php:505
 
 
 
 
 
335
  msgctxt "oss"
336
  msgid "Failed"
337
  msgstr "Fehlgeschlagen"
338
 
 
 
 
 
 
339
  #: src/ReportTable.php:121
340
  #, php-format
341
  msgctxt "oss"
344
  msgstr[0] "%d Bericht gelöscht."
345
  msgstr[1] "%d Berichte gelöscht."
346
 
 
 
 
 
 
347
  #: src/ReportTable.php:184
348
  msgctxt "oss"
349
  msgid "No reports found"
350
  msgstr "Keine Berichte gefunden"
351
 
 
 
 
 
 
352
  #: src/ReportTable.php:225
353
  #, php-format
354
  msgctxt "oss"
357
  msgstr[0] "Alle <span class=\"count\">(%s)</span>"
358
  msgstr[1] "Alle <span class=\"count\">(%s)</span>"
359
 
 
 
 
 
 
360
  #: src/ReportTable.php:250
361
  #, php-format
362
  msgctxt "oss"
365
  msgstr[0] " <span class=\"count\">(%s)</span>"
366
  msgstr[1] " <span class=\"count\">(%s)</span>"
367
 
 
 
 
 
 
368
  #: src/ReportTable.php:323
369
  msgctxt "oss"
370
  msgid "Filter"
371
  msgstr "Filtern"
372
 
 
 
 
 
 
373
  #: src/ReportTable.php:350
374
  msgctxt "oss"
375
  msgid "Title"
376
  msgstr "Titel"
377
 
 
 
 
 
 
378
  #: src/ReportTable.php:351
379
  msgctxt "oss"
380
  msgid "Start"
381
  msgstr "Start"
382
 
 
 
 
 
 
383
  #: src/ReportTable.php:352
384
  msgctxt "oss"
385
  msgid "End"
386
  msgstr "Ende"
387
 
 
 
 
 
 
 
 
 
 
 
388
  #: src/ReportTable.php:353 templates/emails/admin-delivery-threshold.php:25
389
  msgctxt "oss"
390
  msgid "Net total"
391
  msgstr "Nettobetrag"
392
 
 
 
 
 
 
 
 
 
 
 
393
  #: src/ReportTable.php:354 templates/emails/admin-delivery-threshold.php:26
394
  msgctxt "oss"
395
  msgid "Tax total"
396
  msgstr "Steuerbertrag"
397
 
 
 
 
 
 
398
  #: src/ReportTable.php:355
399
  msgctxt "oss"
400
  msgid "Status"
401
  msgstr "Status"
402
 
 
 
 
 
 
403
  #: src/ReportTable.php:356
404
  msgctxt "oss"
405
  msgid "Actions"
406
  msgstr "Aktionen"
407
 
 
 
 
 
 
408
  #: src/ReportTable.php:420
409
  #, php-format
410
  msgctxt "oss"
411
  msgid "Select %s"
412
  msgstr "%s auswählen"
413
 
 
 
 
 
 
414
  #: src/ReportTable.php:513
415
  msgctxt "oss"
416
  msgid "Delete Permanently"
417
  msgstr "Unwiderruflich löschen"
418
 
 
 
 
 
 
419
  #: src/Settings.php:14
420
  msgctxt "oss"
421
  msgid "General"
422
  msgstr "Allgemein"
423
 
 
 
 
 
424
  #: src/Settings.php:19
425
  msgctxt "oss"
426
  msgid ""
432
  "taxation_customs/business/vat/oss_de\" target=\"_blank\" rel=\"noopener"
433
  "\">One Stop Shop Verfahren</a>."
434
 
 
 
 
 
 
435
  #: src/Settings.php:31
436
  msgctxt "oss"
437
  msgid "OSS status"
438
  msgstr "OSS Status"
439
 
 
 
 
 
 
440
  #: src/Settings.php:32
441
  msgctxt "oss"
442
  msgid "Yes, I'm currently participating in the OSS procedure."
443
  msgstr "Ja, ich nehme aktuell am One Stop Shop Verfahren teil."
444
 
 
 
 
 
 
445
  #: src/Settings.php:39
446
  msgctxt "oss"
447
  msgid "Observation"
448
  msgstr "Überwachung"
449
 
 
 
 
 
 
450
  #: src/Settings.php:40
451
  msgctxt "oss"
452
  msgid "Automatically observe the delivery threshold of the current year."
453
  msgstr "Überwache die Lieferschwelle des aktuellen Jahres automatisch."
454
 
 
 
 
 
 
455
  #: src/Settings.php:40
456
  msgctxt "oss"
457
  msgid ""
465
  "nachberechnet wird. Der Bericht wird nur für die Tage nachberechnet, für die "
466
  "aktuell noch keine Überwachung stattfindet."
467
 
 
 
 
 
 
468
  #: src/Settings.php:50
469
  msgctxt "oss"
470
  msgid "Delivery threshold"
471
  msgstr "Lieferschwelle"
472
 
 
 
 
 
 
473
  #: src/Settings.php:60
474
  msgctxt "oss"
475
  msgid "Participation"
476
  msgstr "Teilnahme"
477
 
478
+ #: src/Settings.php:70
479
+ msgctxt "oss"
480
+ msgid "Fixed gross prices"
481
+ msgstr "Feste Bruttopreise"
482
+
483
+ #: src/Settings.php:71
484
+ msgctxt "oss"
485
+ msgid "Apply the same gross price regardless of the tax rate."
486
+ msgstr "Verwende den Bruttopreis unabhängig vom Steuersatz."
487
+
488
+ #: src/Settings.php:71
489
+ msgctxt "oss"
490
+ msgid ""
491
+ "This option will make sure that your customers pay the same price no matter "
492
+ "the tax rate (based on the country chosen) to be applied."
493
+ msgstr ""
494
+ "Diese Option bewirkt, dass Kunden, unabhängig vom Land und damit vom "
495
+ "Steuersatz den selben Bruttopreis bezahlen."
496
+
497
+ #: src/Settings.php:92
498
  msgctxt "oss"
499
  msgid "Are you sure? Please backup your tax rates before proceeding."
500
  msgstr "Bist du sicher? Bitte erstelle vorab ein Backup deiner Steuersätze."
501
 
502
+ #: src/Settings.php:92
 
 
 
 
 
503
  msgctxt "oss"
504
  msgid "End OSS participation"
505
  msgstr "OSS Teilnahme beenden"
506
 
507
+ #: src/Settings.php:92
 
 
 
 
 
508
  msgctxt "oss"
509
  msgid "Start OSS participation"
510
  msgstr "OSS Teilnahme starten"
511
 
512
+ #: src/Settings.php:93
 
 
 
 
 
513
  msgctxt "oss"
514
  msgid "learn more"
515
  msgstr "Mehr erfahren"
516
 
517
+ #: src/Settings.php:95
 
 
 
 
 
518
  msgctxt "oss"
519
  msgid ""
520
  "Use this option to automatically adjust tax-related options in WooCommerce. "
525
  "anpassen zu lassen. Achtung: Diese Option löscht deine aktuellen Steuersätze "
526
  "und fügt neue Steuersätze basierend auf deinem OSS Status hinzu."
527
 
528
+ #: src/Settings.php:127
 
 
 
 
 
529
  msgctxt "oss"
530
  msgid "See status"
531
  msgstr "Status ansehen"
532
 
533
+ #: src/Settings.php:127
 
 
 
 
 
534
  msgctxt "oss"
535
  msgid "Start initial report"
536
  msgstr "Initialen Bericht erstellen"
537
 
538
+ #: src/Settings.php:128
 
 
 
 
 
539
  #, php-format
540
  msgctxt "oss"
541
  msgid "Report not yet completed. %s"
542
  msgstr "Bericht noch nicht abgeschlossen. %s"
543
 
544
+ #: src/Settings.php:128
 
 
 
 
 
545
  #, php-format
546
  msgctxt "oss"
547
  msgid "Report not yet started. %s"
548
  msgstr "Bericht noch nicht gestartet. %s"
549
 
550
+ #: src/Settings.php:146
 
 
 
 
 
551
  msgctxt "oss-amounts"
552
  msgid "of"
553
  msgstr "von"
554
 
555
+ #: src/Settings.php:146
556
+ #, php-format
557
+ msgctxt "oss"
558
+ msgid "As of: %s"
559
+ msgstr "Stand: %s"
560
+
561
+ #: src/Settings.php:146
562
  msgctxt "oss"
563
  msgid "see details"
564
  msgstr "Details ansehen"
565
 
566
+ #: src/Settings.php:147
 
 
 
 
 
567
  #, php-format
568
  msgctxt "oss"
569
  msgid ""
578
  "oder bereits überschritten wurde. <a href=\"%s\">Erfahre mehr</a> über die "
579
  "Berechnung."
580
 
 
 
 
 
 
581
  #: src/SettingsPage.php:23
582
  msgctxt "oss"
583
  msgid "Learn More"
584
  msgstr "Mehr erfahren"
585
 
586
+ #: src/Tax.php:278 src/Tax.php:336
 
 
 
 
 
 
 
 
 
 
587
  #, php-format
588
  msgctxt "oss"
589
  msgid "Tax class (%s)"
590
  msgstr "Steuerklasse (%s)"
591
 
592
+ #: src/Tax.php:279
 
 
 
 
593
  msgctxt "oss"
594
  msgid "Same as parent"
595
  msgstr "Gleiche wie übergeordnet"
596
 
597
+ #: src/Tax.php:281 src/Tax.php:314 src/Tax.php:338 src/Tax.php:372
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
598
  msgctxt "oss"
599
  msgid "remove"
600
  msgstr "Löschen"
601
 
602
+ #: src/Tax.php:291 src/Tax.php:349
 
 
 
 
 
 
 
 
 
 
603
  msgctxt "oss"
604
  msgid "Add country specific tax class (OSS)"
605
  msgstr "Länderspezifische Steuerklasse hinzufügen (OSS)"
606
 
607
+ #: src/Tax.php:298 src/Tax.php:356
 
 
 
 
 
 
 
 
 
 
608
  msgctxt "oss"
609
  msgid "Select country"
610
  msgstr "Land auswählen"
611
 
612
  #. translators: Do not translate
613
+ #: src/Tax.php:452 src/Tax.php:579
 
 
 
 
 
 
 
 
 
 
614
  msgid "Reduced rate"
615
  msgstr ""
616
 
617
+ #: src/Tax.php:455 src/Tax.php:571
 
 
 
 
 
 
 
 
 
 
618
  msgctxt "oss"
619
  msgid "Greater reduced rate"
620
  msgstr "Zusätzlicher reduzierter Preis"
621
 
622
+ #: src/Tax.php:458 src/Tax.php:575
 
 
 
 
 
 
 
 
 
 
623
  msgctxt "oss"
624
  msgid "Super reduced rate"
625
  msgstr "Stark reduzierter Preis"
626
 
627
+ #: src/Tax.php:751
628
+ msgctxt "oss"
629
+ msgid "Madeira"
630
+ msgstr "Madeira"
631
+
632
+ #: src/Tax.php:758
633
+ msgctxt "oss"
634
+ msgid "Acores"
635
+ msgstr "Azoren"
636
+
637
+ #: src/Tax.php:794
638
+ msgctxt "oss"
639
+ msgid "Northern Ireland"
640
+ msgstr "Nordirland"
641
+
642
+ #: src/Tax.php:807
643
+ msgctxt "oss-tax-rate-import"
644
+ msgid "Exempt"
645
+ msgstr "Ausnahme"
646
+
647
+ #: src/Tax.php:873
648
  #, php-format
649
  msgctxt "oss-tax-rate-import"
650
+ msgid "VAT %1$s %% %2$s"
651
+ msgstr "MwSt. %1$s %% %2$s"
652
 
653
  #. translators: %s: Customer billing full name
 
 
 
 
 
654
  #: templates/emails/admin-delivery-threshold.php:19
655
  #, php-format
656
  msgctxt "oss"
662
  "tätig. Besuche die <a href=\"%2$s\">OSS Einstellungen</a> um Details zu "
663
  "erfahren."
664
 
 
 
 
 
 
665
  #: templates/emails/admin-delivery-threshold.php:21
666
  msgctxt "oss"
667
  msgid "Report Details"
668
  msgstr "Details des Berichts"
669
 
 
 
 
 
 
670
  #: templates/emails/admin-delivery-threshold.php:24
671
  msgctxt "oss"
672
  msgid "Period"
673
  msgstr "Periode"
674
 
 
 
 
 
 
675
  #: templates/emails/admin-delivery-threshold.php:29
676
  msgctxt "oss"
677
  msgid "See report details"
678
  msgstr "Details des Berichts abrufen"
679
 
 
 
 
 
 
680
  #: templates/emails/plain/admin-delivery-threshold.php:17
681
  #, php-format
682
  msgctxt "oss"
687
  "Deine OSS Lieferschwelle von %1$s wurde erreicht. Bitte werde umgehend "
688
  "tätig. Besuche die OSS Einstellungen (%2$s) um Details zu erfahren."
689
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
690
  #. Plugin Name of the plugin/theme
691
  msgid "One Stop Shop for WooCommerce"
692
  msgstr "One Stop Shop für WooCommerce"
706
  #. Author URI of the plugin/theme
707
  msgid "https://vendidero.de"
708
  msgstr "https://vendidero.de"
709
+
710
+ #~ msgctxt "storeabill-core"
711
+ #~ msgid "Year"
712
+ #~ msgstr "Jahr"
713
+
714
+ #~ msgctxt "storeabill-core"
715
+ #~ msgid "Quarter"
716
+ #~ msgstr "Quartal"
717
+
718
+ #~ msgctxt "storeabill-core"
719
+ #~ msgid "Month"
720
+ #~ msgstr "Monat"
721
+
722
+ #~ msgctxt "storeabill-core"
723
+ #~ msgid "Date range"
724
+ #~ msgstr "Zeitraum"
725
+
726
+ #~ msgctxt "oss"
727
+ #~ msgid ""
728
+ #~ "Find useful options regarding the <a href=\"https://ec.europa.eu/"
729
+ #~ "taxation_customs/business/vat/modernising-vat-cross-border-ecommerce_en\" "
730
+ #~ "target=\"_blank\" rel=\"noopener\">One Stop Shop procedure</a> here."
731
+ #~ msgstr ""
732
+ #~ "Finde hier nützliche Optionen zum <a href=\"https://ec.europa.eu/"
733
+ #~ "taxation_customs/business/vat/modernising-vat-cross-border-ecommerce_de\" "
734
+ #~ "target=\"_blank\" rel=\"noopener\">One Stop Shop Verfahren</a>."
735
+
736
+ #, php-format
737
+ #~ msgctxt "oss-tax-rate-import"
738
+ #~ msgid "VAT %s"
739
+ #~ msgstr "MwSt. %s"
packages/one-stop-shop-woocommerce/i18n/languages/oss-woocommerce-de_DE_formal.mo CHANGED
Binary file
packages/one-stop-shop-woocommerce/i18n/languages/oss-woocommerce-de_DE_formal.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: One Stop Shop for WooCommerce\n"
4
- "POT-Creation-Date: 2021-06-16 10:22+0200\n"
5
- "PO-Revision-Date: 2021-06-16 10:23+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: de_DE@formal\n"
@@ -22,19 +22,10 @@ msgstr ""
22
  "X-Poedit-SearchPathExcluded-0: *.min.js\n"
23
  "X-Poedit-SearchPathExcluded-1: vendor\n"
24
  "X-Poedit-SearchPathExcluded-2: node_modules\n"
 
25
 
26
  #. translators: 1: composer command. 2: plugin directory
27
- #: build/one-stop-shop-woocommerce-git/one-stop-shop-woocommerce.php:43
28
- #: build/one-stop-shop-woocommerce-git/one-stop-shop-woocommerce.php:61
29
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/one-stop-shop-woocommerce.php:43
30
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/one-stop-shop-woocommerce.php:61
31
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/one-stop-shop-woocommerce.php:43
32
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/one-stop-shop-woocommerce.php:61
33
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/one-stop-shop-woocommerce.php:43
34
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/one-stop-shop-woocommerce.php:61
35
- #: build/one-stop-shop-woocommerce-svn/trunk/one-stop-shop-woocommerce.php:43
36
- #: build/one-stop-shop-woocommerce-svn/trunk/one-stop-shop-woocommerce.php:61
37
- #: one-stop-shop-woocommerce.php:43 one-stop-shop-woocommerce.php:61
38
  #, php-format
39
  msgctxt "oss"
40
  msgid ""
@@ -44,12 +35,27 @@ msgstr ""
44
  "Ihre Installation des One Stop Shop Feature Plugins ist nicht komplett. "
45
  "Bitte führen Sie %1$s innerhalb des %2$s Verzeichnisses aus."
46
 
47
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:153
48
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:153
49
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:153
50
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:153
51
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:153
52
- #: src/Admin.php:178
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  #, php-format
54
  msgctxt "oss"
55
  msgid ""
@@ -61,270 +67,125 @@ msgstr ""
61
  "Jahr überschritten. Bitte prüfen Sie die <a href=\"%s\" target=\"_blank"
62
  "\">Details des Berichts</a> und unternehmen Sie weitere Schritte."
63
 
64
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:157
65
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:157
66
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:157
67
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:157
68
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:157
69
- #: src/Admin.php:182
70
  msgctxt "oss"
71
  msgid "Delivery threshold reached (OSS)"
72
  msgstr "Lieferschwelle erreicht (OSS)"
73
 
74
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:344
75
- #: build/one-stop-shop-woocommerce-git/src/SettingsPage.php:17
76
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:342
77
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/SettingsPage.php:17
78
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:344
79
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/SettingsPage.php:17
80
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:344
81
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/SettingsPage.php:17
82
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:344
83
- #: build/one-stop-shop-woocommerce-svn/trunk/src/SettingsPage.php:17
84
- #: src/Admin.php:369 src/SettingsPage.php:17
85
  msgctxt "oss"
86
  msgid "OSS"
87
  msgstr "OSS"
88
 
89
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:344
90
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:462
91
- #: build/one-stop-shop-woocommerce-git/src/SettingsPage.php:23
92
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:342
93
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:460
94
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/SettingsPage.php:23
95
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:344
96
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:462
97
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/SettingsPage.php:23
98
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:344
99
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:462
100
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/SettingsPage.php:23
101
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:344
102
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:462
103
- #: build/one-stop-shop-woocommerce-svn/trunk/src/SettingsPage.php:23
104
- #: src/Admin.php:369 src/Admin.php:487 src/SettingsPage.php:23
105
  msgctxt "oss"
106
  msgid "One Stop Shop"
107
  msgstr "One Stop Shop"
108
 
109
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:365
110
- #: build/one-stop-shop-woocommerce-git/src/Package.php:267
111
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:363
112
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:267
113
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:365
114
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:267
115
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:365
116
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:267
117
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:365
118
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:267
119
- #: src/Admin.php:390 src/Package.php:267
120
  #, php-format
121
  msgctxt "oss"
122
  msgid "Q%1$s/%2$s"
123
  msgstr "Q%1$s/%2$s"
124
 
125
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:374
126
- #: build/one-stop-shop-woocommerce-git/src/Package.php:272
127
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:372
128
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:272
129
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:374
130
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:272
131
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:374
132
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:272
133
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:374
134
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:272
135
- #: src/Admin.php:399 src/Package.php:272
136
  #, php-format
137
  msgctxt "oss"
138
  msgid "%1$s/%2$s"
139
  msgstr "%1$s/%2$s"
140
 
141
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:382
142
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:380
143
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:382
144
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:382
145
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:382
146
- #: src/Admin.php:407
147
  msgctxt "oss"
148
  msgid "New Report"
149
  msgstr "Neuer Bericht"
150
 
151
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:389
152
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:387
153
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:389
154
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:389
155
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:389
156
- #: src/Admin.php:414
157
  msgctxt "oss"
158
  msgid "Type"
159
  msgstr "Typ"
160
 
161
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:401
162
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:399
163
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:401
164
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:401
165
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:401
166
- #: src/Admin.php:426
167
- msgctxt "storeabill-core"
168
  msgid "Year"
169
  msgstr "Jahr"
170
 
171
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:413
172
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:411
173
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:413
174
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:413
175
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:413
176
- #: src/Admin.php:438
177
- msgctxt "storeabill-core"
178
  msgid "Quarter"
179
  msgstr "Quartal"
180
 
181
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:425
182
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:423
183
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:425
184
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:425
185
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:425
186
- #: src/Admin.php:450
187
- msgctxt "storeabill-core"
188
  msgid "Month"
189
  msgstr "Monat"
190
 
191
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:437
192
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:435
193
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:437
194
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:437
195
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:437
196
- #: src/Admin.php:462
197
- msgctxt "storeabill-core"
198
  msgid "Date range"
199
  msgstr "Zeitraum"
200
 
201
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:449
202
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:447
203
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:449
204
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:449
205
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:449
206
- #: src/Admin.php:474
207
  msgctxt "oss"
208
  msgid "Start report"
209
  msgstr "Bericht starten"
210
 
211
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:463
212
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:461
213
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:463
214
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:463
215
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:463
216
- #: src/Admin.php:488
217
  msgctxt "oss"
218
  msgid "New report"
219
  msgstr "Neuer Bericht"
220
 
221
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:505
222
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:503
223
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:505
224
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:505
225
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:505
226
- #: src/Admin.php:530
227
  msgctxt "oss"
228
  msgid "View"
229
  msgstr "Ansehen"
230
 
231
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:509
232
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:507
233
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:509
234
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:509
235
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:509
236
- #: src/Admin.php:534
237
  msgctxt "oss"
238
  msgid "Export"
239
  msgstr "Exportieren"
240
 
241
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:513
242
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:511
243
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:513
244
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:513
245
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:513
246
- #: src/Admin.php:538
247
  msgctxt "oss"
248
  msgid "Refresh"
249
  msgstr "Aktualisieren"
250
 
251
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:517
252
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:515
253
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:517
254
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:517
255
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:517
256
- #: src/Admin.php:542
257
  msgctxt "oss"
258
  msgid "Delete"
259
  msgstr "Löschen"
260
 
261
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:523
262
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:521
263
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:523
264
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:523
265
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:523
266
- #: src/Admin.php:548
267
  msgctxt "oss"
268
  msgid "Cancel"
269
  msgstr "Abbrechen"
270
 
271
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:552
272
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:550
273
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:552
274
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:552
275
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:552
276
- #: src/Admin.php:577
277
  msgctxt "oss"
278
  msgid "Country"
279
  msgstr "Land"
280
 
281
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:553
282
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:551
283
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:553
284
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:553
285
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:553
286
- #: src/Admin.php:578
287
  msgctxt "oss"
288
  msgid "Tax Rate"
289
  msgstr "Steuersatz"
290
 
291
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:554
292
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:552
293
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:554
294
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:554
295
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:554
296
- #: src/Admin.php:579
297
  msgctxt "oss"
298
  msgid "Net Total"
299
  msgstr "Nettobetrag"
300
 
301
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:555
302
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:553
303
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:555
304
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:555
305
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:555
306
- #: src/Admin.php:580
307
  msgctxt "oss"
308
  msgid "Tax Total"
309
  msgstr "Steuerbertrag"
310
 
311
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:586
312
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:584
313
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:586
314
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:586
315
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:586
316
- #: src/Admin.php:611
317
  #, php-format
318
  msgctxt "oss"
319
  msgid "%1$s %%"
320
  msgstr "%1$s %%"
321
 
322
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:598
323
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:596
324
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:598
325
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:598
326
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:598
327
- #: src/Admin.php:623
328
  #, php-format
329
  msgctxt "oss"
330
  msgid ""
@@ -334,111 +195,51 @@ msgstr ""
334
  "Aktuell %1$s Bestellung verarbeitet. Nächster Durchlauf planmäßig am %2$s. "
335
  "<a href=\"%3$s\">Offene Aktionen finden</a>"
336
 
337
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:598
338
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:596
339
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:598
340
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:598
341
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:598
342
- #: src/Admin.php:623
343
  msgctxt "oss"
344
  msgid "Not yet known"
345
  msgstr "Noch nicht bekannt"
346
 
347
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:629
348
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:39
349
- #: build/one-stop-shop-woocommerce-git/src/SettingsPage.php:23
350
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:627
351
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:39
352
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/SettingsPage.php:23
353
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:629
354
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:39
355
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/SettingsPage.php:23
356
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:629
357
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:39
358
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/SettingsPage.php:23
359
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:629
360
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:39
361
- #: build/one-stop-shop-woocommerce-svn/trunk/src/SettingsPage.php:23
362
- #: src/Admin.php:654 src/ReportTable.php:39 src/SettingsPage.php:23
363
  msgctxt "oss"
364
  msgid "Reports"
365
  msgstr "Berichte"
366
 
367
- #: build/one-stop-shop-woocommerce-git/src/AdminNote.php:39
368
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/AdminNote.php:39
369
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/AdminNote.php:39
370
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/AdminNote.php:39
371
- #: build/one-stop-shop-woocommerce-svn/trunk/src/AdminNote.php:39
372
  #: src/AdminNote.php:39
373
  msgctxt "oss"
374
  msgid "Dismiss"
375
  msgstr "Ausblenden"
376
 
377
- #: build/one-stop-shop-woocommerce-git/src/AsyncReportGenerator.php:172
378
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/AsyncReportGenerator.php:172
379
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/AsyncReportGenerator.php:172
380
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/AsyncReportGenerator.php:172
381
- #: build/one-stop-shop-woocommerce-svn/trunk/src/AsyncReportGenerator.php:172
382
- #: src/AsyncReportGenerator.php:195
383
  msgctxt "oss"
384
  msgid "No orders found."
385
  msgstr "Keine Bestellungen gefunden."
386
 
387
- #: build/one-stop-shop-woocommerce-git/src/CSVExporter.php:52
388
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/CSVExporter.php:52
389
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/CSVExporter.php:52
390
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/CSVExporter.php:52
391
- #: build/one-stop-shop-woocommerce-svn/trunk/src/CSVExporter.php:52
392
  #: src/CSVExporter.php:52
393
  msgctxt "oss"
394
  msgid "Country code"
395
  msgstr "Land des Verbrauchs"
396
 
397
- #: build/one-stop-shop-woocommerce-git/src/CSVExporter.php:53
398
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/CSVExporter.php:53
399
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/CSVExporter.php:53
400
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/CSVExporter.php:53
401
- #: build/one-stop-shop-woocommerce-svn/trunk/src/CSVExporter.php:53
402
  #: src/CSVExporter.php:53
403
  msgctxt "oss"
404
  msgid "Tax rate"
405
  msgstr "Umsatzsteuersatz"
406
 
407
- #: build/one-stop-shop-woocommerce-git/src/CSVExporter.php:54
408
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/CSVExporter.php:54
409
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/CSVExporter.php:54
410
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/CSVExporter.php:54
411
- #: build/one-stop-shop-woocommerce-svn/trunk/src/CSVExporter.php:54
412
  #: src/CSVExporter.php:54
413
  msgctxt "oss"
414
  msgid "Taxable base"
415
  msgstr "Nettobetrag"
416
 
417
- #: build/one-stop-shop-woocommerce-git/src/CSVExporter.php:55
418
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/CSVExporter.php:55
419
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/CSVExporter.php:55
420
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/CSVExporter.php:55
421
- #: build/one-stop-shop-woocommerce-svn/trunk/src/CSVExporter.php:55
422
  #: src/CSVExporter.php:55
423
  msgctxt "oss"
424
  msgid "Amount"
425
  msgstr "Umsatzsteuerbetrag"
426
 
427
- #: build/one-stop-shop-woocommerce-git/src/DeliveryThresholdEmailNotification.php:19
428
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/DeliveryThresholdEmailNotification.php:19
429
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/DeliveryThresholdEmailNotification.php:19
430
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/DeliveryThresholdEmailNotification.php:19
431
- #: build/one-stop-shop-woocommerce-svn/trunk/src/DeliveryThresholdEmailNotification.php:19
432
  #: src/DeliveryThresholdEmailNotification.php:19
433
  msgctxt "oss"
434
  msgid "OSS Delivery Threshold Notification"
435
  msgstr "OSS Lieferschwelle Benachrichtigung"
436
 
437
- #: build/one-stop-shop-woocommerce-git/src/DeliveryThresholdEmailNotification.php:20
438
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/DeliveryThresholdEmailNotification.php:20
439
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/DeliveryThresholdEmailNotification.php:20
440
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/DeliveryThresholdEmailNotification.php:20
441
- #: build/one-stop-shop-woocommerce-svn/trunk/src/DeliveryThresholdEmailNotification.php:20
442
  #: src/DeliveryThresholdEmailNotification.php:20
443
  msgctxt "oss"
444
  msgid ""
@@ -448,42 +249,22 @@ msgstr ""
448
  "Diese E-Mail benachrichtigt den Shopbetreiber über eine in Kürze anstehende "
449
  "Überschreitung der Lieferschwelle (OSS)."
450
 
451
- #: build/one-stop-shop-woocommerce-git/src/DeliveryThresholdEmailNotification.php:38
452
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/DeliveryThresholdEmailNotification.php:38
453
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/DeliveryThresholdEmailNotification.php:38
454
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/DeliveryThresholdEmailNotification.php:38
455
- #: build/one-stop-shop-woocommerce-svn/trunk/src/DeliveryThresholdEmailNotification.php:38
456
  #: src/DeliveryThresholdEmailNotification.php:38
457
  msgctxt "oss"
458
  msgid "[{site_title}]: OSS delivery threshold reached"
459
  msgstr "[{site_title}]: OSS Lieferschwelle erreicht"
460
 
461
- #: build/one-stop-shop-woocommerce-git/src/DeliveryThresholdEmailNotification.php:48
462
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/DeliveryThresholdEmailNotification.php:48
463
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/DeliveryThresholdEmailNotification.php:48
464
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/DeliveryThresholdEmailNotification.php:48
465
- #: build/one-stop-shop-woocommerce-svn/trunk/src/DeliveryThresholdEmailNotification.php:48
466
  #: src/DeliveryThresholdEmailNotification.php:48
467
  msgctxt "oss"
468
  msgid "OSS delivery threshold reached"
469
  msgstr "OSS Lieferschwelle erreicht"
470
 
471
- #: build/one-stop-shop-woocommerce-git/src/DeliveryThresholdWarning.php:13
472
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/DeliveryThresholdWarning.php:13
473
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/DeliveryThresholdWarning.php:13
474
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/DeliveryThresholdWarning.php:13
475
- #: build/one-stop-shop-woocommerce-svn/trunk/src/DeliveryThresholdWarning.php:13
476
  #: src/DeliveryThresholdWarning.php:13
477
  msgctxt "oss"
478
  msgid "See details"
479
  msgstr "Details ansehen"
480
 
481
- #: build/one-stop-shop-woocommerce-git/src/Package.php:83
482
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:83
483
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:83
484
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:83
485
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:83
486
- #: src/Package.php:83
487
  msgctxt "oss"
488
  msgid ""
489
  "To use the OSS for WooCommerce plugin please make sure that WooCommerce is "
@@ -492,139 +273,69 @@ msgstr ""
492
  "Um das OSS für WooCommerce Plugin nutzen zu können muss WooCommerce "
493
  "installiert und aktiviert sein."
494
 
495
- #: build/one-stop-shop-woocommerce-git/src/Package.php:252
496
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:40
497
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:252
498
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:40
499
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:252
500
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:40
501
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:252
502
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:40
503
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:252
504
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:40
505
- #: src/Package.php:252 src/ReportTable.php:40
506
  msgctxt "oss"
507
  msgid "Report"
508
  msgstr "Bericht"
509
 
510
- #: build/one-stop-shop-woocommerce-git/src/Package.php:276
511
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:276
512
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:276
513
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:276
514
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:276
515
- #: src/Package.php:276
516
  #, php-format
517
  msgctxt "oss"
518
  msgid "%1$s"
519
  msgstr "%1$s"
520
 
521
- #: build/one-stop-shop-woocommerce-git/src/Package.php:281
522
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:281
523
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:281
524
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:281
525
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:281
526
- #: src/Package.php:281
527
  #, php-format
528
  msgctxt "oss"
529
  msgid "%1$s - %2$s"
530
  msgstr "%1$s - %2$s"
531
 
532
- #: build/one-stop-shop-woocommerce-git/src/Package.php:286
533
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:286
534
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:286
535
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:286
536
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:286
537
- #: src/Package.php:286
538
  #, php-format
539
  msgctxt "oss"
540
  msgid "Observer %1$s"
541
  msgstr "Beobachter %1$s"
542
 
543
- #: build/one-stop-shop-woocommerce-git/src/Package.php:463
544
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:463
545
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:463
546
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:463
547
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:463
548
- #: src/Package.php:463
549
  msgctxt "oss"
550
  msgid "Quarterly"
551
  msgstr "Quartalsweise"
552
 
553
- #: build/one-stop-shop-woocommerce-git/src/Package.php:464
554
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:464
555
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:464
556
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:464
557
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:464
558
- #: src/Package.php:464
559
  msgctxt "oss"
560
  msgid "Yearly"
561
  msgstr "Jährlich"
562
 
563
- #: build/one-stop-shop-woocommerce-git/src/Package.php:465
564
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:465
565
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:465
566
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:465
567
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:465
568
- #: src/Package.php:465
569
  msgctxt "oss"
570
  msgid "Monthly"
571
  msgstr "Monatlich"
572
 
573
- #: build/one-stop-shop-woocommerce-git/src/Package.php:466
574
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:466
575
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:466
576
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:466
577
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:466
578
- #: src/Package.php:466
579
  msgctxt "oss"
580
  msgid "Custom"
581
  msgstr "Individuell"
582
 
583
- #: build/one-stop-shop-woocommerce-git/src/Package.php:470
584
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:470
585
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:470
586
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:470
587
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:470
588
- #: src/Package.php:470
589
  msgctxt "oss"
590
  msgid "Observer"
591
  msgstr "Beobachter"
592
 
593
- #: build/one-stop-shop-woocommerce-git/src/Package.php:484
594
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:484
595
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:484
596
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:484
597
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:484
598
- #: src/Package.php:484
599
  msgctxt "oss"
600
  msgid "Pending"
601
  msgstr "In Bearbeitung"
602
 
603
- #: build/one-stop-shop-woocommerce-git/src/Package.php:485
604
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:485
605
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:485
606
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:485
607
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:485
608
- #: src/Package.php:485
609
  msgctxt "oss"
610
  msgid "Completed"
611
  msgstr "Fertiggestellt"
612
 
613
- #: build/one-stop-shop-woocommerce-git/src/Package.php:486
614
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:486
615
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:486
616
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:486
617
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:486
618
- #: src/Package.php:486
619
  msgctxt "oss"
620
  msgid "Failed"
621
  msgstr "Fehlgeschlagen"
622
 
623
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:121
624
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:121
625
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:121
626
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:121
627
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:121
628
  #: src/ReportTable.php:121
629
  #, php-format
630
  msgctxt "oss"
@@ -633,21 +344,11 @@ msgid_plural "%d reports deleted."
633
  msgstr[0] "%d Bericht gelöscht."
634
  msgstr[1] "%d Berichte gelöscht."
635
 
636
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:184
637
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:184
638
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:184
639
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:184
640
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:184
641
  #: src/ReportTable.php:184
642
  msgctxt "oss"
643
  msgid "No reports found"
644
  msgstr "Keine Berichte gefunden"
645
 
646
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:225
647
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:225
648
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:225
649
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:225
650
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:225
651
  #: src/ReportTable.php:225
652
  #, php-format
653
  msgctxt "oss"
@@ -656,11 +357,6 @@ msgid_plural "All <span class=\"count\">(%s)</span>"
656
  msgstr[0] "Alle <span class=\"count\">(%s)</span>"
657
  msgstr[1] "Alle <span class=\"count\">(%s)</span>"
658
 
659
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:250
660
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:250
661
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:250
662
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:250
663
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:250
664
  #: src/ReportTable.php:250
665
  #, php-format
666
  msgctxt "oss"
@@ -669,131 +365,62 @@ msgid_plural " <span class=\"count\">(%s)</span>"
669
  msgstr[0] " <span class=\"count\">(%s)</span>"
670
  msgstr[1] " <span class=\"count\">(%s)</span>"
671
 
672
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:323
673
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:323
674
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:323
675
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:323
676
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:323
677
  #: src/ReportTable.php:323
678
  msgctxt "oss"
679
  msgid "Filter"
680
  msgstr "Filtern"
681
 
682
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:350
683
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:350
684
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:350
685
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:350
686
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:350
687
  #: src/ReportTable.php:350
688
  msgctxt "oss"
689
  msgid "Title"
690
  msgstr "Titel"
691
 
692
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:351
693
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:351
694
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:351
695
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:351
696
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:351
697
  #: src/ReportTable.php:351
698
  msgctxt "oss"
699
  msgid "Start"
700
  msgstr "Start"
701
 
702
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:352
703
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:352
704
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:352
705
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:352
706
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:352
707
  #: src/ReportTable.php:352
708
  msgctxt "oss"
709
  msgid "End"
710
  msgstr "Ende"
711
 
712
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:353
713
- #: build/one-stop-shop-woocommerce-git/templates/emails/admin-delivery-threshold.php:25
714
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:353
715
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/templates/emails/admin-delivery-threshold.php:25
716
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:353
717
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/templates/emails/admin-delivery-threshold.php:25
718
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:353
719
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/templates/emails/admin-delivery-threshold.php:25
720
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:353
721
- #: build/one-stop-shop-woocommerce-svn/trunk/templates/emails/admin-delivery-threshold.php:25
722
  #: src/ReportTable.php:353 templates/emails/admin-delivery-threshold.php:25
723
  msgctxt "oss"
724
  msgid "Net total"
725
  msgstr "Nettobetrag"
726
 
727
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:354
728
- #: build/one-stop-shop-woocommerce-git/templates/emails/admin-delivery-threshold.php:26
729
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:354
730
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/templates/emails/admin-delivery-threshold.php:26
731
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:354
732
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/templates/emails/admin-delivery-threshold.php:26
733
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:354
734
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/templates/emails/admin-delivery-threshold.php:26
735
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:354
736
- #: build/one-stop-shop-woocommerce-svn/trunk/templates/emails/admin-delivery-threshold.php:26
737
  #: src/ReportTable.php:354 templates/emails/admin-delivery-threshold.php:26
738
  msgctxt "oss"
739
  msgid "Tax total"
740
  msgstr "Steuerbertrag"
741
 
742
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:355
743
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:355
744
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:355
745
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:355
746
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:355
747
  #: src/ReportTable.php:355
748
  msgctxt "oss"
749
  msgid "Status"
750
  msgstr "Status"
751
 
752
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:356
753
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:356
754
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:356
755
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:356
756
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:356
757
  #: src/ReportTable.php:356
758
  msgctxt "oss"
759
  msgid "Actions"
760
  msgstr "Aktionen"
761
 
762
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:420
763
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:420
764
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:420
765
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:420
766
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:420
767
  #: src/ReportTable.php:420
768
  #, php-format
769
  msgctxt "oss"
770
  msgid "Select %s"
771
  msgstr "%s auswählen"
772
 
773
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:513
774
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:513
775
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:513
776
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:513
777
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:513
778
  #: src/ReportTable.php:513
779
  msgctxt "oss"
780
  msgid "Delete Permanently"
781
  msgstr "Unwiderruflich löschen"
782
 
783
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:14
784
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:14
785
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:14
786
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:14
787
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:14
788
  #: src/Settings.php:14
789
  msgctxt "oss"
790
  msgid "General"
791
  msgstr "Allgemein"
792
 
793
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:19
794
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:19
795
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:19
796
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:19
797
  #: src/Settings.php:19
798
  msgctxt "oss"
799
  msgid ""
@@ -805,51 +432,26 @@ msgstr ""
805
  "taxation_customs/business/vat/oss_de\" target=\"_blank\" rel=\"noopener"
806
  "\">One Stop Shop Verfahren</a>."
807
 
808
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:31
809
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:31
810
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:31
811
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:31
812
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:31
813
  #: src/Settings.php:31
814
  msgctxt "oss"
815
  msgid "OSS status"
816
  msgstr "OSS Status"
817
 
818
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:32
819
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:32
820
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:32
821
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:32
822
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:32
823
  #: src/Settings.php:32
824
  msgctxt "oss"
825
  msgid "Yes, I'm currently participating in the OSS procedure."
826
  msgstr "Ja, ich nehme aktuell am One Stop Shop Verfahren teil."
827
 
828
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:39
829
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:39
830
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:39
831
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:39
832
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:39
833
  #: src/Settings.php:39
834
  msgctxt "oss"
835
  msgid "Observation"
836
  msgstr "Überwachung"
837
 
838
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:40
839
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:40
840
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:40
841
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:40
842
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:40
843
  #: src/Settings.php:40
844
  msgctxt "oss"
845
  msgid "Automatically observe the delivery threshold of the current year."
846
  msgstr "Überwache die Lieferschwelle des aktuellen Jahres automatisch."
847
 
848
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:40
849
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:40
850
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:40
851
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:40
852
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:40
853
  #: src/Settings.php:40
854
  msgctxt "oss"
855
  msgid ""
@@ -863,73 +465,57 @@ msgstr ""
863
  "nachberechnet wird. Der Bericht wird nur für die Tage nachberechnet, für die "
864
  "aktuell noch keine Überwachung stattfindet."
865
 
866
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:50
867
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:50
868
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:50
869
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:50
870
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:50
871
  #: src/Settings.php:50
872
  msgctxt "oss"
873
  msgid "Delivery threshold"
874
  msgstr "Lieferschwelle"
875
 
876
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:60
877
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:60
878
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:60
879
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:60
880
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:60
881
  #: src/Settings.php:60
882
  msgctxt "oss"
883
  msgid "Participation"
884
  msgstr "Teilnahme"
885
 
886
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:80
887
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:80
888
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:80
889
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:80
890
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:80
891
- #: src/Settings.php:80
 
 
 
 
 
 
 
 
 
 
 
 
 
 
892
  msgctxt "oss"
893
  msgid "Are you sure? Please backup your tax rates before proceeding."
894
  msgstr ""
895
  "Sind Sie sicher? Bitte erstellen Sie vorab ein Backup Ihrer Steuersätze."
896
 
897
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:80
898
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:80
899
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:80
900
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:80
901
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:80
902
- #: src/Settings.php:80
903
  msgctxt "oss"
904
  msgid "End OSS participation"
905
  msgstr "OSS Teilnahme beenden"
906
 
907
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:80
908
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:80
909
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:80
910
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:80
911
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:80
912
- #: src/Settings.php:80
913
  msgctxt "oss"
914
  msgid "Start OSS participation"
915
  msgstr "OSS Teilnahme starten"
916
 
917
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:81
918
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:81
919
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:81
920
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:81
921
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:81
922
- #: src/Settings.php:81
923
  msgctxt "oss"
924
  msgid "learn more"
925
  msgstr "Mehr erfahren"
926
 
927
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:83
928
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:83
929
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:83
930
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:83
931
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:83
932
- #: src/Settings.php:83
933
  msgctxt "oss"
934
  msgid ""
935
  "Use this option to automatically adjust tax-related options in WooCommerce. "
@@ -940,74 +526,45 @@ msgstr ""
940
  "automatisch anpassen zu lassen. Achtung: Diese Option löscht Ihre aktuellen "
941
  "Steuersätze und fügt neue Steuersätze basierend auf Ihrem OSS Status hinzu."
942
 
943
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:105
944
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:105
945
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:105
946
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:105
947
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:105
948
- #: src/Settings.php:105
949
  msgctxt "oss"
950
  msgid "See status"
951
  msgstr "Status ansehen"
952
 
953
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:105
954
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:105
955
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:105
956
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:105
957
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:105
958
- #: src/Settings.php:105
959
  msgctxt "oss"
960
  msgid "Start initial report"
961
  msgstr "Initialen Bericht erstellen"
962
 
963
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:106
964
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:106
965
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:106
966
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:106
967
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:106
968
- #: src/Settings.php:106
969
  #, php-format
970
  msgctxt "oss"
971
  msgid "Report not yet completed. %s"
972
  msgstr "Bericht noch nicht abgeschlossen. %s"
973
 
974
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:106
975
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:106
976
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:106
977
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:106
978
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:106
979
- #: src/Settings.php:106
980
  #, php-format
981
  msgctxt "oss"
982
  msgid "Report not yet started. %s"
983
  msgstr "Bericht noch nicht gestartet. %s"
984
 
985
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:124
986
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:124
987
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:124
988
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:124
989
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:124
990
- #: src/Settings.php:124
991
  msgctxt "oss-amounts"
992
  msgid "of"
993
  msgstr "von"
994
 
995
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:124
996
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:124
997
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:124
998
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:124
999
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:124
1000
- #: src/Settings.php:124
 
1001
  msgctxt "oss"
1002
  msgid "see details"
1003
  msgstr "Details ansehen"
1004
 
1005
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:125
1006
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:125
1007
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:125
1008
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:125
1009
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:125
1010
- #: src/Settings.php:125
1011
  #, php-format
1012
  msgctxt "oss"
1013
  msgid ""
@@ -1022,157 +579,79 @@ msgstr ""
1022
  "oder bereits überschritten wurde. <a href=\"%s\">Erfahren Sie mehr</a> über "
1023
  "die Berechnung."
1024
 
1025
- #: build/one-stop-shop-woocommerce-git/src/SettingsPage.php:23
1026
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/SettingsPage.php:23
1027
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/SettingsPage.php:23
1028
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/SettingsPage.php:23
1029
- #: build/one-stop-shop-woocommerce-svn/trunk/src/SettingsPage.php:23
1030
  #: src/SettingsPage.php:23
1031
  msgctxt "oss"
1032
  msgid "Learn More"
1033
  msgstr "Mehr erfahren"
1034
 
1035
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:167
1036
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:225
1037
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:167
1038
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:225
1039
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:167
1040
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:225
1041
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:167
1042
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:225
1043
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:167
1044
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:225 src/Tax.php:168
1045
- #: src/Tax.php:226
1046
  #, php-format
1047
  msgctxt "oss"
1048
  msgid "Tax class (%s)"
1049
  msgstr "Steuerklasse (%s)"
1050
 
1051
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:168
1052
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:168
1053
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:168
1054
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:168
1055
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:168 src/Tax.php:169
1056
  msgctxt "oss"
1057
  msgid "Same as parent"
1058
  msgstr "Gleiche wie übergeordnet"
1059
 
1060
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:170
1061
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:203
1062
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:227
1063
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:261
1064
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:170
1065
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:203
1066
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:227
1067
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:261
1068
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:170
1069
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:203
1070
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:227
1071
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:261
1072
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:170
1073
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:203
1074
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:227
1075
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:261
1076
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:170
1077
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:203
1078
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:227
1079
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:261 src/Tax.php:171
1080
- #: src/Tax.php:204 src/Tax.php:228 src/Tax.php:262
1081
  msgctxt "oss"
1082
  msgid "remove"
1083
  msgstr "Löschen"
1084
 
1085
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:180
1086
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:238
1087
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:180
1088
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:238
1089
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:180
1090
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:238
1091
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:180
1092
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:238
1093
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:180
1094
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:238 src/Tax.php:181
1095
- #: src/Tax.php:239
1096
  msgctxt "oss"
1097
  msgid "Add country specific tax class (OSS)"
1098
  msgstr "Länderspezifische Steuerklasse hinzufügen (OSS)"
1099
 
1100
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:187
1101
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:245
1102
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:187
1103
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:245
1104
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:187
1105
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:245
1106
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:187
1107
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:245
1108
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:187
1109
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:245 src/Tax.php:188
1110
- #: src/Tax.php:246
1111
  msgctxt "oss"
1112
  msgid "Select country"
1113
  msgstr "Land auswählen"
1114
 
1115
  #. translators: Do not translate
1116
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:333
1117
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:412
1118
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:333
1119
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:406
1120
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:333
1121
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:412
1122
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:333
1123
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:412
1124
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:333
1125
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:412 src/Tax.php:341
1126
- #: src/Tax.php:420
1127
  msgid "Reduced rate"
1128
  msgstr ""
1129
 
1130
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:336
1131
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:404
1132
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:336
1133
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:402
1134
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:336
1135
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:404
1136
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:336
1137
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:404
1138
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:336
1139
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:404 src/Tax.php:344
1140
- #: src/Tax.php:412
1141
  msgctxt "oss"
1142
  msgid "Greater reduced rate"
1143
  msgstr "Zusätzlicher reduzierter Preis"
1144
 
1145
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:339
1146
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:408
1147
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:339
1148
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:404
1149
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:339
1150
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:408
1151
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:339
1152
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:408
1153
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:339
1154
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:408 src/Tax.php:347
1155
- #: src/Tax.php:416
1156
  msgctxt "oss"
1157
  msgid "Super reduced rate"
1158
  msgstr "Stark reduzierter Preis"
1159
 
1160
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:567
1161
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:561
1162
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:567
1163
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:567
1164
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:567 src/Tax.php:607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1165
  #, php-format
1166
  msgctxt "oss-tax-rate-import"
1167
- msgid "VAT %s"
1168
- msgstr "MwSt. %s"
1169
 
1170
  #. translators: %s: Customer billing full name
1171
- #: build/one-stop-shop-woocommerce-git/templates/emails/admin-delivery-threshold.php:19
1172
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/templates/emails/admin-delivery-threshold.php:19
1173
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/templates/emails/admin-delivery-threshold.php:19
1174
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/templates/emails/admin-delivery-threshold.php:19
1175
- #: build/one-stop-shop-woocommerce-svn/trunk/templates/emails/admin-delivery-threshold.php:19
1176
  #: templates/emails/admin-delivery-threshold.php:19
1177
  #, php-format
1178
  msgctxt "oss"
@@ -1184,41 +663,21 @@ msgstr ""
1184
  "tätig. Besuchen Sie die <a href=\"%2$s\">OSS Einstellungen</a> um Details zu "
1185
  "erfahren."
1186
 
1187
- #: build/one-stop-shop-woocommerce-git/templates/emails/admin-delivery-threshold.php:21
1188
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/templates/emails/admin-delivery-threshold.php:21
1189
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/templates/emails/admin-delivery-threshold.php:21
1190
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/templates/emails/admin-delivery-threshold.php:21
1191
- #: build/one-stop-shop-woocommerce-svn/trunk/templates/emails/admin-delivery-threshold.php:21
1192
  #: templates/emails/admin-delivery-threshold.php:21
1193
  msgctxt "oss"
1194
  msgid "Report Details"
1195
  msgstr "Details des Berichts"
1196
 
1197
- #: build/one-stop-shop-woocommerce-git/templates/emails/admin-delivery-threshold.php:24
1198
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/templates/emails/admin-delivery-threshold.php:24
1199
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/templates/emails/admin-delivery-threshold.php:24
1200
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/templates/emails/admin-delivery-threshold.php:24
1201
- #: build/one-stop-shop-woocommerce-svn/trunk/templates/emails/admin-delivery-threshold.php:24
1202
  #: templates/emails/admin-delivery-threshold.php:24
1203
  msgctxt "oss"
1204
  msgid "Period"
1205
  msgstr "Periode"
1206
 
1207
- #: build/one-stop-shop-woocommerce-git/templates/emails/admin-delivery-threshold.php:29
1208
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/templates/emails/admin-delivery-threshold.php:29
1209
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/templates/emails/admin-delivery-threshold.php:29
1210
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/templates/emails/admin-delivery-threshold.php:29
1211
- #: build/one-stop-shop-woocommerce-svn/trunk/templates/emails/admin-delivery-threshold.php:29
1212
  #: templates/emails/admin-delivery-threshold.php:29
1213
  msgctxt "oss"
1214
  msgid "See report details"
1215
  msgstr "Details des Berichts abrufen"
1216
 
1217
- #: build/one-stop-shop-woocommerce-git/templates/emails/plain/admin-delivery-threshold.php:17
1218
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/templates/emails/plain/admin-delivery-threshold.php:17
1219
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/templates/emails/plain/admin-delivery-threshold.php:17
1220
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/templates/emails/plain/admin-delivery-threshold.php:17
1221
- #: build/one-stop-shop-woocommerce-svn/trunk/templates/emails/plain/admin-delivery-threshold.php:17
1222
  #: templates/emails/plain/admin-delivery-threshold.php:17
1223
  #, php-format
1224
  msgctxt "oss"
@@ -1229,37 +688,6 @@ msgstr ""
1229
  "Ihre OSS Lieferschwelle von %1$s wurde erreicht. Bitte werden Sie umgehend "
1230
  "tätig. Besuchen Sie die OSS Einstellungen (%2$s) um Details zu erfahren."
1231
 
1232
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:19
1233
- msgctxt "oss"
1234
- msgid ""
1235
- "Find useful options regarding the <a href=\"https://ec.europa.eu/"
1236
- "taxation_customs/business/vat/modernising-vat-cross-border-ecommerce_en\" "
1237
- "target=\"_blank\" rel=\"noopener\">One Stop Shop procedure</a> here."
1238
- msgstr ""
1239
- "Finden Sie hier nützliche Optionen zum <a href=\"https://ec.europa.eu/"
1240
- "taxation_customs/business/vat/modernising-vat-cross-border-ecommerce_de\" "
1241
- "target=\"_blank\" rel=\"noopener\">One Stop Shop Verfahren</a>."
1242
-
1243
- #: src/Admin.php:54 src/Admin.php:55
1244
- msgctxt "oss"
1245
- msgid "Refresh VAT rates (OSS)"
1246
- msgstr "EU Steuersätze erneuern (OSS)"
1247
-
1248
- #: src/Admin.php:59
1249
- msgctxt "oss"
1250
- msgid "Note:"
1251
- msgstr "Hinweis:"
1252
-
1253
- #: src/Admin.php:60
1254
- #, php-format
1255
- msgctxt "oss"
1256
- msgid ""
1257
- "This option will delete all of your current EU VAT rates and re-import them "
1258
- "based on your current <a href=\"%s\">OSS status</a>."
1259
- msgstr ""
1260
- "Diese Option löscht alle Ihre aktuellen EU Steuersätze und importiert sie "
1261
- "anschließend auf Basis Ihres <a href=\"%s\">OSS Status</a> neu."
1262
-
1263
  #. Plugin Name of the plugin/theme
1264
  msgid "One Stop Shop for WooCommerce"
1265
  msgstr "One Stop Shop für WooCommerce"
@@ -1279,3 +707,34 @@ msgstr "vendidero"
1279
  #. Author URI of the plugin/theme
1280
  msgid "https://vendidero.de"
1281
  msgstr "https://vendidero.de"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: One Stop Shop for WooCommerce\n"
4
+ "POT-Creation-Date: 2021-07-08 14:08+0200\n"
5
+ "PO-Revision-Date: 2021-07-08 14:08+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: de_DE@formal\n"
22
  "X-Poedit-SearchPathExcluded-0: *.min.js\n"
23
  "X-Poedit-SearchPathExcluded-1: vendor\n"
24
  "X-Poedit-SearchPathExcluded-2: node_modules\n"
25
+ "X-Poedit-SearchPathExcluded-3: build\n"
26
 
27
  #. translators: 1: composer command. 2: plugin directory
28
+ #: one-stop-shop-woocommerce.php:44 one-stop-shop-woocommerce.php:62
 
 
 
 
 
 
 
 
 
 
29
  #, php-format
30
  msgctxt "oss"
31
  msgid ""
35
  "Ihre Installation des One Stop Shop Feature Plugins ist nicht komplett. "
36
  "Bitte führen Sie %1$s innerhalb des %2$s Verzeichnisses aus."
37
 
38
+ #: src/Admin.php:76 src/Admin.php:77
39
+ msgctxt "oss"
40
+ msgid "Refresh VAT rates (OSS)"
41
+ msgstr "EU Steuersätze erneuern (OSS)"
42
+
43
+ #: src/Admin.php:81
44
+ msgctxt "oss"
45
+ msgid "Note:"
46
+ msgstr "Hinweis:"
47
+
48
+ #: src/Admin.php:82
49
+ #, php-format
50
+ msgctxt "oss"
51
+ msgid ""
52
+ "This option will delete all of your current EU VAT rates and re-import them "
53
+ "based on your current <a href=\"%s\">OSS status</a>."
54
+ msgstr ""
55
+ "Diese Option löscht alle Ihre aktuellen EU Steuersätze und importiert sie "
56
+ "anschließend auf Basis Ihres <a href=\"%s\">OSS Status</a> neu."
57
+
58
+ #: src/Admin.php:212
59
  #, php-format
60
  msgctxt "oss"
61
  msgid ""
67
  "Jahr überschritten. Bitte prüfen Sie die <a href=\"%s\" target=\"_blank"
68
  "\">Details des Berichts</a> und unternehmen Sie weitere Schritte."
69
 
70
+ #: src/Admin.php:216
 
 
 
 
 
71
  msgctxt "oss"
72
  msgid "Delivery threshold reached (OSS)"
73
  msgstr "Lieferschwelle erreicht (OSS)"
74
 
75
+ #: src/Admin.php:432 src/SettingsPage.php:17
 
 
 
 
 
 
 
 
 
 
76
  msgctxt "oss"
77
  msgid "OSS"
78
  msgstr "OSS"
79
 
80
+ #: src/Admin.php:432 src/Admin.php:550 src/SettingsPage.php:23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
  msgctxt "oss"
82
  msgid "One Stop Shop"
83
  msgstr "One Stop Shop"
84
 
85
+ #: src/Admin.php:453 src/Package.php:264
 
 
 
 
 
 
 
 
 
 
86
  #, php-format
87
  msgctxt "oss"
88
  msgid "Q%1$s/%2$s"
89
  msgstr "Q%1$s/%2$s"
90
 
91
+ #: src/Admin.php:462 src/Package.php:269
 
 
 
 
 
 
 
 
 
 
92
  #, php-format
93
  msgctxt "oss"
94
  msgid "%1$s/%2$s"
95
  msgstr "%1$s/%2$s"
96
 
97
+ #: src/Admin.php:470
 
 
 
 
 
98
  msgctxt "oss"
99
  msgid "New Report"
100
  msgstr "Neuer Bericht"
101
 
102
+ #: src/Admin.php:477
 
 
 
 
 
103
  msgctxt "oss"
104
  msgid "Type"
105
  msgstr "Typ"
106
 
107
+ #: src/Admin.php:489
108
+ msgctxt "oss"
 
 
 
 
 
109
  msgid "Year"
110
  msgstr "Jahr"
111
 
112
+ #: src/Admin.php:501
113
+ msgctxt "oss"
 
 
 
 
 
114
  msgid "Quarter"
115
  msgstr "Quartal"
116
 
117
+ #: src/Admin.php:513
118
+ msgctxt "oss"
 
 
 
 
 
119
  msgid "Month"
120
  msgstr "Monat"
121
 
122
+ #: src/Admin.php:525
123
+ msgctxt "oss"
 
 
 
 
 
124
  msgid "Date range"
125
  msgstr "Zeitraum"
126
 
127
+ #: src/Admin.php:537
 
 
 
 
 
128
  msgctxt "oss"
129
  msgid "Start report"
130
  msgstr "Bericht starten"
131
 
132
+ #: src/Admin.php:551
 
 
 
 
 
133
  msgctxt "oss"
134
  msgid "New report"
135
  msgstr "Neuer Bericht"
136
 
137
+ #: src/Admin.php:593
 
 
 
 
 
138
  msgctxt "oss"
139
  msgid "View"
140
  msgstr "Ansehen"
141
 
142
+ #: src/Admin.php:597
 
 
 
 
 
143
  msgctxt "oss"
144
  msgid "Export"
145
  msgstr "Exportieren"
146
 
147
+ #: src/Admin.php:601
 
 
 
 
 
148
  msgctxt "oss"
149
  msgid "Refresh"
150
  msgstr "Aktualisieren"
151
 
152
+ #: src/Admin.php:605
 
 
 
 
 
153
  msgctxt "oss"
154
  msgid "Delete"
155
  msgstr "Löschen"
156
 
157
+ #: src/Admin.php:611
 
 
 
 
 
158
  msgctxt "oss"
159
  msgid "Cancel"
160
  msgstr "Abbrechen"
161
 
162
+ #: src/Admin.php:640
 
 
 
 
 
163
  msgctxt "oss"
164
  msgid "Country"
165
  msgstr "Land"
166
 
167
+ #: src/Admin.php:641
 
 
 
 
 
168
  msgctxt "oss"
169
  msgid "Tax Rate"
170
  msgstr "Steuersatz"
171
 
172
+ #: src/Admin.php:642
 
 
 
 
 
173
  msgctxt "oss"
174
  msgid "Net Total"
175
  msgstr "Nettobetrag"
176
 
177
+ #: src/Admin.php:643
 
 
 
 
 
178
  msgctxt "oss"
179
  msgid "Tax Total"
180
  msgstr "Steuerbertrag"
181
 
182
+ #: src/Admin.php:674
 
 
 
 
 
183
  #, php-format
184
  msgctxt "oss"
185
  msgid "%1$s %%"
186
  msgstr "%1$s %%"
187
 
188
+ #: src/Admin.php:686
 
 
 
 
 
189
  #, php-format
190
  msgctxt "oss"
191
  msgid ""
195
  "Aktuell %1$s Bestellung verarbeitet. Nächster Durchlauf planmäßig am %2$s. "
196
  "<a href=\"%3$s\">Offene Aktionen finden</a>"
197
 
198
+ #: src/Admin.php:686
 
 
 
 
 
199
  msgctxt "oss"
200
  msgid "Not yet known"
201
  msgstr "Noch nicht bekannt"
202
 
203
+ #: src/Admin.php:717 src/ReportTable.php:39 src/SettingsPage.php:23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
204
  msgctxt "oss"
205
  msgid "Reports"
206
  msgstr "Berichte"
207
 
 
 
 
 
 
208
  #: src/AdminNote.php:39
209
  msgctxt "oss"
210
  msgid "Dismiss"
211
  msgstr "Ausblenden"
212
 
213
+ #: src/AsyncReportGenerator.php:244
 
 
 
 
 
214
  msgctxt "oss"
215
  msgid "No orders found."
216
  msgstr "Keine Bestellungen gefunden."
217
 
 
 
 
 
 
218
  #: src/CSVExporter.php:52
219
  msgctxt "oss"
220
  msgid "Country code"
221
  msgstr "Land des Verbrauchs"
222
 
 
 
 
 
 
223
  #: src/CSVExporter.php:53
224
  msgctxt "oss"
225
  msgid "Tax rate"
226
  msgstr "Umsatzsteuersatz"
227
 
 
 
 
 
 
228
  #: src/CSVExporter.php:54
229
  msgctxt "oss"
230
  msgid "Taxable base"
231
  msgstr "Nettobetrag"
232
 
 
 
 
 
 
233
  #: src/CSVExporter.php:55
234
  msgctxt "oss"
235
  msgid "Amount"
236
  msgstr "Umsatzsteuerbetrag"
237
 
 
 
 
 
 
238
  #: src/DeliveryThresholdEmailNotification.php:19
239
  msgctxt "oss"
240
  msgid "OSS Delivery Threshold Notification"
241
  msgstr "OSS Lieferschwelle Benachrichtigung"
242
 
 
 
 
 
 
243
  #: src/DeliveryThresholdEmailNotification.php:20
244
  msgctxt "oss"
245
  msgid ""
249
  "Diese E-Mail benachrichtigt den Shopbetreiber über eine in Kürze anstehende "
250
  "Überschreitung der Lieferschwelle (OSS)."
251
 
 
 
 
 
 
252
  #: src/DeliveryThresholdEmailNotification.php:38
253
  msgctxt "oss"
254
  msgid "[{site_title}]: OSS delivery threshold reached"
255
  msgstr "[{site_title}]: OSS Lieferschwelle erreicht"
256
 
 
 
 
 
 
257
  #: src/DeliveryThresholdEmailNotification.php:48
258
  msgctxt "oss"
259
  msgid "OSS delivery threshold reached"
260
  msgstr "OSS Lieferschwelle erreicht"
261
 
 
 
 
 
 
262
  #: src/DeliveryThresholdWarning.php:13
263
  msgctxt "oss"
264
  msgid "See details"
265
  msgstr "Details ansehen"
266
 
267
+ #: src/Package.php:80
 
 
 
 
 
268
  msgctxt "oss"
269
  msgid ""
270
  "To use the OSS for WooCommerce plugin please make sure that WooCommerce is "
273
  "Um das OSS für WooCommerce Plugin nutzen zu können muss WooCommerce "
274
  "installiert und aktiviert sein."
275
 
276
+ #: src/Package.php:249 src/ReportTable.php:40
 
 
 
 
 
 
 
 
 
 
277
  msgctxt "oss"
278
  msgid "Report"
279
  msgstr "Bericht"
280
 
281
+ #: src/Package.php:273
 
 
 
 
 
282
  #, php-format
283
  msgctxt "oss"
284
  msgid "%1$s"
285
  msgstr "%1$s"
286
 
287
+ #: src/Package.php:278
 
 
 
 
 
288
  #, php-format
289
  msgctxt "oss"
290
  msgid "%1$s - %2$s"
291
  msgstr "%1$s - %2$s"
292
 
293
+ #: src/Package.php:283
 
 
 
 
 
294
  #, php-format
295
  msgctxt "oss"
296
  msgid "Observer %1$s"
297
  msgstr "Beobachter %1$s"
298
 
299
+ #: src/Package.php:482
 
 
 
 
 
300
  msgctxt "oss"
301
  msgid "Quarterly"
302
  msgstr "Quartalsweise"
303
 
304
+ #: src/Package.php:483
 
 
 
 
 
305
  msgctxt "oss"
306
  msgid "Yearly"
307
  msgstr "Jährlich"
308
 
309
+ #: src/Package.php:484
 
 
 
 
 
310
  msgctxt "oss"
311
  msgid "Monthly"
312
  msgstr "Monatlich"
313
 
314
+ #: src/Package.php:485
 
 
 
 
 
315
  msgctxt "oss"
316
  msgid "Custom"
317
  msgstr "Individuell"
318
 
319
+ #: src/Package.php:489
 
 
 
 
 
320
  msgctxt "oss"
321
  msgid "Observer"
322
  msgstr "Beobachter"
323
 
324
+ #: src/Package.php:503
 
 
 
 
 
325
  msgctxt "oss"
326
  msgid "Pending"
327
  msgstr "In Bearbeitung"
328
 
329
+ #: src/Package.php:504
 
 
 
 
 
330
  msgctxt "oss"
331
  msgid "Completed"
332
  msgstr "Fertiggestellt"
333
 
334
+ #: src/Package.php:505
 
 
 
 
 
335
  msgctxt "oss"
336
  msgid "Failed"
337
  msgstr "Fehlgeschlagen"
338
 
 
 
 
 
 
339
  #: src/ReportTable.php:121
340
  #, php-format
341
  msgctxt "oss"
344
  msgstr[0] "%d Bericht gelöscht."
345
  msgstr[1] "%d Berichte gelöscht."
346
 
 
 
 
 
 
347
  #: src/ReportTable.php:184
348
  msgctxt "oss"
349
  msgid "No reports found"
350
  msgstr "Keine Berichte gefunden"
351
 
 
 
 
 
 
352
  #: src/ReportTable.php:225
353
  #, php-format
354
  msgctxt "oss"
357
  msgstr[0] "Alle <span class=\"count\">(%s)</span>"
358
  msgstr[1] "Alle <span class=\"count\">(%s)</span>"
359
 
 
 
 
 
 
360
  #: src/ReportTable.php:250
361
  #, php-format
362
  msgctxt "oss"
365
  msgstr[0] " <span class=\"count\">(%s)</span>"
366
  msgstr[1] " <span class=\"count\">(%s)</span>"
367
 
 
 
 
 
 
368
  #: src/ReportTable.php:323
369
  msgctxt "oss"
370
  msgid "Filter"
371
  msgstr "Filtern"
372
 
 
 
 
 
 
373
  #: src/ReportTable.php:350
374
  msgctxt "oss"
375
  msgid "Title"
376
  msgstr "Titel"
377
 
 
 
 
 
 
378
  #: src/ReportTable.php:351
379
  msgctxt "oss"
380
  msgid "Start"
381
  msgstr "Start"
382
 
 
 
 
 
 
383
  #: src/ReportTable.php:352
384
  msgctxt "oss"
385
  msgid "End"
386
  msgstr "Ende"
387
 
 
 
 
 
 
 
 
 
 
 
388
  #: src/ReportTable.php:353 templates/emails/admin-delivery-threshold.php:25
389
  msgctxt "oss"
390
  msgid "Net total"
391
  msgstr "Nettobetrag"
392
 
 
 
 
 
 
 
 
 
 
 
393
  #: src/ReportTable.php:354 templates/emails/admin-delivery-threshold.php:26
394
  msgctxt "oss"
395
  msgid "Tax total"
396
  msgstr "Steuerbertrag"
397
 
 
 
 
 
 
398
  #: src/ReportTable.php:355
399
  msgctxt "oss"
400
  msgid "Status"
401
  msgstr "Status"
402
 
 
 
 
 
 
403
  #: src/ReportTable.php:356
404
  msgctxt "oss"
405
  msgid "Actions"
406
  msgstr "Aktionen"
407
 
 
 
 
 
 
408
  #: src/ReportTable.php:420
409
  #, php-format
410
  msgctxt "oss"
411
  msgid "Select %s"
412
  msgstr "%s auswählen"
413
 
 
 
 
 
 
414
  #: src/ReportTable.php:513
415
  msgctxt "oss"
416
  msgid "Delete Permanently"
417
  msgstr "Unwiderruflich löschen"
418
 
 
 
 
 
 
419
  #: src/Settings.php:14
420
  msgctxt "oss"
421
  msgid "General"
422
  msgstr "Allgemein"
423
 
 
 
 
 
424
  #: src/Settings.php:19
425
  msgctxt "oss"
426
  msgid ""
432
  "taxation_customs/business/vat/oss_de\" target=\"_blank\" rel=\"noopener"
433
  "\">One Stop Shop Verfahren</a>."
434
 
 
 
 
 
 
435
  #: src/Settings.php:31
436
  msgctxt "oss"
437
  msgid "OSS status"
438
  msgstr "OSS Status"
439
 
 
 
 
 
 
440
  #: src/Settings.php:32
441
  msgctxt "oss"
442
  msgid "Yes, I'm currently participating in the OSS procedure."
443
  msgstr "Ja, ich nehme aktuell am One Stop Shop Verfahren teil."
444
 
 
 
 
 
 
445
  #: src/Settings.php:39
446
  msgctxt "oss"
447
  msgid "Observation"
448
  msgstr "Überwachung"
449
 
 
 
 
 
 
450
  #: src/Settings.php:40
451
  msgctxt "oss"
452
  msgid "Automatically observe the delivery threshold of the current year."
453
  msgstr "Überwache die Lieferschwelle des aktuellen Jahres automatisch."
454
 
 
 
 
 
 
455
  #: src/Settings.php:40
456
  msgctxt "oss"
457
  msgid ""
465
  "nachberechnet wird. Der Bericht wird nur für die Tage nachberechnet, für die "
466
  "aktuell noch keine Überwachung stattfindet."
467
 
 
 
 
 
 
468
  #: src/Settings.php:50
469
  msgctxt "oss"
470
  msgid "Delivery threshold"
471
  msgstr "Lieferschwelle"
472
 
 
 
 
 
 
473
  #: src/Settings.php:60
474
  msgctxt "oss"
475
  msgid "Participation"
476
  msgstr "Teilnahme"
477
 
478
+ #: src/Settings.php:70
479
+ msgctxt "oss"
480
+ msgid "Fixed gross prices"
481
+ msgstr "Feste Bruttopreise"
482
+
483
+ #: src/Settings.php:71
484
+ msgctxt "oss"
485
+ msgid "Apply the same gross price regardless of the tax rate."
486
+ msgstr "Verwende den Bruttopreis unabhängig vom Steuersatz."
487
+
488
+ #: src/Settings.php:71
489
+ msgctxt "oss"
490
+ msgid ""
491
+ "This option will make sure that your customers pay the same price no matter "
492
+ "the tax rate (based on the country chosen) to be applied."
493
+ msgstr ""
494
+ "Diese Option bewirkt, dass Kunden, unabhängig vom Land und damit vom "
495
+ "Steuersatz den selben Bruttopreis bezahlen."
496
+
497
+ #: src/Settings.php:92
498
  msgctxt "oss"
499
  msgid "Are you sure? Please backup your tax rates before proceeding."
500
  msgstr ""
501
  "Sind Sie sicher? Bitte erstellen Sie vorab ein Backup Ihrer Steuersätze."
502
 
503
+ #: src/Settings.php:92
 
 
 
 
 
504
  msgctxt "oss"
505
  msgid "End OSS participation"
506
  msgstr "OSS Teilnahme beenden"
507
 
508
+ #: src/Settings.php:92
 
 
 
 
 
509
  msgctxt "oss"
510
  msgid "Start OSS participation"
511
  msgstr "OSS Teilnahme starten"
512
 
513
+ #: src/Settings.php:93
 
 
 
 
 
514
  msgctxt "oss"
515
  msgid "learn more"
516
  msgstr "Mehr erfahren"
517
 
518
+ #: src/Settings.php:95
 
 
 
 
 
519
  msgctxt "oss"
520
  msgid ""
521
  "Use this option to automatically adjust tax-related options in WooCommerce. "
526
  "automatisch anpassen zu lassen. Achtung: Diese Option löscht Ihre aktuellen "
527
  "Steuersätze und fügt neue Steuersätze basierend auf Ihrem OSS Status hinzu."
528
 
529
+ #: src/Settings.php:127
 
 
 
 
 
530
  msgctxt "oss"
531
  msgid "See status"
532
  msgstr "Status ansehen"
533
 
534
+ #: src/Settings.php:127
 
 
 
 
 
535
  msgctxt "oss"
536
  msgid "Start initial report"
537
  msgstr "Initialen Bericht erstellen"
538
 
539
+ #: src/Settings.php:128
 
 
 
 
 
540
  #, php-format
541
  msgctxt "oss"
542
  msgid "Report not yet completed. %s"
543
  msgstr "Bericht noch nicht abgeschlossen. %s"
544
 
545
+ #: src/Settings.php:128
 
 
 
 
 
546
  #, php-format
547
  msgctxt "oss"
548
  msgid "Report not yet started. %s"
549
  msgstr "Bericht noch nicht gestartet. %s"
550
 
551
+ #: src/Settings.php:146
 
 
 
 
 
552
  msgctxt "oss-amounts"
553
  msgid "of"
554
  msgstr "von"
555
 
556
+ #: src/Settings.php:146
557
+ #, php-format
558
+ msgctxt "oss"
559
+ msgid "As of: %s"
560
+ msgstr "Stand: %s"
561
+
562
+ #: src/Settings.php:146
563
  msgctxt "oss"
564
  msgid "see details"
565
  msgstr "Details ansehen"
566
 
567
+ #: src/Settings.php:147
 
 
 
 
 
568
  #, php-format
569
  msgctxt "oss"
570
  msgid ""
579
  "oder bereits überschritten wurde. <a href=\"%s\">Erfahren Sie mehr</a> über "
580
  "die Berechnung."
581
 
 
 
 
 
 
582
  #: src/SettingsPage.php:23
583
  msgctxt "oss"
584
  msgid "Learn More"
585
  msgstr "Mehr erfahren"
586
 
587
+ #: src/Tax.php:278 src/Tax.php:336
 
 
 
 
 
 
 
 
 
 
588
  #, php-format
589
  msgctxt "oss"
590
  msgid "Tax class (%s)"
591
  msgstr "Steuerklasse (%s)"
592
 
593
+ #: src/Tax.php:279
 
 
 
 
594
  msgctxt "oss"
595
  msgid "Same as parent"
596
  msgstr "Gleiche wie übergeordnet"
597
 
598
+ #: src/Tax.php:281 src/Tax.php:314 src/Tax.php:338 src/Tax.php:372
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
599
  msgctxt "oss"
600
  msgid "remove"
601
  msgstr "Löschen"
602
 
603
+ #: src/Tax.php:291 src/Tax.php:349
 
 
 
 
 
 
 
 
 
 
604
  msgctxt "oss"
605
  msgid "Add country specific tax class (OSS)"
606
  msgstr "Länderspezifische Steuerklasse hinzufügen (OSS)"
607
 
608
+ #: src/Tax.php:298 src/Tax.php:356
 
 
 
 
 
 
 
 
 
 
609
  msgctxt "oss"
610
  msgid "Select country"
611
  msgstr "Land auswählen"
612
 
613
  #. translators: Do not translate
614
+ #: src/Tax.php:452 src/Tax.php:579
 
 
 
 
 
 
 
 
 
 
615
  msgid "Reduced rate"
616
  msgstr ""
617
 
618
+ #: src/Tax.php:455 src/Tax.php:571
 
 
 
 
 
 
 
 
 
 
619
  msgctxt "oss"
620
  msgid "Greater reduced rate"
621
  msgstr "Zusätzlicher reduzierter Preis"
622
 
623
+ #: src/Tax.php:458 src/Tax.php:575
 
 
 
 
 
 
 
 
 
 
624
  msgctxt "oss"
625
  msgid "Super reduced rate"
626
  msgstr "Stark reduzierter Preis"
627
 
628
+ #: src/Tax.php:751
629
+ msgctxt "oss"
630
+ msgid "Madeira"
631
+ msgstr "Madeira"
632
+
633
+ #: src/Tax.php:758
634
+ msgctxt "oss"
635
+ msgid "Acores"
636
+ msgstr "Azoren"
637
+
638
+ #: src/Tax.php:794
639
+ msgctxt "oss"
640
+ msgid "Northern Ireland"
641
+ msgstr "Nordirland"
642
+
643
+ #: src/Tax.php:807
644
+ msgctxt "oss-tax-rate-import"
645
+ msgid "Exempt"
646
+ msgstr "Ausnahme"
647
+
648
+ #: src/Tax.php:873
649
  #, php-format
650
  msgctxt "oss-tax-rate-import"
651
+ msgid "VAT %1$s %% %2$s"
652
+ msgstr "MwSt. %1$s %% %2$s"
653
 
654
  #. translators: %s: Customer billing full name
 
 
 
 
 
655
  #: templates/emails/admin-delivery-threshold.php:19
656
  #, php-format
657
  msgctxt "oss"
663
  "tätig. Besuchen Sie die <a href=\"%2$s\">OSS Einstellungen</a> um Details zu "
664
  "erfahren."
665
 
 
 
 
 
 
666
  #: templates/emails/admin-delivery-threshold.php:21
667
  msgctxt "oss"
668
  msgid "Report Details"
669
  msgstr "Details des Berichts"
670
 
 
 
 
 
 
671
  #: templates/emails/admin-delivery-threshold.php:24
672
  msgctxt "oss"
673
  msgid "Period"
674
  msgstr "Periode"
675
 
 
 
 
 
 
676
  #: templates/emails/admin-delivery-threshold.php:29
677
  msgctxt "oss"
678
  msgid "See report details"
679
  msgstr "Details des Berichts abrufen"
680
 
 
 
 
 
 
681
  #: templates/emails/plain/admin-delivery-threshold.php:17
682
  #, php-format
683
  msgctxt "oss"
688
  "Ihre OSS Lieferschwelle von %1$s wurde erreicht. Bitte werden Sie umgehend "
689
  "tätig. Besuchen Sie die OSS Einstellungen (%2$s) um Details zu erfahren."
690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
691
  #. Plugin Name of the plugin/theme
692
  msgid "One Stop Shop for WooCommerce"
693
  msgstr "One Stop Shop für WooCommerce"
707
  #. Author URI of the plugin/theme
708
  msgid "https://vendidero.de"
709
  msgstr "https://vendidero.de"
710
+
711
+ #~ msgctxt "storeabill-core"
712
+ #~ msgid "Year"
713
+ #~ msgstr "Jahr"
714
+
715
+ #~ msgctxt "storeabill-core"
716
+ #~ msgid "Quarter"
717
+ #~ msgstr "Quartal"
718
+
719
+ #~ msgctxt "storeabill-core"
720
+ #~ msgid "Month"
721
+ #~ msgstr "Monat"
722
+
723
+ #~ msgctxt "storeabill-core"
724
+ #~ msgid "Date range"
725
+ #~ msgstr "Zeitraum"
726
+
727
+ #~ msgctxt "oss"
728
+ #~ msgid ""
729
+ #~ "Find useful options regarding the <a href=\"https://ec.europa.eu/"
730
+ #~ "taxation_customs/business/vat/modernising-vat-cross-border-ecommerce_en\" "
731
+ #~ "target=\"_blank\" rel=\"noopener\">One Stop Shop procedure</a> here."
732
+ #~ msgstr ""
733
+ #~ "Finden Sie hier nützliche Optionen zum <a href=\"https://ec.europa.eu/"
734
+ #~ "taxation_customs/business/vat/modernising-vat-cross-border-ecommerce_de\" "
735
+ #~ "target=\"_blank\" rel=\"noopener\">One Stop Shop Verfahren</a>."
736
+
737
+ #, php-format
738
+ #~ msgctxt "oss-tax-rate-import"
739
+ #~ msgid "VAT %s"
740
+ #~ msgstr "MwSt. %s"
packages/one-stop-shop-woocommerce/i18n/languages/oss-woocommerce.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: One Stop Shop for WooCommerce\n"
6
- "POT-Creation-Date: 2021-06-16 10:24+0200\n"
7
  "PO-Revision-Date: 2021-05-10 09:48+0200\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -22,19 +22,10 @@ msgstr ""
22
  "X-Poedit-SearchPathExcluded-0: *.min.js\n"
23
  "X-Poedit-SearchPathExcluded-1: vendor\n"
24
  "X-Poedit-SearchPathExcluded-2: node_modules\n"
 
25
 
26
  #. translators: 1: composer command. 2: plugin directory
27
- #: build/one-stop-shop-woocommerce-git/one-stop-shop-woocommerce.php:43
28
- #: build/one-stop-shop-woocommerce-git/one-stop-shop-woocommerce.php:61
29
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/one-stop-shop-woocommerce.php:43
30
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/one-stop-shop-woocommerce.php:61
31
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/one-stop-shop-woocommerce.php:43
32
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/one-stop-shop-woocommerce.php:61
33
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/one-stop-shop-woocommerce.php:43
34
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/one-stop-shop-woocommerce.php:61
35
- #: build/one-stop-shop-woocommerce-svn/trunk/one-stop-shop-woocommerce.php:43
36
- #: build/one-stop-shop-woocommerce-svn/trunk/one-stop-shop-woocommerce.php:61
37
- #: one-stop-shop-woocommerce.php:43 one-stop-shop-woocommerce.php:61
38
  #, php-format
39
  msgctxt "oss"
40
  msgid ""
@@ -42,12 +33,25 @@ msgid ""
42
  "run %1$s within the %2$s directory."
43
  msgstr ""
44
 
45
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:153
46
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:153
47
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:153
48
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:153
49
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:153
50
- #: src/Admin.php:178
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  #, php-format
52
  msgctxt "oss"
53
  msgid ""
@@ -56,270 +60,125 @@ msgid ""
56
  "target=\"_blank\">report details</a> and take action in case necessary."
57
  msgstr ""
58
 
59
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:157
60
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:157
61
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:157
62
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:157
63
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:157
64
- #: src/Admin.php:182
65
  msgctxt "oss"
66
  msgid "Delivery threshold reached (OSS)"
67
  msgstr ""
68
 
69
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:344
70
- #: build/one-stop-shop-woocommerce-git/src/SettingsPage.php:17
71
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:342
72
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/SettingsPage.php:17
73
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:344
74
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/SettingsPage.php:17
75
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:344
76
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/SettingsPage.php:17
77
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:344
78
- #: build/one-stop-shop-woocommerce-svn/trunk/src/SettingsPage.php:17
79
- #: src/Admin.php:369 src/SettingsPage.php:17
80
  msgctxt "oss"
81
  msgid "OSS"
82
  msgstr ""
83
 
84
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:344
85
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:462
86
- #: build/one-stop-shop-woocommerce-git/src/SettingsPage.php:23
87
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:342
88
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:460
89
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/SettingsPage.php:23
90
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:344
91
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:462
92
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/SettingsPage.php:23
93
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:344
94
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:462
95
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/SettingsPage.php:23
96
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:344
97
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:462
98
- #: build/one-stop-shop-woocommerce-svn/trunk/src/SettingsPage.php:23
99
- #: src/Admin.php:369 src/Admin.php:487 src/SettingsPage.php:23
100
  msgctxt "oss"
101
  msgid "One Stop Shop"
102
  msgstr ""
103
 
104
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:365
105
- #: build/one-stop-shop-woocommerce-git/src/Package.php:267
106
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:363
107
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:267
108
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:365
109
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:267
110
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:365
111
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:267
112
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:365
113
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:267
114
- #: src/Admin.php:390 src/Package.php:267
115
  #, php-format
116
  msgctxt "oss"
117
  msgid "Q%1$s/%2$s"
118
  msgstr ""
119
 
120
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:374
121
- #: build/one-stop-shop-woocommerce-git/src/Package.php:272
122
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:372
123
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:272
124
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:374
125
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:272
126
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:374
127
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:272
128
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:374
129
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:272
130
- #: src/Admin.php:399 src/Package.php:272
131
  #, php-format
132
  msgctxt "oss"
133
  msgid "%1$s/%2$s"
134
  msgstr ""
135
 
136
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:382
137
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:380
138
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:382
139
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:382
140
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:382
141
- #: src/Admin.php:407
142
  msgctxt "oss"
143
  msgid "New Report"
144
  msgstr ""
145
 
146
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:389
147
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:387
148
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:389
149
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:389
150
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:389
151
- #: src/Admin.php:414
152
  msgctxt "oss"
153
  msgid "Type"
154
  msgstr ""
155
 
156
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:401
157
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:399
158
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:401
159
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:401
160
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:401
161
- #: src/Admin.php:426
162
- msgctxt "storeabill-core"
163
  msgid "Year"
164
  msgstr ""
165
 
166
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:413
167
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:411
168
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:413
169
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:413
170
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:413
171
- #: src/Admin.php:438
172
- msgctxt "storeabill-core"
173
  msgid "Quarter"
174
  msgstr ""
175
 
176
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:425
177
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:423
178
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:425
179
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:425
180
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:425
181
- #: src/Admin.php:450
182
- msgctxt "storeabill-core"
183
  msgid "Month"
184
  msgstr ""
185
 
186
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:437
187
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:435
188
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:437
189
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:437
190
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:437
191
- #: src/Admin.php:462
192
- msgctxt "storeabill-core"
193
  msgid "Date range"
194
  msgstr ""
195
 
196
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:449
197
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:447
198
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:449
199
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:449
200
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:449
201
- #: src/Admin.php:474
202
  msgctxt "oss"
203
  msgid "Start report"
204
  msgstr ""
205
 
206
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:463
207
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:461
208
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:463
209
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:463
210
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:463
211
- #: src/Admin.php:488
212
  msgctxt "oss"
213
  msgid "New report"
214
  msgstr ""
215
 
216
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:505
217
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:503
218
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:505
219
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:505
220
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:505
221
- #: src/Admin.php:530
222
  msgctxt "oss"
223
  msgid "View"
224
  msgstr ""
225
 
226
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:509
227
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:507
228
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:509
229
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:509
230
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:509
231
- #: src/Admin.php:534
232
  msgctxt "oss"
233
  msgid "Export"
234
  msgstr ""
235
 
236
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:513
237
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:511
238
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:513
239
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:513
240
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:513
241
- #: src/Admin.php:538
242
  msgctxt "oss"
243
  msgid "Refresh"
244
  msgstr ""
245
 
246
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:517
247
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:515
248
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:517
249
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:517
250
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:517
251
- #: src/Admin.php:542
252
  msgctxt "oss"
253
  msgid "Delete"
254
  msgstr ""
255
 
256
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:523
257
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:521
258
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:523
259
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:523
260
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:523
261
- #: src/Admin.php:548
262
  msgctxt "oss"
263
  msgid "Cancel"
264
  msgstr ""
265
 
266
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:552
267
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:550
268
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:552
269
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:552
270
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:552
271
- #: src/Admin.php:577
272
  msgctxt "oss"
273
  msgid "Country"
274
  msgstr ""
275
 
276
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:553
277
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:551
278
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:553
279
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:553
280
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:553
281
- #: src/Admin.php:578
282
  msgctxt "oss"
283
  msgid "Tax Rate"
284
  msgstr ""
285
 
286
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:554
287
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:552
288
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:554
289
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:554
290
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:554
291
- #: src/Admin.php:579
292
  msgctxt "oss"
293
  msgid "Net Total"
294
  msgstr ""
295
 
296
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:555
297
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:553
298
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:555
299
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:555
300
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:555
301
- #: src/Admin.php:580
302
  msgctxt "oss"
303
  msgid "Tax Total"
304
  msgstr ""
305
 
306
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:586
307
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:584
308
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:586
309
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:586
310
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:586
311
- #: src/Admin.php:611
312
  #, php-format
313
  msgctxt "oss"
314
  msgid "%1$s %%"
315
  msgstr ""
316
 
317
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:598
318
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:596
319
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:598
320
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:598
321
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:598
322
- #: src/Admin.php:623
323
  #, php-format
324
  msgctxt "oss"
325
  msgid ""
@@ -327,111 +186,51 @@ msgid ""
327
  "href=\"%3$s\">Find pending actions</a>"
328
  msgstr ""
329
 
330
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:598
331
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:596
332
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:598
333
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:598
334
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:598
335
- #: src/Admin.php:623
336
  msgctxt "oss"
337
  msgid "Not yet known"
338
  msgstr ""
339
 
340
- #: build/one-stop-shop-woocommerce-git/src/Admin.php:629
341
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:39
342
- #: build/one-stop-shop-woocommerce-git/src/SettingsPage.php:23
343
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Admin.php:627
344
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:39
345
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/SettingsPage.php:23
346
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Admin.php:629
347
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:39
348
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/SettingsPage.php:23
349
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Admin.php:629
350
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:39
351
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/SettingsPage.php:23
352
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Admin.php:629
353
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:39
354
- #: build/one-stop-shop-woocommerce-svn/trunk/src/SettingsPage.php:23
355
- #: src/Admin.php:654 src/ReportTable.php:39 src/SettingsPage.php:23
356
  msgctxt "oss"
357
  msgid "Reports"
358
  msgstr ""
359
 
360
- #: build/one-stop-shop-woocommerce-git/src/AdminNote.php:39
361
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/AdminNote.php:39
362
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/AdminNote.php:39
363
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/AdminNote.php:39
364
- #: build/one-stop-shop-woocommerce-svn/trunk/src/AdminNote.php:39
365
  #: src/AdminNote.php:39
366
  msgctxt "oss"
367
  msgid "Dismiss"
368
  msgstr ""
369
 
370
- #: build/one-stop-shop-woocommerce-git/src/AsyncReportGenerator.php:172
371
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/AsyncReportGenerator.php:172
372
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/AsyncReportGenerator.php:172
373
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/AsyncReportGenerator.php:172
374
- #: build/one-stop-shop-woocommerce-svn/trunk/src/AsyncReportGenerator.php:172
375
- #: src/AsyncReportGenerator.php:195
376
  msgctxt "oss"
377
  msgid "No orders found."
378
  msgstr ""
379
 
380
- #: build/one-stop-shop-woocommerce-git/src/CSVExporter.php:52
381
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/CSVExporter.php:52
382
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/CSVExporter.php:52
383
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/CSVExporter.php:52
384
- #: build/one-stop-shop-woocommerce-svn/trunk/src/CSVExporter.php:52
385
  #: src/CSVExporter.php:52
386
  msgctxt "oss"
387
  msgid "Country code"
388
  msgstr ""
389
 
390
- #: build/one-stop-shop-woocommerce-git/src/CSVExporter.php:53
391
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/CSVExporter.php:53
392
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/CSVExporter.php:53
393
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/CSVExporter.php:53
394
- #: build/one-stop-shop-woocommerce-svn/trunk/src/CSVExporter.php:53
395
  #: src/CSVExporter.php:53
396
  msgctxt "oss"
397
  msgid "Tax rate"
398
  msgstr ""
399
 
400
- #: build/one-stop-shop-woocommerce-git/src/CSVExporter.php:54
401
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/CSVExporter.php:54
402
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/CSVExporter.php:54
403
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/CSVExporter.php:54
404
- #: build/one-stop-shop-woocommerce-svn/trunk/src/CSVExporter.php:54
405
  #: src/CSVExporter.php:54
406
  msgctxt "oss"
407
  msgid "Taxable base"
408
  msgstr ""
409
 
410
- #: build/one-stop-shop-woocommerce-git/src/CSVExporter.php:55
411
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/CSVExporter.php:55
412
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/CSVExporter.php:55
413
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/CSVExporter.php:55
414
- #: build/one-stop-shop-woocommerce-svn/trunk/src/CSVExporter.php:55
415
  #: src/CSVExporter.php:55
416
  msgctxt "oss"
417
  msgid "Amount"
418
  msgstr ""
419
 
420
- #: build/one-stop-shop-woocommerce-git/src/DeliveryThresholdEmailNotification.php:19
421
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/DeliveryThresholdEmailNotification.php:19
422
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/DeliveryThresholdEmailNotification.php:19
423
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/DeliveryThresholdEmailNotification.php:19
424
- #: build/one-stop-shop-woocommerce-svn/trunk/src/DeliveryThresholdEmailNotification.php:19
425
  #: src/DeliveryThresholdEmailNotification.php:19
426
  msgctxt "oss"
427
  msgid "OSS Delivery Threshold Notification"
428
  msgstr ""
429
 
430
- #: build/one-stop-shop-woocommerce-git/src/DeliveryThresholdEmailNotification.php:20
431
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/DeliveryThresholdEmailNotification.php:20
432
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/DeliveryThresholdEmailNotification.php:20
433
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/DeliveryThresholdEmailNotification.php:20
434
- #: build/one-stop-shop-woocommerce-svn/trunk/src/DeliveryThresholdEmailNotification.php:20
435
  #: src/DeliveryThresholdEmailNotification.php:20
436
  msgctxt "oss"
437
  msgid ""
@@ -439,181 +238,91 @@ msgid ""
439
  "close to being reached."
440
  msgstr ""
441
 
442
- #: build/one-stop-shop-woocommerce-git/src/DeliveryThresholdEmailNotification.php:38
443
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/DeliveryThresholdEmailNotification.php:38
444
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/DeliveryThresholdEmailNotification.php:38
445
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/DeliveryThresholdEmailNotification.php:38
446
- #: build/one-stop-shop-woocommerce-svn/trunk/src/DeliveryThresholdEmailNotification.php:38
447
  #: src/DeliveryThresholdEmailNotification.php:38
448
  msgctxt "oss"
449
  msgid "[{site_title}]: OSS delivery threshold reached"
450
  msgstr ""
451
 
452
- #: build/one-stop-shop-woocommerce-git/src/DeliveryThresholdEmailNotification.php:48
453
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/DeliveryThresholdEmailNotification.php:48
454
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/DeliveryThresholdEmailNotification.php:48
455
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/DeliveryThresholdEmailNotification.php:48
456
- #: build/one-stop-shop-woocommerce-svn/trunk/src/DeliveryThresholdEmailNotification.php:48
457
  #: src/DeliveryThresholdEmailNotification.php:48
458
  msgctxt "oss"
459
  msgid "OSS delivery threshold reached"
460
  msgstr ""
461
 
462
- #: build/one-stop-shop-woocommerce-git/src/DeliveryThresholdWarning.php:13
463
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/DeliveryThresholdWarning.php:13
464
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/DeliveryThresholdWarning.php:13
465
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/DeliveryThresholdWarning.php:13
466
- #: build/one-stop-shop-woocommerce-svn/trunk/src/DeliveryThresholdWarning.php:13
467
  #: src/DeliveryThresholdWarning.php:13
468
  msgctxt "oss"
469
  msgid "See details"
470
  msgstr ""
471
 
472
- #: build/one-stop-shop-woocommerce-git/src/Package.php:83
473
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:83
474
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:83
475
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:83
476
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:83
477
- #: src/Package.php:83
478
  msgctxt "oss"
479
  msgid ""
480
  "To use the OSS for WooCommerce plugin please make sure that WooCommerce is "
481
  "installed and activated."
482
  msgstr ""
483
 
484
- #: build/one-stop-shop-woocommerce-git/src/Package.php:252
485
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:40
486
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:252
487
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:40
488
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:252
489
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:40
490
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:252
491
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:40
492
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:252
493
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:40
494
- #: src/Package.php:252 src/ReportTable.php:40
495
  msgctxt "oss"
496
  msgid "Report"
497
  msgstr ""
498
 
499
- #: build/one-stop-shop-woocommerce-git/src/Package.php:276
500
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:276
501
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:276
502
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:276
503
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:276
504
- #: src/Package.php:276
505
  #, php-format
506
  msgctxt "oss"
507
  msgid "%1$s"
508
  msgstr ""
509
 
510
- #: build/one-stop-shop-woocommerce-git/src/Package.php:281
511
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:281
512
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:281
513
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:281
514
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:281
515
- #: src/Package.php:281
516
  #, php-format
517
  msgctxt "oss"
518
  msgid "%1$s - %2$s"
519
  msgstr ""
520
 
521
- #: build/one-stop-shop-woocommerce-git/src/Package.php:286
522
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:286
523
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:286
524
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:286
525
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:286
526
- #: src/Package.php:286
527
  #, php-format
528
  msgctxt "oss"
529
  msgid "Observer %1$s"
530
  msgstr ""
531
 
532
- #: build/one-stop-shop-woocommerce-git/src/Package.php:463
533
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:463
534
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:463
535
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:463
536
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:463
537
- #: src/Package.php:463
538
  msgctxt "oss"
539
  msgid "Quarterly"
540
  msgstr ""
541
 
542
- #: build/one-stop-shop-woocommerce-git/src/Package.php:464
543
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:464
544
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:464
545
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:464
546
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:464
547
- #: src/Package.php:464
548
  msgctxt "oss"
549
  msgid "Yearly"
550
  msgstr ""
551
 
552
- #: build/one-stop-shop-woocommerce-git/src/Package.php:465
553
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:465
554
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:465
555
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:465
556
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:465
557
- #: src/Package.php:465
558
  msgctxt "oss"
559
  msgid "Monthly"
560
  msgstr ""
561
 
562
- #: build/one-stop-shop-woocommerce-git/src/Package.php:466
563
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:466
564
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:466
565
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:466
566
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:466
567
- #: src/Package.php:466
568
  msgctxt "oss"
569
  msgid "Custom"
570
  msgstr ""
571
 
572
- #: build/one-stop-shop-woocommerce-git/src/Package.php:470
573
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:470
574
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:470
575
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:470
576
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:470
577
- #: src/Package.php:470
578
  msgctxt "oss"
579
  msgid "Observer"
580
  msgstr ""
581
 
582
- #: build/one-stop-shop-woocommerce-git/src/Package.php:484
583
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:484
584
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:484
585
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:484
586
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:484
587
- #: src/Package.php:484
588
  msgctxt "oss"
589
  msgid "Pending"
590
  msgstr ""
591
 
592
- #: build/one-stop-shop-woocommerce-git/src/Package.php:485
593
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:485
594
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:485
595
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:485
596
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:485
597
- #: src/Package.php:485
598
  msgctxt "oss"
599
  msgid "Completed"
600
  msgstr ""
601
 
602
- #: build/one-stop-shop-woocommerce-git/src/Package.php:486
603
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Package.php:486
604
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Package.php:486
605
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Package.php:486
606
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Package.php:486
607
- #: src/Package.php:486
608
  msgctxt "oss"
609
  msgid "Failed"
610
  msgstr ""
611
 
612
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:121
613
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:121
614
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:121
615
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:121
616
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:121
617
  #: src/ReportTable.php:121
618
  #, php-format
619
  msgctxt "oss"
@@ -622,21 +331,11 @@ msgid_plural "%d reports deleted."
622
  msgstr[0] ""
623
  msgstr[1] ""
624
 
625
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:184
626
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:184
627
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:184
628
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:184
629
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:184
630
  #: src/ReportTable.php:184
631
  msgctxt "oss"
632
  msgid "No reports found"
633
  msgstr ""
634
 
635
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:225
636
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:225
637
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:225
638
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:225
639
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:225
640
  #: src/ReportTable.php:225
641
  #, php-format
642
  msgctxt "oss"
@@ -645,11 +344,6 @@ msgid_plural "All <span class=\"count\">(%s)</span>"
645
  msgstr[0] ""
646
  msgstr[1] ""
647
 
648
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:250
649
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:250
650
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:250
651
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:250
652
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:250
653
  #: src/ReportTable.php:250
654
  #, php-format
655
  msgctxt "oss"
@@ -658,131 +352,62 @@ msgid_plural " <span class=\"count\">(%s)</span>"
658
  msgstr[0] ""
659
  msgstr[1] ""
660
 
661
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:323
662
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:323
663
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:323
664
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:323
665
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:323
666
  #: src/ReportTable.php:323
667
  msgctxt "oss"
668
  msgid "Filter"
669
  msgstr ""
670
 
671
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:350
672
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:350
673
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:350
674
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:350
675
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:350
676
  #: src/ReportTable.php:350
677
  msgctxt "oss"
678
  msgid "Title"
679
  msgstr ""
680
 
681
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:351
682
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:351
683
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:351
684
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:351
685
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:351
686
  #: src/ReportTable.php:351
687
  msgctxt "oss"
688
  msgid "Start"
689
  msgstr ""
690
 
691
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:352
692
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:352
693
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:352
694
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:352
695
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:352
696
  #: src/ReportTable.php:352
697
  msgctxt "oss"
698
  msgid "End"
699
  msgstr ""
700
 
701
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:353
702
- #: build/one-stop-shop-woocommerce-git/templates/emails/admin-delivery-threshold.php:25
703
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:353
704
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/templates/emails/admin-delivery-threshold.php:25
705
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:353
706
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/templates/emails/admin-delivery-threshold.php:25
707
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:353
708
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/templates/emails/admin-delivery-threshold.php:25
709
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:353
710
- #: build/one-stop-shop-woocommerce-svn/trunk/templates/emails/admin-delivery-threshold.php:25
711
  #: src/ReportTable.php:353 templates/emails/admin-delivery-threshold.php:25
712
  msgctxt "oss"
713
  msgid "Net total"
714
  msgstr ""
715
 
716
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:354
717
- #: build/one-stop-shop-woocommerce-git/templates/emails/admin-delivery-threshold.php:26
718
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:354
719
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/templates/emails/admin-delivery-threshold.php:26
720
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:354
721
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/templates/emails/admin-delivery-threshold.php:26
722
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:354
723
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/templates/emails/admin-delivery-threshold.php:26
724
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:354
725
- #: build/one-stop-shop-woocommerce-svn/trunk/templates/emails/admin-delivery-threshold.php:26
726
  #: src/ReportTable.php:354 templates/emails/admin-delivery-threshold.php:26
727
  msgctxt "oss"
728
  msgid "Tax total"
729
  msgstr ""
730
 
731
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:355
732
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:355
733
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:355
734
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:355
735
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:355
736
  #: src/ReportTable.php:355
737
  msgctxt "oss"
738
  msgid "Status"
739
  msgstr ""
740
 
741
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:356
742
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:356
743
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:356
744
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:356
745
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:356
746
  #: src/ReportTable.php:356
747
  msgctxt "oss"
748
  msgid "Actions"
749
  msgstr ""
750
 
751
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:420
752
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:420
753
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:420
754
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:420
755
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:420
756
  #: src/ReportTable.php:420
757
  #, php-format
758
  msgctxt "oss"
759
  msgid "Select %s"
760
  msgstr ""
761
 
762
- #: build/one-stop-shop-woocommerce-git/src/ReportTable.php:513
763
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/ReportTable.php:513
764
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/ReportTable.php:513
765
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/ReportTable.php:513
766
- #: build/one-stop-shop-woocommerce-svn/trunk/src/ReportTable.php:513
767
  #: src/ReportTable.php:513
768
  msgctxt "oss"
769
  msgid "Delete Permanently"
770
  msgstr ""
771
 
772
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:14
773
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:14
774
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:14
775
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:14
776
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:14
777
  #: src/Settings.php:14
778
  msgctxt "oss"
779
  msgid "General"
780
  msgstr ""
781
 
782
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:19
783
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:19
784
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:19
785
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:19
786
  #: src/Settings.php:19
787
  msgctxt "oss"
788
  msgid ""
@@ -791,51 +416,26 @@ msgid ""
791
  "\">One Stop Shop procedure</a> here."
792
  msgstr ""
793
 
794
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:31
795
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:31
796
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:31
797
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:31
798
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:31
799
  #: src/Settings.php:31
800
  msgctxt "oss"
801
  msgid "OSS status"
802
  msgstr ""
803
 
804
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:32
805
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:32
806
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:32
807
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:32
808
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:32
809
  #: src/Settings.php:32
810
  msgctxt "oss"
811
  msgid "Yes, I'm currently participating in the OSS procedure."
812
  msgstr ""
813
 
814
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:39
815
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:39
816
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:39
817
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:39
818
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:39
819
  #: src/Settings.php:39
820
  msgctxt "oss"
821
  msgid "Observation"
822
  msgstr ""
823
 
824
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:40
825
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:40
826
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:40
827
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:40
828
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:40
829
  #: src/Settings.php:40
830
  msgctxt "oss"
831
  msgid "Automatically observe the delivery threshold of the current year."
832
  msgstr ""
833
 
834
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:40
835
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:40
836
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:40
837
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:40
838
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:40
839
  #: src/Settings.php:40
840
  msgctxt "oss"
841
  msgid ""
@@ -845,72 +445,54 @@ msgid ""
845
  "observation to save processing time."
846
  msgstr ""
847
 
848
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:50
849
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:50
850
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:50
851
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:50
852
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:50
853
  #: src/Settings.php:50
854
  msgctxt "oss"
855
  msgid "Delivery threshold"
856
  msgstr ""
857
 
858
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:60
859
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:60
860
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:60
861
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:60
862
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:60
863
  #: src/Settings.php:60
864
  msgctxt "oss"
865
  msgid "Participation"
866
  msgstr ""
867
 
868
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:80
869
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:80
870
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:80
871
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:80
872
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:80
873
- #: src/Settings.php:80
 
 
 
 
 
 
 
 
 
 
 
 
874
  msgctxt "oss"
875
  msgid "Are you sure? Please backup your tax rates before proceeding."
876
  msgstr ""
877
 
878
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:80
879
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:80
880
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:80
881
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:80
882
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:80
883
- #: src/Settings.php:80
884
  msgctxt "oss"
885
  msgid "End OSS participation"
886
  msgstr ""
887
 
888
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:80
889
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:80
890
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:80
891
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:80
892
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:80
893
- #: src/Settings.php:80
894
  msgctxt "oss"
895
  msgid "Start OSS participation"
896
  msgstr ""
897
 
898
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:81
899
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:81
900
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:81
901
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:81
902
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:81
903
- #: src/Settings.php:81
904
  msgctxt "oss"
905
  msgid "learn more"
906
  msgstr ""
907
 
908
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:83
909
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:83
910
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:83
911
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:83
912
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:83
913
- #: src/Settings.php:83
914
  msgctxt "oss"
915
  msgid ""
916
  "Use this option to automatically adjust tax-related options in WooCommerce. "
@@ -918,74 +500,45 @@ msgid ""
918
  "rates based on your OSS participation status."
919
  msgstr ""
920
 
921
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:105
922
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:105
923
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:105
924
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:105
925
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:105
926
- #: src/Settings.php:105
927
  msgctxt "oss"
928
  msgid "See status"
929
  msgstr ""
930
 
931
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:105
932
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:105
933
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:105
934
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:105
935
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:105
936
- #: src/Settings.php:105
937
  msgctxt "oss"
938
  msgid "Start initial report"
939
  msgstr ""
940
 
941
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:106
942
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:106
943
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:106
944
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:106
945
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:106
946
- #: src/Settings.php:106
947
  #, php-format
948
  msgctxt "oss"
949
  msgid "Report not yet completed. %s"
950
  msgstr ""
951
 
952
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:106
953
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:106
954
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:106
955
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:106
956
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:106
957
- #: src/Settings.php:106
958
  #, php-format
959
  msgctxt "oss"
960
  msgid "Report not yet started. %s"
961
  msgstr ""
962
 
963
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:124
964
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:124
965
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:124
966
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:124
967
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:124
968
- #: src/Settings.php:124
969
  msgctxt "oss-amounts"
970
  msgid "of"
971
  msgstr ""
972
 
973
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:124
974
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:124
975
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:124
976
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:124
977
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:124
978
- #: src/Settings.php:124
 
979
  msgctxt "oss"
980
  msgid "see details"
981
  msgstr ""
982
 
983
- #: build/one-stop-shop-woocommerce-git/src/Settings.php:125
984
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:125
985
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Settings.php:125
986
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Settings.php:125
987
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Settings.php:125
988
- #: src/Settings.php:125
989
  #, php-format
990
  msgctxt "oss"
991
  msgid ""
@@ -995,157 +548,79 @@ msgid ""
995
  "href=\"%s\">Find out more</a> about the calculation."
996
  msgstr ""
997
 
998
- #: build/one-stop-shop-woocommerce-git/src/SettingsPage.php:23
999
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/SettingsPage.php:23
1000
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/SettingsPage.php:23
1001
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/SettingsPage.php:23
1002
- #: build/one-stop-shop-woocommerce-svn/trunk/src/SettingsPage.php:23
1003
  #: src/SettingsPage.php:23
1004
  msgctxt "oss"
1005
  msgid "Learn More"
1006
  msgstr ""
1007
 
1008
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:167
1009
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:225
1010
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:167
1011
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:225
1012
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:167
1013
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:225
1014
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:167
1015
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:225
1016
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:167
1017
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:225 src/Tax.php:168
1018
- #: src/Tax.php:226
1019
  #, php-format
1020
  msgctxt "oss"
1021
  msgid "Tax class (%s)"
1022
  msgstr ""
1023
 
1024
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:168
1025
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:168
1026
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:168
1027
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:168
1028
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:168 src/Tax.php:169
1029
  msgctxt "oss"
1030
  msgid "Same as parent"
1031
  msgstr ""
1032
 
1033
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:170
1034
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:203
1035
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:227
1036
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:261
1037
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:170
1038
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:203
1039
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:227
1040
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:261
1041
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:170
1042
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:203
1043
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:227
1044
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:261
1045
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:170
1046
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:203
1047
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:227
1048
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:261
1049
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:170
1050
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:203
1051
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:227
1052
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:261 src/Tax.php:171
1053
- #: src/Tax.php:204 src/Tax.php:228 src/Tax.php:262
1054
  msgctxt "oss"
1055
  msgid "remove"
1056
  msgstr ""
1057
 
1058
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:180
1059
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:238
1060
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:180
1061
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:238
1062
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:180
1063
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:238
1064
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:180
1065
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:238
1066
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:180
1067
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:238 src/Tax.php:181
1068
- #: src/Tax.php:239
1069
  msgctxt "oss"
1070
  msgid "Add country specific tax class (OSS)"
1071
  msgstr ""
1072
 
1073
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:187
1074
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:245
1075
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:187
1076
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:245
1077
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:187
1078
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:245
1079
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:187
1080
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:245
1081
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:187
1082
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:245 src/Tax.php:188
1083
- #: src/Tax.php:246
1084
  msgctxt "oss"
1085
  msgid "Select country"
1086
  msgstr ""
1087
 
1088
  #. translators: Do not translate
1089
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:333
1090
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:412
1091
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:333
1092
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:406
1093
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:333
1094
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:412
1095
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:333
1096
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:412
1097
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:333
1098
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:412 src/Tax.php:341
1099
- #: src/Tax.php:420
1100
  msgid "Reduced rate"
1101
  msgstr ""
1102
 
1103
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:336
1104
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:404
1105
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:336
1106
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:402
1107
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:336
1108
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:404
1109
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:336
1110
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:404
1111
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:336
1112
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:404 src/Tax.php:344
1113
- #: src/Tax.php:412
1114
  msgctxt "oss"
1115
  msgid "Greater reduced rate"
1116
  msgstr ""
1117
 
1118
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:339
1119
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:408
1120
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:339
1121
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:404
1122
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:339
1123
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:408
1124
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:339
1125
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:408
1126
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:339
1127
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:408 src/Tax.php:347
1128
- #: src/Tax.php:416
1129
  msgctxt "oss"
1130
  msgid "Super reduced rate"
1131
  msgstr ""
1132
 
1133
- #: build/one-stop-shop-woocommerce-git/src/Tax.php:567
1134
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Tax.php:561
1135
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/src/Tax.php:567
1136
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/src/Tax.php:567
1137
- #: build/one-stop-shop-woocommerce-svn/trunk/src/Tax.php:567 src/Tax.php:607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1138
  #, php-format
1139
  msgctxt "oss-tax-rate-import"
1140
- msgid "VAT %s"
1141
  msgstr ""
1142
 
1143
  #. translators: %s: Customer billing full name
1144
- #: build/one-stop-shop-woocommerce-git/templates/emails/admin-delivery-threshold.php:19
1145
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/templates/emails/admin-delivery-threshold.php:19
1146
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/templates/emails/admin-delivery-threshold.php:19
1147
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/templates/emails/admin-delivery-threshold.php:19
1148
- #: build/one-stop-shop-woocommerce-svn/trunk/templates/emails/admin-delivery-threshold.php:19
1149
  #: templates/emails/admin-delivery-threshold.php:19
1150
  #, php-format
1151
  msgctxt "oss"
@@ -1154,41 +629,21 @@ msgid ""
1154
  "immediately. Visit the <a href=\"%2$s\">OSS Settings Panel</a> for details."
1155
  msgstr ""
1156
 
1157
- #: build/one-stop-shop-woocommerce-git/templates/emails/admin-delivery-threshold.php:21
1158
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/templates/emails/admin-delivery-threshold.php:21
1159
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/templates/emails/admin-delivery-threshold.php:21
1160
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/templates/emails/admin-delivery-threshold.php:21
1161
- #: build/one-stop-shop-woocommerce-svn/trunk/templates/emails/admin-delivery-threshold.php:21
1162
  #: templates/emails/admin-delivery-threshold.php:21
1163
  msgctxt "oss"
1164
  msgid "Report Details"
1165
  msgstr ""
1166
 
1167
- #: build/one-stop-shop-woocommerce-git/templates/emails/admin-delivery-threshold.php:24
1168
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/templates/emails/admin-delivery-threshold.php:24
1169
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/templates/emails/admin-delivery-threshold.php:24
1170
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/templates/emails/admin-delivery-threshold.php:24
1171
- #: build/one-stop-shop-woocommerce-svn/trunk/templates/emails/admin-delivery-threshold.php:24
1172
  #: templates/emails/admin-delivery-threshold.php:24
1173
  msgctxt "oss"
1174
  msgid "Period"
1175
  msgstr ""
1176
 
1177
- #: build/one-stop-shop-woocommerce-git/templates/emails/admin-delivery-threshold.php:29
1178
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/templates/emails/admin-delivery-threshold.php:29
1179
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/templates/emails/admin-delivery-threshold.php:29
1180
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/templates/emails/admin-delivery-threshold.php:29
1181
- #: build/one-stop-shop-woocommerce-svn/trunk/templates/emails/admin-delivery-threshold.php:29
1182
  #: templates/emails/admin-delivery-threshold.php:29
1183
  msgctxt "oss"
1184
  msgid "See report details"
1185
  msgstr ""
1186
 
1187
- #: build/one-stop-shop-woocommerce-git/templates/emails/plain/admin-delivery-threshold.php:17
1188
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/templates/emails/plain/admin-delivery-threshold.php:17
1189
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.1/templates/emails/plain/admin-delivery-threshold.php:17
1190
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.2/templates/emails/plain/admin-delivery-threshold.php:17
1191
- #: build/one-stop-shop-woocommerce-svn/trunk/templates/emails/plain/admin-delivery-threshold.php:17
1192
  #: templates/emails/plain/admin-delivery-threshold.php:17
1193
  #, php-format
1194
  msgctxt "oss"
@@ -1197,32 +652,6 @@ msgid ""
1197
  "immediately. Visit the OSS Settings Panel (%2$s) for details."
1198
  msgstr ""
1199
 
1200
- #: build/one-stop-shop-woocommerce-svn/tags/1.0.0/src/Settings.php:19
1201
- msgctxt "oss"
1202
- msgid ""
1203
- "Find useful options regarding the <a href=\"https://ec.europa.eu/"
1204
- "taxation_customs/business/vat/modernising-vat-cross-border-ecommerce_en\" "
1205
- "target=\"_blank\" rel=\"noopener\">One Stop Shop procedure</a> here."
1206
- msgstr ""
1207
-
1208
- #: src/Admin.php:54 src/Admin.php:55
1209
- msgctxt "oss"
1210
- msgid "Refresh VAT rates (OSS)"
1211
- msgstr ""
1212
-
1213
- #: src/Admin.php:59
1214
- msgctxt "oss"
1215
- msgid "Note:"
1216
- msgstr ""
1217
-
1218
- #: src/Admin.php:60
1219
- #, php-format
1220
- msgctxt "oss"
1221
- msgid ""
1222
- "This option will delete all of your current EU VAT rates and re-import them "
1223
- "based on your current <a href=\"%s\">OSS status</a>."
1224
- msgstr ""
1225
-
1226
  #. Plugin Name of the plugin/theme
1227
  msgid "One Stop Shop for WooCommerce"
1228
  msgstr ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: One Stop Shop for WooCommerce\n"
6
+ "POT-Creation-Date: 2021-07-08 13:56+0200\n"
7
  "PO-Revision-Date: 2021-05-10 09:48+0200\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
22
  "X-Poedit-SearchPathExcluded-0: *.min.js\n"
23
  "X-Poedit-SearchPathExcluded-1: vendor\n"
24
  "X-Poedit-SearchPathExcluded-2: node_modules\n"
25
+ "X-Poedit-SearchPathExcluded-3: build\n"
26
 
27
  #. translators: 1: composer command. 2: plugin directory
28
+ #: one-stop-shop-woocommerce.php:44 one-stop-shop-woocommerce.php:62
 
 
 
 
 
 
 
 
 
 
29
  #, php-format
30
  msgctxt "oss"
31
  msgid ""
33
  "run %1$s within the %2$s directory."
34
  msgstr ""
35
 
36
+ #: src/Admin.php:76 src/Admin.php:77
37
+ msgctxt "oss"
38
+ msgid "Refresh VAT rates (OSS)"
39
+ msgstr ""
40
+
41
+ #: src/Admin.php:81
42
+ msgctxt "oss"
43
+ msgid "Note:"
44
+ msgstr ""
45
+
46
+ #: src/Admin.php:82
47
+ #, php-format
48
+ msgctxt "oss"
49
+ msgid ""
50
+ "This option will delete all of your current EU VAT rates and re-import them "
51
+ "based on your current <a href=\"%s\">OSS status</a>."
52
+ msgstr ""
53
+
54
+ #: src/Admin.php:212
55
  #, php-format
56
  msgctxt "oss"
57
  msgid ""
60
  "target=\"_blank\">report details</a> and take action in case necessary."
61
  msgstr ""
62
 
63
+ #: src/Admin.php:216
 
 
 
 
 
64
  msgctxt "oss"
65
  msgid "Delivery threshold reached (OSS)"
66
  msgstr ""
67
 
68
+ #: src/Admin.php:432 src/SettingsPage.php:17
 
 
 
 
 
 
 
 
 
 
69
  msgctxt "oss"
70
  msgid "OSS"
71
  msgstr ""
72
 
73
+ #: src/Admin.php:432 src/Admin.php:550 src/SettingsPage.php:23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  msgctxt "oss"
75
  msgid "One Stop Shop"
76
  msgstr ""
77
 
78
+ #: src/Admin.php:453 src/Package.php:264
 
 
 
 
 
 
 
 
 
 
79
  #, php-format
80
  msgctxt "oss"
81
  msgid "Q%1$s/%2$s"
82
  msgstr ""
83
 
84
+ #: src/Admin.php:462 src/Package.php:269
 
 
 
 
 
 
 
 
 
 
85
  #, php-format
86
  msgctxt "oss"
87
  msgid "%1$s/%2$s"
88
  msgstr ""
89
 
90
+ #: src/Admin.php:470
 
 
 
 
 
91
  msgctxt "oss"
92
  msgid "New Report"
93
  msgstr ""
94
 
95
+ #: src/Admin.php:477
 
 
 
 
 
96
  msgctxt "oss"
97
  msgid "Type"
98
  msgstr ""
99
 
100
+ #: src/Admin.php:489
101
+ msgctxt "oss"
 
 
 
 
 
102
  msgid "Year"
103
  msgstr ""
104
 
105
+ #: src/Admin.php:501
106
+ msgctxt "oss"
 
 
 
 
 
107
  msgid "Quarter"
108
  msgstr ""
109
 
110
+ #: src/Admin.php:513
111
+ msgctxt "oss"
 
 
 
 
 
112
  msgid "Month"
113
  msgstr ""
114
 
115
+ #: src/Admin.php:525
116
+ msgctxt "oss"
 
 
 
 
 
117
  msgid "Date range"
118
  msgstr ""
119
 
120
+ #: src/Admin.php:537
 
 
 
 
 
121
  msgctxt "oss"
122
  msgid "Start report"
123
  msgstr ""
124
 
125
+ #: src/Admin.php:551
 
 
 
 
 
126
  msgctxt "oss"
127
  msgid "New report"
128
  msgstr ""
129
 
130
+ #: src/Admin.php:593
 
 
 
 
 
131
  msgctxt "oss"
132
  msgid "View"
133
  msgstr ""
134
 
135
+ #: src/Admin.php:597
 
 
 
 
 
136
  msgctxt "oss"
137
  msgid "Export"
138
  msgstr ""
139
 
140
+ #: src/Admin.php:601
 
 
 
 
 
141
  msgctxt "oss"
142
  msgid "Refresh"
143
  msgstr ""
144
 
145
+ #: src/Admin.php:605
 
 
 
 
 
146
  msgctxt "oss"
147
  msgid "Delete"
148
  msgstr ""
149
 
150
+ #: src/Admin.php:611
 
 
 
 
 
151
  msgctxt "oss"
152
  msgid "Cancel"
153
  msgstr ""
154
 
155
+ #: src/Admin.php:640
 
 
 
 
 
156
  msgctxt "oss"
157
  msgid "Country"
158
  msgstr ""
159
 
160
+ #: src/Admin.php:641
 
 
 
 
 
161
  msgctxt "oss"
162
  msgid "Tax Rate"
163
  msgstr ""
164
 
165
+ #: src/Admin.php:642
 
 
 
 
 
166
  msgctxt "oss"
167
  msgid "Net Total"
168
  msgstr ""
169
 
170
+ #: src/Admin.php:643
 
 
 
 
 
171
  msgctxt "oss"
172
  msgid "Tax Total"
173
  msgstr ""
174
 
175
+ #: src/Admin.php:674
 
 
 
 
 
176
  #, php-format
177
  msgctxt "oss"
178
  msgid "%1$s %%"
179
  msgstr ""
180
 
181
+ #: src/Admin.php:686
 
 
 
 
 
182
  #, php-format
183
  msgctxt "oss"
184
  msgid ""
186
  "href=\"%3$s\">Find pending actions</a>"
187
  msgstr ""
188
 
189
+ #: src/Admin.php:686
 
 
 
 
 
190
  msgctxt "oss"
191
  msgid "Not yet known"
192
  msgstr ""
193
 
194
+ #: src/Admin.php:717 src/ReportTable.php:39 src/SettingsPage.php:23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
195
  msgctxt "oss"
196
  msgid "Reports"
197
  msgstr ""
198
 
 
 
 
 
 
199
  #: src/AdminNote.php:39
200
  msgctxt "oss"
201
  msgid "Dismiss"
202
  msgstr ""
203
 
204
+ #: src/AsyncReportGenerator.php:244
 
 
 
 
 
205
  msgctxt "oss"
206
  msgid "No orders found."
207
  msgstr ""
208
 
 
 
 
 
 
209
  #: src/CSVExporter.php:52
210
  msgctxt "oss"
211
  msgid "Country code"
212
  msgstr ""
213
 
 
 
 
 
 
214
  #: src/CSVExporter.php:53
215
  msgctxt "oss"
216
  msgid "Tax rate"
217
  msgstr ""
218
 
 
 
 
 
 
219
  #: src/CSVExporter.php:54
220
  msgctxt "oss"
221
  msgid "Taxable base"
222
  msgstr ""
223
 
 
 
 
 
 
224
  #: src/CSVExporter.php:55
225
  msgctxt "oss"
226
  msgid "Amount"
227
  msgstr ""
228
 
 
 
 
 
 
229
  #: src/DeliveryThresholdEmailNotification.php:19
230
  msgctxt "oss"
231
  msgid "OSS Delivery Threshold Notification"
232
  msgstr ""
233
 
 
 
 
 
 
234
  #: src/DeliveryThresholdEmailNotification.php:20
235
  msgctxt "oss"
236
  msgid ""
238
  "close to being reached."
239
  msgstr ""
240
 
 
 
 
 
 
241
  #: src/DeliveryThresholdEmailNotification.php:38
242
  msgctxt "oss"
243
  msgid "[{site_title}]: OSS delivery threshold reached"
244
  msgstr ""
245
 
 
 
 
 
 
246
  #: src/DeliveryThresholdEmailNotification.php:48
247
  msgctxt "oss"
248
  msgid "OSS delivery threshold reached"
249
  msgstr ""
250
 
 
 
 
 
 
251
  #: src/DeliveryThresholdWarning.php:13
252
  msgctxt "oss"
253
  msgid "See details"
254
  msgstr ""
255
 
256
+ #: src/Package.php:80
 
 
 
 
 
257
  msgctxt "oss"
258
  msgid ""
259
  "To use the OSS for WooCommerce plugin please make sure that WooCommerce is "
260
  "installed and activated."
261
  msgstr ""
262
 
263
+ #: src/Package.php:249 src/ReportTable.php:40
 
 
 
 
 
 
 
 
 
 
264
  msgctxt "oss"
265
  msgid "Report"
266
  msgstr ""
267
 
268
+ #: src/Package.php:273
 
 
 
 
 
269
  #, php-format
270
  msgctxt "oss"
271
  msgid "%1$s"
272
  msgstr ""
273
 
274
+ #: src/Package.php:278
 
 
 
 
 
275
  #, php-format
276
  msgctxt "oss"
277
  msgid "%1$s - %2$s"
278
  msgstr ""
279
 
280
+ #: src/Package.php:283
 
 
 
 
 
281
  #, php-format
282
  msgctxt "oss"
283
  msgid "Observer %1$s"
284
  msgstr ""
285
 
286
+ #: src/Package.php:482
 
 
 
 
 
287
  msgctxt "oss"
288
  msgid "Quarterly"
289
  msgstr ""
290
 
291
+ #: src/Package.php:483
 
 
 
 
 
292
  msgctxt "oss"
293
  msgid "Yearly"
294
  msgstr ""
295
 
296
+ #: src/Package.php:484
 
 
 
 
 
297
  msgctxt "oss"
298
  msgid "Monthly"
299
  msgstr ""
300
 
301
+ #: src/Package.php:485
 
 
 
 
 
302
  msgctxt "oss"
303
  msgid "Custom"
304
  msgstr ""
305
 
306
+ #: src/Package.php:489
 
 
 
 
 
307
  msgctxt "oss"
308
  msgid "Observer"
309
  msgstr ""
310
 
311
+ #: src/Package.php:503
 
 
 
 
 
312
  msgctxt "oss"
313
  msgid "Pending"
314
  msgstr ""
315
 
316
+ #: src/Package.php:504
 
 
 
 
 
317
  msgctxt "oss"
318
  msgid "Completed"
319
  msgstr ""
320
 
321
+ #: src/Package.php:505
 
 
 
 
 
322
  msgctxt "oss"
323
  msgid "Failed"
324
  msgstr ""
325
 
 
 
 
 
 
326
  #: src/ReportTable.php:121
327
  #, php-format
328
  msgctxt "oss"
331
  msgstr[0] ""
332
  msgstr[1] ""
333
 
 
 
 
 
 
334
  #: src/ReportTable.php:184
335
  msgctxt "oss"
336
  msgid "No reports found"
337
  msgstr ""
338
 
 
 
 
 
 
339
  #: src/ReportTable.php:225
340
  #, php-format
341
  msgctxt "oss"
344
  msgstr[0] ""
345
  msgstr[1] ""
346
 
 
 
 
 
 
347
  #: src/ReportTable.php:250
348
  #, php-format
349
  msgctxt "oss"
352
  msgstr[0] ""
353
  msgstr[1] ""
354
 
 
 
 
 
 
355
  #: src/ReportTable.php:323
356
  msgctxt "oss"
357
  msgid "Filter"
358
  msgstr ""
359
 
 
 
 
 
 
360
  #: src/ReportTable.php:350
361
  msgctxt "oss"
362
  msgid "Title"
363
  msgstr ""
364
 
 
 
 
 
 
365
  #: src/ReportTable.php:351
366
  msgctxt "oss"
367
  msgid "Start"
368
  msgstr ""
369
 
 
 
 
 
 
370
  #: src/ReportTable.php:352
371
  msgctxt "oss"
372
  msgid "End"
373
  msgstr ""
374
 
 
 
 
 
 
 
 
 
 
 
375
  #: src/ReportTable.php:353 templates/emails/admin-delivery-threshold.php:25
376
  msgctxt "oss"
377
  msgid "Net total"
378
  msgstr ""
379
 
 
 
 
 
 
 
 
 
 
 
380
  #: src/ReportTable.php:354 templates/emails/admin-delivery-threshold.php:26
381
  msgctxt "oss"
382
  msgid "Tax total"
383
  msgstr ""
384
 
 
 
 
 
 
385
  #: src/ReportTable.php:355
386
  msgctxt "oss"
387
  msgid "Status"
388
  msgstr ""
389
 
 
 
 
 
 
390
  #: src/ReportTable.php:356
391
  msgctxt "oss"
392
  msgid "Actions"
393
  msgstr ""
394
 
 
 
 
 
 
395
  #: src/ReportTable.php:420
396
  #, php-format
397
  msgctxt "oss"
398
  msgid "Select %s"
399
  msgstr ""
400
 
 
 
 
 
 
401
  #: src/ReportTable.php:513
402
  msgctxt "oss"
403
  msgid "Delete Permanently"
404
  msgstr ""
405
 
 
 
 
 
 
406
  #: src/Settings.php:14
407
  msgctxt "oss"
408
  msgid "General"
409
  msgstr ""
410
 
 
 
 
 
411
  #: src/Settings.php:19
412
  msgctxt "oss"
413
  msgid ""
416
  "\">One Stop Shop procedure</a> here."
417
  msgstr ""
418
 
 
 
 
 
 
419
  #: src/Settings.php:31
420
  msgctxt "oss"
421
  msgid "OSS status"
422
  msgstr ""
423
 
 
 
 
 
 
424
  #: src/Settings.php:32
425
  msgctxt "oss"
426
  msgid "Yes, I'm currently participating in the OSS procedure."
427
  msgstr ""
428
 
 
 
 
 
 
429
  #: src/Settings.php:39
430
  msgctxt "oss"
431
  msgid "Observation"
432
  msgstr ""
433
 
 
 
 
 
 
434
  #: src/Settings.php:40
435
  msgctxt "oss"
436
  msgid "Automatically observe the delivery threshold of the current year."
437
  msgstr ""
438
 
 
 
 
 
 
439
  #: src/Settings.php:40
440
  msgctxt "oss"
441
  msgid ""
445
  "observation to save processing time."
446
  msgstr ""
447
 
 
 
 
 
 
448
  #: src/Settings.php:50
449
  msgctxt "oss"
450
  msgid "Delivery threshold"
451
  msgstr ""
452
 
 
 
 
 
 
453
  #: src/Settings.php:60
454
  msgctxt "oss"
455
  msgid "Participation"
456
  msgstr ""
457
 
458
+ #: src/Settings.php:70
459
+ msgctxt "oss"
460
+ msgid "Fixed gross prices"
461
+ msgstr ""
462
+
463
+ #: src/Settings.php:71
464
+ msgctxt "oss"
465
+ msgid "Apply the same gross price regardless of the tax rate."
466
+ msgstr ""
467
+
468
+ #: src/Settings.php:71
469
+ msgctxt "oss"
470
+ msgid ""
471
+ "This option will make sure that your customers pay the same price no matter "
472
+ "the tax rate (based on the country chosen) to be applied."
473
+ msgstr ""
474
+
475
+ #: src/Settings.php:92
476
  msgctxt "oss"
477
  msgid "Are you sure? Please backup your tax rates before proceeding."
478
  msgstr ""
479
 
480
+ #: src/Settings.php:92
 
 
 
 
 
481
  msgctxt "oss"
482
  msgid "End OSS participation"
483
  msgstr ""
484
 
485
+ #: src/Settings.php:92
 
 
 
 
 
486
  msgctxt "oss"
487
  msgid "Start OSS participation"
488
  msgstr ""
489
 
490
+ #: src/Settings.php:93
 
 
 
 
 
491
  msgctxt "oss"
492
  msgid "learn more"
493
  msgstr ""
494
 
495
+ #: src/Settings.php:95
 
 
 
 
 
496
  msgctxt "oss"
497
  msgid ""
498
  "Use this option to automatically adjust tax-related options in WooCommerce. "
500
  "rates based on your OSS participation status."
501
  msgstr ""
502
 
503
+ #: src/Settings.php:127
 
 
 
 
 
504
  msgctxt "oss"
505
  msgid "See status"
506
  msgstr ""
507
 
508
+ #: src/Settings.php:127
 
 
 
 
 
509
  msgctxt "oss"
510
  msgid "Start initial report"
511
  msgstr ""
512
 
513
+ #: src/Settings.php:128
 
 
 
 
 
514
  #, php-format
515
  msgctxt "oss"
516
  msgid "Report not yet completed. %s"
517
  msgstr ""
518
 
519
+ #: src/Settings.php:128
 
 
 
 
 
520
  #, php-format
521
  msgctxt "oss"
522
  msgid "Report not yet started. %s"
523
  msgstr ""
524
 
525
+ #: src/Settings.php:146
 
 
 
 
 
526
  msgctxt "oss-amounts"
527
  msgid "of"
528
  msgstr ""
529
 
530
+ #: src/Settings.php:146
531
+ #, php-format
532
+ msgctxt "oss"
533
+ msgid "As of: %s"
534
+ msgstr ""
535
+
536
+ #: src/Settings.php:146
537
  msgctxt "oss"
538
  msgid "see details"
539
  msgstr ""
540
 
541
+ #: src/Settings.php:147
 
 
 
 
 
542
  #, php-format
543
  msgctxt "oss"
544
  msgid ""
548
  "href=\"%s\">Find out more</a> about the calculation."
549
  msgstr ""
550
 
 
 
 
 
 
551
  #: src/SettingsPage.php:23
552
  msgctxt "oss"
553
  msgid "Learn More"
554
  msgstr ""
555
 
556
+ #: src/Tax.php:278 src/Tax.php:336
 
 
 
 
 
 
 
 
 
 
557
  #, php-format
558
  msgctxt "oss"
559
  msgid "Tax class (%s)"
560
  msgstr ""
561
 
562
+ #: src/Tax.php:279
 
 
 
 
563
  msgctxt "oss"
564
  msgid "Same as parent"
565
  msgstr ""
566
 
567
+ #: src/Tax.php:281 src/Tax.php:314 src/Tax.php:338 src/Tax.php:372
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
568
  msgctxt "oss"
569
  msgid "remove"
570
  msgstr ""
571
 
572
+ #: src/Tax.php:291 src/Tax.php:349
 
 
 
 
 
 
 
 
 
 
573
  msgctxt "oss"
574
  msgid "Add country specific tax class (OSS)"
575
  msgstr ""
576
 
577
+ #: src/Tax.php:298 src/Tax.php:356
 
 
 
 
 
 
 
 
 
 
578
  msgctxt "oss"
579
  msgid "Select country"
580
  msgstr ""
581
 
582
  #. translators: Do not translate
583
+ #: src/Tax.php:452 src/Tax.php:579
 
 
 
 
 
 
 
 
 
 
584
  msgid "Reduced rate"
585
  msgstr ""
586
 
587
+ #: src/Tax.php:455 src/Tax.php:571
 
 
 
 
 
 
 
 
 
 
588
  msgctxt "oss"
589
  msgid "Greater reduced rate"
590
  msgstr ""
591
 
592
+ #: src/Tax.php:458 src/Tax.php:575
 
 
 
 
 
 
 
 
 
 
593
  msgctxt "oss"
594
  msgid "Super reduced rate"
595
  msgstr ""
596
 
597
+ #: src/Tax.php:751
598
+ msgctxt "oss"
599
+ msgid "Madeira"
600
+ msgstr ""
601
+
602
+ #: src/Tax.php:758
603
+ msgctxt "oss"
604
+ msgid "Acores"
605
+ msgstr ""
606
+
607
+ #: src/Tax.php:794
608
+ msgctxt "oss"
609
+ msgid "Northern Ireland"
610
+ msgstr ""
611
+
612
+ #: src/Tax.php:807
613
+ msgctxt "oss-tax-rate-import"
614
+ msgid "Exempt"
615
+ msgstr ""
616
+
617
+ #: src/Tax.php:873
618
  #, php-format
619
  msgctxt "oss-tax-rate-import"
620
+ msgid "VAT %1$s %% %2$s"
621
  msgstr ""
622
 
623
  #. translators: %s: Customer billing full name
 
 
 
 
 
624
  #: templates/emails/admin-delivery-threshold.php:19
625
  #, php-format
626
  msgctxt "oss"
629
  "immediately. Visit the <a href=\"%2$s\">OSS Settings Panel</a> for details."
630
  msgstr ""
631
 
 
 
 
 
 
632
  #: templates/emails/admin-delivery-threshold.php:21
633
  msgctxt "oss"
634
  msgid "Report Details"
635
  msgstr ""
636
 
 
 
 
 
 
637
  #: templates/emails/admin-delivery-threshold.php:24
638
  msgctxt "oss"
639
  msgid "Period"
640
  msgstr ""
641
 
 
 
 
 
 
642
  #: templates/emails/admin-delivery-threshold.php:29
643
  msgctxt "oss"
644
  msgid "See report details"
645
  msgstr ""
646
 
 
 
 
 
 
647
  #: templates/emails/plain/admin-delivery-threshold.php:17
648
  #, php-format
649
  msgctxt "oss"
652
  "immediately. Visit the OSS Settings Panel (%2$s) for details."
653
  msgstr ""
654
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
655
  #. Plugin Name of the plugin/theme
656
  msgid "One Stop Shop for WooCommerce"
657
  msgstr ""
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.0.4
9
  * Requires PHP: 5.6
10
  * License: GPLv3
11
  * Tested up to: 5.8
@@ -72,7 +72,6 @@ if ( is_readable( $autoloader ) ) {
72
  return;
73
  }
74
 
75
- register_activation_hook( __FILE__, array( 'Vendidero\OneStopShop\Package', 'install' ) );
76
- register_deactivation_hook( __FILE__, array( 'Vendidero\OneStopShop\Package', 'deactivate' ) );
77
-
78
- add_action( 'plugins_loaded', array( 'Vendidero\OneStopShop\Package', 'init' ) );
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.0
9
  * Requires PHP: 5.6
10
  * License: GPLv3
11
  * Tested up to: 5.8
72
  return;
73
  }
74
 
75
+ register_activation_hook( __FILE__, array( '\Vendidero\OneStopShop\Package', 'install' ) );
76
+ register_deactivation_hook( __FILE__, array( '\Vendidero\OneStopShop\Package', 'deactivate' ) );
77
+ add_action( 'plugins_loaded', array( '\Vendidero\OneStopShop\Package', 'init' ) );
 
packages/one-stop-shop-woocommerce/readme.txt CHANGED
@@ -5,7 +5,7 @@ Requires at least: 5.4
5
  Tested up to: 5.8
6
  WC requires at least: 3.9
7
  WC tested up to: 5.5
8
- Stable tag: 1.0.4
9
  Requires PHP: 5.6
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
@@ -60,6 +60,20 @@ Bug reports may be filed via our [GitHub repository](https://github.com/vendider
60
  3. Create a new report
61
 
62
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  = 1.0.4 =
64
  * Improvement: Woo 5.5 support
65
  * Improvement: Tax rate import
5
  Tested up to: 5.8
6
  WC requires at least: 3.9
7
  WC tested up to: 5.5
8
+ Stable tag: 1.1.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.1.0 =
64
+ * Feature: Allow disabling fixed gross prices
65
+ * Improvement: Use custom SQL query instead of wc_get_orders
66
+ * Improvement: Treat refunds as separated orders and respect their dates
67
+ * Improvement: Feature plugin load management
68
+ * Improvement: Added postcode VAT exemptions as tax rates (e.g. canary islands)
69
+ * Improvement: Added conditional rates for Portugal (e.g. Madeira)
70
+ * Improvement: By default do not force gross prices for third countries
71
+ * Improvement: Backdate the observer to 7 days in the past to allow orders to complete in between
72
+
73
+ = 1.0.5 =
74
+ * Improvement: Remove docs from release
75
+ * Improvement: Filters for tax rate name and location price
76
+
77
  = 1.0.4 =
78
  * Improvement: Woo 5.5 support
79
  * Improvement: Tax rate import
packages/one-stop-shop-woocommerce/src/Admin.php CHANGED
@@ -486,7 +486,7 @@ class Admin {
486
  </tr>
487
  <tr id="oss-report-year-wrapper" class="oss-report-hidden oss-report-yearly">
488
  <th scope="row">
489
- <label for="oss-report-year"><?php echo esc_html_x( 'Year', 'storeabill-core', 'storeabill' ); ?></label>
490
  </th>
491
  <td id="oss-report-year-data">
492
  <select name="report_year" id="oss-report-year" class="wc-enhanced-select">
@@ -498,7 +498,7 @@ class Admin {
498
  </tr>
499
  <tr id="oss-report-quarter-wrapper" class="oss-report-hidden oss-report-quarterly">
500
  <th scope="row">
501
- <label for="oss-report-quarter"><?php echo esc_html_x( 'Quarter', 'storeabill-core', 'storeabill' ); ?></label>
502
  </th>
503
  <td id="oss-report-quarter-data">
504
  <select name="report_quarter" id="oss-report-quarter" class="wc-enhanced-select">
@@ -510,7 +510,7 @@ class Admin {
510
  </tr>
511
  <tr id="oss-report-month-wrapper" class="oss-report-hidden oss-report-monthly">
512
  <th scope="row">
513
- <label for="oss-report-month"><?php echo esc_html_x( 'Month', 'storeabill-core', 'storeabill' ); ?></label>
514
  </th>
515
  <td id="oss-report-month-data">
516
  <select name="report_month" id="oss-report-month" class="wc-enhanced-select">
@@ -522,7 +522,7 @@ class Admin {
522
  </tr>
523
  <tr id="oss-report-timeframe-wrapper" class="oss-report-hidden oss-report-custom">
524
  <th scope="row">
525
- <label for="oss-report-date-start"><?php echo esc_html_x( 'Date range', 'storeabill-core', 'storeabill' ); ?></label>
526
  </th>
527
  <td id="oss-report-custom-data">
528
  <input type="text" size="11" placeholder="yyyy-mm-dd" value="" id="oss-report-date-start" name="date_start" class="oss_range_datepicker from" autocomplete="off" /><?php //@codingStandardsIgnoreLine ?>
486
  </tr>
487
  <tr id="oss-report-year-wrapper" class="oss-report-hidden oss-report-yearly">
488
  <th scope="row">
489
+ <label for="oss-report-year"><?php echo esc_html_x( 'Year', 'oss', 'woocommerce-germanized' ); ?></label>
490
  </th>
491
  <td id="oss-report-year-data">
492
  <select name="report_year" id="oss-report-year" class="wc-enhanced-select">
498
  </tr>
499
  <tr id="oss-report-quarter-wrapper" class="oss-report-hidden oss-report-quarterly">
500
  <th scope="row">
501
+ <label for="oss-report-quarter"><?php echo esc_html_x( 'Quarter', 'oss', 'woocommerce-germanized' ); ?></label>
502
  </th>
503
  <td id="oss-report-quarter-data">
504
  <select name="report_quarter" id="oss-report-quarter" class="wc-enhanced-select">
510
  </tr>
511
  <tr id="oss-report-month-wrapper" class="oss-report-hidden oss-report-monthly">
512
  <th scope="row">
513
+ <label for="oss-report-month"><?php echo esc_html_x( 'Month', 'oss', 'woocommerce-germanized' ); ?></label>
514
  </th>
515
  <td id="oss-report-month-data">
516
  <select name="report_month" id="oss-report-month" class="wc-enhanced-select">
522
  </tr>
523
  <tr id="oss-report-timeframe-wrapper" class="oss-report-hidden oss-report-custom">
524
  <th scope="row">
525
+ <label for="oss-report-date-start"><?php echo esc_html_x( 'Date range', 'oss', 'woocommerce-germanized' ); ?></label>
526
  </th>
527
  <td id="oss-report-custom-data">
528
  <input type="text" size="11" placeholder="yyyy-mm-dd" value="" id="oss-report-date-start" name="date_start" class="oss_range_datepicker from" autocomplete="off" /><?php //@codingStandardsIgnoreLine ?>
packages/one-stop-shop-woocommerce/src/AsyncReportGenerator.php CHANGED
@@ -11,21 +11,29 @@ class AsyncReportGenerator {
11
  protected $type = '';
12
 
13
  public function __construct( $type = 'quarterly', $args = array() ) {
14
- $this->type = $type;
15
-
16
  $default_end = new \WC_DateTime();
17
  $default_start = new \WC_DateTime( 'now' );
18
  $default_start->modify( '-1 year' );
19
 
20
  $args = wp_parse_args( $args, array(
21
- 'start' => $default_start->format( 'Y-m-d' ),
22
- 'end' => $default_end->format( 'Y-m-d' ),
23
- 'limit' => Queue::get_batch_size(),
24
- 'status' => Queue::get_order_statuses(),
25
- 'offset' => 0,
 
26
  'orders_processed' => 0,
 
27
  ) );
28
 
 
 
 
 
 
 
 
29
  foreach( array( 'start', 'end' ) as $date_field ) {
30
  if ( is_a( $args[ $date_field ], 'WC_DateTime' ) ) {
31
  $args[ $date_field ] = $args[ $date_field ]->format( 'Y-m-d' );
@@ -118,71 +126,112 @@ class AsyncReportGenerator {
118
  return $country;
119
  }
120
 
 
 
 
 
 
 
 
 
 
 
 
121
  /**
122
  * @return true|\WP_Error
123
  */
124
  public function next() {
125
- $date_key = Queue::use_date_paid() ? 'date_paid' : 'date_created';
126
  $args = $this->args;
127
- $query_args = Queue::get_order_query_args( $args, $date_key );
128
  $orders_processed = 0;
 
 
129
 
130
- Package::extended_log( sprintf( 'Building next order query: %s', wc_print_r( $query_args, true ) ) );
131
 
132
- $orders = wc_get_orders( $query_args );
133
- $tax_data = $this->get_temporary_result();
 
134
 
135
- Package::extended_log( sprintf( '%d applicable orders found', sizeof( $orders ) ) );
 
 
 
 
136
 
137
- if ( ! empty( $orders ) ) {
138
- foreach( $orders as $order ) {
139
- $taxable_country = $this->get_order_taxable_country( $order );
140
 
141
- if ( ! $this->include_order( $order ) ) {
142
- Package::extended_log( sprintf( 'Skipping order #%1$s based on taxable country %2$s, tax total: %3$s', $order->get_order_number(), $taxable_country, $order->get_total_tax() ) );
143
- continue;
144
- }
145
 
146
- $country_iso = $this->get_taxable_country_iso( $taxable_country );
147
 
148
- Package::extended_log( sprintf( 'Processing order #%1$s based on taxable country %2$s', $order->get_order_number(), $country_iso ) );
 
 
 
149
 
150
- if ( ! isset( $tax_data[ $country_iso ] ) ) {
151
- $tax_data[ $country_iso ] = array();
152
- }
153
 
154
- foreach ( $order->get_taxes() as $key => $tax ) {
155
- $refunded = (float) $order->get_total_tax_refunded_by_rate_id( $tax->get_rate_id() );
156
- $tax_percent = (float) Tax::get_tax_rate_percent( $tax->get_rate_id(), $order );
157
- $tax_total = (float) $tax->get_tax_total() + (float) $tax->get_shipping_tax_total() - $refunded;
158
 
159
- if ( $tax_percent <= 0 || $tax_total == 0 ) {
160
- continue;
161
  }
162
 
163
- if ( ! isset( $tax_data[ $country_iso ][ $tax_percent ] ) ) {
164
- $tax_data[ $country_iso ][ $tax_percent ] = array(
165
- 'tax_total' => 0,
166
- 'net_total' => 0,
167
- );
168
- }
 
 
 
 
 
 
 
 
 
 
 
 
169
 
170
- $net_total = ( $tax_total / ( (float) $tax_percent / 100 ) );
 
 
171
 
172
- Package::extended_log( sprintf( 'Refunded tax %1$s = %2$s', $tax_percent, $refunded ) );
173
- Package::extended_log( sprintf( 'Tax total %1$s = %2$s', $tax_percent, $tax_total ) );
174
- Package::extended_log( sprintf( 'Net total %1$s = %2$s', $tax_percent, $net_total ) );
175
 
176
- $net_total = wc_add_number_precision( $net_total, false );
177
- $tax_total = wc_add_number_precision( $tax_total, false );
 
 
 
 
178
 
179
- $tax_data[ $country_iso ][ $tax_percent ]['tax_total'] = (float) $tax_data[ $country_iso ][ $tax_percent ]['tax_total'];
180
- $tax_data[ $country_iso ][ $tax_percent ]['tax_total'] += $tax_total;
181
 
182
- $tax_data[ $country_iso ][ $tax_percent ]['net_total'] = (float) $tax_data[ $country_iso ][ $tax_percent ]['net_total'];
183
- $tax_data[ $country_iso ][ $tax_percent ]['net_total'] += $net_total;
184
 
185
- $orders_processed++;
 
 
 
 
 
 
 
 
 
 
186
  }
187
  }
188
 
@@ -217,9 +266,16 @@ class AsyncReportGenerator {
217
  }
218
  }
219
 
220
- $report->set_net_total( wc_remove_number_precision( $net_total ) );
221
- $report->set_tax_total( wc_remove_number_precision( $tax_total ) );
 
 
 
 
 
 
222
  $report->set_status( 'completed' );
 
223
  $report->save();
224
 
225
  return $report;
11
  protected $type = '';
12
 
13
  public function __construct( $type = 'quarterly', $args = array() ) {
14
+ $this->type = $type;
 
15
  $default_end = new \WC_DateTime();
16
  $default_start = new \WC_DateTime( 'now' );
17
  $default_start->modify( '-1 year' );
18
 
19
  $args = wp_parse_args( $args, array(
20
+ 'start' => $default_start->format( 'Y-m-d' ),
21
+ 'end' => $default_end->format( 'Y-m-d' ),
22
+ 'limit' => Queue::get_batch_size(),
23
+ 'status' => Queue::get_order_statuses(),
24
+ 'offset' => 0,
25
+ 'order_types' => array( 'shop_order' ),
26
  'orders_processed' => 0,
27
+ 'date_field' => Queue::use_date_paid() ? 'date_paid' : 'date_created',
28
  ) );
29
 
30
+ /**
31
+ * Observers do not treat refunds separately
32
+ */
33
+ if ( 'observer' === $type ) {
34
+ $args['order_types'] = array( 'shop_order' );
35
+ }
36
+
37
  foreach( array( 'start', 'end' ) as $date_field ) {
38
  if ( is_a( $args[ $date_field ], 'WC_DateTime' ) ) {
39
  $args[ $date_field ] = $args[ $date_field ]->format( 'Y-m-d' );
126
  return $country;
127
  }
128
 
129
+ /**
130
+ * @param \WC_Order|\WC_Order_Refund $order
131
+ */
132
+ protected function get_order_number( $order ) {
133
+ if ( is_callable( $order, 'get_order_number' ) ) {
134
+ return $order->get_order_number();
135
+ } else {
136
+ return $order->get_id();
137
+ }
138
+ }
139
+
140
  /**
141
  * @return true|\WP_Error
142
  */
143
  public function next() {
 
144
  $args = $this->args;
145
+ $results = Queue::query( $args );
146
  $orders_processed = 0;
147
+ $tax_data = $this->get_temporary_result();
148
+ $supports_refunds = in_array( 'shop_order_refund', $args['order_types'] );
149
 
150
+ Package::extended_log( sprintf( '%d applicable orders found', sizeof( $results ) ) );
151
 
152
+ if ( ! empty( $results ) ) {
153
+ foreach( $results as $result ) {
154
+ if ( $order = wc_get_order( $result->ID ) ) {
155
 
156
+ /**
157
+ * Query refund's parent order as the refund does not contain enough data (e.g. billing_country)
158
+ */
159
+ if ( $order->get_parent_id() > 0 ) {
160
+ $forced_parent_order = wc_get_order( $order->get_parent_id() );
161
 
162
+ if ( ! $forced_parent_order ) {
163
+ continue;
164
+ }
165
 
166
+ Package::extended_log( sprintf( 'Parent order: %s', $this->get_order_number( $forced_parent_order ) ) );
167
+ } else {
168
+ $forced_parent_order = $order;
169
+ }
170
 
171
+ $taxable_country = $this->get_order_taxable_country( $forced_parent_order );
172
 
173
+ if ( ! $this->include_order( $forced_parent_order ) ) {
174
+ Package::extended_log( sprintf( 'Skipping order #%1$s based on taxable country %2$s, tax total: %3$s', $this->get_order_number( $order ), $taxable_country, $order->get_total_tax() ) );
175
+ continue;
176
+ }
177
 
178
+ $country_iso = $this->get_taxable_country_iso( $taxable_country );
 
 
179
 
180
+ Package::extended_log( sprintf( 'Processing order #%1$s (%2$s) based on taxable country %3$s', $this->get_order_number( $order ), $order->get_type(), $country_iso ) );
 
 
 
181
 
182
+ if ( ! isset( $tax_data[ $country_iso ] ) ) {
183
+ $tax_data[ $country_iso ] = array();
184
  }
185
 
186
+ foreach ( $order->get_taxes() as $key => $tax ) {
187
+ $tax_percent = (float) Tax::get_tax_rate_percent( $tax->get_rate_id(), $forced_parent_order );
188
+ $tax_total = (float) $tax->get_tax_total() + (float) $tax->get_shipping_tax_total();
189
+
190
+ /**
191
+ * Do only remove refunded tax total in case this query does not explicitly support refunds (e.g. observers)
192
+ */
193
+ if ( ! $supports_refunds ) {
194
+ $refunded = (float) $forced_parent_order->get_total_tax_refunded_by_rate_id( $tax->get_rate_id() );
195
+ $tax_total = $tax_total - $refunded;
196
+
197
+ Package::extended_log( sprintf( 'Refunded tax %1$s = %2$s', $tax_percent, $refunded ) );
198
+ }
199
+
200
+ if ( $tax_percent <= 0 || $tax_total == 0 ) {
201
+ if ( $tax_percent <= 0 ) {
202
+ Package::extended_log( sprintf( 'Skipping order due to missing tax percentage' ) );
203
+ }
204
 
205
+ if ( $tax_total == 0 ) {
206
+ Package::extended_log( sprintf( 'Skipping order due to tax total = 0' ) );
207
+ }
208
 
209
+ continue;
210
+ }
 
211
 
212
+ if ( ! isset( $tax_data[ $country_iso ][ $tax_percent ] ) ) {
213
+ $tax_data[ $country_iso ][ $tax_percent ] = array(
214
+ 'tax_total' => 0,
215
+ 'net_total' => 0,
216
+ );
217
+ }
218
 
219
+ $net_total = ( $tax_total / ( (float) $tax_percent / 100 ) );
 
220
 
221
+ Package::extended_log( sprintf( 'Tax total %1$s = %2$s', $tax_percent, $tax_total ) );
222
+ Package::extended_log( sprintf( 'Net total %1$s = %2$s', $tax_percent, $net_total ) );
223
 
224
+ $net_total = wc_add_number_precision( $net_total, false );
225
+ $tax_total = wc_add_number_precision( $tax_total, false );
226
+
227
+ $tax_data[ $country_iso ][ $tax_percent ]['tax_total'] = (float) $tax_data[ $country_iso ][ $tax_percent ]['tax_total'];
228
+ $tax_data[ $country_iso ][ $tax_percent ]['tax_total'] += $tax_total;
229
+
230
+ $tax_data[ $country_iso ][ $tax_percent ]['net_total'] = (float) $tax_data[ $country_iso ][ $tax_percent ]['net_total'];
231
+ $tax_data[ $country_iso ][ $tax_percent ]['net_total'] += $net_total;
232
+
233
+ $orders_processed++;
234
+ }
235
  }
236
  }
237
 
266
  }
267
  }
268
 
269
+ $net_total = (float) wc_remove_number_precision( $net_total );
270
+ $tax_total = (float) wc_remove_number_precision( $tax_total );
271
+
272
+ Package::extended_log( sprintf( 'Completed net total: %s', $net_total ) );
273
+ Package::extended_log( sprintf( 'Completed tax total: %s', $tax_total ) );
274
+
275
+ $report->set_net_total( $net_total );
276
+ $report->set_tax_total( $tax_total );
277
  $report->set_status( 'completed' );
278
+ $report->set_version( Package::get_version() );
279
  $report->save();
280
 
281
  return $report;
packages/one-stop-shop-woocommerce/src/Package.php CHANGED
@@ -16,7 +16,7 @@ class Package {
16
  *
17
  * @var string
18
  */
19
- const VERSION = '1.0.4';
20
 
21
  /**
22
  * Init the package
@@ -44,11 +44,6 @@ class Package {
44
  add_action( 'init', array( __CLASS__, 'load_plugin_textdomain' ) );
45
  }
46
 
47
- /**
48
- * Support a taxable country field within Woo order queries
49
- */
50
- add_filter( 'woocommerce_order_data_store_cpt_get_orders_query', array( __CLASS__, 'query_taxable_country' ), 10, 2 );
51
-
52
  /**
53
  * Listen to action scheduler hooks for report generation
54
  */
@@ -431,10 +426,32 @@ class Package {
431
  }
432
  }
433
 
 
 
 
 
 
 
 
 
 
 
434
  public static function update_observer_report() {
435
  if ( Package::enable_auto_observer() ) {
 
 
 
 
 
 
 
 
 
 
 
 
436
  $date_start = new \WC_DateTime();
437
- $date_start->modify( '-1 day' );
438
 
439
  Queue::start( 'observer', $date_start );
440
  }
@@ -495,35 +512,6 @@ class Package {
495
  return array_key_exists( $status, $statuses ) ? $statuses[ $status ] : '';
496
  }
497
 
498
- public static function query_taxable_country( $query, $query_vars ) {
499
- if ( ! empty( $query_vars['taxable_country'] ) ) {
500
- $taxable_country = is_array( $query_vars['taxable_country'] ) ? $query_vars['taxable_country'] : array( $query_vars['taxable_country'] );
501
- $taxable_country = wc_clean( $taxable_country );
502
-
503
- $query['meta_query'][] = array(
504
- 'relation' => 'OR',
505
- array(
506
- array(
507
- 'key' => '_shipping_country',
508
- 'compare' => 'NOT EXISTS',
509
- ),
510
- array(
511
- 'key' => '_billing_country',
512
- 'value' => $taxable_country,
513
- 'compare' => 'IN',
514
- ),
515
- ),
516
- array(
517
- 'key' => '_shipping_country',
518
- 'value' => $taxable_country,
519
- 'compare' => 'IN',
520
- )
521
- );
522
- }
523
-
524
- return $query;
525
- }
526
-
527
  public static function has_dependencies() {
528
  return ( class_exists( 'WooCommerce' ) );
529
  }
@@ -551,13 +539,28 @@ class Package {
551
 
552
  public static function country_supports_eu_vat( $country, $postcode = '' ) {
553
  $supports_vat = in_array( $country, self::get_non_base_eu_countries() );
 
 
 
554
 
555
- if ( 'GB' === $country && 'BT' === strtoupper( substr( $postcode, 0, 2 ) ) ) {
556
  $supports_vat = true;
557
  } elseif( 'IX' === $country ) {
558
  $supports_vat = true;
559
  }
560
 
 
 
 
 
 
 
 
 
 
 
 
 
561
  return $supports_vat;
562
  }
563
 
@@ -637,7 +640,7 @@ class Package {
637
  }
638
 
639
  public static function extended_log( $message, $type = 'info' ) {
640
- if ( apply_filters( 'oss_woocommerce_enable_extended_logging', false ) ) {
641
  self::log( $message, $type );
642
  }
643
  }
16
  *
17
  * @var string
18
  */
19
+ const VERSION = '1.1.0';
20
 
21
  /**
22
  * Init the package
44
  add_action( 'init', array( __CLASS__, 'load_plugin_textdomain' ) );
45
  }
46
 
 
 
 
 
 
47
  /**
48
  * Listen to action scheduler hooks for report generation
49
  */
426
  }
427
  }
428
 
429
+ /**
430
+ * Let the observer date back 7 days to make sure most of the orders
431
+ * have already been processed (e.g. received payment etc) to reduce the chance of missing out on orders.
432
+ *
433
+ * @return int
434
+ */
435
+ public static function get_observer_backdating_days() {
436
+ return 7;
437
+ }
438
+
439
  public static function update_observer_report() {
440
  if ( Package::enable_auto_observer() ) {
441
+ /**
442
+ * Delete observer reports with missing versions to make sure the report
443
+ * is re-created with the new backdating functionality.
444
+ */
445
+ if ( $report = self::get_observer_report() ) {
446
+ if ( '' === $report->get_version() ) {
447
+ $report->delete();
448
+ }
449
+ }
450
+
451
+ $days = (int) self::get_observer_backdating_days();
452
+
453
  $date_start = new \WC_DateTime();
454
+ $date_start->modify( "-{$days} day" . ( $days > 1 ? 's' : '' ) );
455
 
456
  Queue::start( 'observer', $date_start );
457
  }
512
  return array_key_exists( $status, $statuses ) ? $statuses[ $status ] : '';
513
  }
514
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
515
  public static function has_dependencies() {
516
  return ( class_exists( 'WooCommerce' ) );
517
  }
539
 
540
  public static function country_supports_eu_vat( $country, $postcode = '' ) {
541
  $supports_vat = in_array( $country, self::get_non_base_eu_countries() );
542
+ $exemptions = Tax::get_vat_postcode_exemptions_by_country( $country );
543
+ $postcode = wc_normalize_postcode( $postcode );
544
+ $wildcards = wc_get_wildcard_postcodes( $postcode, $country );
545
 
546
+ if ( 'GB' === $country && in_array( 'BT*', $wildcards ) ) {
547
  $supports_vat = true;
548
  } elseif( 'IX' === $country ) {
549
  $supports_vat = true;
550
  }
551
 
552
+ /**
553
+ * Check whether the country + postcode is a VAT exemption.
554
+ */
555
+ if ( ! empty( $exemptions ) ) {
556
+ foreach( $exemptions as $exempt_postcode ) {
557
+ if ( in_array( $exempt_postcode, $wildcards, true ) ) {
558
+ $supports_vat = false;
559
+ break;
560
+ }
561
+ }
562
+ }
563
+
564
  return $supports_vat;
565
  }
566
 
640
  }
641
 
642
  public static function extended_log( $message, $type = 'info' ) {
643
+ if ( apply_filters( 'oss_woocommerce_enable_extended_logging', ( defined( 'WP_DEBUG' ) && WP_DEBUG ) ) ) {
644
  self::log( $message, $type );
645
  }
646
  }
packages/one-stop-shop-woocommerce/src/Queue.php CHANGED
@@ -16,6 +16,19 @@ class Queue {
16
  $args = self::get_timeframe( $type, $date, $end_date );
17
  $interval = $args['start']->diff( $args['end'] );
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  $generator = new AsyncReportGenerator( $type, $args );
20
  $queue_args = $generator->get_args();
21
  $queue = self::get_queue();
@@ -114,27 +127,81 @@ class Queue {
114
  return apply_filters( 'oss_woocommerce_valid_order_statuses', $statuses );
115
  }
116
 
117
- public static function get_order_query_args( $args, $date_field = 'date_created' ) {
118
- /**
119
- * Add one day to the end date to capture timestamps (including time data) in between
120
- */
121
- if ( 'date_paid' === $date_field ) {
122
- $args['start'] = strtotime( $args['start'] );
123
- $args['end'] = strtotime( $args['end'] ) + DAY_IN_SECONDS;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
124
  }
125
 
126
- $query_args = array(
127
- 'limit' => $args['limit'],
128
- 'orderby' => 'date',
129
- 'order' => 'ASC',
130
- $date_field => $args['start'] . '...' . $args['end'],
131
- 'offset' => $args['offset'],
132
- 'taxable_country' => Package::get_non_base_eu_countries( true ),
133
- 'type' => array( 'shop_order' ),
134
- 'status' => $args['status']
 
 
 
 
 
 
 
 
 
 
 
 
 
 
135
  );
136
 
137
- return $query_args;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
138
  }
139
 
140
  public static function cancel( $id ) {
@@ -173,6 +240,13 @@ class Queue {
173
  }
174
 
175
  public static function next( $type, $args ) {
 
 
 
 
 
 
 
176
  $generator = new AsyncReportGenerator( $type, $args );
177
  $result = $generator->next();
178
  $is_empty = false;
@@ -186,7 +260,11 @@ class Queue {
186
  $new_args = $generator->get_args();
187
 
188
  // Increase offset
189
- $new_args['offset'] = $new_args['offset'] + $new_args['limit'];
 
 
 
 
190
 
191
  $queue->schedule_single(
192
  time() + 10,
16
  $args = self::get_timeframe( $type, $date, $end_date );
17
  $interval = $args['start']->diff( $args['end'] );
18
 
19
+ /**
20
+ * Except observers, all new queries treat refunds separately
21
+ */
22
+ if ( 'observer' !== $type ) {
23
+ $args['order_types'] = array(
24
+ 'shop_order',
25
+ 'shop_order_refund'
26
+ );
27
+ }
28
+
29
+ // Add version
30
+ $args['version'] = Package::get_version();
31
+
32
  $generator = new AsyncReportGenerator( $type, $args );
33
  $queue_args = $generator->get_args();
34
  $queue = self::get_queue();
127
  return apply_filters( 'oss_woocommerce_valid_order_statuses', $statuses );
128
  }
129
 
130
+ public static function build_query( $args ) {
131
+ global $wpdb;
132
+
133
+ $joins = array(
134
+ "LEFT JOIN {$wpdb->postmeta} AS mt1 ON ( {$wpdb->posts}.post_parent = mt1.post_id AND mt1.meta_key = '_shipping_country' ) OR ( {$wpdb->posts}.ID = mt1.post_id AND mt1.meta_key = '_shipping_country' )",
135
+ "LEFT JOIN {$wpdb->postmeta} AS mt2 ON ( {$wpdb->posts}.post_parent = mt2.post_id AND mt2.meta_key = '_billing_country' ) OR ( {$wpdb->posts}.ID = mt2.post_id AND mt2.meta_key = '_billing_country' )"
136
+ );
137
+
138
+ $where_date_sql = $wpdb->prepare( "{$wpdb->posts}.post_date >= '%s' AND {$wpdb->posts}.post_date <= '%s'", $args['start'], $args['end'] );
139
+
140
+ if ( 'date_paid' === $args['date_field'] ) {
141
+ $joins[] = "LEFT JOIN {$wpdb->postmeta} AS mt3 ON ( {$wpdb->posts}.ID = mt3.post_id AND mt3.meta_key = '_date_paid' )";
142
+
143
+ $where_date_sql = $wpdb->prepare(
144
+ "NOT mt3.post_id IS NULL AND (
145
+ mt3.meta_key = '_date_paid' AND mt3.meta_value >= '%d' AND mt3.meta_value <= '%d'
146
+ ) OR {$wpdb->posts}.post_parent > 0 AND (
147
+ {$wpdb->posts}.post_date >= '%s' AND {$wpdb->posts}.post_date <= '%s'
148
+ )",
149
+ strtotime( $args['start'] ),
150
+ strtotime( $args['end'] ),
151
+ $args['start'],
152
+ $args['end']
153
+ );
154
  }
155
 
156
+ $join_sql = implode( " ", $joins );
157
+ $taxable_countries_in = self::generate_in_query_sql( Package::get_non_base_eu_countries( true ) );
158
+ $post_status_in = self::generate_in_query_sql( $args['status'] );
159
+ $post_type_in = self::generate_in_query_sql( isset( $args['order_types'] ) ? (array) $args['order_types'] : array( 'shop_order' ) );
160
+
161
+ $sql = $wpdb->prepare( "
162
+ SELECT {$wpdb->posts}.* FROM {$wpdb->posts}
163
+ $join_sql
164
+ WHERE 1=1
165
+ AND ( $where_date_sql )
166
+ AND (
167
+ ( mt1.post_id IS NULL AND (
168
+ mt2.meta_key = '_billing_country' AND mt2.meta_value IN {$taxable_countries_in}
169
+ ) ) OR (
170
+ mt1.meta_key = '_shipping_country' AND mt1.meta_value IN {$taxable_countries_in}
171
+ )
172
+ )
173
+ AND ({$wpdb->posts}.post_type IN {$post_type_in}) AND ({$wpdb->posts}.post_status IN {$post_status_in})
174
+ GROUP BY {$wpdb->posts}.ID
175
+ ORDER BY {$wpdb->posts}.post_date ASC
176
+ LIMIT %d, %d",
177
+ $args['offset'],
178
+ $args['limit']
179
  );
180
 
181
+ return $sql;
182
+ }
183
+
184
+ private static function generate_in_query_sql( $values ) {
185
+ global $wpdb;
186
+
187
+ $in_query = array();
188
+
189
+ foreach( $values as $value ) {
190
+ $in_query[] = $wpdb->prepare( "'%s'", $value );
191
+ }
192
+
193
+ return "(" . implode( ',', $in_query ) . ")";
194
+ }
195
+
196
+ public static function query( $args ) {
197
+ global $wpdb;
198
+
199
+ $query = self::build_query( $args );
200
+
201
+ Package::extended_log( sprintf( 'Building new query: %s', wc_print_r( $args, true ) ) );
202
+ Package::extended_log( $query );
203
+
204
+ return $wpdb->get_results( $query );
205
  }
206
 
207
  public static function cancel( $id ) {
240
  }
241
 
242
  public static function next( $type, $args ) {
243
+ /**
244
+ * Older versions didn't include refunds as separate orders
245
+ */
246
+ if ( ! isset( $args['order_types'] ) ) {
247
+ $args['order_types'] = array( 'shop_order' );
248
+ }
249
+
250
  $generator = new AsyncReportGenerator( $type, $args );
251
  $result = $generator->next();
252
  $is_empty = false;
260
  $new_args = $generator->get_args();
261
 
262
  // Increase offset
263
+ $new_args['offset'] = (int) $new_args['offset'] + (int) $new_args['limit'];
264
+
265
+ $queue->cancel_all( 'oss_woocommerce_' . $generator->get_id() );
266
+
267
+ Package::extended_log( sprintf( 'Starting new queue: %s', wc_print_r( $new_args, true ) ) );
268
 
269
  $queue->schedule_single(
270
  time() + 10,
packages/one-stop-shop-woocommerce/src/Report.php CHANGED
@@ -42,11 +42,13 @@ class Report {
42
 
43
  $args['meta'] = wp_parse_args( $args['meta'], array(
44
  'date_requested' => null,
45
- 'status' => 'pending'
 
46
  ) );
47
 
48
  $this->set_date_requested( $args['meta']['date_requested'] );
49
  $this->set_status( $args['meta']['status'] );
 
50
 
51
  $this->args = $args;
52
  }
@@ -120,10 +122,18 @@ class Report {
120
  return $this->args['meta']['status'];
121
  }
122
 
 
 
 
 
123
  public function set_status( $status ) {
124
  $this->args['meta']['status'] = $status;
125
  }
126
 
 
 
 
 
127
  public function get_date_requested() {
128
  return is_null( $this->args['meta']['date_requested'] ) ? null : Package::string_to_datetime( $this->args['meta']['date_requested'] );
129
  }
@@ -163,6 +173,7 @@ class Report {
163
  $this->set_tax_total( 0 );
164
  $this->set_date_requested( new \WC_DateTime() );
165
  $this->set_status( 'pending' );
 
166
 
167
  delete_option( $this->id . '_tmp_result' );
168
  }
42
 
43
  $args['meta'] = wp_parse_args( $args['meta'], array(
44
  'date_requested' => null,
45
+ 'status' => 'pending',
46
+ 'version' => '',
47
  ) );
48
 
49
  $this->set_date_requested( $args['meta']['date_requested'] );
50
  $this->set_status( $args['meta']['status'] );
51
+ $this->set_version( $args['meta']['version'] );
52
 
53
  $this->args = $args;
54
  }
122
  return $this->args['meta']['status'];
123
  }
124
 
125
+ public function get_version() {
126
+ return $this->args['meta']['version'];
127
+ }
128
+
129
  public function set_status( $status ) {
130
  $this->args['meta']['status'] = $status;
131
  }
132
 
133
+ public function set_version( $version ) {
134
+ $this->args['meta']['version'] = $version;
135
+ }
136
+
137
  public function get_date_requested() {
138
  return is_null( $this->args['meta']['date_requested'] ) ? null : Package::string_to_datetime( $this->args['meta']['date_requested'] );
139
  }
173
  $this->set_tax_total( 0 );
174
  $this->set_date_requested( new \WC_DateTime() );
175
  $this->set_status( 'pending' );
176
+ $this->set_version( Package::get_version() );
177
 
178
  delete_option( $this->id . '_tmp_result' );
179
  }
packages/one-stop-shop-woocommerce/src/Settings.php CHANGED
@@ -62,10 +62,22 @@ class Settings {
62
  'type' => 'html',
63
  'html' => self::get_oss_switch_html(),
64
  ),
65
-
66
- array( 'type' => 'sectionend', 'id' => 'oss_options' ),
67
  ) );
68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  return $settings;
70
  }
71
 
@@ -131,7 +143,7 @@ class Settings {
131
 
132
  ob_start();
133
  ?>
134
- <p class="oss-observer-details"><span class="oss-observer-total <?php echo esc_attr( $total_class ); ?>"><?php echo wc_price( $observer_report->get_net_total() ); ?></span> <?php _ex( 'of', 'oss-amounts', 'woocommerce-germanized' ); ?> <span class="oss-observer-delivery-threshold"><?php echo wc_price( Package::get_delivery_threshold() ); ?></span> <a class="oss-settings-learn-more" href="<?php echo esc_url( $observer_report->get_url() ); ?>"><?php _ex( 'see details', 'oss', 'woocommerce-germanized' ); ?></a></p>
135
  <p class="oss-woocommerce-additional-desc wc-gzd-additional-desc"><?php printf( _x( 'This value indicates your current net total amount applicable for the One Stop Shop procedure delivery threshold of the current year. You should take action in case the delivery threshold is or is close to being exceeded. <a href="%s">Find out more</a> about the calculation.', 'oss', 'woocommerce-germanized' ), 'https://vendidero.github.io/one-stop-shop-woocommerce/report-calculation' ); ?></p>
136
  <?php
137
 
62
  'type' => 'html',
63
  'html' => self::get_oss_switch_html(),
64
  ),
 
 
65
  ) );
66
 
67
+ if ( Package::oss_procedure_is_enabled() && wc_prices_include_tax() ) {
68
+ $settings = array_merge( $settings, array(
69
+ array(
70
+ 'title' => _x( 'Fixed gross prices', 'oss', 'woocommerce-germanized' ),
71
+ 'desc' => _x( 'Apply the same gross price regardless of the tax rate.', 'oss', 'woocommerce-germanized' ) . '<p class="oss-woocommerce-additional-desc wc-gzd-additional-desc">' . _x( 'This option will make sure that your customers pay the same price no matter the tax rate (based on the country chosen) to be applied.', 'oss', 'woocommerce-germanized' ) . '</p>',
72
+ 'id' => 'oss_fixed_gross_prices',
73
+ 'type' => Package::is_integration() ? 'gzd_toggle' : 'checkbox',
74
+ 'default' => 'yes',
75
+ ),
76
+ ) );
77
+ }
78
+
79
+ $settings = array_merge( $settings, array( array( 'type' => 'sectionend', 'id' => 'oss_options' ) ) );
80
+
81
  return $settings;
82
  }
83
 
143
 
144
  ob_start();
145
  ?>
146
+ <p class="oss-observer-details"><span class="oss-observer-total <?php echo esc_attr( $total_class ); ?>"><?php echo wc_price( $observer_report->get_net_total() ); ?></span> <?php _ex( 'of', 'oss-amounts', 'woocommerce-germanized' ); ?> <span class="oss-observer-delivery-threshold"><?php echo wc_price( Package::get_delivery_threshold() ); ?></span> <span class="oss-observer-date-end"><?php printf( _x( 'As of: %s', 'oss', 'woocommerce-germanized' ), wc_format_datetime( $observer_report->get_date_end() ) ); ?></span> <a class="oss-settings-learn-more" href="<?php echo esc_url( $observer_report->get_url() ); ?>"><?php _ex( 'see details', 'oss', 'woocommerce-germanized' ); ?></a></p>
147
  <p class="oss-woocommerce-additional-desc wc-gzd-additional-desc"><?php printf( _x( 'This value indicates your current net total amount applicable for the One Stop Shop procedure delivery threshold of the current year. You should take action in case the delivery threshold is or is close to being exceeded. <a href="%s">Find out more</a> about the calculation.', 'oss', 'woocommerce-germanized' ), 'https://vendidero.github.io/one-stop-shop-woocommerce/report-calculation' ); ?></p>
148
  <?php
149
 
packages/one-stop-shop-woocommerce/src/Tax.php CHANGED
@@ -16,57 +16,127 @@ class Tax {
16
 
17
  add_filter( 'woocommerce_product_get_tax_class', array( __CLASS__, 'filter_tax_class' ), 250, 2 );
18
  add_filter( 'woocommerce_product_variation_get_tax_class', array( __CLASS__, 'filter_tax_class' ), 250, 2 );
 
19
  add_filter( 'woocommerce_adjust_non_base_location_prices', array( __CLASS__, 'disable_location_price' ), 250 );
20
  }
21
  }
22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  public static function disable_location_price() {
24
- return false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  }
26
 
27
- /**
28
- * @param $tax_class
29
- * @param \WC_Product $product
30
- */
31
- public static function filter_tax_class( $tax_class, $product ) {
32
  $is_admin_order_request = self::is_admin_order_request();
33
 
34
- if ( WC()->customer || $is_admin_order_request ) {
35
- if ( $is_admin_order_request ) {
36
- $taxable_address = array(
37
- WC()->countries->get_base_country(),
38
- WC()->countries->get_base_state(),
39
- WC()->countries->get_base_postcode(),
40
- WC()->countries->get_base_city()
41
- );
42
 
43
- if ( $order = wc_get_order( absint( $_POST['order_id'] ) ) ) {
44
- $tax_based_on = get_option( 'woocommerce_tax_based_on' );
45
 
46
- if ( 'shipping' === $tax_based_on && ! $order->get_shipping_country() ) {
47
- $tax_based_on = 'billing';
48
- }
49
 
50
- $country = $tax_based_on ? $order->get_billing_country() : $order->get_shipping_country();
51
 
52
- if ( 'base' !== $tax_based_on && ! empty( $country ) ) {
53
- $taxable_address = array(
54
- $country,
55
- 'billing' === $tax_based_on ? $order->get_billing_state() : $order->get_shipping_state(),
56
- 'billing' === $tax_based_on ? $order->get_billing_postcode() : $order->get_shipping_postcode(),
57
- 'billing' === $tax_based_on ? $order->get_billing_city() : $order->get_shipping_city(),
58
- );
59
- }
60
  }
61
- } else {
62
- $taxable_address = WC()->customer->get_taxable_address();
63
  }
64
 
65
- if ( isset( $taxable_address[0] ) && ! empty( $taxable_address[0] ) && $taxable_address[0] != wc_get_base_location()['country'] ) {
66
- $county = $taxable_address[0];
67
- $postcode = isset( $taxable_address[2] ) ? $taxable_address[2] : '';
68
- $tax_class = self::get_product_tax_class_by_country( $product, $county, $postcode, $tax_class );
69
- }
 
 
 
 
 
 
 
 
 
 
 
 
70
  }
71
 
72
  return $tax_class;
@@ -369,6 +439,7 @@ class Tax {
369
 
370
  public static function import_tax_rates( $is_oss = true ) {
371
  $tax_class_slugs = self::get_tax_class_slugs();
 
372
 
373
  foreach( $tax_class_slugs as $tax_class_type => $class ) {
374
  /**
@@ -390,45 +461,93 @@ class Tax {
390
  }
391
 
392
  $new_rates = array();
393
- $eu_rates = self::get_eu_tax_rates();
394
 
395
- foreach( $eu_rates as $country => $rates ) {
 
396
  /**
397
  * Use base country rates in case OSS is disabled
398
  */
399
- if ( ! $is_oss ) {
400
- $base_country = wc_get_base_location()['country'];
401
-
402
- if ( isset( $eu_rates[ $base_country ] ) ) {
403
- $rates = $eu_rates[ $base_country ];
404
- } else {
405
- continue;
406
- }
407
- }
408
-
409
- switch( $tax_class_type ) {
410
- case "greater-reduced":
411
- if ( sizeof( $rates['reduced'] ) > 1 ) {
412
- $new_rates[ $country ] = $rates['reduced'][1];
413
- }
414
- break;
415
- case "reduced":
416
- if ( ! empty( $rates['reduced'] ) ) {
417
- $new_rates[ $country ] = $rates['reduced'][0];
418
- }
419
- break;
420
- default:
421
- if ( isset( $rates[ $tax_class_type ] ) ) {
422
- $new_rates[ $country ] = $rates[ $tax_class_type ];
423
- }
424
- break;
425
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
426
  }
427
 
428
  self::import_rates( $new_rates, $class );
429
  }
430
  }
431
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
432
  public static function import_oss_tax_rates() {
433
  self::import_tax_rates( true );
434
  }
@@ -480,129 +599,223 @@ class Tax {
480
  */
481
  $rates = array(
482
  'AT' => array(
483
- 'standard' => 20,
484
- 'reduced' => array( 10, 13 )
 
 
485
  ),
486
  'BE' => array(
487
- 'standard' => 21,
488
- 'reduced' => array( 6, 12 )
 
 
489
  ),
490
  'BG' => array(
491
- 'standard' => 20,
492
- 'reduced' => array( 9 )
 
 
493
  ),
494
  'CY' => array(
495
- 'standard' => 19,
496
- 'reduced' => array( 5, 9 )
 
 
497
  ),
498
  'CZ' => array(
499
- 'standard' => 21,
500
- 'reduced' => array( 10, 15 )
 
 
501
  ),
502
  'DE' => array(
503
- 'standard' => 19,
504
- 'reduced' => array( 7 )
 
 
505
  ),
506
  'DK' => array(
507
- 'standard' => 25,
508
- 'reduced' => array()
 
 
509
  ),
510
  'EE' => array(
511
- 'standard' => 20,
512
- 'reduced' => array( 9 )
 
 
513
  ),
514
  'GR' => array(
515
- 'standard' => 24,
516
- 'reduced' => array( 6, 13 )
 
 
517
  ),
518
  'ES' => array(
519
- 'standard' => 21,
520
- 'reduced' => array( 10 ),
521
- 'super-reduced' => 4
 
 
522
  ),
523
  'FI' => array(
524
- 'standard' => 24,
525
- 'reduced' => array( 10, 14 )
 
 
526
  ),
527
  'FR' => array(
528
- 'standard' => 20,
529
- 'reduced' => array( 5.5, 10 ),
530
- 'super-reduced' => 2.1
 
 
531
  ),
532
  'HR' => array(
533
- 'standard' => 25,
534
- 'reduced' => array( 5, 13 )
 
 
535
  ),
536
  'HU' => array(
537
- 'standard' => 27,
538
- 'reduced' => array( 5, 18 )
 
 
539
  ),
540
  'IE' => array(
541
- 'standard' => 23,
542
- 'reduced' => array( 9, 13.5 ),
543
- 'super-reduced' => 4.8
 
 
544
  ),
545
  'IT' => array(
546
- 'standard' => 22,
547
- 'reduced' => array( 5, 10 ),
548
- 'super-reduced' => 4
 
 
549
  ),
550
  'LT' => array(
551
- 'standard' => 21,
552
- 'reduced' => array( 5, 9 )
 
 
553
  ),
554
  'LU' => array(
555
- 'standard' => 17,
556
- 'reduced' => array( 8 ),
557
- 'super-reduced' => 3
 
 
558
  ),
559
  'LV' => array(
560
- 'standard' => 21,
561
- 'reduced' => array( 12, 5 )
 
 
562
  ),
563
  'MC' => array(
564
- 'standard' => 20,
565
- 'reduced' => array( 5.5, 10 ),
566
- 'super-reduced' => 2.1
 
 
567
  ),
568
  'MT' => array(
569
- 'standard' => 18,
570
- 'reduced' => array( 5, 7 )
 
 
571
  ),
572
  'NL' => array(
573
- 'standard' => 21,
574
- 'reduced' => array( 9 )
 
 
575
  ),
576
  'PL' => array(
577
- 'standard' => 23,
578
- 'reduced' => array( 5, 8 )
 
 
579
  ),
580
  'PT' => array(
581
- 'standard' => 23,
582
- 'reduced' => array( 6, 13 )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
583
  ),
584
  'RO' => array(
585
- 'standard' => 19,
586
- 'reduced' => array( 5, 9 )
 
 
587
  ),
588
  'SE' => array(
589
- 'standard' => 25,
590
- 'reduced' => array( 6, 12 )
 
 
591
  ),
592
  'SI' => array(
593
- 'standard' => 22,
594
- 'reduced' => array( 9.5 )
 
 
595
  ),
596
  'SK' => array(
597
- 'standard' => 20,
598
- 'reduced' => array( 10 )
 
 
599
  ),
600
  'GB' => array(
601
- 'standard' => 20,
602
- 'reduced' => array( 5 ),
 
 
 
 
603
  ),
604
  );
605
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
606
  return $rates;
607
  }
608
 
@@ -627,6 +840,7 @@ class Tax {
627
  global $wpdb;
628
 
629
  $eu_countries = WC()->countries->get_european_union_countries( 'eu_vat' );
 
630
 
631
  /**
632
  * Delete EU tax rates and make sure tax rate locations are deleted too
@@ -639,26 +853,41 @@ class Tax {
639
 
640
  $count = 0;
641
 
642
- foreach ( $rates as $iso => $rate ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
643
  $_tax_rate = array(
644
  'tax_rate_country' => $iso,
645
  'tax_rate_state' => '',
646
- 'tax_rate' => (string) number_format( (double) wc_clean( $rate ), 4, '.', '' ),
647
- 'tax_rate_name' => sprintf( _x( 'VAT %s', 'oss-tax-rate-import', 'woocommerce-germanized' ), ( $iso . ( ! empty( $tax_class ) ? ' ' . $tax_class : '' ) ) ),
648
- 'tax_rate_priority' => 1,
649
  'tax_rate_compound' => 0,
650
- 'tax_rate_shipping' => ( strstr( $tax_class, 'virtual' ) ? 0 : 1 ),
651
  'tax_rate_order' => $count++,
 
652
  'tax_rate_class' => $tax_class
653
  );
654
 
655
  $new_tax_rate_id = \WC_Tax::_insert_tax_rate( $_tax_rate );
656
 
657
- /**
658
- * Import Norther Ireland postcodes for GB which start with BT
659
- */
660
- if ( $new_tax_rate_id && 'GB' === $iso ) {
661
- \WC_Tax::_update_tax_rate_postcodes( $new_tax_rate_id, 'BT*' );
662
  }
663
  }
664
  }
16
 
17
  add_filter( 'woocommerce_product_get_tax_class', array( __CLASS__, 'filter_tax_class' ), 250, 2 );
18
  add_filter( 'woocommerce_product_variation_get_tax_class', array( __CLASS__, 'filter_tax_class' ), 250, 2 );
19
+
20
  add_filter( 'woocommerce_adjust_non_base_location_prices', array( __CLASS__, 'disable_location_price' ), 250 );
21
  }
22
  }
23
 
24
+ /**
25
+ * Get VAT exemptions (of EU countries) for certain postcodes (e.g. canary islands)
26
+ *
27
+ * @see https://www.hk24.de/produktmarken/beratung-service/recht-und-steuern/steuerrecht/umsatzsteuer-mehrwertsteuer/umsatzsteuer-mehrwertsteuer-international/verfahrensrecht/territoriale-besonderheiten-umsatzsteuer-zollrecht-1167674
28
+ * @see https://github.com/woocommerce/woocommerce/issues/5143
29
+ * @see https://ec.europa.eu/taxation_customs/business/vat/eu-vat-rules-topic/territorial-status-eu-countries-certain-territories_en
30
+ *
31
+ * @return \string[][]
32
+ */
33
+ public static function get_vat_postcode_exemptions_by_country( $country = '' ) {
34
+ $country = wc_strtoupper( $country );
35
+
36
+ $exemptions = array(
37
+ 'DE' => array(
38
+ '27498', // Helgoland
39
+ '78266' // Büsingen am Hochrhein
40
+ ),
41
+ 'ES' => array(
42
+ '35*', // Canary Islands
43
+ '38*', // Canary Islands
44
+ '51*', // Ceuta
45
+ '52*' // Melilla
46
+ ),
47
+ 'GR' => array(
48
+ '63086', // Mount Athos
49
+ '63087' // Mount Athos
50
+ ),
51
+ 'IT' => array(
52
+ '22060', // Livigno, Campione d’Italia
53
+ '23030', // Lake Lugano
54
+ ),
55
+ );
56
+
57
+ if ( empty( $country ) ) {
58
+ return $exemptions;
59
+ } elseif( array_key_exists( $country, $exemptions ) ) {
60
+ return $exemptions[ $country ];
61
+ } else {
62
+ return array();
63
+ }
64
+ }
65
+
66
  public static function disable_location_price() {
67
+ $fixed_gross_prices = 'yes' === get_option( 'oss_fixed_gross_prices' );
68
+
69
+ if ( $fixed_gross_prices ) {
70
+ $tax_location = self::get_taxable_location();
71
+
72
+ if ( ! empty( $tax_location[0] ) ) {
73
+ $country = $tax_location[0];
74
+ $postcode = isset( $tax_location[2] ) ? $tax_location[2] : '';
75
+
76
+ /**
77
+ * By default do not force gross prices for third countries to make sure
78
+ * net prices are used within cart/checkout.
79
+ */
80
+ if ( ! Package::country_supports_eu_vat( $country, $postcode ) && apply_filters( 'oss_disable_static_gross_prices_third_countries', true, $tax_location ) ) {
81
+ $fixed_gross_prices = false;
82
+ }
83
+ }
84
+ }
85
+
86
+ if ( apply_filters( 'oss_force_static_gross_prices', $fixed_gross_prices ) ) {
87
+ return false;
88
+ }
89
+
90
+ return true;
91
  }
92
 
93
+ protected static function get_taxable_location() {
 
 
 
 
94
  $is_admin_order_request = self::is_admin_order_request();
95
 
96
+ if ( $is_admin_order_request ) {
97
+ $taxable_address = array(
98
+ WC()->countries->get_base_country(),
99
+ WC()->countries->get_base_state(),
100
+ WC()->countries->get_base_postcode(),
101
+ WC()->countries->get_base_city()
102
+ );
 
103
 
104
+ if ( $order = wc_get_order( absint( $_POST['order_id'] ) ) ) {
105
+ $tax_based_on = get_option( 'woocommerce_tax_based_on' );
106
 
107
+ if ( 'shipping' === $tax_based_on && ! $order->get_shipping_country() ) {
108
+ $tax_based_on = 'billing';
109
+ }
110
 
111
+ $country = $tax_based_on ? $order->get_billing_country() : $order->get_shipping_country();
112
 
113
+ if ( 'base' !== $tax_based_on && ! empty( $country ) ) {
114
+ $taxable_address = array(
115
+ $country,
116
+ 'billing' === $tax_based_on ? $order->get_billing_state() : $order->get_shipping_state(),
117
+ 'billing' === $tax_based_on ? $order->get_billing_postcode() : $order->get_shipping_postcode(),
118
+ 'billing' === $tax_based_on ? $order->get_billing_city() : $order->get_shipping_city(),
119
+ );
 
120
  }
 
 
121
  }
122
 
123
+ return $taxable_address;
124
+ } else {
125
+ return \WC_Tax::get_tax_location();
126
+ }
127
+ }
128
+
129
+ /**
130
+ * @param $tax_class
131
+ * @param \WC_Product $product
132
+ */
133
+ public static function filter_tax_class( $tax_class, $product ) {
134
+ $taxable_address = self::get_taxable_location();
135
+
136
+ if ( isset( $taxable_address[0] ) && ! empty( $taxable_address[0] ) && $taxable_address[0] != wc_get_base_location()['country'] ) {
137
+ $county = $taxable_address[0];
138
+ $postcode = isset( $taxable_address[2] ) ? $taxable_address[2] : '';
139
+ $tax_class = self::get_product_tax_class_by_country( $product, $county, $postcode, $tax_class );
140
  }
141
 
142
  return $tax_class;
439
 
440
  public static function import_tax_rates( $is_oss = true ) {
441
  $tax_class_slugs = self::get_tax_class_slugs();
442
+ $eu_rates = self::get_eu_tax_rates();
443
 
444
  foreach( $tax_class_slugs as $tax_class_type => $class ) {
445
  /**
461
  }
462
 
463
  $new_rates = array();
 
464
 
465
+ foreach( $eu_rates as $country => $rates_data ) {
466
+
467
  /**
468
  * Use base country rates in case OSS is disabled
469
  */
470
+ if ( ! $is_oss ) {
471
+ $base_country = wc_get_base_location()['country'];
472
+
473
+ if ( isset( $eu_rates[ $base_country ] ) ) {
474
+ $rates_data = $eu_rates[ $base_country ];
475
+ } else {
476
+ continue;
477
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
478
  }
479
+
480
+ /**
481
+ * Each country may contain multiple tax rates
482
+ */
483
+ foreach( $rates_data as $rates ) {
484
+
485
+ $rates = wp_parse_args( $rates, array(
486
+ 'name' => '',
487
+ 'postcodes' => array(),
488
+ 'reduced' => array(),
489
+ ) );
490
+
491
+ if ( ! empty( $rates['postcode'] ) ) {
492
+ foreach( $rates['postcode'] as $postcode ) {
493
+ $tax_rate = self::get_single_tax_rate_data( $tax_class_type, $rates, $country, $postcode );
494
+
495
+ if ( false !== $tax_rate ) {
496
+ $new_rates[] = $tax_rate;
497
+ }
498
+ }
499
+ } else {
500
+ $tax_rate = self::get_single_tax_rate_data( $tax_class_type, $rates, $country );
501
+
502
+ if ( false !== $tax_rate ) {
503
+ $new_rates[] = $tax_rate;
504
+ }
505
+ }
506
+ }
507
  }
508
 
509
  self::import_rates( $new_rates, $class );
510
  }
511
  }
512
 
513
+ private static function get_single_tax_rate_data( $tax_class_type, $rates, $country, $postcode = '' ) {
514
+ $rates = wp_parse_args( $rates, array(
515
+ 'name' => '',
516
+ 'reduced' => array(),
517
+ ) );
518
+
519
+ $single_rate = array(
520
+ 'name' => $rates['name'],
521
+ 'rate' => false,
522
+ 'country' => $country,
523
+ 'postcode' => $postcode,
524
+ );
525
+
526
+ switch( $tax_class_type ) {
527
+ case "greater-reduced":
528
+ if ( sizeof( $rates['reduced'] ) > 1 ) {
529
+ $single_rate['rate'] = $rates['reduced'][1];
530
+ }
531
+ break;
532
+ case "reduced":
533
+ if ( ! empty( $rates['reduced'] ) ) {
534
+ $single_rate['rate'] = $rates['reduced'][0];
535
+ }
536
+ break;
537
+ default:
538
+ if ( isset( $rates[ $tax_class_type ] ) ) {
539
+ $single_rate['rate'] = $rates[ $tax_class_type ];
540
+ }
541
+ break;
542
+ }
543
+
544
+ if ( false === $single_rate['rate'] ) {
545
+ return false;
546
+ }
547
+
548
+ return $single_rate;
549
+ }
550
+
551
  public static function import_oss_tax_rates() {
552
  self::import_tax_rates( true );
553
  }
599
  */
600
  $rates = array(
601
  'AT' => array(
602
+ array(
603
+ 'standard' => 20,
604
+ 'reduced' => array( 10, 13 )
605
+ ),
606
  ),
607
  'BE' => array(
608
+ array(
609
+ 'standard' => 21,
610
+ 'reduced' => array( 6, 12 )
611
+ ),
612
  ),
613
  'BG' => array(
614
+ array(
615
+ 'standard' => 20,
616
+ 'reduced' => array( 9 )
617
+ ),
618
  ),
619
  'CY' => array(
620
+ array(
621
+ 'standard' => 19,
622
+ 'reduced' => array( 5, 9 )
623
+ ),
624
  ),
625
  'CZ' => array(
626
+ array(
627
+ 'standard' => 21,
628
+ 'reduced' => array( 10, 15 )
629
+ ),
630
  ),
631
  'DE' => array(
632
+ array(
633
+ 'standard' => 19,
634
+ 'reduced' => array( 7 )
635
+ ),
636
  ),
637
  'DK' => array(
638
+ array(
639
+ 'standard' => 25,
640
+ 'reduced' => array()
641
+ ),
642
  ),
643
  'EE' => array(
644
+ array(
645
+ 'standard' => 20,
646
+ 'reduced' => array( 9 )
647
+ ),
648
  ),
649
  'GR' => array(
650
+ array(
651
+ 'standard' => 24,
652
+ 'reduced' => array( 6, 13 )
653
+ ),
654
  ),
655
  'ES' => array(
656
+ array(
657
+ 'standard' => 21,
658
+ 'reduced' => array( 10 ),
659
+ 'super-reduced' => 4
660
+ ),
661
  ),
662
  'FI' => array(
663
+ array(
664
+ 'standard' => 24,
665
+ 'reduced' => array( 10, 14 )
666
+ ),
667
  ),
668
  'FR' => array(
669
+ array(
670
+ 'standard' => 20,
671
+ 'reduced' => array( 5.5, 10 ),
672
+ 'super-reduced' => 2.1
673
+ ),
674
  ),
675
  'HR' => array(
676
+ array(
677
+ 'standard' => 25,
678
+ 'reduced' => array( 5, 13 )
679
+ ),
680
  ),
681
  'HU' => array(
682
+ array(
683
+ 'standard' => 27,
684
+ 'reduced' => array( 5, 18 )
685
+ ),
686
  ),
687
  'IE' => array(
688
+ array(
689
+ 'standard' => 23,
690
+ 'reduced' => array( 9, 13.5 ),
691
+ 'super-reduced' => 4.8
692
+ ),
693
  ),
694
  'IT' => array(
695
+ array(
696
+ 'standard' => 22,
697
+ 'reduced' => array( 5, 10 ),
698
+ 'super-reduced' => 4
699
+ ),
700
  ),
701
  'LT' => array(
702
+ array(
703
+ 'standard' => 21,
704
+ 'reduced' => array( 5, 9 )
705
+ ),
706
  ),
707
  'LU' => array(
708
+ array(
709
+ 'standard' => 17,
710
+ 'reduced' => array( 8 ),
711
+ 'super-reduced' => 3
712
+ ),
713
  ),
714
  'LV' => array(
715
+ array(
716
+ 'standard' => 21,
717
+ 'reduced' => array( 12, 5 )
718
+ ),
719
  ),
720
  'MC' => array(
721
+ array(
722
+ 'standard' => 20,
723
+ 'reduced' => array( 5.5, 10 ),
724
+ 'super-reduced' => 2.1
725
+ ),
726
  ),
727
  'MT' => array(
728
+ array(
729
+ 'standard' => 18,
730
+ 'reduced' => array( 5, 7 )
731
+ ),
732
  ),
733
  'NL' => array(
734
+ array(
735
+ 'standard' => 21,
736
+ 'reduced' => array( 9 )
737
+ ),
738
  ),
739
  'PL' => array(
740
+ array(
741
+ 'standard' => 23,
742
+ 'reduced' => array( 5, 8 )
743
+ ),
744
  ),
745
  'PT' => array(
746
+ array(
747
+ // Madeira
748
+ 'postcode' => array( '90*', '91*', '92*', '93*', '94*' ),
749
+ 'standard' => 22,
750
+ 'reduced' => array( 5, 12 ),
751
+ 'name' => _x( 'Madeira', 'oss', 'woocommerce-germanized' )
752
+ ),
753
+ array(
754
+ // Acores
755
+ 'postcode' => array( '95*', '96*', '97*', '98*' ),
756
+ 'standard' => 18,
757
+ 'reduced' => array( 4, 9 ),
758
+ 'name' => _x( 'Acores', 'oss', 'woocommerce-germanized' )
759
+ ),
760
+ array(
761
+ 'standard' => 23,
762
+ 'reduced' => array( 6, 13 )
763
+ ),
764
  ),
765
  'RO' => array(
766
+ array(
767
+ 'standard' => 19,
768
+ 'reduced' => array( 5, 9 )
769
+ ),
770
  ),
771
  'SE' => array(
772
+ array(
773
+ 'standard' => 25,
774
+ 'reduced' => array( 6, 12 )
775
+ ),
776
  ),
777
  'SI' => array(
778
+ array(
779
+ 'standard' => 22,
780
+ 'reduced' => array( 9.5 )
781
+ ),
782
  ),
783
  'SK' => array(
784
+ array(
785
+ 'standard' => 20,
786
+ 'reduced' => array( 10 )
787
+ ),
788
  ),
789
  'GB' => array(
790
+ array(
791
+ 'standard' => 20,
792
+ 'reduced' => array( 5 ),
793
+ 'postcode' => array( 'BT*' ),
794
+ 'name' => _x( 'Northern Ireland', 'oss', 'woocommerce-germanized' )
795
+ ),
796
  ),
797
  );
798
 
799
+ foreach( self::get_vat_postcode_exemptions_by_country() as $country => $exempt_postcodes ) {
800
+ if ( array_key_exists( $country, $rates ) ) {
801
+ $default_rate = array_values( $rates[ $country ] )[0];
802
+
803
+ $postcode_exempt = array(
804
+ 'postcode' => $exempt_postcodes,
805
+ 'standard' => 0,
806
+ 'reduced' => sizeof( $default_rate['reduced'] ) > 1 ? array( 0, 0 ) : array( 0 ),
807
+ 'name' => _x( 'Exempt', 'oss-tax-rate-import', 'woocommerce-germanized' )
808
+ );
809
+
810
+ if ( array_key_exists( 'super-reduced', $default_rate ) ) {
811
+ $postcode_exempt['super-reduced'] = 0;
812
+ }
813
+
814
+ // Prepend before other tax rates
815
+ $rates[ $country ] = array_merge( array( $postcode_exempt ), $rates[ $country ] );
816
+ }
817
+ }
818
+
819
  return $rates;
820
  }
821
 
840
  global $wpdb;
841
 
842
  $eu_countries = WC()->countries->get_european_union_countries( 'eu_vat' );
843
+ $exemptions = self::get_vat_postcode_exemptions_by_country();
844
 
845
  /**
846
  * Delete EU tax rates and make sure tax rate locations are deleted too
853
 
854
  $count = 0;
855
 
856
+ foreach ( $rates as $rate ) {
857
+ $rate = wp_parse_args( $rate, array(
858
+ 'rate' => 0,
859
+ 'country' => '',
860
+ 'postcode' => '',
861
+ 'name' => '',
862
+ ) );
863
+
864
+ $iso = wc_strtoupper( $rate['country'] );
865
+ $vat_desc = $iso;
866
+
867
+ if ( ! empty( $rate['name'] ) ) {
868
+ $vat_desc = $vat_desc . ' ' . $rate['name'];
869
+ }
870
+
871
+ $vat_rate = wc_format_decimal( $rate['rate'], false, true );
872
+
873
+ $tax_rate_name = apply_filters( 'oss_import_tax_rate_name', sprintf( _x( 'VAT %1$s %% %2$s', 'oss-tax-rate-import', 'woocommerce-germanized' ), $vat_rate, $vat_desc ), $rate['rate'], $iso, $tax_class, $rate );
874
+
875
  $_tax_rate = array(
876
  'tax_rate_country' => $iso,
877
  'tax_rate_state' => '',
878
+ 'tax_rate' => (string) number_format( (double) wc_clean( $rate['rate'] ), 4, '.', '' ),
879
+ 'tax_rate_name' => $tax_rate_name,
 
880
  'tax_rate_compound' => 0,
881
+ 'tax_rate_priority' => 1,
882
  'tax_rate_order' => $count++,
883
+ 'tax_rate_shipping' => ( strstr( $tax_class, 'virtual' ) ? 0 : 1 ),
884
  'tax_rate_class' => $tax_class
885
  );
886
 
887
  $new_tax_rate_id = \WC_Tax::_insert_tax_rate( $_tax_rate );
888
 
889
+ if ( ! empty( $rate['postcode'] ) ) {
890
+ \WC_Tax::_update_tax_rate_postcodes( $new_tax_rate_id, $rate['postcode'] );
 
 
 
891
  }
892
  }
893
  }
packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php CHANGED
@@ -283,6 +283,12 @@ function wc_gzd_dhl_get_label_reference( $reference_text, $placeholders = array(
283
  return str_replace( array_keys( $placeholders ), array_values( $placeholders ), $reference_text );
284
  }
285
 
 
 
 
 
 
 
286
  function wc_gzd_dhl_get_label_customer_reference( $label, $shipment ) {
287
  /**
288
  * Filter to adjust the customer reference field placed on the DHL label. Maximum characeter length: 35.
@@ -294,7 +300,7 @@ function wc_gzd_dhl_get_label_customer_reference( $label, $shipment ) {
294
  * @since 3.0.0
295
  * @package Vendidero/Germanized/DHL
296
  */
297
- $ref = apply_filters( 'woocommerce_gzd_dhl_label_customer_reference', wc_gzd_dhl_get_label_reference( _x( 'Shipment #{shipment_id} to order {order_id}', 'dhl', 'woocommerce-germanized' ), array( '{shipment_id}' => $shipment->get_id(), '{order_id}' => $shipment->get_order_number() ) ), $label, $shipment );
298
 
299
  return sanitize_text_field( substr( $ref, 0, 35 ) );
300
  }
@@ -528,14 +534,13 @@ function wc_gzd_dhl_format_label_state( $state, $country ) {
528
  return $state;
529
  }
530
 
 
 
 
 
 
531
  function wc_gzd_dhl_get_product( $the_product ) {
532
- if ( ! is_a( $the_product, '\Vendidero\Germanized\DHL\Product' ) ) {
533
- $product = new Product( $the_product );
534
- } else {
535
- $product = $the_product;
536
- }
537
-
538
- return $product;
539
  }
540
 
541
  /**
@@ -560,7 +565,7 @@ function wc_gzd_dhl_get_label_shipment_address_addition( $shipment ) {
560
  function wc_gzd_dhl_get_label_shipment_street_number( $shipment ) {
561
  $street_number = $shipment->get_address_street_number();
562
 
563
- if ( ! Package::is_shipping_domestic( $shipment->get_country() ) ) {
564
 
565
  if ( empty( $street_number ) ) {
566
  /**
@@ -585,7 +590,7 @@ function wc_gzd_dhl_get_label_shipment_street_number( $shipment ) {
585
  function wc_gzd_dhl_get_return_label_sender_street_number( $label ) {
586
  $street_number = $label->get_sender_street_number();
587
 
588
- if ( ! Package::is_shipping_domestic( $label->get_sender_country() ) ) {
589
  if ( empty( $street_number ) ) {
590
  /**
591
  * This filter is documented in includes/wc-gzd-dhl-core-functions.php
@@ -651,15 +656,17 @@ function wc_gzd_dhl_get_service_product_attributes( $service ) {
651
  * @return array
652
  */
653
  function wc_gzd_dhl_get_deutsche_post_products( $shipment, $parent_only = true ) {
654
- $country = $shipment->get_country();
 
655
 
656
  if ( 'return' === $shipment->get_type() ) {
657
- $country = $shipment->get_sender_country();
 
658
  }
659
 
660
- if ( Package::is_shipping_domestic( $country ) ) {
661
  return wc_gzd_dhl_get_deutsche_post_products_domestic( $shipment, $parent_only );
662
- } elseif ( Package::is_eu_shipment( $country ) ) {
663
  return wc_gzd_dhl_get_deutsche_post_products_eu( $shipment, $parent_only );
664
  } else {
665
  return wc_gzd_dhl_get_deutsche_post_products_international( $shipment, $parent_only );
@@ -732,7 +739,7 @@ function wc_gzd_dhl_get_deutsche_post_products_eu( $shipment = false, $parent_on
732
  * @return array
733
  */
734
  function wc_gzd_dhl_get_deutsche_post_products_international( $shipment = false, $parent_only = true ) {
735
- if ( $shipment && Package::is_eu_shipment( $shipment->get_country() ) ) {
736
  return wc_gzd_dhl_get_deutsche_post_products_eu( $shipment );
737
  } else {
738
  $international = Package::get_internetmarke_api()->get_available_products( array(
@@ -890,18 +897,18 @@ function wc_gzd_dhl_get_products_eu() {
890
  return $dhl_prod_int;
891
  }
892
 
893
- function wc_gzd_dhl_get_products( $shipping_country ) {
894
- if ( Package::is_shipping_domestic( $shipping_country ) ) {
895
  return wc_gzd_dhl_get_products_domestic();
896
- } elseif ( Package::is_eu_shipment( $shipping_country ) ) {
897
  return wc_gzd_dhl_get_products_eu();
898
  } else {
899
  return wc_gzd_dhl_get_products_international();
900
  }
901
  }
902
 
903
- function wc_gzd_dhl_get_return_products( $shipping_country ) {
904
- if ( Package::is_shipping_domestic( $shipping_country ) ) {
905
  return wc_gzd_dhl_get_return_products_domestic();
906
  } else {
907
  return wc_gzd_dhl_get_return_products_international();
283
  return str_replace( array_keys( $placeholders ), array_values( $placeholders ), $reference_text );
284
  }
285
 
286
+ /**
287
+ * @param Label\Label $label
288
+ * @param Shipment $shipment
289
+ *
290
+ * @return string
291
+ */
292
  function wc_gzd_dhl_get_label_customer_reference( $label, $shipment ) {
293
  /**
294
  * Filter to adjust the customer reference field placed on the DHL label. Maximum characeter length: 35.
300
  * @since 3.0.0
301
  * @package Vendidero/Germanized/DHL
302
  */
303
+ $ref = apply_filters( 'woocommerce_gzd_dhl_label_customer_reference', wc_gzd_dhl_get_label_reference( _x( 'Shipment #{shipment_id} to order {order_id}', 'dhl', 'woocommerce-germanized' ), array( '{shipment_id}' => $shipment->get_shipment_number(), '{order_id}' => $shipment->get_order_number() ) ), $label, $shipment );
304
 
305
  return sanitize_text_field( substr( $ref, 0, 35 ) );
306
  }
534
  return $state;
535
  }
536
 
537
+ /**
538
+ * @param $the_product
539
+ *
540
+ * @return \Vendidero\Germanized\Shipments\Product
541
+ */
542
  function wc_gzd_dhl_get_product( $the_product ) {
543
+ return wc_gzd_shipments_get_product( $the_product );
 
 
 
 
 
 
544
  }
545
 
546
  /**
565
  function wc_gzd_dhl_get_label_shipment_street_number( $shipment ) {
566
  $street_number = $shipment->get_address_street_number();
567
 
568
+ if ( ! Package::is_shipping_domestic( $shipment->get_country(), $shipment->get_postcode() ) ) {
569
 
570
  if ( empty( $street_number ) ) {
571
  /**
590
  function wc_gzd_dhl_get_return_label_sender_street_number( $label ) {
591
  $street_number = $label->get_sender_street_number();
592
 
593
+ if ( ! Package::is_shipping_domestic( $label->get_sender_country(), $label->get_sender_postcode() ) ) {
594
  if ( empty( $street_number ) ) {
595
  /**
596
  * This filter is documented in includes/wc-gzd-dhl-core-functions.php
656
  * @return array
657
  */
658
  function wc_gzd_dhl_get_deutsche_post_products( $shipment, $parent_only = true ) {
659
+ $country = $shipment->get_country();
660
+ $postcode = $shipment->get_postcode();
661
 
662
  if ( 'return' === $shipment->get_type() ) {
663
+ $country = $shipment->get_sender_country();
664
+ $postcode = $shipment->get_sender_postcode();
665
  }
666
 
667
+ if ( Package::is_shipping_domestic( $country, $postcode ) ) {
668
  return wc_gzd_dhl_get_deutsche_post_products_domestic( $shipment, $parent_only );
669
+ } elseif ( Package::is_eu_shipment( $country, $postcode ) ) {
670
  return wc_gzd_dhl_get_deutsche_post_products_eu( $shipment, $parent_only );
671
  } else {
672
  return wc_gzd_dhl_get_deutsche_post_products_international( $shipment, $parent_only );
739
  * @return array
740
  */
741
  function wc_gzd_dhl_get_deutsche_post_products_international( $shipment = false, $parent_only = true ) {
742
+ if ( $shipment && Package::is_eu_shipment( $shipment->get_country(), $shipment->get_postcode() ) ) {
743
  return wc_gzd_dhl_get_deutsche_post_products_eu( $shipment );
744
  } else {
745
  $international = Package::get_internetmarke_api()->get_available_products( array(
897
  return $dhl_prod_int;
898
  }
899
 
900
+ function wc_gzd_dhl_get_products( $shipping_country, $shipping_postcode = '' ) {
901
+ if ( Package::is_shipping_domestic( $shipping_country, $shipping_postcode ) ) {
902
  return wc_gzd_dhl_get_products_domestic();
903
+ } elseif ( Package::is_eu_shipment( $shipping_country, $shipping_postcode ) ) {
904
  return wc_gzd_dhl_get_products_eu();
905
  } else {
906
  return wc_gzd_dhl_get_products_international();
907
  }
908
  }
909
 
910
+ function wc_gzd_dhl_get_return_products( $shipping_country, $shipping_postcode = '' ) {
911
+ if ( Package::is_shipping_domestic( $shipping_country, $shipping_postcode ) ) {
912
  return wc_gzd_dhl_get_return_products_domestic();
913
  } else {
914
  return wc_gzd_dhl_get_return_products_international();
packages/woocommerce-germanized-dhl/src/Admin/Admin.php CHANGED
@@ -28,10 +28,6 @@ class Admin {
28
  // Template check
29
  add_filter( 'woocommerce_gzd_template_check', array( __CLASS__, 'add_template_check' ), 10, 1 );
30
 
31
- // Product Options
32
- add_action( 'woocommerce_product_options_shipping', array( __CLASS__, 'product_options' ), 9 );
33
- add_action( 'woocommerce_admin_process_product_object', array( __CLASS__, 'save_product' ), 10, 1 );
34
-
35
  // Receiver ID options
36
  add_action( 'woocommerce_admin_field_dhl_receiver_ids', array( __CLASS__, 'output_receiver_ids_field' ), 10 );
37
  add_filter( 'woocommerce_admin_settings_sanitize_option', array( __CLASS__, 'save_receiver_ids' ), 10, 3 );
@@ -172,29 +168,6 @@ class Admin {
172
  echo $html;
173
  }
174
 
175
- public static function product_options() {
176
- global $post, $thepostid;
177
-
178
- $thepostid = $post->ID;
179
- $_product = wc_get_product( $thepostid );
180
- $dhl_product = wc_gzd_dhl_get_product( $_product );
181
-
182
- $countries = WC()->countries->get_countries();
183
- $countries = array_merge( array( '0' => _x( 'Select a country', 'dhl', 'woocommerce-germanized' ) ), $countries );
184
-
185
- woocommerce_wp_text_input( array( 'id' => '_dhl_hs_code', 'label' => _x( 'HS-Code (DHL)', 'dhl', 'woocommerce-germanized' ), 'desc_tip' => true, 'description' => _x( 'The HS Code is a number assigned to every possible commodity that can be imported or exported from any country.', 'dhl', 'woocommerce-germanized' ) ) );
186
- woocommerce_wp_select( array( 'options' => $countries, 'id' => '_dhl_manufacture_country', 'label' => _x( 'Country of manufacture (DHL)', 'dhl', 'woocommerce-germanized' ), 'desc_tip' => true, 'description' => _x( 'The country of manufacture is needed for customs of international shipping.', 'dhl', 'woocommerce-germanized' ) ) );
187
- }
188
-
189
- public static function save_product( $product ) {
190
- $hs_code = isset( $_POST['_dhl_hs_code'] ) ? wc_clean( $_POST['_dhl_hs_code'] ) : '';
191
- $country = isset( $_POST['_dhl_manufacture_country'] ) ? wc_clean( $_POST['_dhl_manufacture_country'] ) : '';
192
-
193
- $dhl_product = wc_gzd_dhl_get_product( $product );
194
- $dhl_product->set_hs_code( $hs_code );
195
- $dhl_product->set_manufacture_country( $country );
196
- }
197
-
198
  public static function add_template_check( $check ) {
199
  $check['dhl'] = array(
200
  'title' => _x( 'DHL', 'dhl', 'woocommerce-germanized' ),
28
  // Template check
29
  add_filter( 'woocommerce_gzd_template_check', array( __CLASS__, 'add_template_check' ), 10, 1 );
30
 
 
 
 
 
31
  // Receiver ID options
32
  add_action( 'woocommerce_admin_field_dhl_receiver_ids', array( __CLASS__, 'output_receiver_ids_field' ), 10 );
33
  add_filter( 'woocommerce_admin_settings_sanitize_option', array( __CLASS__, 'save_receiver_ids' ), 10, 3 );
168
  echo $html;
169
  }
170
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
171
  public static function add_template_check( $check ) {
172
  $check['dhl'] = array(
173
  'title' => _x( 'DHL', 'dhl', 'woocommerce-germanized' ),
packages/woocommerce-germanized-dhl/src/Api/ImWarenpostIntRest.php CHANGED
@@ -135,21 +135,21 @@ class ImWarenpostIntRest extends Rest {
135
  'id' => 0,
136
  'product' => $label->get_product_id(),
137
  'serviceLevel' => apply_filters( 'woocommerce_gzd_deutsche_post_label_api_customs_shipment_service_level', 'STANDARD', $label ),
138
- 'recipient' => substr( $recipient, 0, 30 ),
139
  'recipientPhone' => $shipment->get_phone(),
140
  'recipientEmail' => $shipment->get_email(),
141
- 'addressLine1' => substr( $shipment->get_address_1(), 0, 30 ),
142
- 'addressLine2' => substr( $shipment->get_address_2(), 0, 30 ),
143
  'city' => $shipment->get_city(),
144
- 'state' => wc_gzd_dhl_format_label_state( $shipment->get_state(), $shipment->get_country() ),
145
  'postalCode' => $shipment->get_postcode(),
146
  'destinationCountry' => $shipment->get_country(),
147
  'shipmentAmount' => wc_format_decimal( $shipment->get_total() + $shipment->get_additional_total(), 2 ),
148
  'shipmentCurrency' => get_woocommerce_currency(),
149
  'shipmentGrossWeight' => wc_get_weight( $label->get_weight(), 'g', 'kg' ),
150
- 'senderName' => substr( $sender_name, 0, 40 ),
151
- 'senderAddressLine1' => substr( ( $is_return ? $shipment->get_sender_address_1() : Package::get_setting( 'shipper_address' ) ), 0, 35 ),
152
- 'senderAddressLine2' => substr( ( $is_return ? $shipment->get_sender_address_2() : '' ), 0, 35 ),
153
  'senderCountry' => $is_return ? $shipment->get_sender_country() : Package::get_setting( 'shipper_country' ),
154
  'senderCity' => $is_return ? $shipment->get_sender_city() : Package::get_setting( 'shipper_city' ),
155
  'senderPostalCode' => $is_return ? $shipment->get_sender_postcode() : Package::get_setting( 'shipper_postcode' ),
@@ -174,7 +174,7 @@ class ImWarenpostIntRest extends Rest {
174
  );
175
 
176
  // Do only add customs data in case it is a non-EU shipment
177
- if ( Package::is_crossborder_shipment( $shipment->get_country() ) ) {
178
  $request_data['items'][0]['contents'] = $positions;
179
 
180
  /**
135
  'id' => 0,
136
  'product' => $label->get_product_id(),
137
  'serviceLevel' => apply_filters( 'woocommerce_gzd_deutsche_post_label_api_customs_shipment_service_level', 'STANDARD', $label ),
138
+ 'recipient' => mb_substr( $recipient, 0, 30 ),
139
  'recipientPhone' => $shipment->get_phone(),
140
  'recipientEmail' => $shipment->get_email(),
141
+ 'addressLine1' => mb_substr( $shipment->get_address_1(), 0, 30 ),
142
+ 'addressLine2' => mb_substr( $shipment->get_address_2(), 0, 30 ),
143
  'city' => $shipment->get_city(),
144
+ 'state' => mb_substr( wc_gzd_dhl_format_label_state( $shipment->get_state(), $shipment->get_country() ), 0, 20 ),
145
  'postalCode' => $shipment->get_postcode(),
146
  'destinationCountry' => $shipment->get_country(),
147
  'shipmentAmount' => wc_format_decimal( $shipment->get_total() + $shipment->get_additional_total(), 2 ),
148
  'shipmentCurrency' => get_woocommerce_currency(),
149
  'shipmentGrossWeight' => wc_get_weight( $label->get_weight(), 'g', 'kg' ),
150
+ 'senderName' => mb_substr( $sender_name, 0, 40 ),
151
+ 'senderAddressLine1' => mb_substr( ( $is_return ? $shipment->get_sender_address_1() : Package::get_setting( 'shipper_address' ) ), 0, 35 ),
152
+ 'senderAddressLine2' => mb_substr( ( $is_return ? $shipment->get_sender_address_2() : '' ), 0, 35 ),
153
  'senderCountry' => $is_return ? $shipment->get_sender_country() : Package::get_setting( 'shipper_country' ),
154
  'senderCity' => $is_return ? $shipment->get_sender_city() : Package::get_setting( 'shipper_city' ),
155
  'senderPostalCode' => $is_return ? $shipment->get_sender_postcode() : Package::get_setting( 'shipper_postcode' ),
174
  );
175
 
176
  // Do only add customs data in case it is a non-EU shipment
177
+ if ( Package::is_crossborder_shipment( $shipment->get_country(), $shipment->get_postcode() ) ) {
178
  $request_data['items'][0]['contents'] = $positions;
179
 
180
  /**
packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php CHANGED
@@ -601,7 +601,7 @@ class LabelSoap extends Soap {
601
  $dhl_label_body['ShipmentOrder']['PrintOnlyIfCodeable'] = array( 'active' => 1 );
602
  }
603
 
604
- if ( Package::is_crossborder_shipment( $shipment->get_country() ) ) {
605
 
606
  if ( sizeof( $shipment->get_items() ) > self::DHL_MAX_ITEMS ) {
607
  throw new Exception( sprintf( _x( 'Only %s shipment items can be processed, your shipment has %s items.', 'dhl', 'woocommerce-germanized' ), self::DHL_MAX_ITEMS, sizeof( $shipment->get_items() ) ) );
601
  $dhl_label_body['ShipmentOrder']['PrintOnlyIfCodeable'] = array( 'active' => 1 );
602
  }
603
 
604
+ if ( Package::is_crossborder_shipment( $shipment->get_country(), $shipment->get_postcode() ) ) {
605
 
606
  if ( sizeof( $shipment->get_items() ) > self::DHL_MAX_ITEMS ) {
607
  throw new Exception( sprintf( _x( 'Only %s shipment items can be processed, your shipment has %s items.', 'dhl', 'woocommerce-germanized' ), self::DHL_MAX_ITEMS, sizeof( $shipment->get_items() ) ) );
packages/woocommerce-germanized-dhl/src/Api/ReturnRest.php CHANGED
@@ -77,7 +77,7 @@ class ReturnRest extends Rest {
77
  'returnDocumentType' => 'SHIPMENT_LABEL'
78
  );
79
 
80
- if ( Package::is_crossborder_shipment( $label->get_sender_country() ) ) {
81
  $items = array();
82
  $customs_data = wc_gzd_dhl_get_shipment_customs_data( $label );
83
  $shipment_items = $shipment->get_items();
77
  'returnDocumentType' => 'SHIPMENT_LABEL'
78
  );
79
 
80
+ if ( Package::is_crossborder_shipment( $label->get_sender_country(), $label->get_sender_postcode() ) ) {
81
  $items = array();
82
  $customs_data = wc_gzd_dhl_get_shipment_customs_data( $label );
83
  $shipment_items = $shipment->get_items();
packages/woocommerce-germanized-dhl/src/Legacy/LabelFactory.php CHANGED
@@ -20,10 +20,10 @@ class LabelFactory {
20
  * Get label.
21
  */
22
  public static function get_label( $label_id = false, $label_type = 'simple' ) {
23
- return \Vendidero\Germanized\Shipments\LabelFactory::get_label( $label_id, '', $label_type );
24
  }
25
 
26
  public static function get_label_id( $label ) {
27
- return \Vendidero\Germanized\Shipments\LabelFactory::get_label_id( $label );
28
  }
29
  }
20
  * Get label.
21
  */
22
  public static function get_label( $label_id = false, $label_type = 'simple' ) {
23
+ return \Vendidero\Germanized\Shipments\Labels\Factory::get_label( $label_id, '', $label_type );
24
  }
25
 
26
  public static function get_label_id( $label ) {
27
+ return \Vendidero\Germanized\Shipments\Labels\Factory::get_label_id( $label );
28
  }
29
  }
packages/woocommerce-germanized-dhl/src/Package.php CHANGED
@@ -12,6 +12,7 @@ use Vendidero\Germanized\DHL\ShippingProvider\ShippingMethod;
12
  use Vendidero\Germanized\DHL\Api\Internetmarke;
13
  use Vendidero\Germanized\Shipments\Interfaces\ShippingProvider;
14
  use Vendidero\Germanized\Shipments\ShipmentItem;
 
15
 
16
  defined( 'ABSPATH' ) || exit;
17
 
@@ -25,7 +26,7 @@ class Package {
25
  *
26
  * @var string
27
  */
28
- const VERSION = '1.5.8';
29
 
30
  public static $upload_dir_suffix = '';
31
 
@@ -44,6 +45,12 @@ class Package {
44
  * Init the package - load the REST API Server class.
45
  */
46
  public static function init() {
 
 
 
 
 
 
47
  /**
48
  * Make sure provider is loaded after main shipments module.
49
  */
@@ -60,9 +67,6 @@ class Package {
60
  return;
61
  }
62
 
63
- // Add shipping provider
64
- add_filter( 'woocommerce_gzd_shipping_provider_class_names', array( __CLASS__, 'add_shipping_provider_class_name' ), 10, 1 );
65
-
66
  // Legacy data store
67
  add_filter( 'woocommerce_data_stores', array( __CLASS__, 'register_data_stores' ), 10, 1 );
68
 
@@ -212,13 +216,7 @@ class Package {
212
  }
213
 
214
  public static function is_dhl_enabled() {
215
- $is_enabled = false;
216
-
217
- if ( $provider = self::get_dhl_shipping_provider() ) {
218
- $is_enabled = $provider->is_activated();
219
- }
220
-
221
- return $is_enabled;
222
  }
223
 
224
  public static function get_country_iso_alpha3( $country_code ) {
@@ -252,7 +250,7 @@ class Package {
252
  * Additional services are only available for DHL products
253
  */
254
  if ( self::is_dhl_enabled() && ParcelServices::is_enabled() ) {
255
- ParcelServices::init();
256
  }
257
 
258
  Ajax::init();
@@ -265,25 +263,8 @@ class Package {
265
 
266
  // Register additional label types
267
  add_filter( 'woocommerce_gzd_shipment_label_types', array( __CLASS__, 'register_label_types' ), 10 );
268
-
269
- // Sync shipment items
270
- add_action( 'woocommerce_gzd_shipment_item_synced', array( __CLASS__, 'sync_item_meta' ), 10, 3 );
271
  }
272
 
273
- /**
274
- * @param ShipmentItem $item
275
- * @param \WC_Order_Item $order_item
276
- * @param $args
277
- */
278
- public static function sync_item_meta( $item, $order_item, $args ) {
279
- if ( $product = $item->get_product() ) {
280
- $dhl_product = wc_gzd_dhl_get_product( $product );
281
-
282
- $item->update_meta_data( '_dhl_hs_code', $dhl_product->get_hs_code() );
283
- $item->update_meta_data( '_dhl_manufacture_country', $dhl_product->get_manufacture_country() );
284
- }
285
- }
286
-
287
  public static function register_label_types( $types ) {
288
  $types[] = 'inlay_return';
289
 
@@ -498,13 +479,7 @@ class Package {
498
  }
499
 
500
  public static function is_deutsche_post_enabled() {
501
- $is_enabled = false;
502
-
503
- if ( $provider = self::get_deutsche_post_shipping_provider() ) {
504
- $is_enabled = $provider->is_activated();
505
- }
506
-
507
- return $is_enabled;
508
  }
509
 
510
  public static function get_internetmarke_username() {
@@ -1051,35 +1026,24 @@ class Package {
1051
  /**
1052
  * Function return whether the sender and receiver country is the same territory
1053
  */
1054
- public static function is_shipping_domestic( $country_receiver ) {
1055
- // If base is US territory
1056
- if ( in_array( self::get_base_country(), self::get_us_territories() ) ) {
1057
- // ...and destination is US territory, then it is "domestic"
1058
- if ( in_array( $country_receiver, self::get_us_territories() ) ) {
1059
- return true;
1060
- } else {
1061
- return false;
1062
- }
1063
- } elseif ( $country_receiver == self::get_base_country() ) {
1064
- return true;
1065
- } else {
1066
- return false;
1067
  }
 
 
1068
  }
1069
 
1070
  /**
1071
  * Check if it is an EU shipment
1072
  */
1073
- public static function is_eu_shipment( $country_receiver ) {
1074
- if ( self::is_shipping_domestic( $country_receiver ) ) {
1075
- return false;
1076
- }
1077
-
1078
- if ( in_array( $country_receiver, self::get_eu_countries() ) ) {
1079
- return true;
1080
- } else {
1081
- return false;
1082
- }
1083
  }
1084
 
1085
  protected static function get_eu_countries() {
@@ -1095,21 +1059,16 @@ class Package {
1095
  /**
1096
  * Function return whether the sender and receiver country is "crossborder" i.e. needs CUSTOMS declarations (outside EU)
1097
  */
1098
- public static function is_crossborder_shipment( $country_receiver ) {
1099
- if ( self::is_shipping_domestic( $country_receiver ) ) {
1100
- return false;
1101
- }
1102
 
1103
- // Is sender country in EU...
1104
- if ( in_array( self::get_base_country(), self::get_eu_countries() ) ) {
1105
- // ... and receiver country is in EU means NOT crossborder!
1106
- if ( in_array( $country_receiver, self::get_eu_countries() ) ) {
1107
- return false;
1108
- } else {
1109
- return true;
1110
- }
1111
- } else {
1112
- return true;
1113
  }
 
 
1114
  }
1115
  }
12
  use Vendidero\Germanized\DHL\Api\Internetmarke;
13
  use Vendidero\Germanized\Shipments\Interfaces\ShippingProvider;
14
  use Vendidero\Germanized\Shipments\ShipmentItem;
15
+ use Vendidero\Germanized\Shipments\ShippingProvider\Helper;
16
 
17
  defined( 'ABSPATH' ) || exit;
18
 
26
  *
27
  * @var string
28
  */
29
+ const VERSION = '1.5.9';
30
 
31
  public static $upload_dir_suffix = '';
32
 
45
  * Init the package - load the REST API Server class.
46
  */
47
  public static function init() {
48
+
49
+ if ( self::has_dependencies() ) {
50
+ // Add shipping provider
51
+ add_filter( 'woocommerce_gzd_shipping_provider_class_names', array( __CLASS__, 'add_shipping_provider_class_name' ), 10, 1 );
52
+ }
53
+
54
  /**
55
  * Make sure provider is loaded after main shipments module.
56
  */
67
  return;
68
  }
69
 
 
 
 
70
  // Legacy data store
71
  add_filter( 'woocommerce_data_stores', array( __CLASS__, 'register_data_stores' ), 10, 1 );
72
 
216
  }
217
 
218
  public static function is_dhl_enabled() {
219
+ return Helper::instance()->is_shipping_provider_activated( 'dhl' );
 
 
 
 
 
 
220
  }
221
 
222
  public static function get_country_iso_alpha3( $country_code ) {
250
  * Additional services are only available for DHL products
251
  */
252
  if ( self::is_dhl_enabled() && ParcelServices::is_enabled() ) {
253
+ ParcelServices::init();
254
  }
255
 
256
  Ajax::init();
263
 
264
  // Register additional label types
265
  add_filter( 'woocommerce_gzd_shipment_label_types', array( __CLASS__, 'register_label_types' ), 10 );
 
 
 
266
  }
267
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
268
  public static function register_label_types( $types ) {
269
  $types[] = 'inlay_return';
270
 
479
  }
480
 
481
  public static function is_deutsche_post_enabled() {
482
+ return Helper::instance()->is_shipping_provider_activated( 'deutsche_post' );
 
 
 
 
 
 
483
  }
484
 
485
  public static function get_internetmarke_username() {
1026
  /**
1027
  * Function return whether the sender and receiver country is the same territory
1028
  */
1029
+ public static function is_shipping_domestic( $country_receiver, $postcode = '' ) {
1030
+ $is_domestic = \Vendidero\Germanized\Shipments\Package::is_shipping_domestic( $country_receiver, $postcode );
1031
+
1032
+ /**
1033
+ * Shipments from DE to Helgoland are not treated as crossborder
1034
+ */
1035
+ if ( ! $is_domestic && 'DE' === $country_receiver && \Vendidero\Germanized\Shipments\Package::base_country_belongs_to_eu_customs_area() ) {
1036
+ $is_domestic = true;
 
 
 
 
 
1037
  }
1038
+
1039
+ return $is_domestic;
1040
  }
1041
 
1042
  /**
1043
  * Check if it is an EU shipment
1044
  */
1045
+ public static function is_eu_shipment( $country_receiver, $postcode = '' ) {
1046
+ return \Vendidero\Germanized\Shipments\Package::is_shipping_inner_eu_country( $country_receiver, $postcode );
 
 
 
 
 
 
 
 
1047
  }
1048
 
1049
  protected static function get_eu_countries() {
1059
  /**
1060
  * Function return whether the sender and receiver country is "crossborder" i.e. needs CUSTOMS declarations (outside EU)
1061
  */
1062
+ public static function is_crossborder_shipment( $country_receiver, $postcode = '' ) {
1063
+ $is_crossborder = \Vendidero\Germanized\Shipments\Package::is_shipping_international( $country_receiver, $postcode );
 
 
1064
 
1065
+ /**
1066
+ * Shipments from DE to Helgoland are not treated as crossborder
1067
+ */
1068
+ if ( $is_crossborder && 'DE' === $country_receiver && \Vendidero\Germanized\Shipments\Package::base_country_belongs_to_eu_customs_area() ) {
1069
+ $is_crossborder = false;
 
 
 
 
 
1070
  }
1071
+
1072
+ return $is_crossborder;
1073
  }
1074
  }
packages/woocommerce-germanized-dhl/src/Product.php CHANGED
@@ -1,100 +1,7 @@
1
  <?php
2
 
3
  namespace Vendidero\Germanized\DHL;
4
- use WC_Product;
5
 
6
  defined( 'ABSPATH' ) || exit;
7
 
8
- /**
9
- * Product
10
- *
11
- * @class Product
12
- * @version 1.0.0
13
- * @author Vendidero
14
- */
15
- class Product {
16
-
17
- /**
18
- * The actual product object
19
- *
20
- * @var WC_Product
21
- */
22
- protected $product;
23
-
24
- /**
25
- * @param WC_Product $product
26
- */
27
- public function __construct( $product ) {
28
- $this->product = $product;
29
- }
30
-
31
-
1
  <?php
2
 
3
  namespace Vendidero\Germanized\DHL;
 
4
 
5
  defined( 'ABSPATH' ) || exit;
6