WooCommerce Germanized - Version 1.9.6

Version Description

  • Feature: Role Based Prices unit price recalculation support
  • Improvement: Option to explicitly set revocation admin email address
  • Fix: Direct Debit Gateway Export
  • Fix: Email default header and subjects (Woo 3.X)
  • Fix: Unit price recalculation division by zero
  • Fix: add_to_cart shortcode price suffixes
  • Fix: Removed subcription support for direct debit (still beta and testing)
Download this release

Release Info

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

Code changes from version 1.9.5 to 1.9.6

assets/js/checkout-dhl-parcel-shops.js CHANGED
@@ -127,8 +127,25 @@ jQuery( function( $ ) {
127
 
128
  },
129
 
 
 
 
 
 
 
 
 
 
130
  saveParcelFinder: function(e) {
131
 
 
 
 
 
 
 
 
 
132
  var c = JSON.parse( e.originalEvent.data );
133
 
134
  if ( typeof c !== 'object' )
127
 
128
  },
129
 
130
+ isValidJSON: function(str) {
131
+ try {
132
+ JSON.parse(str);
133
+ } catch (e) {
134
+ return false;
135
+ }
136
+ return true;
137
+ },
138
+
139
  saveParcelFinder: function(e) {
140
 
141
+ if ( e.originalEvent.data === "undefined" ) {
142
+ return;
143
+ }
144
+
145
+ if ( ! wc_gzd_dhl_parcel_shops.isValidJSON( e.originalEvent.data ) ) {
146
+ return;
147
+ }
148
+
149
  var c = JSON.parse( e.originalEvent.data );
150
 
151
  if ( typeof c !== 'object' )
assets/js/checkout-dhl-parcel-shops.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(function(a){var b={$parcelFinderButtonWrapper:a(wc_gzd_dhl_parcel_shops_params.button_wrapper),$parcelFinderWrapper:a(wc_gzd_dhl_parcel_shops_params.iframe_wrapper),$parcelCheckboxField:a("#shipping_parcelshop_field"),params:wc_gzd_dhl_parcel_shops_params,defaultAddressFieldLabel:"",defaultAddressFieldPlaceholder:"",supportedCountries:[],init:function(){b.params.enable_finder&&this.initParcelFinder(),this.initDefaultData(),this.$parcelCheckboxField.on("change","#shipping_parcelshop",this.parcelCheckboxChanged),a(document).on("change","#shipping_country",this.shippingCountryChanged),this.parcelCheckboxChanged(!0)},initDefaultData:function(){this.supportedCountries=this.params.supported_countries,this.defaultAddressFieldLabel=a("#shipping_address_1_field").find("label").contents().filter(function(){return 3==this.nodeType}).text(),this.defaultAddressFieldPlaceholder=a("#shipping_address_1").attr("placeholder")},shippingCountryChanged:function(){var c=a("#shipping_country").val();-1!==a.inArray(c,b.params.supported_countries)?b.$parcelCheckboxField.show():(a("#shipping_parcelshop").prop("checked",!1),b.$parcelCheckboxField.hide()),b.parcelCheckboxChanged(!1)},parcelCheckboxChanged:function(c){("undefined"==typeof c||"boolean"!==a.type(c))&&(c=!1);var d=a("#shipping_address_1_field").find("label");a("#shipping_parcelshop").is(":checked")?(b.showFinderButton(),!c&&b.$parcelCheckboxField.hasClass("first-check")?(a("#shipping_address_1").val(""),b.$parcelCheckboxField.removeClass("first-check")):c&&b.$parcelCheckboxField.removeClass("first-check"),a("#shipping_parcelshop_post_number_field").show(),d.contents().filter(function(){return 3==this.nodeType}).first().replaceWith(b.params.address_field_title+" "),a("#shipping_address_1").attr("placeholder",b.params.address_field_placeholder),"DE"===a("#shipping_country").val()?(a("#shipping_address_2").val(""),a("#shipping_address_2").addClass("gzd-hidden").hide()):a("#shipping_address_2").show()):(b.hideFinderButton(),d.contents().filter(function(){return 3==this.nodeType}).first().replaceWith(b.defaultAddressFieldLabel),a("#shipping_address_2").hasClass("gzd-hidden")&&(a("#shipping_address_2").show(),a("#shipping_address_2").removeClass("gzd-hidden")),a("#shipping_address_1").attr("placeholder",b.defaultAddressFieldPlaceholder),a("#shipping_parcelshop_post_number_field").hide())},initParcelFinder:function(){this.$parcelFinderButtonWrapper.hide(),this.$parcelFinderWrapper.find("#wc-gzd-parcel-finder-background-overlay").hide(),this.$parcelFinderWrapper.on("click","#wc-gzd-parcel-finder-background-overlay",this.closeParcelFinder),this.$parcelFinderWrapper.on("click","#wc-gzd-parcel-finder-close-btn",this.closeParcelFinder),this.$parcelFinderButtonWrapper.on("click",".wc-gzd-parcel-finder-open-button",this.openParcelFinder),a(window).on("message",this.saveParcelFinder)},showFinderButton:function(){b.params.enable_finder&&b.$parcelFinderButtonWrapper.show()},hideFinderButton:function(){b.params.enable_finder&&b.$parcelFinderButtonWrapper.hide()},saveParcelFinder:function(c){var d=JSON.parse(c.originalEvent.data);if("object"==typeof d&&d.countryCode){var e=d.countryCode.toUpperCase();a(".wc-gzd-parcel-finder-shipping-country-error").remove(),-1!==a.inArray(e,b.supportedCountries)?(a("#shipping_country").val(d.countryCode.toUpperCase()).trigger("change"),a("#shipping_address_1").val(d.keyWord+" "+d.primaryKeyZipRegion),a("#shipping_address_2").val(d.street+" "+d.houseNo),a("#shipping_city").val(d.city),a("#shipping_postcode").val(d.zipCode)):(a(".woocommerce-error").length>0?a(".woocommerce-error").append('<li class="wc-gzd-parcel-finder-shipping-country-error">'+b.params.shipping_country_error+"</li>"):a("form.woocommerce-checkout").prepend('<ul class="woocommerce-error wc-gzd-parcel-finder-shipping-country-error"><li>'+b.params.shipping_country_error+"</li></ul>"),a("html, body").animate({scrollTop:a("form.checkout").offset().top-100},1e3)),"de"===d.countryCode&&a("#shipping_address_2").val(""),b.closeParcelFinder()}},openParcelFinder:function(){return b.$parcelFinderWrapper.find("iframe").attr("src",b.params.iframe_src),b.$parcelFinderWrapper.find("#wc-gzd-parcel-finder-background-overlay").show(),!1},closeParcelFinder:function(){b.$parcelFinderWrapper.find("#wc-gzd-parcel-finder-background-overlay").hide()}};b.init()});
1
+ jQuery(function(a){var b={$parcelFinderButtonWrapper:a(wc_gzd_dhl_parcel_shops_params.button_wrapper),$parcelFinderWrapper:a(wc_gzd_dhl_parcel_shops_params.iframe_wrapper),$parcelCheckboxField:a("#shipping_parcelshop_field"),params:wc_gzd_dhl_parcel_shops_params,defaultAddressFieldLabel:"",defaultAddressFieldPlaceholder:"",supportedCountries:[],init:function(){b.params.enable_finder&&this.initParcelFinder(),this.initDefaultData(),this.$parcelCheckboxField.on("change","#shipping_parcelshop",this.parcelCheckboxChanged),a(document).on("change","#shipping_country",this.shippingCountryChanged),this.parcelCheckboxChanged(!0)},initDefaultData:function(){this.supportedCountries=this.params.supported_countries,this.defaultAddressFieldLabel=a("#shipping_address_1_field").find("label").contents().filter(function(){return 3==this.nodeType}).text(),this.defaultAddressFieldPlaceholder=a("#shipping_address_1").attr("placeholder")},shippingCountryChanged:function(){var c=a("#shipping_country").val();-1!==a.inArray(c,b.params.supported_countries)?b.$parcelCheckboxField.show():(a("#shipping_parcelshop").prop("checked",!1),b.$parcelCheckboxField.hide()),b.parcelCheckboxChanged(!1)},parcelCheckboxChanged:function(c){("undefined"==typeof c||"boolean"!==a.type(c))&&(c=!1);var d=a("#shipping_address_1_field").find("label");a("#shipping_parcelshop").is(":checked")?(b.showFinderButton(),!c&&b.$parcelCheckboxField.hasClass("first-check")?(a("#shipping_address_1").val(""),b.$parcelCheckboxField.removeClass("first-check")):c&&b.$parcelCheckboxField.removeClass("first-check"),a("#shipping_parcelshop_post_number_field").show(),d.contents().filter(function(){return 3==this.nodeType}).first().replaceWith(b.params.address_field_title+" "),a("#shipping_address_1").attr("placeholder",b.params.address_field_placeholder),"DE"===a("#shipping_country").val()?(a("#shipping_address_2").val(""),a("#shipping_address_2").addClass("gzd-hidden").hide()):a("#shipping_address_2").show()):(b.hideFinderButton(),d.contents().filter(function(){return 3==this.nodeType}).first().replaceWith(b.defaultAddressFieldLabel),a("#shipping_address_2").hasClass("gzd-hidden")&&(a("#shipping_address_2").show(),a("#shipping_address_2").removeClass("gzd-hidden")),a("#shipping_address_1").attr("placeholder",b.defaultAddressFieldPlaceholder),a("#shipping_parcelshop_post_number_field").hide())},initParcelFinder:function(){this.$parcelFinderButtonWrapper.hide(),this.$parcelFinderWrapper.find("#wc-gzd-parcel-finder-background-overlay").hide(),this.$parcelFinderWrapper.on("click","#wc-gzd-parcel-finder-background-overlay",this.closeParcelFinder),this.$parcelFinderWrapper.on("click","#wc-gzd-parcel-finder-close-btn",this.closeParcelFinder),this.$parcelFinderButtonWrapper.on("click",".wc-gzd-parcel-finder-open-button",this.openParcelFinder),a(window).on("message",this.saveParcelFinder)},showFinderButton:function(){b.params.enable_finder&&b.$parcelFinderButtonWrapper.show()},hideFinderButton:function(){b.params.enable_finder&&b.$parcelFinderButtonWrapper.hide()},isValidJSON:function(a){try{JSON.parse(a)}catch(b){return!1}return!0},saveParcelFinder:function(c){if("undefined"!==c.originalEvent.data&&b.isValidJSON(c.originalEvent.data)){var d=JSON.parse(c.originalEvent.data);if("object"==typeof d&&d.countryCode){var e=d.countryCode.toUpperCase();a(".wc-gzd-parcel-finder-shipping-country-error").remove(),-1!==a.inArray(e,b.supportedCountries)?(a("#shipping_country").val(d.countryCode.toUpperCase()).trigger("change"),a("#shipping_address_1").val(d.keyWord+" "+d.primaryKeyZipRegion),a("#shipping_address_2").val(d.street+" "+d.houseNo),a("#shipping_city").val(d.city),a("#shipping_postcode").val(d.zipCode)):(a(".woocommerce-error").length>0?a(".woocommerce-error").append('<li class="wc-gzd-parcel-finder-shipping-country-error">'+b.params.shipping_country_error+"</li>"):a("form.woocommerce-checkout").prepend('<ul class="woocommerce-error wc-gzd-parcel-finder-shipping-country-error"><li>'+b.params.shipping_country_error+"</li></ul>"),a("html, body").animate({scrollTop:a("form.checkout").offset().top-100},1e3)),"de"===d.countryCode&&a("#shipping_address_2").val(""),b.closeParcelFinder()}}},openParcelFinder:function(){return b.$parcelFinderWrapper.find("iframe").attr("src",b.params.iframe_src),b.$parcelFinderWrapper.find("#wc-gzd-parcel-finder-background-overlay").show(),!1},closeParcelFinder:function(){b.$parcelFinderWrapper.find("#wc-gzd-parcel-finder-background-overlay").hide()}};b.init()});
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 v1.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-10-06 13:24+0200\n"
6
- "PO-Revision-Date: 2017-10-06 13:24+0200\n"
7
  "Last-Translator: holzhannes <holzhannes@posteo.de>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE\n"
@@ -92,29 +92,29 @@ msgid "l"
92
  msgstr "l"
93
 
94
  # @ woocommerce-germanized
95
- #: includes/abstracts/abstract-wc-gzd-product.php:260
96
- #: includes/abstracts/abstract-wc-gzd-product.php:269
97
  #: includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php:169
98
  #: includes/wc-gzd-core-functions.php:129
99
- #: includes/wc-gzd-template-functions.php:608 woocommerce-germanized.php:823
100
  msgid "incl. VAT"
101
  msgstr "inkl. MwSt."
102
 
103
  # @ woocommerce-germanized
104
- #: includes/abstracts/abstract-wc-gzd-product.php:260
105
  msgid "excl. VAT"
106
  msgstr "exkl. MwSt."
107
 
108
  # @ woocommerce-germanized
109
- #: includes/abstracts/abstract-wc-gzd-product.php:262
110
  #: includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php:169
111
- #: includes/wc-gzd-core-functions.php:129 woocommerce-germanized.php:823
112
  #, php-format
113
  msgid "incl. %s%% VAT"
114
  msgstr "inkl. %s%% MwSt."
115
 
116
  # @ woocommerce-germanized
117
- #: includes/abstracts/abstract-wc-gzd-product.php:262
118
  #, php-format
119
  msgid "excl. %s%% VAT"
120
  msgstr "exkl. %s%% MwSt."
@@ -1111,7 +1111,7 @@ msgstr "Kunden"
1111
 
1112
  # @ woocommerce-germanized
1113
  #: includes/admin/settings/class-wc-gzd-settings-germanized.php:514
1114
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:697
1115
  msgid "Checkbox"
1116
  msgstr "Checkbox"
1117
 
@@ -2901,7 +2901,7 @@ msgstr ""
2901
 
2902
  # @ woocommerce-germanized
2903
  #: includes/admin/views/html-settings-pro.php:25
2904
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:74
2905
  msgid "Upgrade now"
2906
  msgstr "jetzt upgraden"
2907
 
@@ -2911,8 +2911,8 @@ msgstr "jetzt upgraden"
2911
  #: includes/api/class-wc-gzd-rest-customers-controller.php:144
2912
  #: includes/api/class-wc-gzd-rest-orders-controller.php:161
2913
  #: includes/api/class-wc-gzd-rest-orders-controller.php:168
2914
- #: includes/class-wc-gzd-checkout.php:288
2915
- #: includes/class-wc-gzd-checkout.php:298
2916
  #: includes/class-wc-gzd-customer-helper.php:112
2917
  #: includes/class-wc-gzd-customer-helper.php:120
2918
  msgid "Title"
@@ -2934,8 +2934,8 @@ msgstr "PostNummer"
2934
  # @ woocommerce-germanized
2935
  #: includes/api/class-wc-gzd-rest-customers-controller.php:163
2936
  #: includes/api/class-wc-gzd-rest-orders-controller.php:194
2937
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:28
2938
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:616
2939
  #: includes/gateways/direct-debit/views/html-export.php:27
2940
  msgid "Direct Debit"
2941
  msgstr "Lastschrift"
@@ -2943,31 +2943,31 @@ msgstr "Lastschrift"
2943
  # @ woocommerce-germanized
2944
  #: includes/api/class-wc-gzd-rest-customers-controller.php:168
2945
  #: includes/api/class-wc-gzd-rest-orders-controller.php:199
2946
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:154
2947
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:419
2948
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:642
2949
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:783
2950
  msgid "Account Holder"
2951
  msgstr "Kontoinhaber"
2952
 
2953
  # @ woocommerce-germanized
2954
  #: includes/api/class-wc-gzd-rest-customers-controller.php:173
2955
  #: includes/api/class-wc-gzd-rest-orders-controller.php:204
2956
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:161
2957
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:420
2958
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:650
2959
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:787
2960
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:879
2961
  msgid "IBAN"
2962
  msgstr "IBAN"
2963
 
2964
  # @ woocommerce-germanized
2965
  #: includes/api/class-wc-gzd-rest-customers-controller.php:178
2966
  #: includes/api/class-wc-gzd-rest-orders-controller.php:209
2967
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:167
2968
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:421
2969
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:791
2970
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:880
2971
  msgid "BIC/SWIFT"
2972
  msgstr "BIC/SWIFT"
2973
 
@@ -2985,8 +2985,8 @@ msgstr "Paketdienstleister Datenweitergabe"
2985
 
2986
  # @ woocommerce-germanized
2987
  #: includes/api/class-wc-gzd-rest-orders-controller.php:214
2988
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:173
2989
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:425
2990
  msgid "Mandate Reference ID"
2991
  msgstr "Mandat-Referenznummer"
2992
 
@@ -3191,10 +3191,10 @@ msgstr ""
3191
  "Mail mit deinen Daten als Bestätigung."
3192
 
3193
  # @ woocommerce-germanized
3194
- #: includes/class-wc-gzd-checkout.php:289
3195
- #: includes/class-wc-gzd-checkout.php:297
3196
- #: includes/class-wc-gzd-checkout.php:322
3197
- #: includes/class-wc-gzd-checkout.php:468
3198
  #: includes/class-wc-gzd-customer-helper.php:114
3199
  #: includes/class-wc-gzd-customer-helper.php:122
3200
  #: includes/class-wc-gzd-revocation.php:41
@@ -3202,11 +3202,11 @@ msgid "Mr."
3202
  msgstr "Herr"
3203
 
3204
  # @ woocommerce-germanized
3205
- #: includes/class-wc-gzd-checkout.php:289
3206
- #: includes/class-wc-gzd-checkout.php:297
3207
- #: includes/class-wc-gzd-checkout.php:323
3208
- #: includes/class-wc-gzd-checkout.php:468
3209
- #: includes/class-wc-gzd-checkout.php:473
3210
  #: includes/class-wc-gzd-customer-helper.php:114
3211
  #: includes/class-wc-gzd-customer-helper.php:122
3212
  #: includes/class-wc-gzd-revocation.php:42
@@ -3414,7 +3414,7 @@ msgid "Forward your Revocation online"
3414
  msgstr "Deinen Widerruf online erklären"
3415
 
3416
  # @ woocommerce-germanized
3417
- #: includes/class-wc-gzd-install.php:127
3418
  #, php-format
3419
  msgid ""
3420
  "Please install <a href=\"%s\" target=\"_blank\">WooCommerce</a> before "
@@ -3424,86 +3424,86 @@ msgstr ""
3424
  "WooCommerce Germanized installierst. Vielen Dank!"
3425
 
3426
  # @ woocommerce-germanized
3427
- #: includes/class-wc-gzd-install.php:475
3428
  msgctxt "Page slug"
3429
  msgid "data-security"
3430
  msgstr "datenschutzbelehrung"
3431
 
3432
  # @ woocommerce-germanized
3433
- #: includes/class-wc-gzd-install.php:476
3434
  msgctxt "Page title"
3435
  msgid "Data Security Statement"
3436
  msgstr "Datenschutzbelehrung"
3437
 
3438
  # @ woocommerce-germanized
3439
- #: includes/class-wc-gzd-install.php:480
3440
  msgctxt "Page slug"
3441
  msgid "imprint"
3442
  msgstr "impressum"
3443
 
3444
  # @ woocommerce-germanized
3445
- #: includes/class-wc-gzd-install.php:481
3446
  msgctxt "Page title"
3447
  msgid "Imprint"
3448
  msgstr "Impressum"
3449
 
3450
  # @ woocommerce-germanized
3451
- #: includes/class-wc-gzd-install.php:485
3452
  msgctxt "Page slug"
3453
  msgid "terms"
3454
  msgstr "agb"
3455
 
3456
  # @ woocommerce-germanized
3457
- #: includes/class-wc-gzd-install.php:486
3458
  msgctxt "Page title"
3459
  msgid "Terms & Conditions"
3460
  msgstr "AGB"
3461
 
3462
  # @ woocommerce-germanized
3463
- #: includes/class-wc-gzd-install.php:490
3464
  msgctxt "Page slug"
3465
  msgid "revocation"
3466
  msgstr "widerrufsbelehrung"
3467
 
3468
  # @ woocommerce-germanized
3469
- #: includes/class-wc-gzd-install.php:491
3470
  msgctxt "Page title"
3471
  msgid "Power of Revocation"
3472
  msgstr "Widerrufsbelehrung"
3473
 
3474
  # @ woocommerce-germanized
3475
- #: includes/class-wc-gzd-install.php:495
3476
  msgctxt "Page slug"
3477
  msgid "shipping-methods"
3478
  msgstr "versandarten"
3479
 
3480
  # @ woocommerce-germanized
3481
- #: includes/class-wc-gzd-install.php:496
3482
  msgctxt "Page title"
3483
  msgid "Shipping Methods"
3484
  msgstr "Versandarten"
3485
 
3486
  # @ woocommerce-germanized
3487
- #: includes/class-wc-gzd-install.php:500
3488
  msgctxt "Page slug"
3489
  msgid "payment-methods"
3490
  msgstr "bezahlmoeglichkeiten"
3491
 
3492
  # @ woocommerce-germanized
3493
- #: includes/class-wc-gzd-install.php:501
3494
  msgctxt "Page title"
3495
  msgid "Payment Methods"
3496
  msgstr "Zahlungsarten"
3497
 
3498
  # @ woocommerce-germanized
3499
- #: includes/class-wc-gzd-payment-gateways.php:57
3500
- #: includes/class-wc-gzd-payment-gateways.php:96
3501
  #, php-format
3502
  msgid "%s payment charge"
3503
  msgstr "%s Zahlungsgebühr"
3504
 
3505
  # @ woocommerce-germanized
3506
- #: includes/class-wc-gzd-payment-gateways.php:60
3507
  #: includes/wc-gzd-order-functions.php:20
3508
  #: includes/wc-gzd-template-functions.php:538
3509
  #, php-format
@@ -3511,12 +3511,12 @@ msgid "Plus %s forwarding fee (charged by the transport agent)"
3511
  msgstr "zzgl. %s Übermittlungsentgelt (direkt an den Zusteller)"
3512
 
3513
  # @ woocommerce-germanized
3514
- #: includes/class-wc-gzd-payment-gateways.php:124
3515
  msgid "Fee"
3516
  msgstr "Zahlungsgebühr"
3517
 
3518
  # @ woocommerce-germanized
3519
- #: includes/class-wc-gzd-payment-gateways.php:126
3520
  msgid ""
3521
  "This fee is being added if customer selects payment method within checkout."
3522
  msgstr ""
@@ -3524,22 +3524,22 @@ msgstr ""
3524
  "Zahlungsart aktiviert."
3525
 
3526
  # @ woocommerce-germanized
3527
- #: includes/class-wc-gzd-payment-gateways.php:131
3528
  msgid "Fee is taxable?"
3529
  msgstr "Mwst. berechnen?"
3530
 
3531
  # @ woocommerce-germanized
3532
- #: includes/class-wc-gzd-payment-gateways.php:133
3533
  msgid "Check if fee is taxable."
3534
  msgstr "MwSt.-Berechnung für Gebühr aktivieren."
3535
 
3536
  # @ woocommerce-germanized
3537
- #: includes/class-wc-gzd-payment-gateways.php:140
3538
  msgid "Forwarding Fee"
3539
  msgstr "Übermittlungsentgelt"
3540
 
3541
  # @ woocommerce-germanized
3542
- #: includes/class-wc-gzd-payment-gateways.php:143
3543
  msgid ""
3544
  "Forwarding fee will be charged by the transport agent in addition to the "
3545
  "cash of delivery fee e.g. DHL - tax free."
@@ -3548,7 +3548,7 @@ msgstr ""
3548
  "kassiert - z.B. DHL (steuerfrei)."
3549
 
3550
  # @ woocommerce-germanized
3551
- #: includes/class-wc-gzd-payment-gateways.php:183
3552
  msgid "Payment charge"
3553
  msgstr "Zahlungsgebühr"
3554
 
@@ -3818,16 +3818,16 @@ msgstr ""
3818
  "zur Abgabe der Bewertung."
3819
 
3820
  # @ woocommerce-germanized
3821
- #: includes/emails/class-wc-gzd-email-customer-ekomi.php:30
3822
  msgctxt "ekomi"
3823
- msgid "Please rate your Order"
3824
- msgstr "Bitte bewerte deinen Einkauf"
3825
 
3826
  # @ woocommerce-germanized
3827
- #: includes/emails/class-wc-gzd-email-customer-ekomi.php:31
3828
  msgctxt "ekomi"
3829
- msgid "Please rate your {site_title} order from {order_date}"
3830
- msgstr "Bitte bewerte deinen Einkauf vom {order_date} bei {site_title}"
3831
 
3832
  # @ woocommerce-germanized
3833
  #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:38
@@ -3846,12 +3846,12 @@ msgstr ""
3846
  "Bestätigungslink generiert."
3847
 
3848
  # @ woocommerce-germanized
3849
- #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:44
3850
  msgid "Activate your account on {site_title}"
3851
  msgstr "Aktiviere dein Benutzerkonto auf {site_title}"
3852
 
3853
  # @ woocommerce-germanized
3854
- #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:45
3855
  msgid "Account activation {site_title}"
3856
  msgstr "Dein Konto bei {site_title}"
3857
 
@@ -3867,37 +3867,49 @@ msgstr ""
3867
  "Diese E-Mail wird an den Kunden gesendet nachdem die Bestellung bezahlt "
3868
  "wurde."
3869
 
 
 
 
 
3870
  # @ woocommerce-germanized
3871
- #: includes/emails/class-wc-gzd-email-customer-paid-for-order.php:31
3872
  msgid "Payment received"
3873
  msgstr "Zahlung erhalten"
3874
 
3875
- #: includes/emails/class-wc-gzd-email-customer-paid-for-order.php:32
3876
- msgid "Payment received for order {order_number}"
3877
- msgstr "Zahlung erhalten für Bestellung {order_number}"
3878
-
3879
  # @ woocommerce-germanized
3880
- #: includes/emails/class-wc-gzd-email-customer-revocation.php:27
3881
  msgid "Revocation"
3882
  msgstr "Widerruf"
3883
 
3884
  # @ woocommerce-germanized
3885
- #: includes/emails/class-wc-gzd-email-customer-revocation.php:28
3886
  msgid "Email being sent if a customer fills out the revocation form."
3887
  msgstr ""
3888
  "Diese E-Mail wird als Bestätigung an den Kunden weitergeleitet, sobald er "
3889
  "das Widerrufsformular ausgefüllt hat."
3890
 
3891
  # @ woocommerce-germanized
3892
- #: includes/emails/class-wc-gzd-email-customer-revocation.php:33
3893
- #: includes/emails/class-wc-gzd-email-customer-revocation.php:34
3894
- msgid "Your Revocation"
3895
  msgstr "Dein Widerruf"
3896
 
 
 
 
 
 
 
 
 
 
 
 
 
3897
  # @ woocommerce-germanized
3898
  #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:29
3899
- #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:35
3900
- #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:36
3901
  msgid "SEPA Direct Debit Mandate"
3902
  msgstr "SEPA Lastschriftmandat"
3903
 
@@ -3927,16 +3939,16 @@ msgstr ""
3927
  "einer Bewertung bei Trusted Shops zu erinnern."
3928
 
3929
  # @ woocommerce-germanized
3930
- #: includes/emails/class-wc-gzd-email-customer-trusted-shops.php:30
3931
  msgctxt "trusted-shops"
3932
- msgid "Please rate your Order"
3933
- msgstr "Bitte bewerte deine Bestellung"
3934
 
3935
  # @ woocommerce-germanized
3936
- #: includes/emails/class-wc-gzd-email-customer-trusted-shops.php:31
3937
  msgctxt "trusted-shops"
3938
- msgid "Please rate your {site_title} order from {order_date}"
3939
- msgstr "Bitte bewerte deine Bestellung bei {site_title} vom {order_date}"
3940
 
3941
  #: includes/export/class-wc-gzd-product-export.php:42
3942
  msgctxt "exporter"
@@ -4014,7 +4026,7 @@ msgid "Sale price regular label"
4014
  msgstr "Angebotspreis Hinweis"
4015
 
4016
  # @ woocommerce-germanized
4017
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:29
4018
  #, php-format
4019
  msgid ""
4020
  "Allows you to offer direct debit as a payment method to your customers. Adds "
@@ -4022,12 +4034,12 @@ msgid ""
4022
  msgstr ""
4023
  "Fügt das manuelle Lastschriftverfahren (SEPA) als Zahlungsmethode hinzu. %s"
4024
 
4025
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:29
4026
  msgid "SEPA XML Bulk Export"
4027
  msgstr "SEPA XML Export"
4028
 
4029
  # @ woocommerce-germanized
4030
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:54
4031
  msgid ""
4032
  "[company_info]\n"
4033
  "debtee identification number: [company_identification_number]\n"
@@ -4096,29 +4108,29 @@ msgstr ""
4096
  "auf einen Tag verkürzt. "
4097
 
4098
  # @ woocommerce-germanized
4099
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:189
4100
  msgid "SEPA"
4101
  msgstr "SEPA"
4102
 
4103
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:190
4104
  msgid "SEPA XML"
4105
  msgstr "SEPA XML"
4106
 
4107
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:246
4108
  msgid "SEPA XML Export"
4109
  msgstr "SEPA XML Export"
4110
 
4111
  # @ woocommerce-germanized
4112
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:361
4113
  #, php-format
4114
  msgid "Order %s"
4115
  msgstr "Bestellung %s"
4116
 
4117
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:381
4118
  msgid "Will be notified separately"
4119
  msgstr "Wird separat mitgeteilt"
4120
 
4121
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:430
4122
  #, php-format
4123
  msgid ""
4124
  "We will debit %s from your account by direct debit on or shortly after %s."
@@ -4127,111 +4139,111 @@ msgstr ""
4127
  "%s ein."
4128
 
4129
  # @ woocommerce-germanized
4130
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:534
4131
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:557
4132
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:577
4133
  msgid "a single payment"
4134
  msgstr "eine einmalige Zahlung"
4135
 
4136
  # @ woocommerce-germanized
4137
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:607
4138
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:93
4139
  msgid "Enable/Disable"
4140
  msgstr "Aktivieren/Deaktivieren"
4141
 
4142
  # @ woocommerce-germanized
4143
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:609
4144
  msgid "Enable Direct Debit Payment"
4145
  msgstr "Bezahlung per Lastschrift aktivieren"
4146
 
4147
  # @ woocommerce-germanized
4148
  # @ woocommerce
4149
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:613
4150
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:99
4151
  msgctxt "gateway"
4152
  msgid "Title"
4153
  msgstr "Bezeichnung"
4154
 
4155
  # @ woocommerce-germanized
4156
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:615
4157
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:101
4158
  msgid "This controls the title which the user sees during checkout."
4159
  msgstr ""
4160
  "Beschreibungstext, den Benutzer bei der Auswahl dieser Zahlungsart sehen."
4161
 
4162
  # @ woocommerce-germanized
4163
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:620
4164
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:106
4165
  msgid "Description"
4166
  msgstr "Beschreibung"
4167
 
4168
  # @ woocommerce-germanized
4169
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:622
4170
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:108
4171
  msgid "Payment method description that the customer will see on your checkout."
4172
  msgstr "Beschreibung der Zahlungsart, die Kunden auf deiner Website sehen."
4173
 
4174
  # @ woocommerce-germanized
4175
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:623
4176
  msgid "The order amount will be debited directly from your bank account."
4177
  msgstr ""
4178
  "Der Gesamtbestellbetrag wird per SEPA-Lastschrift direkt von deinem Konto "
4179
  "abgebucht."
4180
 
4181
  # @ woocommerce-germanized
4182
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:627
4183
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:113
4184
  msgid "Instructions"
4185
  msgstr "Anweisungen"
4186
 
4187
  # @ woocommerce-germanized
4188
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:629
4189
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:115
4190
  msgid "Instructions that will be added to the thank you page and emails."
4191
  msgstr "Anweisung, die zur „Danke“-Seite und zu E-Mails hinzugefügt werden."
4192
 
4193
  # @ woocommerce-germanized
4194
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:634
4195
  msgid "Debtee"
4196
  msgstr "Gläubiger Informationen"
4197
 
4198
  # @ woocommerce-germanized
4199
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:636
4200
  msgid "Insert your company information."
4201
  msgstr "Füge hier die Informationen zu deinem Unternehmen ein."
4202
 
4203
  # @ woocommerce-germanized
4204
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:638
4205
  msgid "Company Inc, John Doe Street, New York"
4206
  msgstr "Musterfirma GmbH, Musterstraße 12, 12203 Musterstadt"
4207
 
4208
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:644
4209
  msgid "Insert the bank account holder name."
4210
  msgstr "Füge hier den Namen des Kontoinhabers ein."
4211
 
4212
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:646
4213
  msgid "Company Inc"
4214
  msgstr "Muster GmbH"
4215
 
4216
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:652
4217
  msgid "Insert the bank account IBAN."
4218
  msgstr "Füge hier den IBAN deines Kontos ein."
4219
 
4220
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:657
4221
  msgid "BIC"
4222
  msgstr "BIC"
4223
 
4224
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:659
4225
  msgid "Insert the bank account BIC."
4226
  msgstr "Füge hier den BIC deines Kontos ein."
4227
 
4228
  # @ woocommerce-germanized
4229
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:664
4230
  msgid "Debtee identification number"
4231
  msgstr "Identifikationsnummer"
4232
 
4233
  # @ woocommerce-germanized
4234
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:666
4235
  #, php-format
4236
  msgid ""
4237
  "Insert your debtee indentification number. More information can be found <a "
@@ -4241,16 +4253,16 @@ msgstr ""
4241
  "Weitere Informationen zu dieser Nummer erhältst du <a href=\"%s\">hier</a>."
4242
 
4243
  # @ woocommerce-germanized
4244
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:670
4245
  msgid "Generate Mandate ID"
4246
  msgstr "Mandat-Referenz generieren"
4247
 
4248
  # @ woocommerce-germanized
4249
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:672
4250
  msgid "Automatically generate Mandate ID."
4251
  msgstr "Mandat-Referenznummer automatisch generieren."
4252
 
4253
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:673
4254
  msgid ""
4255
  "Automatically generate Mandate ID after order completion (based on Order ID)."
4256
  msgstr ""
@@ -4258,11 +4270,11 @@ msgstr ""
4258
  "basierend auf der Bestellnummer."
4259
 
4260
  # @ woocommerce-germanized
4261
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:677
4262
  msgid "XML Pain Format"
4263
  msgstr "XML Pain Format"
4264
 
4265
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:679
4266
  msgid ""
4267
  "You may adjust the XML Export Pain Schema to your banks needs. Some banks "
4268
  "may require pain.001.003.03."
@@ -4271,11 +4283,11 @@ msgstr ""
4271
  "Banken benötigen z.B. pain.001.003.03."
4272
 
4273
  # @ woocommerce-germanized
4274
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:683
4275
  msgid "Mandate ID Format"
4276
  msgstr "Mandat-Referenz Format"
4277
 
4278
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:685
4279
  msgid ""
4280
  "You may extend the Mandate ID format by adding a prefix and/or suffix. Use "
4281
  "{id} as placeholder to insert the automatically generated ID."
@@ -4284,12 +4296,12 @@ msgstr ""
4284
  "{id} als Platzhalter um die automatisch generierte Referenznummer einzufügen."
4285
 
4286
  # @ woocommerce-germanized
4287
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:689
4288
  msgid "Mandate Text"
4289
  msgstr "Lastschriftmandat"
4290
 
4291
  # @ woocommerce-germanized
4292
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:691
4293
  msgid ""
4294
  "This text will be populated with live order/checkout data. Will be used as "
4295
  "preview direct debit mandate and as email template text."
@@ -4300,23 +4312,23 @@ msgstr ""
4300
  "Verfügung gestellt."
4301
 
4302
  # @ woocommerce-germanized
4303
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:698
4304
  msgid "Enable \"agree to SEPA mandate\" checkbox"
4305
  msgstr "Aktiviere die Checkbox zur Bestätigung des Lastschriftmandates."
4306
 
4307
  # @ woocommerce-germanized
4308
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:700
4309
  msgid "Enable a checkbox linking to a SEPA direct debit mandate preview."
4310
  msgstr ""
4311
  "Aktiviere eine Checkbox, die zu einer Vorschau des Lastschrift-Mandats führt."
4312
 
4313
  # @ woocommerce-germanized
4314
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:704
4315
  msgid "Checkbox label"
4316
  msgstr "Checkbox Text"
4317
 
4318
  # @ woocommerce-germanized
4319
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:706
4320
  msgid ""
4321
  "Customize the checkbox label. Use {link}link name{/link} to insert the "
4322
  "preview link."
@@ -4325,21 +4337,21 @@ msgstr ""
4325
  "auf die Vorschau zu verlinken."
4326
 
4327
  # @ woocommerce-germanized
4328
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:707
4329
  msgid "I hereby agree to the {link}direct debit mandate{/link}."
4330
  msgstr "Hiermit erteile ich das {link}SEPA Lastschriftmandat{/link}."
4331
 
4332
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:711
4333
  msgid "Enable pre-notification"
4334
  msgstr "Vorankündigung aktivieren"
4335
 
4336
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:712
4337
  msgid "Insert pre-notification text within the order confirmation email."
4338
  msgstr ""
4339
  "Fügt einen Standard-Text zur Vorankündigung des SEPA-Einzugs in die "
4340
  "Bestellbestätigung ein."
4341
 
4342
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:714
4343
  msgid ""
4344
  "This option inserts a standard text containing a pre-notification for the "
4345
  "customer."
@@ -4348,11 +4360,11 @@ msgstr ""
4348
  "die Bestellbestätigung ein. In der Ankündigung wird u.a. ein konkreter "
4349
  "Fälligkeitstermin genannt."
4350
 
4351
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:718
4352
  msgid "Debit days"
4353
  msgstr "Fälligkeitstage"
4354
 
4355
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:720
4356
  msgid ""
4357
  "This option is used to calculate the debit date and is added to the order "
4358
  "date."
@@ -4362,15 +4374,15 @@ msgstr ""
4362
  "hier eingestellten Anzahl Tage."
4363
 
4364
  # @ woocommerce-germanized
4365
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:724
4366
  msgid "Mask IBAN"
4367
  msgstr "IBAN maskieren"
4368
 
4369
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:725
4370
  msgid "Mask the IBAN within emails."
4371
  msgstr "IBAN in E-Mails maskieren."
4372
 
4373
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:727
4374
  msgid ""
4375
  "This will lead to masked IBANs within emails (replaced by *). All but last 4 "
4376
  "digits will be masked."
@@ -4378,15 +4390,15 @@ msgstr ""
4378
  "Der IBAN wird in E-Mails (abgesehen von den letzten 4 Stellen) mit * "
4379
  "maskiert."
4380
 
4381
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:736
4382
  msgid "Remember"
4383
  msgstr "Bankdaten merken\t"
4384
 
4385
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:737
4386
  msgid "Remember account data for returning customers."
4387
  msgstr "Bankverbindung für registrierte Kunden speichern."
4388
 
4389
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:739
4390
  msgid "Save account data as user meta if user has/creates a customer account."
4391
  msgstr ""
4392
  "Speichert die Bankverbindung für registrierte Kunden in der user_meta "
@@ -4394,37 +4406,37 @@ msgstr ""
4394
  "eigenständig aus."
4395
 
4396
  # @ woocommerce-germanized
4397
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:822
4398
  msgid "Please insert your SEPA account data."
4399
  msgstr "Bitte füge deine SEPA Kontoinformationen ein."
4400
 
4401
  # @ woocommerce-germanized
4402
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:832
4403
  msgid "Your IBAN seems to be invalid."
4404
  msgstr "Dein IBAN scheint nicht gültig zu sein."
4405
 
4406
  # @ woocommerce-germanized
4407
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:834
4408
  msgid "Your IBAN's country code doesn’t match with your billing country."
4409
  msgstr "Der Ländercode des IBANs stimmt nicht mit dem Rechnungsland überein."
4410
 
4411
  # @ woocommerce-germanized
4412
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:838
4413
  msgid "Your BIC seems to be invalid."
4414
  msgstr "Dein BIC/SWIFT scheint nicht gültig zu sein."
4415
 
4416
  # @ woocommerce-germanized
4417
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:850
4418
  msgid "Please accept the direct debit mandate."
4419
  msgstr "Bitte erteile das SEPA Lastschriftmandat."
4420
 
4421
  # @ woocommerce-germanized
4422
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:881
4423
  msgid "is invalid"
4424
  msgstr "ist ungültig"
4425
 
4426
  # @ woocommerce-germanized
4427
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:917
4428
  msgid "Awaiting Direct Debit Payment"
4429
  msgstr "Zahlung per Lastschrift ausstehend"
4430
 
@@ -4475,7 +4487,7 @@ msgstr "Nur unbezahlte"
4475
 
4476
  # @ woocommerce-germanized
4477
  #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:26
4478
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:102
4479
  msgid "Pay by Invoice"
4480
  msgstr "Rechnung"
4481
 
@@ -4487,18 +4499,18 @@ msgstr ""
4487
 
4488
  # @ woocommerce-germanized
4489
  # @ woocommerce
4490
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:64
4491
- #: woocommerce-germanized.php:577
4492
  msgid "Settings"
4493
  msgstr "Einstellungen"
4494
 
4495
  # @ woocommerce-germanized
4496
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:71
4497
  msgid "Automatically generate PDF invoices for this gateway?"
4498
  msgstr "PDF Rechnungen für diese Zahlungsart automatisch erstellen?"
4499
 
4500
  # @ woocommerce-germanized
4501
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:72
4502
  msgid ""
4503
  "By upgrading to the professional version you'll be able to automatically "
4504
  "generate PDF invoices to this payment gateway. Furthermore you'll benefit "
@@ -4512,17 +4524,17 @@ msgstr ""
4512
  "Premium-Support via Ticket-System!"
4513
 
4514
  # @ woocommerce-germanized
4515
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:75
4516
  msgid "Learn more about PDF invoicing"
4517
  msgstr "Mehr über PDF-Rechnungen erfahren"
4518
 
4519
  # @ woocommerce-germanized
4520
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:95
4521
  msgid "Enable Pay by Invoice"
4522
  msgstr "Bezahlung auf Rechnung aktivieren"
4523
 
4524
  # @ woocommerce-germanized
4525
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:109
4526
  msgid ""
4527
  "You'll receive an invoice after your order. Please transfer the order amount "
4528
  "to our bank account within 14 days."
@@ -4531,12 +4543,12 @@ msgstr ""
4531
  "Gesamtbetrag innerhalb von 14 Tagen auf das dort angegebene Konto."
4532
 
4533
  # @ woocommerce-germanized
4534
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:120
4535
  msgid "Order Status"
4536
  msgstr "Bestellstatus"
4537
 
4538
  # @ woocommerce-germanized
4539
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:122
4540
  msgid ""
4541
  "Choose which order status should be applied after a customer has chosen to "
4542
  "pay by invoice."
@@ -4545,29 +4557,29 @@ msgstr ""
4545
  "angewendet werden soll."
4546
 
4547
  # @ woocommerce-germanized
4548
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:128
4549
  msgid "Registered customers"
4550
  msgstr "Registrierte Kunden"
4551
 
4552
  # @ woocommerce-germanized
4553
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:129
4554
  msgid "Do only offer pay by invoice to registered/logged in customers."
4555
  msgstr "Biete diese Zahlungsart nur registrierten/eingeloggten Kunden an."
4556
 
4557
  # @ woocommerce-germanized
4558
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:131
4559
  msgid "This will enable Pay by Invoice to logged in customers only"
4560
  msgstr ""
4561
  "Diese Option erlaubt es dir, die Zahlungsart lediglich eingeloggten Kunden "
4562
  "zur Verfügung zu stellen"
4563
 
4564
  # @ woocommerce-germanized
4565
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:136
4566
  msgid "Customer limitation"
4567
  msgstr "Kunden Eingrenzung"
4568
 
4569
  # @ woocommerce-germanized
4570
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:137
4571
  msgid ""
4572
  "Do only offer pay by invoice to customers who have at least completed one "
4573
  "order."
@@ -5412,7 +5424,7 @@ msgid "%s custom reviews"
5412
  msgstr "%s Kundenbewertungen"
5413
 
5414
  # @ woocommerce-germanized
5415
- #: woocommerce-germanized.php:732
5416
  msgid "Order Confirmation"
5417
  msgstr "Bestellbestätigung"
5418
 
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce Germanized v1.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-11-09 14:18+0100\n"
6
+ "PO-Revision-Date: 2017-11-09 14:18+0100\n"
7
  "Last-Translator: holzhannes <holzhannes@posteo.de>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE\n"
92
  msgstr "l"
93
 
94
  # @ woocommerce-germanized
95
+ #: includes/abstracts/abstract-wc-gzd-product.php:264
96
+ #: includes/abstracts/abstract-wc-gzd-product.php:273
97
  #: includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php:169
98
  #: includes/wc-gzd-core-functions.php:129
99
+ #: includes/wc-gzd-template-functions.php:608 woocommerce-germanized.php:828
100
  msgid "incl. VAT"
101
  msgstr "inkl. MwSt."
102
 
103
  # @ woocommerce-germanized
104
+ #: includes/abstracts/abstract-wc-gzd-product.php:264
105
  msgid "excl. VAT"
106
  msgstr "exkl. MwSt."
107
 
108
  # @ woocommerce-germanized
109
+ #: includes/abstracts/abstract-wc-gzd-product.php:266
110
  #: includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php:169
111
+ #: includes/wc-gzd-core-functions.php:129 woocommerce-germanized.php:828
112
  #, php-format
113
  msgid "incl. %s%% VAT"
114
  msgstr "inkl. %s%% MwSt."
115
 
116
  # @ woocommerce-germanized
117
+ #: includes/abstracts/abstract-wc-gzd-product.php:266
118
  #, php-format
119
  msgid "excl. %s%% VAT"
120
  msgstr "exkl. %s%% MwSt."
1111
 
1112
  # @ woocommerce-germanized
1113
  #: includes/admin/settings/class-wc-gzd-settings-germanized.php:514
1114
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:714
1115
  msgid "Checkbox"
1116
  msgstr "Checkbox"
1117
 
2901
 
2902
  # @ woocommerce-germanized
2903
  #: includes/admin/views/html-settings-pro.php:25
2904
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:67
2905
  msgid "Upgrade now"
2906
  msgstr "jetzt upgraden"
2907
 
2911
  #: includes/api/class-wc-gzd-rest-customers-controller.php:144
2912
  #: includes/api/class-wc-gzd-rest-orders-controller.php:161
2913
  #: includes/api/class-wc-gzd-rest-orders-controller.php:168
2914
+ #: includes/class-wc-gzd-checkout.php:299
2915
+ #: includes/class-wc-gzd-checkout.php:309
2916
  #: includes/class-wc-gzd-customer-helper.php:112
2917
  #: includes/class-wc-gzd-customer-helper.php:120
2918
  msgid "Title"
2934
  # @ woocommerce-germanized
2935
  #: includes/api/class-wc-gzd-rest-customers-controller.php:163
2936
  #: includes/api/class-wc-gzd-rest-orders-controller.php:194
2937
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:30
2938
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:633
2939
  #: includes/gateways/direct-debit/views/html-export.php:27
2940
  msgid "Direct Debit"
2941
  msgstr "Lastschrift"
2943
  # @ woocommerce-germanized
2944
  #: includes/api/class-wc-gzd-rest-customers-controller.php:168
2945
  #: includes/api/class-wc-gzd-rest-orders-controller.php:199
2946
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:108
2947
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:436
2948
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:659
2949
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:800
2950
  msgid "Account Holder"
2951
  msgstr "Kontoinhaber"
2952
 
2953
  # @ woocommerce-germanized
2954
  #: includes/api/class-wc-gzd-rest-customers-controller.php:173
2955
  #: includes/api/class-wc-gzd-rest-orders-controller.php:204
2956
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:115
2957
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:437
2958
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:667
2959
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:804
2960
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:896
2961
  msgid "IBAN"
2962
  msgstr "IBAN"
2963
 
2964
  # @ woocommerce-germanized
2965
  #: includes/api/class-wc-gzd-rest-customers-controller.php:178
2966
  #: includes/api/class-wc-gzd-rest-orders-controller.php:209
2967
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:121
2968
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:438
2969
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:808
2970
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:897
2971
  msgid "BIC/SWIFT"
2972
  msgstr "BIC/SWIFT"
2973
 
2985
 
2986
  # @ woocommerce-germanized
2987
  #: includes/api/class-wc-gzd-rest-orders-controller.php:214
2988
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:127
2989
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:442
2990
  msgid "Mandate Reference ID"
2991
  msgstr "Mandat-Referenznummer"
2992
 
3191
  "Mail mit deinen Daten als Bestätigung."
3192
 
3193
  # @ woocommerce-germanized
3194
+ #: includes/class-wc-gzd-checkout.php:300
3195
+ #: includes/class-wc-gzd-checkout.php:308
3196
+ #: includes/class-wc-gzd-checkout.php:333
3197
+ #: includes/class-wc-gzd-checkout.php:558
3198
  #: includes/class-wc-gzd-customer-helper.php:114
3199
  #: includes/class-wc-gzd-customer-helper.php:122
3200
  #: includes/class-wc-gzd-revocation.php:41
3202
  msgstr "Herr"
3203
 
3204
  # @ woocommerce-germanized
3205
+ #: includes/class-wc-gzd-checkout.php:300
3206
+ #: includes/class-wc-gzd-checkout.php:308
3207
+ #: includes/class-wc-gzd-checkout.php:334
3208
+ #: includes/class-wc-gzd-checkout.php:558
3209
+ #: includes/class-wc-gzd-checkout.php:563
3210
  #: includes/class-wc-gzd-customer-helper.php:114
3211
  #: includes/class-wc-gzd-customer-helper.php:122
3212
  #: includes/class-wc-gzd-revocation.php:42
3414
  msgstr "Deinen Widerruf online erklären"
3415
 
3416
  # @ woocommerce-germanized
3417
+ #: includes/class-wc-gzd-install.php:128
3418
  #, php-format
3419
  msgid ""
3420
  "Please install <a href=\"%s\" target=\"_blank\">WooCommerce</a> before "
3424
  "WooCommerce Germanized installierst. Vielen Dank!"
3425
 
3426
  # @ woocommerce-germanized
3427
+ #: includes/class-wc-gzd-install.php:476
3428
  msgctxt "Page slug"
3429
  msgid "data-security"
3430
  msgstr "datenschutzbelehrung"
3431
 
3432
  # @ woocommerce-germanized
3433
+ #: includes/class-wc-gzd-install.php:477
3434
  msgctxt "Page title"
3435
  msgid "Data Security Statement"
3436
  msgstr "Datenschutzbelehrung"
3437
 
3438
  # @ woocommerce-germanized
3439
+ #: includes/class-wc-gzd-install.php:481
3440
  msgctxt "Page slug"
3441
  msgid "imprint"
3442
  msgstr "impressum"
3443
 
3444
  # @ woocommerce-germanized
3445
+ #: includes/class-wc-gzd-install.php:482
3446
  msgctxt "Page title"
3447
  msgid "Imprint"
3448
  msgstr "Impressum"
3449
 
3450
  # @ woocommerce-germanized
3451
+ #: includes/class-wc-gzd-install.php:486
3452
  msgctxt "Page slug"
3453
  msgid "terms"
3454
  msgstr "agb"
3455
 
3456
  # @ woocommerce-germanized
3457
+ #: includes/class-wc-gzd-install.php:487
3458
  msgctxt "Page title"
3459
  msgid "Terms & Conditions"
3460
  msgstr "AGB"
3461
 
3462
  # @ woocommerce-germanized
3463
+ #: includes/class-wc-gzd-install.php:491
3464
  msgctxt "Page slug"
3465
  msgid "revocation"
3466
  msgstr "widerrufsbelehrung"
3467
 
3468
  # @ woocommerce-germanized
3469
+ #: includes/class-wc-gzd-install.php:492
3470
  msgctxt "Page title"
3471
  msgid "Power of Revocation"
3472
  msgstr "Widerrufsbelehrung"
3473
 
3474
  # @ woocommerce-germanized
3475
+ #: includes/class-wc-gzd-install.php:496
3476
  msgctxt "Page slug"
3477
  msgid "shipping-methods"
3478
  msgstr "versandarten"
3479
 
3480
  # @ woocommerce-germanized
3481
+ #: includes/class-wc-gzd-install.php:497
3482
  msgctxt "Page title"
3483
  msgid "Shipping Methods"
3484
  msgstr "Versandarten"
3485
 
3486
  # @ woocommerce-germanized
3487
+ #: includes/class-wc-gzd-install.php:501
3488
  msgctxt "Page slug"
3489
  msgid "payment-methods"
3490
  msgstr "bezahlmoeglichkeiten"
3491
 
3492
  # @ woocommerce-germanized
3493
+ #: includes/class-wc-gzd-install.php:502
3494
  msgctxt "Page title"
3495
  msgid "Payment Methods"
3496
  msgstr "Zahlungsarten"
3497
 
3498
  # @ woocommerce-germanized
3499
+ #: includes/class-wc-gzd-payment-gateways.php:86
3500
+ #: includes/class-wc-gzd-payment-gateways.php:125
3501
  #, php-format
3502
  msgid "%s payment charge"
3503
  msgstr "%s Zahlungsgebühr"
3504
 
3505
  # @ woocommerce-germanized
3506
+ #: includes/class-wc-gzd-payment-gateways.php:89
3507
  #: includes/wc-gzd-order-functions.php:20
3508
  #: includes/wc-gzd-template-functions.php:538
3509
  #, php-format
3511
  msgstr "zzgl. %s Übermittlungsentgelt (direkt an den Zusteller)"
3512
 
3513
  # @ woocommerce-germanized
3514
+ #: includes/class-wc-gzd-payment-gateways.php:153
3515
  msgid "Fee"
3516
  msgstr "Zahlungsgebühr"
3517
 
3518
  # @ woocommerce-germanized
3519
+ #: includes/class-wc-gzd-payment-gateways.php:155
3520
  msgid ""
3521
  "This fee is being added if customer selects payment method within checkout."
3522
  msgstr ""
3524
  "Zahlungsart aktiviert."
3525
 
3526
  # @ woocommerce-germanized
3527
+ #: includes/class-wc-gzd-payment-gateways.php:160
3528
  msgid "Fee is taxable?"
3529
  msgstr "Mwst. berechnen?"
3530
 
3531
  # @ woocommerce-germanized
3532
+ #: includes/class-wc-gzd-payment-gateways.php:162
3533
  msgid "Check if fee is taxable."
3534
  msgstr "MwSt.-Berechnung für Gebühr aktivieren."
3535
 
3536
  # @ woocommerce-germanized
3537
+ #: includes/class-wc-gzd-payment-gateways.php:169
3538
  msgid "Forwarding Fee"
3539
  msgstr "Übermittlungsentgelt"
3540
 
3541
  # @ woocommerce-germanized
3542
+ #: includes/class-wc-gzd-payment-gateways.php:172
3543
  msgid ""
3544
  "Forwarding fee will be charged by the transport agent in addition to the "
3545
  "cash of delivery fee e.g. DHL - tax free."
3548
  "kassiert - z.B. DHL (steuerfrei)."
3549
 
3550
  # @ woocommerce-germanized
3551
+ #: includes/class-wc-gzd-payment-gateways.php:212
3552
  msgid "Payment charge"
3553
  msgstr "Zahlungsgebühr"
3554
 
3818
  "zur Abgabe der Bewertung."
3819
 
3820
  # @ woocommerce-germanized
3821
+ #: includes/emails/class-wc-gzd-email-customer-ekomi.php:46
3822
  msgctxt "ekomi"
3823
+ msgid "Please rate your {site_title} order from {order_date}"
3824
+ msgstr "Bitte bewerte deinen Einkauf vom {order_date} bei {site_title}"
3825
 
3826
  # @ woocommerce-germanized
3827
+ #: includes/emails/class-wc-gzd-email-customer-ekomi.php:56
3828
  msgctxt "ekomi"
3829
+ msgid "Please rate your Order"
3830
+ msgstr "Bitte bewerte deinen Einkauf"
3831
 
3832
  # @ woocommerce-germanized
3833
  #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:38
3846
  "Bestätigungslink generiert."
3847
 
3848
  # @ woocommerce-germanized
3849
+ #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:57
3850
  msgid "Activate your account on {site_title}"
3851
  msgstr "Aktiviere dein Benutzerkonto auf {site_title}"
3852
 
3853
  # @ woocommerce-germanized
3854
+ #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:67
3855
  msgid "Account activation {site_title}"
3856
  msgstr "Dein Konto bei {site_title}"
3857
 
3867
  "Diese E-Mail wird an den Kunden gesendet nachdem die Bestellung bezahlt "
3868
  "wurde."
3869
 
3870
+ #: includes/emails/class-wc-gzd-email-customer-paid-for-order.php:45
3871
+ msgid "Payment received for order {order_number}"
3872
+ msgstr "Zahlung erhalten für Bestellung {order_number}"
3873
+
3874
  # @ woocommerce-germanized
3875
+ #: includes/emails/class-wc-gzd-email-customer-paid-for-order.php:55
3876
  msgid "Payment received"
3877
  msgstr "Zahlung erhalten"
3878
 
 
 
 
 
3879
  # @ woocommerce-germanized
3880
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:29
3881
  msgid "Revocation"
3882
  msgstr "Widerruf"
3883
 
3884
  # @ woocommerce-germanized
3885
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:30
3886
  msgid "Email being sent if a customer fills out the revocation form."
3887
  msgstr ""
3888
  "Diese E-Mail wird als Bestätigung an den Kunden weitergeleitet, sobald er "
3889
  "das Widerrufsformular ausgefüllt hat."
3890
 
3891
  # @ woocommerce-germanized
3892
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:48
3893
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:58
3894
+ msgid "Your revocation"
3895
  msgstr "Dein Widerruf"
3896
 
3897
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:142
3898
+ msgid "Admin email"
3899
+ msgstr "Admin E-Mail"
3900
+
3901
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:145
3902
+ msgid ""
3903
+ "Insert the email address of your shop manager here. A copy of the revocation "
3904
+ "email is being sent to this address."
3905
+ msgstr ""
3906
+ "Füge hier die E-Mail Adresse des Shop-Managers ein. Eine Kopie des Widerrufs "
3907
+ "wird an diese E-Mail Adresse versendet."
3908
+
3909
  # @ woocommerce-germanized
3910
  #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:29
3911
+ #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:48
3912
+ #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:58
3913
  msgid "SEPA Direct Debit Mandate"
3914
  msgstr "SEPA Lastschriftmandat"
3915
 
3939
  "einer Bewertung bei Trusted Shops zu erinnern."
3940
 
3941
  # @ woocommerce-germanized
3942
+ #: includes/emails/class-wc-gzd-email-customer-trusted-shops.php:46
3943
  msgctxt "trusted-shops"
3944
+ msgid "Please rate your {site_title} order from {order_date}"
3945
+ msgstr "Bitte bewerte deine Bestellung bei {site_title} vom {order_date}"
3946
 
3947
  # @ woocommerce-germanized
3948
+ #: includes/emails/class-wc-gzd-email-customer-trusted-shops.php:56
3949
  msgctxt "trusted-shops"
3950
+ msgid "Please rate your Order"
3951
+ msgstr "Bitte bewerte deine Bestellung"
3952
 
3953
  #: includes/export/class-wc-gzd-product-export.php:42
3954
  msgctxt "exporter"
4026
  msgstr "Angebotspreis Hinweis"
4027
 
4028
  # @ woocommerce-germanized
4029
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:31
4030
  #, php-format
4031
  msgid ""
4032
  "Allows you to offer direct debit as a payment method to your customers. Adds "
4034
  msgstr ""
4035
  "Fügt das manuelle Lastschriftverfahren (SEPA) als Zahlungsmethode hinzu. %s"
4036
 
4037
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:31
4038
  msgid "SEPA XML Bulk Export"
4039
  msgstr "SEPA XML Export"
4040
 
4041
  # @ woocommerce-germanized
4042
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:56
4043
  msgid ""
4044
  "[company_info]\n"
4045
  "debtee identification number: [company_identification_number]\n"
4108
  "auf einen Tag verkürzt. "
4109
 
4110
  # @ woocommerce-germanized
4111
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:186
4112
  msgid "SEPA"
4113
  msgstr "SEPA"
4114
 
4115
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:187
4116
  msgid "SEPA XML"
4117
  msgstr "SEPA XML"
4118
 
4119
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:243
4120
  msgid "SEPA XML Export"
4121
  msgstr "SEPA XML Export"
4122
 
4123
  # @ woocommerce-germanized
4124
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:377
4125
  #, php-format
4126
  msgid "Order %s"
4127
  msgstr "Bestellung %s"
4128
 
4129
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:398
4130
  msgid "Will be notified separately"
4131
  msgstr "Wird separat mitgeteilt"
4132
 
4133
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:447
4134
  #, php-format
4135
  msgid ""
4136
  "We will debit %s from your account by direct debit on or shortly after %s."
4139
  "%s ein."
4140
 
4141
  # @ woocommerce-germanized
4142
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:551
4143
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:574
4144
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:594
4145
  msgid "a single payment"
4146
  msgstr "eine einmalige Zahlung"
4147
 
4148
  # @ woocommerce-germanized
4149
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:624
4150
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:86
4151
  msgid "Enable/Disable"
4152
  msgstr "Aktivieren/Deaktivieren"
4153
 
4154
  # @ woocommerce-germanized
4155
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:626
4156
  msgid "Enable Direct Debit Payment"
4157
  msgstr "Bezahlung per Lastschrift aktivieren"
4158
 
4159
  # @ woocommerce-germanized
4160
  # @ woocommerce
4161
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:630
4162
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:92
4163
  msgctxt "gateway"
4164
  msgid "Title"
4165
  msgstr "Bezeichnung"
4166
 
4167
  # @ woocommerce-germanized
4168
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:632
4169
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:94
4170
  msgid "This controls the title which the user sees during checkout."
4171
  msgstr ""
4172
  "Beschreibungstext, den Benutzer bei der Auswahl dieser Zahlungsart sehen."
4173
 
4174
  # @ woocommerce-germanized
4175
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:637
4176
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:99
4177
  msgid "Description"
4178
  msgstr "Beschreibung"
4179
 
4180
  # @ woocommerce-germanized
4181
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:639
4182
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:101
4183
  msgid "Payment method description that the customer will see on your checkout."
4184
  msgstr "Beschreibung der Zahlungsart, die Kunden auf deiner Website sehen."
4185
 
4186
  # @ woocommerce-germanized
4187
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:640
4188
  msgid "The order amount will be debited directly from your bank account."
4189
  msgstr ""
4190
  "Der Gesamtbestellbetrag wird per SEPA-Lastschrift direkt von deinem Konto "
4191
  "abgebucht."
4192
 
4193
  # @ woocommerce-germanized
4194
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:644
4195
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:106
4196
  msgid "Instructions"
4197
  msgstr "Anweisungen"
4198
 
4199
  # @ woocommerce-germanized
4200
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:646
4201
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:108
4202
  msgid "Instructions that will be added to the thank you page and emails."
4203
  msgstr "Anweisung, die zur „Danke“-Seite und zu E-Mails hinzugefügt werden."
4204
 
4205
  # @ woocommerce-germanized
4206
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:651
4207
  msgid "Debtee"
4208
  msgstr "Gläubiger Informationen"
4209
 
4210
  # @ woocommerce-germanized
4211
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:653
4212
  msgid "Insert your company information."
4213
  msgstr "Füge hier die Informationen zu deinem Unternehmen ein."
4214
 
4215
  # @ woocommerce-germanized
4216
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:655
4217
  msgid "Company Inc, John Doe Street, New York"
4218
  msgstr "Musterfirma GmbH, Musterstraße 12, 12203 Musterstadt"
4219
 
4220
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:661
4221
  msgid "Insert the bank account holder name."
4222
  msgstr "Füge hier den Namen des Kontoinhabers ein."
4223
 
4224
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:663
4225
  msgid "Company Inc"
4226
  msgstr "Muster GmbH"
4227
 
4228
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:669
4229
  msgid "Insert the bank account IBAN."
4230
  msgstr "Füge hier den IBAN deines Kontos ein."
4231
 
4232
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:674
4233
  msgid "BIC"
4234
  msgstr "BIC"
4235
 
4236
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:676
4237
  msgid "Insert the bank account BIC."
4238
  msgstr "Füge hier den BIC deines Kontos ein."
4239
 
4240
  # @ woocommerce-germanized
4241
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:681
4242
  msgid "Debtee identification number"
4243
  msgstr "Identifikationsnummer"
4244
 
4245
  # @ woocommerce-germanized
4246
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:683
4247
  #, php-format
4248
  msgid ""
4249
  "Insert your debtee indentification number. More information can be found <a "
4253
  "Weitere Informationen zu dieser Nummer erhältst du <a href=\"%s\">hier</a>."
4254
 
4255
  # @ woocommerce-germanized
4256
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:687
4257
  msgid "Generate Mandate ID"
4258
  msgstr "Mandat-Referenz generieren"
4259
 
4260
  # @ woocommerce-germanized
4261
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:689
4262
  msgid "Automatically generate Mandate ID."
4263
  msgstr "Mandat-Referenznummer automatisch generieren."
4264
 
4265
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:690
4266
  msgid ""
4267
  "Automatically generate Mandate ID after order completion (based on Order ID)."
4268
  msgstr ""
4270
  "basierend auf der Bestellnummer."
4271
 
4272
  # @ woocommerce-germanized
4273
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:694
4274
  msgid "XML Pain Format"
4275
  msgstr "XML Pain Format"
4276
 
4277
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:696
4278
  msgid ""
4279
  "You may adjust the XML Export Pain Schema to your banks needs. Some banks "
4280
  "may require pain.001.003.03."
4283
  "Banken benötigen z.B. pain.001.003.03."
4284
 
4285
  # @ woocommerce-germanized
4286
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:700
4287
  msgid "Mandate ID Format"
4288
  msgstr "Mandat-Referenz Format"
4289
 
4290
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:702
4291
  msgid ""
4292
  "You may extend the Mandate ID format by adding a prefix and/or suffix. Use "
4293
  "{id} as placeholder to insert the automatically generated ID."
4296
  "{id} als Platzhalter um die automatisch generierte Referenznummer einzufügen."
4297
 
4298
  # @ woocommerce-germanized
4299
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:706
4300
  msgid "Mandate Text"
4301
  msgstr "Lastschriftmandat"
4302
 
4303
  # @ woocommerce-germanized
4304
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:708
4305
  msgid ""
4306
  "This text will be populated with live order/checkout data. Will be used as "
4307
  "preview direct debit mandate and as email template text."
4312
  "Verfügung gestellt."
4313
 
4314
  # @ woocommerce-germanized
4315
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:715
4316
  msgid "Enable \"agree to SEPA mandate\" checkbox"
4317
  msgstr "Aktiviere die Checkbox zur Bestätigung des Lastschriftmandates."
4318
 
4319
  # @ woocommerce-germanized
4320
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:717
4321
  msgid "Enable a checkbox linking to a SEPA direct debit mandate preview."
4322
  msgstr ""
4323
  "Aktiviere eine Checkbox, die zu einer Vorschau des Lastschrift-Mandats führt."
4324
 
4325
  # @ woocommerce-germanized
4326
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:721
4327
  msgid "Checkbox label"
4328
  msgstr "Checkbox Text"
4329
 
4330
  # @ woocommerce-germanized
4331
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:723
4332
  msgid ""
4333
  "Customize the checkbox label. Use {link}link name{/link} to insert the "
4334
  "preview link."
4337
  "auf die Vorschau zu verlinken."
4338
 
4339
  # @ woocommerce-germanized
4340
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:724
4341
  msgid "I hereby agree to the {link}direct debit mandate{/link}."
4342
  msgstr "Hiermit erteile ich das {link}SEPA Lastschriftmandat{/link}."
4343
 
4344
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:728
4345
  msgid "Enable pre-notification"
4346
  msgstr "Vorankündigung aktivieren"
4347
 
4348
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:729
4349
  msgid "Insert pre-notification text within the order confirmation email."
4350
  msgstr ""
4351
  "Fügt einen Standard-Text zur Vorankündigung des SEPA-Einzugs in die "
4352
  "Bestellbestätigung ein."
4353
 
4354
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:731
4355
  msgid ""
4356
  "This option inserts a standard text containing a pre-notification for the "
4357
  "customer."
4360
  "die Bestellbestätigung ein. In der Ankündigung wird u.a. ein konkreter "
4361
  "Fälligkeitstermin genannt."
4362
 
4363
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:735
4364
  msgid "Debit days"
4365
  msgstr "Fälligkeitstage"
4366
 
4367
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:737
4368
  msgid ""
4369
  "This option is used to calculate the debit date and is added to the order "
4370
  "date."
4374
  "hier eingestellten Anzahl Tage."
4375
 
4376
  # @ woocommerce-germanized
4377
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:741
4378
  msgid "Mask IBAN"
4379
  msgstr "IBAN maskieren"
4380
 
4381
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:742
4382
  msgid "Mask the IBAN within emails."
4383
  msgstr "IBAN in E-Mails maskieren."
4384
 
4385
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:744
4386
  msgid ""
4387
  "This will lead to masked IBANs within emails (replaced by *). All but last 4 "
4388
  "digits will be masked."
4390
  "Der IBAN wird in E-Mails (abgesehen von den letzten 4 Stellen) mit * "
4391
  "maskiert."
4392
 
4393
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:753
4394
  msgid "Remember"
4395
  msgstr "Bankdaten merken\t"
4396
 
4397
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:754
4398
  msgid "Remember account data for returning customers."
4399
  msgstr "Bankverbindung für registrierte Kunden speichern."
4400
 
4401
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:756
4402
  msgid "Save account data as user meta if user has/creates a customer account."
4403
  msgstr ""
4404
  "Speichert die Bankverbindung für registrierte Kunden in der user_meta "
4406
  "eigenständig aus."
4407
 
4408
  # @ woocommerce-germanized
4409
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:839
4410
  msgid "Please insert your SEPA account data."
4411
  msgstr "Bitte füge deine SEPA Kontoinformationen ein."
4412
 
4413
  # @ woocommerce-germanized
4414
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:849
4415
  msgid "Your IBAN seems to be invalid."
4416
  msgstr "Dein IBAN scheint nicht gültig zu sein."
4417
 
4418
  # @ woocommerce-germanized
4419
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:851
4420
  msgid "Your IBAN's country code doesn’t match with your billing country."
4421
  msgstr "Der Ländercode des IBANs stimmt nicht mit dem Rechnungsland überein."
4422
 
4423
  # @ woocommerce-germanized
4424
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:855
4425
  msgid "Your BIC seems to be invalid."
4426
  msgstr "Dein BIC/SWIFT scheint nicht gültig zu sein."
4427
 
4428
  # @ woocommerce-germanized
4429
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:867
4430
  msgid "Please accept the direct debit mandate."
4431
  msgstr "Bitte erteile das SEPA Lastschriftmandat."
4432
 
4433
  # @ woocommerce-germanized
4434
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:898
4435
  msgid "is invalid"
4436
  msgstr "ist ungültig"
4437
 
4438
  # @ woocommerce-germanized
4439
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:934
4440
  msgid "Awaiting Direct Debit Payment"
4441
  msgstr "Zahlung per Lastschrift ausstehend"
4442
 
4487
 
4488
  # @ woocommerce-germanized
4489
  #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:26
4490
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:95
4491
  msgid "Pay by Invoice"
4492
  msgstr "Rechnung"
4493
 
4499
 
4500
  # @ woocommerce-germanized
4501
  # @ woocommerce
4502
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:57
4503
+ #: woocommerce-germanized.php:582
4504
  msgid "Settings"
4505
  msgstr "Einstellungen"
4506
 
4507
  # @ woocommerce-germanized
4508
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:64
4509
  msgid "Automatically generate PDF invoices for this gateway?"
4510
  msgstr "PDF Rechnungen für diese Zahlungsart automatisch erstellen?"
4511
 
4512
  # @ woocommerce-germanized
4513
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:65
4514
  msgid ""
4515
  "By upgrading to the professional version you'll be able to automatically "
4516
  "generate PDF invoices to this payment gateway. Furthermore you'll benefit "
4524
  "Premium-Support via Ticket-System!"
4525
 
4526
  # @ woocommerce-germanized
4527
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:68
4528
  msgid "Learn more about PDF invoicing"
4529
  msgstr "Mehr über PDF-Rechnungen erfahren"
4530
 
4531
  # @ woocommerce-germanized
4532
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:88
4533
  msgid "Enable Pay by Invoice"
4534
  msgstr "Bezahlung auf Rechnung aktivieren"
4535
 
4536
  # @ woocommerce-germanized
4537
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:102
4538
  msgid ""
4539
  "You'll receive an invoice after your order. Please transfer the order amount "
4540
  "to our bank account within 14 days."
4543
  "Gesamtbetrag innerhalb von 14 Tagen auf das dort angegebene Konto."
4544
 
4545
  # @ woocommerce-germanized
4546
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:113
4547
  msgid "Order Status"
4548
  msgstr "Bestellstatus"
4549
 
4550
  # @ woocommerce-germanized
4551
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:115
4552
  msgid ""
4553
  "Choose which order status should be applied after a customer has chosen to "
4554
  "pay by invoice."
4557
  "angewendet werden soll."
4558
 
4559
  # @ woocommerce-germanized
4560
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:121
4561
  msgid "Registered customers"
4562
  msgstr "Registrierte Kunden"
4563
 
4564
  # @ woocommerce-germanized
4565
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:122
4566
  msgid "Do only offer pay by invoice to registered/logged in customers."
4567
  msgstr "Biete diese Zahlungsart nur registrierten/eingeloggten Kunden an."
4568
 
4569
  # @ woocommerce-germanized
4570
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:124
4571
  msgid "This will enable Pay by Invoice to logged in customers only"
4572
  msgstr ""
4573
  "Diese Option erlaubt es dir, die Zahlungsart lediglich eingeloggten Kunden "
4574
  "zur Verfügung zu stellen"
4575
 
4576
  # @ woocommerce-germanized
4577
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:129
4578
  msgid "Customer limitation"
4579
  msgstr "Kunden Eingrenzung"
4580
 
4581
  # @ woocommerce-germanized
4582
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:130
4583
  msgid ""
4584
  "Do only offer pay by invoice to customers who have at least completed one "
4585
  "order."
5424
  msgstr "%s Kundenbewertungen"
5425
 
5426
  # @ woocommerce-germanized
5427
+ #: woocommerce-germanized.php:737
5428
  msgid "Order Confirmation"
5429
  msgstr "Bestellbestätigung"
5430
 
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 v1.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-10-06 13:26+0200\n"
6
- "PO-Revision-Date: 2017-10-06 13:26+0200\n"
7
  "Last-Translator: holzhannes <holzhannes@posteo.de>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE\n"
@@ -92,29 +92,29 @@ msgid "l"
92
  msgstr "l"
93
 
94
  # @ woocommerce-germanized
95
- #: includes/abstracts/abstract-wc-gzd-product.php:260
96
- #: includes/abstracts/abstract-wc-gzd-product.php:269
97
  #: includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php:169
98
  #: includes/wc-gzd-core-functions.php:129
99
- #: includes/wc-gzd-template-functions.php:608 woocommerce-germanized.php:823
100
  msgid "incl. VAT"
101
  msgstr "inkl. MwSt."
102
 
103
  # @ woocommerce-germanized
104
- #: includes/abstracts/abstract-wc-gzd-product.php:260
105
  msgid "excl. VAT"
106
  msgstr "exkl. MwSt."
107
 
108
  # @ woocommerce-germanized
109
- #: includes/abstracts/abstract-wc-gzd-product.php:262
110
  #: includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php:169
111
- #: includes/wc-gzd-core-functions.php:129 woocommerce-germanized.php:823
112
  #, php-format
113
  msgid "incl. %s%% VAT"
114
  msgstr "inkl. %s%% MwSt."
115
 
116
  # @ woocommerce-germanized
117
- #: includes/abstracts/abstract-wc-gzd-product.php:262
118
  #, php-format
119
  msgid "excl. %s%% VAT"
120
  msgstr "exkl. %s%% MwSt."
@@ -1111,7 +1111,7 @@ msgstr "Kunden"
1111
 
1112
  # @ woocommerce-germanized
1113
  #: includes/admin/settings/class-wc-gzd-settings-germanized.php:514
1114
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:697
1115
  msgid "Checkbox"
1116
  msgstr "Checkbox"
1117
 
@@ -2902,7 +2902,7 @@ msgstr ""
2902
 
2903
  # @ woocommerce-germanized
2904
  #: includes/admin/views/html-settings-pro.php:25
2905
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:74
2906
  msgid "Upgrade now"
2907
  msgstr "jetzt upgraden"
2908
 
@@ -2912,8 +2912,8 @@ msgstr "jetzt upgraden"
2912
  #: includes/api/class-wc-gzd-rest-customers-controller.php:144
2913
  #: includes/api/class-wc-gzd-rest-orders-controller.php:161
2914
  #: includes/api/class-wc-gzd-rest-orders-controller.php:168
2915
- #: includes/class-wc-gzd-checkout.php:288
2916
- #: includes/class-wc-gzd-checkout.php:298
2917
  #: includes/class-wc-gzd-customer-helper.php:112
2918
  #: includes/class-wc-gzd-customer-helper.php:120
2919
  msgid "Title"
@@ -2935,8 +2935,8 @@ msgstr "PostNummer"
2935
  # @ woocommerce-germanized
2936
  #: includes/api/class-wc-gzd-rest-customers-controller.php:163
2937
  #: includes/api/class-wc-gzd-rest-orders-controller.php:194
2938
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:28
2939
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:616
2940
  #: includes/gateways/direct-debit/views/html-export.php:27
2941
  msgid "Direct Debit"
2942
  msgstr "Lastschrift"
@@ -2944,31 +2944,31 @@ msgstr "Lastschrift"
2944
  # @ woocommerce-germanized
2945
  #: includes/api/class-wc-gzd-rest-customers-controller.php:168
2946
  #: includes/api/class-wc-gzd-rest-orders-controller.php:199
2947
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:154
2948
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:419
2949
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:642
2950
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:783
2951
  msgid "Account Holder"
2952
  msgstr "Kontoinhaber"
2953
 
2954
  # @ woocommerce-germanized
2955
  #: includes/api/class-wc-gzd-rest-customers-controller.php:173
2956
  #: includes/api/class-wc-gzd-rest-orders-controller.php:204
2957
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:161
2958
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:420
2959
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:650
2960
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:787
2961
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:879
2962
  msgid "IBAN"
2963
  msgstr "IBAN"
2964
 
2965
  # @ woocommerce-germanized
2966
  #: includes/api/class-wc-gzd-rest-customers-controller.php:178
2967
  #: includes/api/class-wc-gzd-rest-orders-controller.php:209
2968
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:167
2969
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:421
2970
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:791
2971
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:880
2972
  msgid "BIC/SWIFT"
2973
  msgstr "BIC/SWIFT"
2974
 
@@ -2986,8 +2986,8 @@ msgstr "Paketdienstleister Datenweitergabe"
2986
 
2987
  # @ woocommerce-germanized
2988
  #: includes/api/class-wc-gzd-rest-orders-controller.php:214
2989
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:173
2990
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:425
2991
  msgid "Mandate Reference ID"
2992
  msgstr "Mandat-Referenznummer"
2993
 
@@ -3192,10 +3192,10 @@ msgstr ""
3192
  "Mail mit Ihren Daten als Bestätigung."
3193
 
3194
  # @ woocommerce-germanized
3195
- #: includes/class-wc-gzd-checkout.php:289
3196
- #: includes/class-wc-gzd-checkout.php:297
3197
- #: includes/class-wc-gzd-checkout.php:322
3198
- #: includes/class-wc-gzd-checkout.php:468
3199
  #: includes/class-wc-gzd-customer-helper.php:114
3200
  #: includes/class-wc-gzd-customer-helper.php:122
3201
  #: includes/class-wc-gzd-revocation.php:41
@@ -3203,11 +3203,11 @@ msgid "Mr."
3203
  msgstr "Herr"
3204
 
3205
  # @ woocommerce-germanized
3206
- #: includes/class-wc-gzd-checkout.php:289
3207
- #: includes/class-wc-gzd-checkout.php:297
3208
- #: includes/class-wc-gzd-checkout.php:323
3209
- #: includes/class-wc-gzd-checkout.php:468
3210
- #: includes/class-wc-gzd-checkout.php:473
3211
  #: includes/class-wc-gzd-customer-helper.php:114
3212
  #: includes/class-wc-gzd-customer-helper.php:122
3213
  #: includes/class-wc-gzd-revocation.php:42
@@ -3416,7 +3416,7 @@ msgid "Forward your Revocation online"
3416
  msgstr "Widerruf online erklären"
3417
 
3418
  # @ woocommerce-germanized
3419
- #: includes/class-wc-gzd-install.php:127
3420
  #, php-format
3421
  msgid ""
3422
  "Please install <a href=\"%s\" target=\"_blank\">WooCommerce</a> before "
@@ -3426,86 +3426,86 @@ msgstr ""
3426
  "WooCommerce Germanized installierst. Vielen Dank!"
3427
 
3428
  # @ woocommerce-germanized
3429
- #: includes/class-wc-gzd-install.php:475
3430
  msgctxt "Page slug"
3431
  msgid "data-security"
3432
  msgstr "datenschutzbelehrung"
3433
 
3434
  # @ woocommerce-germanized
3435
- #: includes/class-wc-gzd-install.php:476
3436
  msgctxt "Page title"
3437
  msgid "Data Security Statement"
3438
  msgstr "Datenschutzbelehrung"
3439
 
3440
  # @ woocommerce-germanized
3441
- #: includes/class-wc-gzd-install.php:480
3442
  msgctxt "Page slug"
3443
  msgid "imprint"
3444
  msgstr "impressum"
3445
 
3446
  # @ woocommerce-germanized
3447
- #: includes/class-wc-gzd-install.php:481
3448
  msgctxt "Page title"
3449
  msgid "Imprint"
3450
  msgstr "Impressum"
3451
 
3452
  # @ woocommerce-germanized
3453
- #: includes/class-wc-gzd-install.php:485
3454
  msgctxt "Page slug"
3455
  msgid "terms"
3456
  msgstr "agb"
3457
 
3458
  # @ woocommerce-germanized
3459
- #: includes/class-wc-gzd-install.php:486
3460
  msgctxt "Page title"
3461
  msgid "Terms & Conditions"
3462
  msgstr "AGB"
3463
 
3464
  # @ woocommerce-germanized
3465
- #: includes/class-wc-gzd-install.php:490
3466
  msgctxt "Page slug"
3467
  msgid "revocation"
3468
  msgstr "widerrufsbelehrung"
3469
 
3470
  # @ woocommerce-germanized
3471
- #: includes/class-wc-gzd-install.php:491
3472
  msgctxt "Page title"
3473
  msgid "Power of Revocation"
3474
  msgstr "Widerrufsbelehrung"
3475
 
3476
  # @ woocommerce-germanized
3477
- #: includes/class-wc-gzd-install.php:495
3478
  msgctxt "Page slug"
3479
  msgid "shipping-methods"
3480
  msgstr "versandarten"
3481
 
3482
  # @ woocommerce-germanized
3483
- #: includes/class-wc-gzd-install.php:496
3484
  msgctxt "Page title"
3485
  msgid "Shipping Methods"
3486
  msgstr "Versandarten"
3487
 
3488
  # @ woocommerce-germanized
3489
- #: includes/class-wc-gzd-install.php:500
3490
  msgctxt "Page slug"
3491
  msgid "payment-methods"
3492
  msgstr "bezahlmoeglichkeiten"
3493
 
3494
  # @ woocommerce-germanized
3495
- #: includes/class-wc-gzd-install.php:501
3496
  msgctxt "Page title"
3497
  msgid "Payment Methods"
3498
  msgstr "Zahlungsarten"
3499
 
3500
  # @ woocommerce-germanized
3501
- #: includes/class-wc-gzd-payment-gateways.php:57
3502
- #: includes/class-wc-gzd-payment-gateways.php:96
3503
  #, php-format
3504
  msgid "%s payment charge"
3505
  msgstr "%s Zahlungsgebühr"
3506
 
3507
  # @ woocommerce-germanized
3508
- #: includes/class-wc-gzd-payment-gateways.php:60
3509
  #: includes/wc-gzd-order-functions.php:20
3510
  #: includes/wc-gzd-template-functions.php:538
3511
  #, php-format
@@ -3513,12 +3513,12 @@ msgid "Plus %s forwarding fee (charged by the transport agent)"
3513
  msgstr "zzgl. %s Übermittlungsentgelt (direkt an den Zusteller)"
3514
 
3515
  # @ woocommerce-germanized
3516
- #: includes/class-wc-gzd-payment-gateways.php:124
3517
  msgid "Fee"
3518
  msgstr "Zahlungsgebühr"
3519
 
3520
  # @ woocommerce-germanized
3521
- #: includes/class-wc-gzd-payment-gateways.php:126
3522
  msgid ""
3523
  "This fee is being added if customer selects payment method within checkout."
3524
  msgstr ""
@@ -3526,22 +3526,22 @@ msgstr ""
3526
  "Zahlungsart aktiviert."
3527
 
3528
  # @ woocommerce-germanized
3529
- #: includes/class-wc-gzd-payment-gateways.php:131
3530
  msgid "Fee is taxable?"
3531
  msgstr "Mwst. berechnen?"
3532
 
3533
  # @ woocommerce-germanized
3534
- #: includes/class-wc-gzd-payment-gateways.php:133
3535
  msgid "Check if fee is taxable."
3536
  msgstr "MwSt.-Berechnung für Gebühr aktivieren."
3537
 
3538
  # @ woocommerce-germanized
3539
- #: includes/class-wc-gzd-payment-gateways.php:140
3540
  msgid "Forwarding Fee"
3541
  msgstr "Übermittlungsentgelt"
3542
 
3543
  # @ woocommerce-germanized
3544
- #: includes/class-wc-gzd-payment-gateways.php:143
3545
  msgid ""
3546
  "Forwarding fee will be charged by the transport agent in addition to the "
3547
  "cash of delivery fee e.g. DHL - tax free."
@@ -3550,7 +3550,7 @@ msgstr ""
3550
  "kassiert - z.B. DHL (steuerfrei)."
3551
 
3552
  # @ woocommerce-germanized
3553
- #: includes/class-wc-gzd-payment-gateways.php:183
3554
  msgid "Payment charge"
3555
  msgstr "Zahlungsgebühr"
3556
 
@@ -3820,16 +3820,16 @@ msgstr ""
3820
  "zur Abgabe der Bewertung."
3821
 
3822
  # @ woocommerce-germanized
3823
- #: includes/emails/class-wc-gzd-email-customer-ekomi.php:30
3824
  msgctxt "ekomi"
3825
- msgid "Please rate your Order"
3826
- msgstr "Bitte bewerten Sie Ihren Einkauf"
3827
 
3828
  # @ woocommerce-germanized
3829
- #: includes/emails/class-wc-gzd-email-customer-ekomi.php:31
3830
  msgctxt "ekomi"
3831
- msgid "Please rate your {site_title} order from {order_date}"
3832
- msgstr "Bitte bewerten Sie Ihren Einkauf vom {order_date} bei {site_title}"
3833
 
3834
  # @ woocommerce-germanized
3835
  #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:38
@@ -3848,12 +3848,12 @@ msgstr ""
3848
  "Bestätigungslink generiert."
3849
 
3850
  # @ woocommerce-germanized
3851
- #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:44
3852
  msgid "Activate your account on {site_title}"
3853
  msgstr "Aktivieren Sie Ihr Benutzerkonto auf {site_title}"
3854
 
3855
  # @ woocommerce-germanized
3856
- #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:45
3857
  msgid "Account activation {site_title}"
3858
  msgstr "Ihr Konto bei {site_title}"
3859
 
@@ -3869,37 +3869,49 @@ msgstr ""
3869
  "Diese E-Mail wird an den Kunden gesendet nachdem die Bestellung bezahlt "
3870
  "wurde."
3871
 
 
 
 
 
3872
  # @ woocommerce-germanized
3873
- #: includes/emails/class-wc-gzd-email-customer-paid-for-order.php:31
3874
  msgid "Payment received"
3875
  msgstr "Zahlung erhalten"
3876
 
3877
- #: includes/emails/class-wc-gzd-email-customer-paid-for-order.php:32
3878
- msgid "Payment received for order {order_number}"
3879
- msgstr "Zahlung erhalten für Bestellung {order_number}"
3880
-
3881
  # @ woocommerce-germanized
3882
- #: includes/emails/class-wc-gzd-email-customer-revocation.php:27
3883
  msgid "Revocation"
3884
  msgstr "Widerruf"
3885
 
3886
  # @ woocommerce-germanized
3887
- #: includes/emails/class-wc-gzd-email-customer-revocation.php:28
3888
  msgid "Email being sent if a customer fills out the revocation form."
3889
  msgstr ""
3890
  "Diese E-Mail wird als Bestätigung an den Kunden weitergeleitet, sobald er "
3891
  "das Widerrufsformular ausgefüllt hat."
3892
 
3893
  # @ woocommerce-germanized
3894
- #: includes/emails/class-wc-gzd-email-customer-revocation.php:33
3895
- #: includes/emails/class-wc-gzd-email-customer-revocation.php:34
3896
- msgid "Your Revocation"
3897
  msgstr "Ihr Widerruf"
3898
 
 
 
 
 
 
 
 
 
 
 
 
 
3899
  # @ woocommerce-germanized
3900
  #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:29
3901
- #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:35
3902
- #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:36
3903
  msgid "SEPA Direct Debit Mandate"
3904
  msgstr "SEPA Lastschriftmandat"
3905
 
@@ -3929,16 +3941,16 @@ msgstr ""
3929
  "einer Bewertung bei Trusted Shops zu erinnern."
3930
 
3931
  # @ woocommerce-germanized
3932
- #: includes/emails/class-wc-gzd-email-customer-trusted-shops.php:30
3933
  msgctxt "trusted-shops"
3934
- msgid "Please rate your Order"
3935
- msgstr "Bitte bewerten Sie Ihre Bestellung"
3936
 
3937
  # @ woocommerce-germanized
3938
- #: includes/emails/class-wc-gzd-email-customer-trusted-shops.php:31
3939
  msgctxt "trusted-shops"
3940
- msgid "Please rate your {site_title} order from {order_date}"
3941
- msgstr "Bitte bewerten Sie Ihre Bestellung bei {site_title} vom {order_date}"
3942
 
3943
  #: includes/export/class-wc-gzd-product-export.php:42
3944
  msgctxt "exporter"
@@ -4016,7 +4028,7 @@ msgid "Sale price regular label"
4016
  msgstr "Angebotspreis Hinweis"
4017
 
4018
  # @ woocommerce-germanized
4019
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:29
4020
  #, php-format
4021
  msgid ""
4022
  "Allows you to offer direct debit as a payment method to your customers. Adds "
@@ -4024,12 +4036,12 @@ msgid ""
4024
  msgstr ""
4025
  "Fügt das manuelle Lastschriftverfahren (SEPA) als Zahlungsmethode hinzu. %s"
4026
 
4027
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:29
4028
  msgid "SEPA XML Bulk Export"
4029
  msgstr "SEPA XML Export"
4030
 
4031
  # @ woocommerce-germanized
4032
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:54
4033
  msgid ""
4034
  "[company_info]\n"
4035
  "debtee identification number: [company_identification_number]\n"
@@ -4098,29 +4110,29 @@ msgstr ""
4098
  "wird auf einen Tag verkürzt. "
4099
 
4100
  # @ woocommerce-germanized
4101
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:189
4102
  msgid "SEPA"
4103
  msgstr "SEPA"
4104
 
4105
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:190
4106
  msgid "SEPA XML"
4107
  msgstr "SEPA XML"
4108
 
4109
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:246
4110
  msgid "SEPA XML Export"
4111
  msgstr "SEPA XML Export"
4112
 
4113
  # @ woocommerce-germanized
4114
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:361
4115
  #, php-format
4116
  msgid "Order %s"
4117
  msgstr "Bestellung %s"
4118
 
4119
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:381
4120
  msgid "Will be notified separately"
4121
  msgstr "Wird separat mitgeteilt"
4122
 
4123
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:430
4124
  #, php-format
4125
  msgid ""
4126
  "We will debit %s from your account by direct debit on or shortly after %s."
@@ -4129,111 +4141,111 @@ msgstr ""
4129
  "%s ein."
4130
 
4131
  # @ woocommerce-germanized
4132
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:534
4133
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:557
4134
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:577
4135
  msgid "a single payment"
4136
  msgstr "eine einmalige Zahlung"
4137
 
4138
  # @ woocommerce-germanized
4139
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:607
4140
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:93
4141
  msgid "Enable/Disable"
4142
  msgstr "Aktivieren/Deaktivieren"
4143
 
4144
  # @ woocommerce-germanized
4145
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:609
4146
  msgid "Enable Direct Debit Payment"
4147
  msgstr "Bezahlung per Lastschrift aktivieren"
4148
 
4149
  # @ woocommerce-germanized
4150
  # @ woocommerce
4151
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:613
4152
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:99
4153
  msgctxt "gateway"
4154
  msgid "Title"
4155
  msgstr "Bezeichnung"
4156
 
4157
  # @ woocommerce-germanized
4158
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:615
4159
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:101
4160
  msgid "This controls the title which the user sees during checkout."
4161
  msgstr ""
4162
  "Beschreibungstext, den Benutzer bei der Auswahl dieser Zahlungsart sehen."
4163
 
4164
  # @ woocommerce-germanized
4165
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:620
4166
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:106
4167
  msgid "Description"
4168
  msgstr "Beschreibung"
4169
 
4170
  # @ woocommerce-germanized
4171
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:622
4172
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:108
4173
  msgid "Payment method description that the customer will see on your checkout."
4174
  msgstr "Beschreibung der Zahlungsart, die Kunden auf deiner Website sehen."
4175
 
4176
  # @ woocommerce-germanized
4177
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:623
4178
  msgid "The order amount will be debited directly from your bank account."
4179
  msgstr ""
4180
  "Der Gesamtbestellbetrag wird per SEPA-Lastschrift direkt von Ihrem Konto "
4181
  "abgebucht."
4182
 
4183
  # @ woocommerce-germanized
4184
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:627
4185
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:113
4186
  msgid "Instructions"
4187
  msgstr "Anweisungen"
4188
 
4189
  # @ woocommerce-germanized
4190
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:629
4191
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:115
4192
  msgid "Instructions that will be added to the thank you page and emails."
4193
  msgstr "Anweisung, die zur „Danke“-Seite und zu E-Mails hinzugefügt werden."
4194
 
4195
  # @ woocommerce-germanized
4196
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:634
4197
  msgid "Debtee"
4198
  msgstr "Gläubiger Informationen"
4199
 
4200
  # @ woocommerce-germanized
4201
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:636
4202
  msgid "Insert your company information."
4203
  msgstr "Füge hier die Informationen zu deinem Unternehmen ein."
4204
 
4205
  # @ woocommerce-germanized
4206
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:638
4207
  msgid "Company Inc, John Doe Street, New York"
4208
  msgstr "Musterfirma GmbH, Musterstraße 12, 12203 Musterstadt"
4209
 
4210
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:644
4211
  msgid "Insert the bank account holder name."
4212
  msgstr "Füge hier den Namen des Kontoinhabers ein."
4213
 
4214
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:646
4215
  msgid "Company Inc"
4216
  msgstr "Muster GmbH"
4217
 
4218
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:652
4219
  msgid "Insert the bank account IBAN."
4220
  msgstr "Füge hier den IBAN deines Kontos ein."
4221
 
4222
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:657
4223
  msgid "BIC"
4224
  msgstr "BIC"
4225
 
4226
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:659
4227
  msgid "Insert the bank account BIC."
4228
  msgstr "Füge hier den BIC deines Kontos ein."
4229
 
4230
  # @ woocommerce-germanized
4231
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:664
4232
  msgid "Debtee identification number"
4233
  msgstr "Identifikationsnummer"
4234
 
4235
  # @ woocommerce-germanized
4236
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:666
4237
  #, php-format
4238
  msgid ""
4239
  "Insert your debtee indentification number. More information can be found <a "
@@ -4243,16 +4255,16 @@ msgstr ""
4243
  "Weitere Informationen zu dieser Nummer erhältst du <a href=\"%s\">hier</a>."
4244
 
4245
  # @ woocommerce-germanized
4246
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:670
4247
  msgid "Generate Mandate ID"
4248
  msgstr "Mandat-Referenz generieren"
4249
 
4250
  # @ woocommerce-germanized
4251
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:672
4252
  msgid "Automatically generate Mandate ID."
4253
  msgstr "Mandat-Referenznummer automatisch generieren."
4254
 
4255
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:673
4256
  msgid ""
4257
  "Automatically generate Mandate ID after order completion (based on Order ID)."
4258
  msgstr ""
@@ -4260,11 +4272,11 @@ msgstr ""
4260
  "basierend auf der Bestellnummer."
4261
 
4262
  # @ woocommerce-germanized
4263
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:677
4264
  msgid "XML Pain Format"
4265
  msgstr "XML Pain Format"
4266
 
4267
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:679
4268
  msgid ""
4269
  "You may adjust the XML Export Pain Schema to your banks needs. Some banks "
4270
  "may require pain.001.003.03."
@@ -4273,11 +4285,11 @@ msgstr ""
4273
  "Banken benötigen z.B. pain.001.003.03."
4274
 
4275
  # @ woocommerce-germanized
4276
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:683
4277
  msgid "Mandate ID Format"
4278
  msgstr "Mandat-Referenz Format"
4279
 
4280
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:685
4281
  msgid ""
4282
  "You may extend the Mandate ID format by adding a prefix and/or suffix. Use "
4283
  "{id} as placeholder to insert the automatically generated ID."
@@ -4286,12 +4298,12 @@ msgstr ""
4286
  "{id} als Platzhalter um die automatisch generierte Referenznummer einzufügen."
4287
 
4288
  # @ woocommerce-germanized
4289
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:689
4290
  msgid "Mandate Text"
4291
  msgstr "Lastschriftmandat"
4292
 
4293
  # @ woocommerce-germanized
4294
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:691
4295
  msgid ""
4296
  "This text will be populated with live order/checkout data. Will be used as "
4297
  "preview direct debit mandate and as email template text."
@@ -4302,23 +4314,23 @@ msgstr ""
4302
  "Verfügung gestellt."
4303
 
4304
  # @ woocommerce-germanized
4305
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:698
4306
  msgid "Enable \"agree to SEPA mandate\" checkbox"
4307
  msgstr "Aktiviere die Checkbox zur Bestätigung des Lastschriftmandates."
4308
 
4309
  # @ woocommerce-germanized
4310
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:700
4311
  msgid "Enable a checkbox linking to a SEPA direct debit mandate preview."
4312
  msgstr ""
4313
  "Aktiviere eine Checkbox, die zu einer Vorschau des Lastschrift-Mandats führt."
4314
 
4315
  # @ woocommerce-germanized
4316
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:704
4317
  msgid "Checkbox label"
4318
  msgstr "Checkbox Text"
4319
 
4320
  # @ woocommerce-germanized
4321
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:706
4322
  msgid ""
4323
  "Customize the checkbox label. Use {link}link name{/link} to insert the "
4324
  "preview link."
@@ -4327,21 +4339,21 @@ msgstr ""
4327
  "auf die Vorschau zu verlinken."
4328
 
4329
  # @ woocommerce-germanized
4330
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:707
4331
  msgid "I hereby agree to the {link}direct debit mandate{/link}."
4332
  msgstr "Hiermit erteile ich das {link}SEPA Lastschriftmandat{/link}."
4333
 
4334
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:711
4335
  msgid "Enable pre-notification"
4336
  msgstr "Vorankündigung aktivieren"
4337
 
4338
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:712
4339
  msgid "Insert pre-notification text within the order confirmation email."
4340
  msgstr ""
4341
  "Fügt einen Standard-Text zur Vorankündigung des SEPA-Einzugs in die "
4342
  "Bestellbestätigung ein."
4343
 
4344
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:714
4345
  msgid ""
4346
  "This option inserts a standard text containing a pre-notification for the "
4347
  "customer."
@@ -4350,11 +4362,11 @@ msgstr ""
4350
  "die Bestellbestätigung ein. In der Ankündigung wird u.a. ein konkreter "
4351
  "Fälligkeitstermin genannt."
4352
 
4353
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:718
4354
  msgid "Debit days"
4355
  msgstr "Fälligkeitstage"
4356
 
4357
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:720
4358
  msgid ""
4359
  "This option is used to calculate the debit date and is added to the order "
4360
  "date."
@@ -4364,15 +4376,15 @@ msgstr ""
4364
  "hier eingestellten Anzahl Tage."
4365
 
4366
  # @ woocommerce-germanized
4367
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:724
4368
  msgid "Mask IBAN"
4369
  msgstr "IBAN maskieren"
4370
 
4371
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:725
4372
  msgid "Mask the IBAN within emails."
4373
  msgstr "IBAN in E-Mails maskieren."
4374
 
4375
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:727
4376
  msgid ""
4377
  "This will lead to masked IBANs within emails (replaced by *). All but last 4 "
4378
  "digits will be masked."
@@ -4380,15 +4392,15 @@ msgstr ""
4380
  "Der IBAN wird in E-Mails (abgesehen von den letzten 4 Stellen) mit * "
4381
  "maskiert."
4382
 
4383
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:736
4384
  msgid "Remember"
4385
  msgstr "Bankdaten merken\t"
4386
 
4387
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:737
4388
  msgid "Remember account data for returning customers."
4389
  msgstr "Bankverbindung für registrierte Kunden speichern."
4390
 
4391
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:739
4392
  msgid "Save account data as user meta if user has/creates a customer account."
4393
  msgstr ""
4394
  "Speichert die Bankverbindung für registrierte Kunden in der user_meta "
@@ -4396,37 +4408,37 @@ msgstr ""
4396
  "eigenständig aus."
4397
 
4398
  # @ woocommerce-germanized
4399
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:822
4400
  msgid "Please insert your SEPA account data."
4401
  msgstr "Bitte fügen Sie Ihre SEPA Kontoinformationen ein."
4402
 
4403
  # @ woocommerce-germanized
4404
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:832
4405
  msgid "Your IBAN seems to be invalid."
4406
  msgstr "Ihr IBAN scheint nicht gültig zu sein."
4407
 
4408
  # @ woocommerce-germanized
4409
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:834
4410
  msgid "Your IBAN's country code doesn’t match with your billing country."
4411
  msgstr "Der Ländercode des IBANs stimmt nicht mit dem Rechnungsland überein."
4412
 
4413
  # @ woocommerce-germanized
4414
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:838
4415
  msgid "Your BIC seems to be invalid."
4416
  msgstr "Ihr BIC/SWIFT scheint nicht gültig zu sein."
4417
 
4418
  # @ woocommerce-germanized
4419
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:850
4420
  msgid "Please accept the direct debit mandate."
4421
  msgstr "Bitte erteilen Sie das SEPA Lastschriftmandat."
4422
 
4423
  # @ woocommerce-germanized
4424
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:881
4425
  msgid "is invalid"
4426
  msgstr "ist ungültig"
4427
 
4428
  # @ woocommerce-germanized
4429
- #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:917
4430
  msgid "Awaiting Direct Debit Payment"
4431
  msgstr "Zahlung per Lastschrift ausstehend"
4432
 
@@ -4477,7 +4489,7 @@ msgstr "Nur unbezahlte"
4477
 
4478
  # @ woocommerce-germanized
4479
  #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:26
4480
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:102
4481
  msgid "Pay by Invoice"
4482
  msgstr "Rechnung"
4483
 
@@ -4489,18 +4501,18 @@ msgstr ""
4489
 
4490
  # @ woocommerce-germanized
4491
  # @ woocommerce
4492
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:64
4493
- #: woocommerce-germanized.php:577
4494
  msgid "Settings"
4495
  msgstr "Einstellungen"
4496
 
4497
  # @ woocommerce-germanized
4498
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:71
4499
  msgid "Automatically generate PDF invoices for this gateway?"
4500
  msgstr "PDF Rechnungen für diese Zahlungsart automatisch erstellen?"
4501
 
4502
  # @ woocommerce-germanized
4503
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:72
4504
  msgid ""
4505
  "By upgrading to the professional version you'll be able to automatically "
4506
  "generate PDF invoices to this payment gateway. Furthermore you'll benefit "
@@ -4514,17 +4526,17 @@ msgstr ""
4514
  "Premium-Support via Ticket-System!"
4515
 
4516
  # @ woocommerce-germanized
4517
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:75
4518
  msgid "Learn more about PDF invoicing"
4519
  msgstr "Mehr über PDF-Rechnungen erfahren"
4520
 
4521
  # @ woocommerce-germanized
4522
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:95
4523
  msgid "Enable Pay by Invoice"
4524
  msgstr "Bezahlung auf Rechnung aktivieren"
4525
 
4526
  # @ woocommerce-germanized
4527
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:109
4528
  msgid ""
4529
  "You'll receive an invoice after your order. Please transfer the order amount "
4530
  "to our bank account within 14 days."
@@ -4533,12 +4545,12 @@ msgstr ""
4533
  "den Gesamtbetrag innerhalb von 14 Tagen auf das dort angegebene Konto."
4534
 
4535
  # @ woocommerce-germanized
4536
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:120
4537
  msgid "Order Status"
4538
  msgstr "Bestellstatus"
4539
 
4540
  # @ woocommerce-germanized
4541
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:122
4542
  msgid ""
4543
  "Choose which order status should be applied after a customer has chosen to "
4544
  "pay by invoice."
@@ -4547,29 +4559,29 @@ msgstr ""
4547
  "angewendet werden soll."
4548
 
4549
  # @ woocommerce-germanized
4550
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:128
4551
  msgid "Registered customers"
4552
  msgstr "Registrierte Kunden"
4553
 
4554
  # @ woocommerce-germanized
4555
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:129
4556
  msgid "Do only offer pay by invoice to registered/logged in customers."
4557
  msgstr "Biete diese Zahlungsart nur registrierten/eingeloggten Kunden an."
4558
 
4559
  # @ woocommerce-germanized
4560
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:131
4561
  msgid "This will enable Pay by Invoice to logged in customers only"
4562
  msgstr ""
4563
  "Diese Option erlaubt es dir, die Zahlungsart lediglich eingeloggten Kunden "
4564
  "zur Verfügung zu stellen"
4565
 
4566
  # @ woocommerce-germanized
4567
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:136
4568
  msgid "Customer limitation"
4569
  msgstr "Kunden Eingrenzung"
4570
 
4571
  # @ woocommerce-germanized
4572
- #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:137
4573
  msgid ""
4574
  "Do only offer pay by invoice to customers who have at least completed one "
4575
  "order."
@@ -5415,7 +5427,7 @@ msgid "%s custom reviews"
5415
  msgstr "%s Kundenbewertungen"
5416
 
5417
  # @ woocommerce-germanized
5418
- #: woocommerce-germanized.php:732
5419
  msgid "Order Confirmation"
5420
  msgstr "Bestellbestätigung"
5421
 
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce Germanized v1.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-11-09 14:18+0100\n"
6
+ "PO-Revision-Date: 2017-11-09 14:18+0100\n"
7
  "Last-Translator: holzhannes <holzhannes@posteo.de>\n"
8
  "Language-Team: \n"
9
  "Language: de_DE\n"
92
  msgstr "l"
93
 
94
  # @ woocommerce-germanized
95
+ #: includes/abstracts/abstract-wc-gzd-product.php:264
96
+ #: includes/abstracts/abstract-wc-gzd-product.php:273
97
  #: includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php:169
98
  #: includes/wc-gzd-core-functions.php:129
99
+ #: includes/wc-gzd-template-functions.php:608 woocommerce-germanized.php:828
100
  msgid "incl. VAT"
101
  msgstr "inkl. MwSt."
102
 
103
  # @ woocommerce-germanized
104
+ #: includes/abstracts/abstract-wc-gzd-product.php:264
105
  msgid "excl. VAT"
106
  msgstr "exkl. MwSt."
107
 
108
  # @ woocommerce-germanized
109
+ #: includes/abstracts/abstract-wc-gzd-product.php:266
110
  #: includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php:169
111
+ #: includes/wc-gzd-core-functions.php:129 woocommerce-germanized.php:828
112
  #, php-format
113
  msgid "incl. %s%% VAT"
114
  msgstr "inkl. %s%% MwSt."
115
 
116
  # @ woocommerce-germanized
117
+ #: includes/abstracts/abstract-wc-gzd-product.php:266
118
  #, php-format
119
  msgid "excl. %s%% VAT"
120
  msgstr "exkl. %s%% MwSt."
1111
 
1112
  # @ woocommerce-germanized
1113
  #: includes/admin/settings/class-wc-gzd-settings-germanized.php:514
1114
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:714
1115
  msgid "Checkbox"
1116
  msgstr "Checkbox"
1117
 
2902
 
2903
  # @ woocommerce-germanized
2904
  #: includes/admin/views/html-settings-pro.php:25
2905
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:67
2906
  msgid "Upgrade now"
2907
  msgstr "jetzt upgraden"
2908
 
2912
  #: includes/api/class-wc-gzd-rest-customers-controller.php:144
2913
  #: includes/api/class-wc-gzd-rest-orders-controller.php:161
2914
  #: includes/api/class-wc-gzd-rest-orders-controller.php:168
2915
+ #: includes/class-wc-gzd-checkout.php:299
2916
+ #: includes/class-wc-gzd-checkout.php:309
2917
  #: includes/class-wc-gzd-customer-helper.php:112
2918
  #: includes/class-wc-gzd-customer-helper.php:120
2919
  msgid "Title"
2935
  # @ woocommerce-germanized
2936
  #: includes/api/class-wc-gzd-rest-customers-controller.php:163
2937
  #: includes/api/class-wc-gzd-rest-orders-controller.php:194
2938
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:30
2939
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:633
2940
  #: includes/gateways/direct-debit/views/html-export.php:27
2941
  msgid "Direct Debit"
2942
  msgstr "Lastschrift"
2944
  # @ woocommerce-germanized
2945
  #: includes/api/class-wc-gzd-rest-customers-controller.php:168
2946
  #: includes/api/class-wc-gzd-rest-orders-controller.php:199
2947
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:108
2948
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:436
2949
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:659
2950
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:800
2951
  msgid "Account Holder"
2952
  msgstr "Kontoinhaber"
2953
 
2954
  # @ woocommerce-germanized
2955
  #: includes/api/class-wc-gzd-rest-customers-controller.php:173
2956
  #: includes/api/class-wc-gzd-rest-orders-controller.php:204
2957
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:115
2958
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:437
2959
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:667
2960
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:804
2961
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:896
2962
  msgid "IBAN"
2963
  msgstr "IBAN"
2964
 
2965
  # @ woocommerce-germanized
2966
  #: includes/api/class-wc-gzd-rest-customers-controller.php:178
2967
  #: includes/api/class-wc-gzd-rest-orders-controller.php:209
2968
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:121
2969
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:438
2970
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:808
2971
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:897
2972
  msgid "BIC/SWIFT"
2973
  msgstr "BIC/SWIFT"
2974
 
2986
 
2987
  # @ woocommerce-germanized
2988
  #: includes/api/class-wc-gzd-rest-orders-controller.php:214
2989
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:127
2990
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:442
2991
  msgid "Mandate Reference ID"
2992
  msgstr "Mandat-Referenznummer"
2993
 
3192
  "Mail mit Ihren Daten als Bestätigung."
3193
 
3194
  # @ woocommerce-germanized
3195
+ #: includes/class-wc-gzd-checkout.php:300
3196
+ #: includes/class-wc-gzd-checkout.php:308
3197
+ #: includes/class-wc-gzd-checkout.php:333
3198
+ #: includes/class-wc-gzd-checkout.php:558
3199
  #: includes/class-wc-gzd-customer-helper.php:114
3200
  #: includes/class-wc-gzd-customer-helper.php:122
3201
  #: includes/class-wc-gzd-revocation.php:41
3203
  msgstr "Herr"
3204
 
3205
  # @ woocommerce-germanized
3206
+ #: includes/class-wc-gzd-checkout.php:300
3207
+ #: includes/class-wc-gzd-checkout.php:308
3208
+ #: includes/class-wc-gzd-checkout.php:334
3209
+ #: includes/class-wc-gzd-checkout.php:558
3210
+ #: includes/class-wc-gzd-checkout.php:563
3211
  #: includes/class-wc-gzd-customer-helper.php:114
3212
  #: includes/class-wc-gzd-customer-helper.php:122
3213
  #: includes/class-wc-gzd-revocation.php:42
3416
  msgstr "Widerruf online erklären"
3417
 
3418
  # @ woocommerce-germanized
3419
+ #: includes/class-wc-gzd-install.php:128
3420
  #, php-format
3421
  msgid ""
3422
  "Please install <a href=\"%s\" target=\"_blank\">WooCommerce</a> before "
3426
  "WooCommerce Germanized installierst. Vielen Dank!"
3427
 
3428
  # @ woocommerce-germanized
3429
+ #: includes/class-wc-gzd-install.php:476
3430
  msgctxt "Page slug"
3431
  msgid "data-security"
3432
  msgstr "datenschutzbelehrung"
3433
 
3434
  # @ woocommerce-germanized
3435
+ #: includes/class-wc-gzd-install.php:477
3436
  msgctxt "Page title"
3437
  msgid "Data Security Statement"
3438
  msgstr "Datenschutzbelehrung"
3439
 
3440
  # @ woocommerce-germanized
3441
+ #: includes/class-wc-gzd-install.php:481
3442
  msgctxt "Page slug"
3443
  msgid "imprint"
3444
  msgstr "impressum"
3445
 
3446
  # @ woocommerce-germanized
3447
+ #: includes/class-wc-gzd-install.php:482
3448
  msgctxt "Page title"
3449
  msgid "Imprint"
3450
  msgstr "Impressum"
3451
 
3452
  # @ woocommerce-germanized
3453
+ #: includes/class-wc-gzd-install.php:486
3454
  msgctxt "Page slug"
3455
  msgid "terms"
3456
  msgstr "agb"
3457
 
3458
  # @ woocommerce-germanized
3459
+ #: includes/class-wc-gzd-install.php:487
3460
  msgctxt "Page title"
3461
  msgid "Terms & Conditions"
3462
  msgstr "AGB"
3463
 
3464
  # @ woocommerce-germanized
3465
+ #: includes/class-wc-gzd-install.php:491
3466
  msgctxt "Page slug"
3467
  msgid "revocation"
3468
  msgstr "widerrufsbelehrung"
3469
 
3470
  # @ woocommerce-germanized
3471
+ #: includes/class-wc-gzd-install.php:492
3472
  msgctxt "Page title"
3473
  msgid "Power of Revocation"
3474
  msgstr "Widerrufsbelehrung"
3475
 
3476
  # @ woocommerce-germanized
3477
+ #: includes/class-wc-gzd-install.php:496
3478
  msgctxt "Page slug"
3479
  msgid "shipping-methods"
3480
  msgstr "versandarten"
3481
 
3482
  # @ woocommerce-germanized
3483
+ #: includes/class-wc-gzd-install.php:497
3484
  msgctxt "Page title"
3485
  msgid "Shipping Methods"
3486
  msgstr "Versandarten"
3487
 
3488
  # @ woocommerce-germanized
3489
+ #: includes/class-wc-gzd-install.php:501
3490
  msgctxt "Page slug"
3491
  msgid "payment-methods"
3492
  msgstr "bezahlmoeglichkeiten"
3493
 
3494
  # @ woocommerce-germanized
3495
+ #: includes/class-wc-gzd-install.php:502
3496
  msgctxt "Page title"
3497
  msgid "Payment Methods"
3498
  msgstr "Zahlungsarten"
3499
 
3500
  # @ woocommerce-germanized
3501
+ #: includes/class-wc-gzd-payment-gateways.php:86
3502
+ #: includes/class-wc-gzd-payment-gateways.php:125
3503
  #, php-format
3504
  msgid "%s payment charge"
3505
  msgstr "%s Zahlungsgebühr"
3506
 
3507
  # @ woocommerce-germanized
3508
+ #: includes/class-wc-gzd-payment-gateways.php:89
3509
  #: includes/wc-gzd-order-functions.php:20
3510
  #: includes/wc-gzd-template-functions.php:538
3511
  #, php-format
3513
  msgstr "zzgl. %s Übermittlungsentgelt (direkt an den Zusteller)"
3514
 
3515
  # @ woocommerce-germanized
3516
+ #: includes/class-wc-gzd-payment-gateways.php:153
3517
  msgid "Fee"
3518
  msgstr "Zahlungsgebühr"
3519
 
3520
  # @ woocommerce-germanized
3521
+ #: includes/class-wc-gzd-payment-gateways.php:155
3522
  msgid ""
3523
  "This fee is being added if customer selects payment method within checkout."
3524
  msgstr ""
3526
  "Zahlungsart aktiviert."
3527
 
3528
  # @ woocommerce-germanized
3529
+ #: includes/class-wc-gzd-payment-gateways.php:160
3530
  msgid "Fee is taxable?"
3531
  msgstr "Mwst. berechnen?"
3532
 
3533
  # @ woocommerce-germanized
3534
+ #: includes/class-wc-gzd-payment-gateways.php:162
3535
  msgid "Check if fee is taxable."
3536
  msgstr "MwSt.-Berechnung für Gebühr aktivieren."
3537
 
3538
  # @ woocommerce-germanized
3539
+ #: includes/class-wc-gzd-payment-gateways.php:169
3540
  msgid "Forwarding Fee"
3541
  msgstr "Übermittlungsentgelt"
3542
 
3543
  # @ woocommerce-germanized
3544
+ #: includes/class-wc-gzd-payment-gateways.php:172
3545
  msgid ""
3546
  "Forwarding fee will be charged by the transport agent in addition to the "
3547
  "cash of delivery fee e.g. DHL - tax free."
3550
  "kassiert - z.B. DHL (steuerfrei)."
3551
 
3552
  # @ woocommerce-germanized
3553
+ #: includes/class-wc-gzd-payment-gateways.php:212
3554
  msgid "Payment charge"
3555
  msgstr "Zahlungsgebühr"
3556
 
3820
  "zur Abgabe der Bewertung."
3821
 
3822
  # @ woocommerce-germanized
3823
+ #: includes/emails/class-wc-gzd-email-customer-ekomi.php:46
3824
  msgctxt "ekomi"
3825
+ msgid "Please rate your {site_title} order from {order_date}"
3826
+ msgstr "Bitte bewerten Sie Ihren Einkauf vom {order_date} bei {site_title}"
3827
 
3828
  # @ woocommerce-germanized
3829
+ #: includes/emails/class-wc-gzd-email-customer-ekomi.php:56
3830
  msgctxt "ekomi"
3831
+ msgid "Please rate your Order"
3832
+ msgstr "Bitte bewerten Sie Ihren Einkauf"
3833
 
3834
  # @ woocommerce-germanized
3835
  #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:38
3848
  "Bestätigungslink generiert."
3849
 
3850
  # @ woocommerce-germanized
3851
+ #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:57
3852
  msgid "Activate your account on {site_title}"
3853
  msgstr "Aktivieren Sie Ihr Benutzerkonto auf {site_title}"
3854
 
3855
  # @ woocommerce-germanized
3856
+ #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:67
3857
  msgid "Account activation {site_title}"
3858
  msgstr "Ihr Konto bei {site_title}"
3859
 
3869
  "Diese E-Mail wird an den Kunden gesendet nachdem die Bestellung bezahlt "
3870
  "wurde."
3871
 
3872
+ #: includes/emails/class-wc-gzd-email-customer-paid-for-order.php:45
3873
+ msgid "Payment received for order {order_number}"
3874
+ msgstr "Zahlung erhalten für Bestellung {order_number}"
3875
+
3876
  # @ woocommerce-germanized
3877
+ #: includes/emails/class-wc-gzd-email-customer-paid-for-order.php:55
3878
  msgid "Payment received"
3879
  msgstr "Zahlung erhalten"
3880
 
 
 
 
 
3881
  # @ woocommerce-germanized
3882
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:29
3883
  msgid "Revocation"
3884
  msgstr "Widerruf"
3885
 
3886
  # @ woocommerce-germanized
3887
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:30
3888
  msgid "Email being sent if a customer fills out the revocation form."
3889
  msgstr ""
3890
  "Diese E-Mail wird als Bestätigung an den Kunden weitergeleitet, sobald er "
3891
  "das Widerrufsformular ausgefüllt hat."
3892
 
3893
  # @ woocommerce-germanized
3894
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:48
3895
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:58
3896
+ msgid "Your revocation"
3897
  msgstr "Ihr Widerruf"
3898
 
3899
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:142
3900
+ msgid "Admin email"
3901
+ msgstr "Admin E-Mail"
3902
+
3903
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:145
3904
+ msgid ""
3905
+ "Insert the email address of your shop manager here. A copy of the revocation "
3906
+ "email is being sent to this address."
3907
+ msgstr ""
3908
+ "Füge hier die E-Mail Adresse des Shop-Managers ein. Eine Kopie des Widerrufs "
3909
+ "wird an diese E-Mail Adresse versendet."
3910
+
3911
  # @ woocommerce-germanized
3912
  #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:29
3913
+ #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:48
3914
+ #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:58
3915
  msgid "SEPA Direct Debit Mandate"
3916
  msgstr "SEPA Lastschriftmandat"
3917
 
3941
  "einer Bewertung bei Trusted Shops zu erinnern."
3942
 
3943
  # @ woocommerce-germanized
3944
+ #: includes/emails/class-wc-gzd-email-customer-trusted-shops.php:46
3945
  msgctxt "trusted-shops"
3946
+ msgid "Please rate your {site_title} order from {order_date}"
3947
+ msgstr "Bitte bewerten Sie Ihre Bestellung bei {site_title} vom {order_date}"
3948
 
3949
  # @ woocommerce-germanized
3950
+ #: includes/emails/class-wc-gzd-email-customer-trusted-shops.php:56
3951
  msgctxt "trusted-shops"
3952
+ msgid "Please rate your Order"
3953
+ msgstr "Bitte bewerten Sie Ihre Bestellung"
3954
 
3955
  #: includes/export/class-wc-gzd-product-export.php:42
3956
  msgctxt "exporter"
4028
  msgstr "Angebotspreis Hinweis"
4029
 
4030
  # @ woocommerce-germanized
4031
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:31
4032
  #, php-format
4033
  msgid ""
4034
  "Allows you to offer direct debit as a payment method to your customers. Adds "
4036
  msgstr ""
4037
  "Fügt das manuelle Lastschriftverfahren (SEPA) als Zahlungsmethode hinzu. %s"
4038
 
4039
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:31
4040
  msgid "SEPA XML Bulk Export"
4041
  msgstr "SEPA XML Export"
4042
 
4043
  # @ woocommerce-germanized
4044
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:56
4045
  msgid ""
4046
  "[company_info]\n"
4047
  "debtee identification number: [company_identification_number]\n"
4110
  "wird auf einen Tag verkürzt. "
4111
 
4112
  # @ woocommerce-germanized
4113
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:186
4114
  msgid "SEPA"
4115
  msgstr "SEPA"
4116
 
4117
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:187
4118
  msgid "SEPA XML"
4119
  msgstr "SEPA XML"
4120
 
4121
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:243
4122
  msgid "SEPA XML Export"
4123
  msgstr "SEPA XML Export"
4124
 
4125
  # @ woocommerce-germanized
4126
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:377
4127
  #, php-format
4128
  msgid "Order %s"
4129
  msgstr "Bestellung %s"
4130
 
4131
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:398
4132
  msgid "Will be notified separately"
4133
  msgstr "Wird separat mitgeteilt"
4134
 
4135
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:447
4136
  #, php-format
4137
  msgid ""
4138
  "We will debit %s from your account by direct debit on or shortly after %s."
4141
  "%s ein."
4142
 
4143
  # @ woocommerce-germanized
4144
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:551
4145
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:574
4146
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:594
4147
  msgid "a single payment"
4148
  msgstr "eine einmalige Zahlung"
4149
 
4150
  # @ woocommerce-germanized
4151
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:624
4152
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:86
4153
  msgid "Enable/Disable"
4154
  msgstr "Aktivieren/Deaktivieren"
4155
 
4156
  # @ woocommerce-germanized
4157
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:626
4158
  msgid "Enable Direct Debit Payment"
4159
  msgstr "Bezahlung per Lastschrift aktivieren"
4160
 
4161
  # @ woocommerce-germanized
4162
  # @ woocommerce
4163
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:630
4164
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:92
4165
  msgctxt "gateway"
4166
  msgid "Title"
4167
  msgstr "Bezeichnung"
4168
 
4169
  # @ woocommerce-germanized
4170
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:632
4171
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:94
4172
  msgid "This controls the title which the user sees during checkout."
4173
  msgstr ""
4174
  "Beschreibungstext, den Benutzer bei der Auswahl dieser Zahlungsart sehen."
4175
 
4176
  # @ woocommerce-germanized
4177
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:637
4178
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:99
4179
  msgid "Description"
4180
  msgstr "Beschreibung"
4181
 
4182
  # @ woocommerce-germanized
4183
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:639
4184
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:101
4185
  msgid "Payment method description that the customer will see on your checkout."
4186
  msgstr "Beschreibung der Zahlungsart, die Kunden auf deiner Website sehen."
4187
 
4188
  # @ woocommerce-germanized
4189
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:640
4190
  msgid "The order amount will be debited directly from your bank account."
4191
  msgstr ""
4192
  "Der Gesamtbestellbetrag wird per SEPA-Lastschrift direkt von Ihrem Konto "
4193
  "abgebucht."
4194
 
4195
  # @ woocommerce-germanized
4196
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:644
4197
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:106
4198
  msgid "Instructions"
4199
  msgstr "Anweisungen"
4200
 
4201
  # @ woocommerce-germanized
4202
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:646
4203
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:108
4204
  msgid "Instructions that will be added to the thank you page and emails."
4205
  msgstr "Anweisung, die zur „Danke“-Seite und zu E-Mails hinzugefügt werden."
4206
 
4207
  # @ woocommerce-germanized
4208
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:651
4209
  msgid "Debtee"
4210
  msgstr "Gläubiger Informationen"
4211
 
4212
  # @ woocommerce-germanized
4213
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:653
4214
  msgid "Insert your company information."
4215
  msgstr "Füge hier die Informationen zu deinem Unternehmen ein."
4216
 
4217
  # @ woocommerce-germanized
4218
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:655
4219
  msgid "Company Inc, John Doe Street, New York"
4220
  msgstr "Musterfirma GmbH, Musterstraße 12, 12203 Musterstadt"
4221
 
4222
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:661
4223
  msgid "Insert the bank account holder name."
4224
  msgstr "Füge hier den Namen des Kontoinhabers ein."
4225
 
4226
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:663
4227
  msgid "Company Inc"
4228
  msgstr "Muster GmbH"
4229
 
4230
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:669
4231
  msgid "Insert the bank account IBAN."
4232
  msgstr "Füge hier den IBAN deines Kontos ein."
4233
 
4234
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:674
4235
  msgid "BIC"
4236
  msgstr "BIC"
4237
 
4238
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:676
4239
  msgid "Insert the bank account BIC."
4240
  msgstr "Füge hier den BIC deines Kontos ein."
4241
 
4242
  # @ woocommerce-germanized
4243
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:681
4244
  msgid "Debtee identification number"
4245
  msgstr "Identifikationsnummer"
4246
 
4247
  # @ woocommerce-germanized
4248
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:683
4249
  #, php-format
4250
  msgid ""
4251
  "Insert your debtee indentification number. More information can be found <a "
4255
  "Weitere Informationen zu dieser Nummer erhältst du <a href=\"%s\">hier</a>."
4256
 
4257
  # @ woocommerce-germanized
4258
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:687
4259
  msgid "Generate Mandate ID"
4260
  msgstr "Mandat-Referenz generieren"
4261
 
4262
  # @ woocommerce-germanized
4263
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:689
4264
  msgid "Automatically generate Mandate ID."
4265
  msgstr "Mandat-Referenznummer automatisch generieren."
4266
 
4267
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:690
4268
  msgid ""
4269
  "Automatically generate Mandate ID after order completion (based on Order ID)."
4270
  msgstr ""
4272
  "basierend auf der Bestellnummer."
4273
 
4274
  # @ woocommerce-germanized
4275
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:694
4276
  msgid "XML Pain Format"
4277
  msgstr "XML Pain Format"
4278
 
4279
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:696
4280
  msgid ""
4281
  "You may adjust the XML Export Pain Schema to your banks needs. Some banks "
4282
  "may require pain.001.003.03."
4285
  "Banken benötigen z.B. pain.001.003.03."
4286
 
4287
  # @ woocommerce-germanized
4288
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:700
4289
  msgid "Mandate ID Format"
4290
  msgstr "Mandat-Referenz Format"
4291
 
4292
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:702
4293
  msgid ""
4294
  "You may extend the Mandate ID format by adding a prefix and/or suffix. Use "
4295
  "{id} as placeholder to insert the automatically generated ID."
4298
  "{id} als Platzhalter um die automatisch generierte Referenznummer einzufügen."
4299
 
4300
  # @ woocommerce-germanized
4301
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:706
4302
  msgid "Mandate Text"
4303
  msgstr "Lastschriftmandat"
4304
 
4305
  # @ woocommerce-germanized
4306
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:708
4307
  msgid ""
4308
  "This text will be populated with live order/checkout data. Will be used as "
4309
  "preview direct debit mandate and as email template text."
4314
  "Verfügung gestellt."
4315
 
4316
  # @ woocommerce-germanized
4317
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:715
4318
  msgid "Enable \"agree to SEPA mandate\" checkbox"
4319
  msgstr "Aktiviere die Checkbox zur Bestätigung des Lastschriftmandates."
4320
 
4321
  # @ woocommerce-germanized
4322
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:717
4323
  msgid "Enable a checkbox linking to a SEPA direct debit mandate preview."
4324
  msgstr ""
4325
  "Aktiviere eine Checkbox, die zu einer Vorschau des Lastschrift-Mandats führt."
4326
 
4327
  # @ woocommerce-germanized
4328
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:721
4329
  msgid "Checkbox label"
4330
  msgstr "Checkbox Text"
4331
 
4332
  # @ woocommerce-germanized
4333
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:723
4334
  msgid ""
4335
  "Customize the checkbox label. Use {link}link name{/link} to insert the "
4336
  "preview link."
4339
  "auf die Vorschau zu verlinken."
4340
 
4341
  # @ woocommerce-germanized
4342
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:724
4343
  msgid "I hereby agree to the {link}direct debit mandate{/link}."
4344
  msgstr "Hiermit erteile ich das {link}SEPA Lastschriftmandat{/link}."
4345
 
4346
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:728
4347
  msgid "Enable pre-notification"
4348
  msgstr "Vorankündigung aktivieren"
4349
 
4350
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:729
4351
  msgid "Insert pre-notification text within the order confirmation email."
4352
  msgstr ""
4353
  "Fügt einen Standard-Text zur Vorankündigung des SEPA-Einzugs in die "
4354
  "Bestellbestätigung ein."
4355
 
4356
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:731
4357
  msgid ""
4358
  "This option inserts a standard text containing a pre-notification for the "
4359
  "customer."
4362
  "die Bestellbestätigung ein. In der Ankündigung wird u.a. ein konkreter "
4363
  "Fälligkeitstermin genannt."
4364
 
4365
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:735
4366
  msgid "Debit days"
4367
  msgstr "Fälligkeitstage"
4368
 
4369
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:737
4370
  msgid ""
4371
  "This option is used to calculate the debit date and is added to the order "
4372
  "date."
4376
  "hier eingestellten Anzahl Tage."
4377
 
4378
  # @ woocommerce-germanized
4379
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:741
4380
  msgid "Mask IBAN"
4381
  msgstr "IBAN maskieren"
4382
 
4383
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:742
4384
  msgid "Mask the IBAN within emails."
4385
  msgstr "IBAN in E-Mails maskieren."
4386
 
4387
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:744
4388
  msgid ""
4389
  "This will lead to masked IBANs within emails (replaced by *). All but last 4 "
4390
  "digits will be masked."
4392
  "Der IBAN wird in E-Mails (abgesehen von den letzten 4 Stellen) mit * "
4393
  "maskiert."
4394
 
4395
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:753
4396
  msgid "Remember"
4397
  msgstr "Bankdaten merken\t"
4398
 
4399
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:754
4400
  msgid "Remember account data for returning customers."
4401
  msgstr "Bankverbindung für registrierte Kunden speichern."
4402
 
4403
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:756
4404
  msgid "Save account data as user meta if user has/creates a customer account."
4405
  msgstr ""
4406
  "Speichert die Bankverbindung für registrierte Kunden in der user_meta "
4408
  "eigenständig aus."
4409
 
4410
  # @ woocommerce-germanized
4411
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:839
4412
  msgid "Please insert your SEPA account data."
4413
  msgstr "Bitte fügen Sie Ihre SEPA Kontoinformationen ein."
4414
 
4415
  # @ woocommerce-germanized
4416
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:849
4417
  msgid "Your IBAN seems to be invalid."
4418
  msgstr "Ihr IBAN scheint nicht gültig zu sein."
4419
 
4420
  # @ woocommerce-germanized
4421
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:851
4422
  msgid "Your IBAN's country code doesn’t match with your billing country."
4423
  msgstr "Der Ländercode des IBANs stimmt nicht mit dem Rechnungsland überein."
4424
 
4425
  # @ woocommerce-germanized
4426
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:855
4427
  msgid "Your BIC seems to be invalid."
4428
  msgstr "Ihr BIC/SWIFT scheint nicht gültig zu sein."
4429
 
4430
  # @ woocommerce-germanized
4431
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:867
4432
  msgid "Please accept the direct debit mandate."
4433
  msgstr "Bitte erteilen Sie das SEPA Lastschriftmandat."
4434
 
4435
  # @ woocommerce-germanized
4436
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:898
4437
  msgid "is invalid"
4438
  msgstr "ist ungültig"
4439
 
4440
  # @ woocommerce-germanized
4441
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:934
4442
  msgid "Awaiting Direct Debit Payment"
4443
  msgstr "Zahlung per Lastschrift ausstehend"
4444
 
4489
 
4490
  # @ woocommerce-germanized
4491
  #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:26
4492
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:95
4493
  msgid "Pay by Invoice"
4494
  msgstr "Rechnung"
4495
 
4501
 
4502
  # @ woocommerce-germanized
4503
  # @ woocommerce
4504
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:57
4505
+ #: woocommerce-germanized.php:582
4506
  msgid "Settings"
4507
  msgstr "Einstellungen"
4508
 
4509
  # @ woocommerce-germanized
4510
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:64
4511
  msgid "Automatically generate PDF invoices for this gateway?"
4512
  msgstr "PDF Rechnungen für diese Zahlungsart automatisch erstellen?"
4513
 
4514
  # @ woocommerce-germanized
4515
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:65
4516
  msgid ""
4517
  "By upgrading to the professional version you'll be able to automatically "
4518
  "generate PDF invoices to this payment gateway. Furthermore you'll benefit "
4526
  "Premium-Support via Ticket-System!"
4527
 
4528
  # @ woocommerce-germanized
4529
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:68
4530
  msgid "Learn more about PDF invoicing"
4531
  msgstr "Mehr über PDF-Rechnungen erfahren"
4532
 
4533
  # @ woocommerce-germanized
4534
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:88
4535
  msgid "Enable Pay by Invoice"
4536
  msgstr "Bezahlung auf Rechnung aktivieren"
4537
 
4538
  # @ woocommerce-germanized
4539
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:102
4540
  msgid ""
4541
  "You'll receive an invoice after your order. Please transfer the order amount "
4542
  "to our bank account within 14 days."
4545
  "den Gesamtbetrag innerhalb von 14 Tagen auf das dort angegebene Konto."
4546
 
4547
  # @ woocommerce-germanized
4548
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:113
4549
  msgid "Order Status"
4550
  msgstr "Bestellstatus"
4551
 
4552
  # @ woocommerce-germanized
4553
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:115
4554
  msgid ""
4555
  "Choose which order status should be applied after a customer has chosen to "
4556
  "pay by invoice."
4559
  "angewendet werden soll."
4560
 
4561
  # @ woocommerce-germanized
4562
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:121
4563
  msgid "Registered customers"
4564
  msgstr "Registrierte Kunden"
4565
 
4566
  # @ woocommerce-germanized
4567
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:122
4568
  msgid "Do only offer pay by invoice to registered/logged in customers."
4569
  msgstr "Biete diese Zahlungsart nur registrierten/eingeloggten Kunden an."
4570
 
4571
  # @ woocommerce-germanized
4572
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:124
4573
  msgid "This will enable Pay by Invoice to logged in customers only"
4574
  msgstr ""
4575
  "Diese Option erlaubt es dir, die Zahlungsart lediglich eingeloggten Kunden "
4576
  "zur Verfügung zu stellen"
4577
 
4578
  # @ woocommerce-germanized
4579
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:129
4580
  msgid "Customer limitation"
4581
  msgstr "Kunden Eingrenzung"
4582
 
4583
  # @ woocommerce-germanized
4584
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:130
4585
  msgid ""
4586
  "Do only offer pay by invoice to customers who have at least completed one "
4587
  "order."
5427
  msgstr "%s Kundenbewertungen"
5428
 
5429
  # @ woocommerce-germanized
5430
+ #: woocommerce-germanized.php:737
5431
  msgid "Order Confirmation"
5432
  msgstr "Bestellbestätigung"
5433
 
i18n/languages/woocommerce-germanized.mo CHANGED
Binary file
i18n/languages/woocommerce-germanized.po CHANGED
@@ -1,1689 +1,3816 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce Germanized\n"
4
- "POT-Creation-Date: 2015-05-26 08:37+0100\n"
5
- "PO-Revision-Date: 2017-10-04 11:49+0200\n"
6
  "Last-Translator: holzhannes <holzhannes@posteo.de>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.0.2\n"
13
- "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e;_x\n"
16
- "X-Poedit-SearchPath-0: /Users/dennis/Documents/localhost/vendidero/wp-"
17
- "content/plugins/woocommerce-germanized\n"
 
 
 
18
 
19
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/i18n/units.php:16
 
 
 
 
 
 
 
 
 
 
 
 
20
  msgid "kg"
21
  msgstr ""
22
 
23
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/i18n/units.php:17
24
  msgid "g"
25
  msgstr ""
26
 
27
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/i18n/units.php:18
28
  msgid "lbs"
29
  msgstr ""
30
 
31
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/i18n/units.php:19
32
  msgid "oz"
33
  msgstr ""
34
 
35
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/i18n/units.php:20
36
  msgid "m"
37
  msgstr ""
38
 
39
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/i18n/units.php:21
40
  msgid "cm"
41
  msgstr ""
42
 
43
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/i18n/units.php:22
44
  msgid "mm"
45
  msgstr ""
46
 
47
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/i18n/units.php:23
48
  msgid "in"
49
  msgstr ""
50
 
51
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/i18n/units.php:24
52
  msgid "yd"
53
  msgstr ""
54
 
55
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/i18n/units.php:25
56
  msgid "ml"
57
  msgstr ""
58
 
59
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/i18n/units.php:26
60
  msgid "l"
61
  msgstr ""
62
 
63
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:126
64
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:159
65
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/woocommerce-germanized.php:809
 
 
66
  msgid "incl. VAT"
67
  msgstr ""
68
 
69
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:126
70
  msgid "excl. VAT"
71
  msgstr ""
72
 
73
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:127
74
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:159
75
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/woocommerce-germanized.php:809
76
  #, php-format
77
  msgid "incl. %s%% VAT"
78
  msgstr ""
79
 
80
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:127
81
  #, php-format
82
  msgid "excl. %s%% VAT"
83
  msgstr ""
84
 
85
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-customer.php:46
86
  msgid "Double opt in"
87
  msgstr ""
88
 
89
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-customer.php:50
90
  msgid "Yes, customer opted in"
91
  msgstr ""
92
 
93
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-welcome.php:53
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
94
  msgid "About WooCommerce Germanized"
95
  msgstr ""
96
 
97
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-welcome.php:54
 
98
  msgid "Welcome to WooCommerce Germanized"
99
  msgstr ""
100
 
101
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-welcome.php:254
102
  msgid "Go to WooCommerce Germanized Settings"
103
  msgstr ""
104
 
105
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:28
106
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:37
107
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:22
108
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:31
109
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-dependencies.php:32
110
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-dependencies.php:41
111
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-hook-priorities.php:33
112
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-hook-priorities.php:42
113
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/woocommerce-germanized.php:82
114
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/woocommerce-germanized.php:91
115
- msgid "Cheatin&#8217; huh?"
 
 
 
 
 
 
 
 
 
 
 
 
116
  msgstr ""
117
 
118
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:64
119
  msgid "Optional Email Content"
120
  msgstr ""
121
 
122
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:73
123
  msgid "Add content which will be replacing default page content within emails."
124
  msgstr ""
125
 
126
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:82
127
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:66
128
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:125
129
  msgid "Optional Mini Description"
130
  msgstr ""
131
 
132
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:87
133
  msgid ""
134
  "This content will be shown as short product description within checkout and "
135
  "emails."
136
  msgstr ""
137
 
138
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:36
139
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:83
140
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:33
141
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:66
142
- msgid "Unit"
143
  msgstr ""
144
 
145
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:38
146
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:85
147
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:113
148
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:93
149
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:441
150
- msgid "None"
151
  msgstr ""
152
 
153
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:45
154
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:92
155
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:34
156
- msgid "Unit Base"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
157
  msgstr ""
158
 
159
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:49
160
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:98
161
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:35
 
 
 
 
 
 
 
 
 
 
 
 
 
162
  msgid "Regular Unit Price"
163
  msgstr ""
164
 
165
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:53
166
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:102
167
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:36
168
  msgid "Sale Unit Price"
169
  msgstr ""
170
 
171
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:59
172
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:108
173
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:43
174
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:37
 
175
  msgid "Delivery Time"
176
  msgstr ""
177
 
178
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:60
179
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:44
180
- msgid "Search for a delivery time&hellip;"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
181
  msgstr ""
182
 
183
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:33
 
 
 
 
 
 
 
184
  msgid "Select unit"
185
  msgstr ""
186
 
187
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:33
188
  msgid "Needed if selling on a per unit basis"
189
  msgstr ""
190
 
191
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:34
192
- msgid "Unit price per amount (e.g. 100)"
193
  msgstr ""
194
 
195
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:25
196
- msgid "Germanized"
197
  msgstr ""
198
 
199
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:40
200
- #, php-format
201
- msgid "Invoices & Packing Slips %s"
 
202
  msgstr ""
203
 
204
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:41
205
- #, php-format
206
- msgid "Terms & Conditions generator %s"
207
  msgstr ""
208
 
209
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:42
210
- #, php-format
211
- msgid "Revocation generator %s"
212
  msgstr ""
213
 
214
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:80
215
- msgid "General Options"
216
  msgstr ""
217
 
218
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:81
219
- msgid "Display Options"
 
220
  msgstr ""
221
 
222
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:113
223
- #, php-format
224
- msgid "Attach %s"
225
  msgstr ""
226
 
227
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:114
 
 
 
 
228
  #, php-format
229
- msgid "Attach %s to the following email templates"
230
  msgstr ""
231
 
232
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:127
233
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:450
234
- msgid "General"
235
  msgstr ""
236
 
237
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:130
238
- msgid "Small-Enterprise-Regulation"
 
239
  msgstr ""
240
 
241
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:131
242
- msgid "VAT based on &#167;19 UStG"
 
243
  msgstr ""
244
 
245
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:135
246
  #, php-format
247
- msgid ""
248
- "set this Option if you have chosen <a href=\"%s\" target=\"_blank\">&#167;19 "
249
- "UStG</a>"
250
  msgstr ""
251
 
252
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:139
253
- msgid "Show no VAT notice"
254
  msgstr ""
255
 
256
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:140
257
- msgid "Show no VAT &#167;19 UStG notice on single product"
 
 
 
 
 
 
 
 
 
 
258
  msgstr ""
259
 
260
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:147
 
 
 
 
 
261
  msgid "Submit Order Button Text"
262
  msgstr ""
263
 
264
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:148
265
  msgid "This text serves as Button text for the Order Submit Button."
266
  msgstr ""
267
 
268
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:153
269
  msgid "Buy Now"
270
  msgstr ""
271
 
272
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:157
273
  msgid "Phone as required field"
274
  msgstr ""
275
 
276
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:158
277
  msgid "Should phone number be a required field within checkout?"
278
  msgstr ""
279
 
280
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:165
281
  msgid "Add title field"
282
  msgstr ""
283
 
284
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:166
285
  msgid "Add a title field to the address within checkout?"
286
  msgstr ""
287
 
288
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:174
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
289
  msgid "Contract"
290
  msgstr ""
291
 
292
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:174
293
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:416
294
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:428
295
  #, php-format
296
  msgid "%sUpgrade to %spro%s%s to unlock this feature and get premium support."
297
  msgstr ""
298
 
299
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:186
 
300
  msgid "Legal Pages"
301
  msgstr ""
302
 
303
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:189
304
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:343
305
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-core-functions.php:40
306
- msgid "Terms & Conditions"
307
- msgstr ""
308
-
309
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:190
310
  msgid "This page should contain your terms & conditions."
311
  msgstr ""
312
 
313
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:196
314
  #, php-format
315
  msgid "Don't have terms & conditions yet? <a href=\"%s\">Generate now</a>!"
316
  msgstr ""
317
 
318
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:200
319
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:348
320
- msgid "Power of Revocation"
321
- msgstr ""
322
-
323
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:201
324
  msgid ""
325
  "This page should contain information regarding your customer's Right of "
326
  "Revocation."
327
  msgstr ""
328
 
329
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:207
330
  #, php-format
331
  msgid "Don't have a revocation page yet? <a href=\"%s\">Generate now</a>!"
332
  msgstr ""
333
 
334
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:211
335
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:338
336
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-core-functions.php:46
337
- msgid "Imprint"
338
- msgstr ""
339
-
340
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:212
341
  msgid "This page should contain an imprint with your company's information."
342
  msgstr ""
343
 
344
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:222
345
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:333
346
- msgid "Data Security Statement"
347
- msgstr ""
348
-
349
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:223
350
  msgid ""
351
  "This page should contain information regarding your data security policy."
352
  msgstr ""
353
 
354
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:233
355
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:358
356
- msgid "Payment Methods"
357
- msgstr ""
358
-
359
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:234
360
  msgid ""
361
  "This page should contain information regarding the Payment Methods that are "
362
  "chooseable during checkout."
363
  msgstr ""
364
 
365
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:244
366
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:353
367
- msgid "Shipping Methods"
368
- msgstr ""
369
-
370
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:245
371
  msgid ""
372
  "This page should contain information regarding shipping methods that are "
373
  "chooseable during checkout."
374
  msgstr ""
375
 
376
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:256
377
- msgid "Delivery Times"
378
- msgstr ""
379
-
380
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:259
381
- msgid "Default Delivery Time"
382
  msgstr ""
383
 
384
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:260
 
385
  msgid ""
386
- "This delivery time will be added to every product if no delivery time has "
387
- "been chosen individually"
388
- msgstr ""
389
-
390
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:271
391
- msgid "Delivery Time Text"
392
  msgstr ""
393
 
394
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:272
395
  msgid ""
396
- "This text will be used to indicate delivery time for products. Use "
397
- "{delivery_time} as placeholder."
 
 
 
398
  msgstr ""
399
 
400
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:277
401
- msgid "Delivery time: {delivery_time}"
402
  msgstr ""
403
 
404
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:282
405
- msgid "Shipping Costs"
406
  msgstr ""
407
 
408
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:285
409
- msgid "Shipping Costs Text"
410
  msgstr ""
411
 
412
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:286
413
- msgid ""
414
- "This text will be used to inform the customer about shipping costs. Use "
415
- "{link}{/link} to insert link to shipping costs page."
416
  msgstr ""
417
 
418
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:291
419
- msgid "plus {link}Shipping Costs{/link}"
 
 
 
 
 
420
  msgstr ""
421
 
422
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:295
423
- msgid "Shipping Costs Tax"
 
 
 
 
424
  msgstr ""
425
 
426
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:296
427
- msgid "Enable better taxation for shpping costs?"
 
 
 
 
428
  msgstr ""
429
 
430
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:300
431
- #, php-format
432
  msgid ""
433
- "By choosing this option shipping cost taxation will be calculated based on "
434
- "tax rates within cart. Imagine the following example. Further information "
435
- "can be found <a href=\"%s\" target=\"_blank\">here</a>. %s"
 
 
436
  msgstr ""
437
 
438
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:304
439
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:326
440
- msgid "Force Tax Calculation"
441
  msgstr ""
442
 
443
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:305
444
- msgid "Force shipping costs tax calculation for every method?"
445
  msgstr ""
446
 
447
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:309
448
- msgid ""
449
- "This option will overwrite settings for each individual shipping method to "
450
- "force tax calculation (instead of only calculating tax for those methods "
451
- "which are taxeable)."
452
  msgstr ""
453
 
454
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:314
455
- msgid "Fees"
 
456
  msgstr ""
457
 
458
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:317
459
- msgid "Fee Tax"
460
  msgstr ""
461
 
462
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:318
463
- msgid "Enable better taxation for fees?"
464
  msgstr ""
465
 
466
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:322
467
- msgid ""
468
- "By choosing this option fee taxation will be calculated based on tax rates "
469
- "within cart. See shipping costs taxation for more information."
470
  msgstr ""
471
 
472
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:327
473
- msgid "Force fee tax calculation for every fee?"
474
  msgstr ""
475
 
476
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:331
 
477
  msgid ""
478
- "This option will overwrite settings for each individual fee to force tax "
479
- "calculation (instead of only calculating tax for those fees which are "
480
- "taxeable)."
481
  msgstr ""
482
 
483
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:336
484
- msgid "Customers"
485
  msgstr ""
486
 
487
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:339
488
- msgid "Customer Double Opt In"
489
  msgstr ""
490
 
491
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:340
492
- msgid "Enable customer double opt in on registration?"
 
493
  msgstr ""
494
 
495
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:341
496
- #, php-format
497
  msgid ""
498
- "If customer chooses to create a customer account an email with an activation "
499
- "link will be sent by mail. Customer account will be marked as activated if "
500
- "user clicks on the link within the email. More information on this topic can "
501
- "be found <a href=\"%s\" target=\"_blank\">here</a>."
502
- msgstr ""
503
-
504
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:348
505
- msgid "Delete Unactivated After"
506
  msgstr ""
507
 
508
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:349
 
509
  msgid ""
510
- "This will make sure unactivated customer accounts will be deleted after X "
511
- "days. Set to 0 if you don't want to automatically delete unactivated "
512
- "customers."
513
  msgstr ""
514
 
515
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:350
516
- msgid "days"
517
  msgstr ""
518
 
519
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:359
520
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:518
521
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:551
522
- msgid "Unit Price"
523
  msgstr ""
524
 
525
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:362
526
- msgid "Unit Price Text"
527
  msgstr ""
528
 
529
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:363
530
  msgid ""
531
- "This text will be used to display the unit price. Use {price} to insert the "
532
- "price."
 
533
  msgstr ""
534
 
535
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:368
536
- msgid "{price}"
 
 
537
  msgstr ""
538
 
539
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:373
540
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-core-functions.php:43
541
- msgid "Right of Recission"
542
  msgstr ""
543
 
544
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:376
545
- msgid "Revocation Address"
546
  msgstr ""
547
 
548
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:377
549
- msgid ""
550
- "Type in an address, telephone/telefax number, email address which is to be "
551
- "used as revocation address"
552
  msgstr ""
553
 
554
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:386
555
- msgid "E-Mails"
556
  msgstr ""
557
 
558
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:403
559
- msgid "Virtual VAT"
 
560
  msgstr ""
561
 
562
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:406
563
- msgid "Enable Virtual VAT"
 
 
564
  msgstr ""
565
 
566
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:407
567
- msgid ""
568
- "Enable if you want to charge your customer's countries' VAT for virtual "
569
- "products."
570
  msgstr ""
571
 
572
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:411
573
- #, php-format
574
- msgid ""
575
- "New EU VAT rule applies on 01.01.2015. Make sure that every digital or "
576
- "virtual product has chosen the right tax class (Virtual Rate or Virtual "
577
- "Reduced Rate). Gross prices will not differ from the prices you have chosen "
578
- "for affected products. In fact the net price will differ depending on the "
579
- "VAT rate of your customers' country. Shop settings will be adjusted to show "
580
- "prices including tax. More information can be found <a href=\"%s\" target="
581
- "\"_blank\">here</a>."
582
  msgstr ""
583
 
584
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:416
585
- msgid "Invoices"
 
 
586
  msgstr ""
587
 
588
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:428
589
- msgid "VAT"
590
  msgstr ""
591
 
592
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:453
593
- msgid "Add to Cart"
 
594
  msgstr ""
595
 
596
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:454
597
- msgid "Show add to cart button on listings?"
598
  msgstr ""
599
 
600
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:458
601
  msgid ""
602
- "unset this option if you don't want to show the add to cart button within "
603
- "the product listings"
604
  msgstr ""
605
 
606
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:462
607
- msgid "Link to Details"
 
608
  msgstr ""
609
 
610
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:463
611
- msgid ""
612
- "Want to link to product details page instead of add to cart within listings?"
613
  msgstr ""
614
 
615
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:467
616
  msgid ""
617
- "Decide whether you like to link to your product's details page instead of "
618
- "displaying an add to cart button within product listings."
619
  msgstr ""
620
 
621
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:471
622
- msgid "Product Details Text"
623
  msgstr ""
624
 
625
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:473
626
- msgid "Details"
627
  msgstr ""
628
 
629
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:475
630
  msgid ""
631
- "If you have chosen to link to product details page instead of add to cart "
632
- "URL you may want to change the button text."
633
  msgstr ""
634
 
635
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:480
636
- msgid "Notice Footer"
637
  msgstr ""
638
 
639
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:481
640
- msgid "Show a global VAT notice within footer"
641
  msgstr ""
642
 
643
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:489
644
- msgid "Show a global sale price notice within footer"
 
 
 
645
  msgstr ""
646
 
647
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:498
648
- msgid "Products"
649
  msgstr ""
650
 
651
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:501
652
- msgid "Show within Product Listings"
653
  msgstr ""
654
 
655
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:502
656
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:535
657
- msgid "Shipping Costs notice"
 
 
 
658
  msgstr ""
659
 
660
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:510
661
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:543
662
- msgid "Tax Info"
663
  msgstr ""
664
 
665
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:526
666
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:559
667
- msgid "Delivery Time Notice"
668
  msgstr ""
669
 
670
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:534
671
- msgid "Show on Product Detail Page"
 
 
 
 
 
 
 
 
 
 
 
672
  msgstr ""
673
 
674
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:567
675
- msgid "Shipping Costs for Virtual"
676
  msgstr ""
677
 
678
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:568
679
  msgid ""
680
- "Select this option if you want to display shipping costs notice for virtual "
681
- "products."
682
  msgstr ""
683
 
684
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:576
685
- msgid "Checkout & Cart"
686
  msgstr ""
687
 
688
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:581
689
- msgid "Fallback Mode"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
690
  msgstr ""
691
 
692
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:582
693
  msgid ""
694
- "Enable to make sure default review-order.php is not being overriden by theme."
 
 
 
695
  msgstr ""
696
 
697
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:586
698
  msgid ""
699
- "If you are facing problems within your checkout e.g. legally relevant data "
700
- "is not showing (terms, delivery time, unit price etc.) your theme seems to "
701
- "be incompatible (not using default WooCommerce hooks and filters). As a "
702
- "workaround you may use this fallback which ensures default review-order.php "
703
- "is used."
704
  msgstr ""
705
 
706
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:592
707
- msgid "Hide taxes estimated"
708
  msgstr ""
709
 
710
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:593
711
  msgid ""
712
- "Do you want to hide the \"taxes and shipping estimated\" text from your cart?"
713
  msgstr ""
714
 
715
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:597
716
  msgid ""
717
- "By default WooCommerce adds a \"taxes and shipping estimated\" text to your "
718
- "cart. This might puzzle your customers and may not meet german law."
 
719
  msgstr ""
720
 
721
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:601
722
- msgid "Show Thumbnails"
723
  msgstr ""
724
 
725
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:602
726
- msgid "Show product thumbnails on checkout page?"
727
  msgstr ""
728
 
729
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:606
 
730
  msgid ""
731
- "Uncheck if you don't want to show your product thumbnails within checkout "
732
- "table."
 
 
733
  msgstr ""
734
 
735
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:610
736
- msgid "Hide Shipping Select"
737
  msgstr ""
738
 
739
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:611
740
- msgid "Hide shipping rate selection from checkout?"
741
  msgstr ""
742
 
743
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:615
744
  msgid ""
745
- "This option will hide shipping rate selection from checkout. By then "
746
- "customers will only be able to change their shipping rate on cart page."
747
  msgstr ""
748
 
749
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:619
750
- msgid "Show back to cart button"
751
  msgstr ""
752
 
753
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:620
754
- msgid "Show back to cart button within your checkout table?"
 
 
 
755
  msgstr ""
756
 
757
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:624
758
- msgid ""
759
- "This button may let your customer edit their order before submitting. Some "
760
- "people state that this button should be hidden to avoid legal problems."
761
  msgstr ""
762
 
763
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:628
764
- msgid "Show edit data notice"
 
765
  msgstr ""
766
 
767
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:629
768
- msgid "Show a \"check-your-entries\" notice to the user?"
769
  msgstr ""
770
 
771
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:633
772
- msgid "This notice will be added right before the order comments field."
 
 
773
  msgstr ""
774
 
775
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:637
776
- msgid "Checkout Table Color"
 
777
  msgstr ""
778
 
779
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:639
 
 
 
 
780
  msgid ""
781
- "Choose the color of your checkout product table. This table should be "
782
- "highlighted within your checkout page."
783
  msgstr ""
784
 
785
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:645
786
- msgid "Checkout Legal Display"
 
 
 
 
 
 
 
 
787
  msgstr ""
788
 
789
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:646
790
- msgid "Use Text without Checkbox"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
791
  msgstr ""
792
 
793
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:648
794
  msgid ""
795
- "This version will remove checkboxes from Checkout and display a text "
796
- "instead. This seems to be legally compliant (Zalando & Co are using this "
797
- "option)."
798
  msgstr ""
799
 
800
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:654
801
- msgid "Legal Text"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
802
  msgstr ""
803
 
804
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:655
805
  msgid ""
806
- "Choose a Plain Text which will be shown right above checkout submit button. "
807
- "Use {term_link}{/term_link}, {data_security_link}{/data_security_link}, "
808
- "{revocation_link}{/revocation_link} as Placeholders for the links to legal "
809
- "pages."
810
  msgstr ""
811
 
812
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:657
813
  msgid ""
814
- "With your order, you agree to have read and understood our {term_link}Terms "
815
- "and Conditions{/term_link} and your {revocation_link}Right of Recission{/"
816
- "revocation_link}."
817
  msgstr ""
818
 
819
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:664
820
- msgid "Legal Text Error"
821
  msgstr ""
822
 
823
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:665
 
824
  msgid ""
825
- "If you have chosen to use checkbox validation please choose a error message "
826
- "which will be shown if the user doesn't check checkbox. Use {term_link}{/"
827
- "term_link}, {data_security_link}{/data_security_link}, {revocation_link}{/"
828
- "revocation_link} as Placeholders for the links to legal pages."
829
  msgstr ""
830
 
831
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:667
832
- msgid ""
833
- "To finish the order you have to accept to our {term_link}Terms and "
834
- "Conditions{/term_link} and {revocation_link}Right of Recission{/"
835
- "revocation_link}."
836
  msgstr ""
837
 
838
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:674
839
- msgid "Show digital notice"
840
  msgstr ""
841
 
842
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:675
843
- msgid "Show checkbox for digital products."
844
  msgstr ""
845
 
846
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:676
 
 
 
 
847
  msgid ""
848
- "Disable this option if you want your customers to obtain their right of "
849
- "recission even if digital products are being bought."
850
  msgstr ""
851
 
852
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:683
853
- msgid "Legal Digital Text"
854
  msgstr ""
855
 
856
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:684
857
  msgid ""
858
- "Choose a Plain Text which will be shown right above checkout submit button "
859
- "if a user has picked a digital product. See legal text option for possible "
860
- "placeholders."
861
  msgstr ""
862
 
863
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:686
864
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:194
865
  msgid ""
866
- "I want immediate access to the digital content and I acknowledge that "
867
- "thereby I lose my right to cancel once the service has begun."
868
  msgstr ""
869
 
870
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:693
871
- msgid "Order Success Text"
872
  msgstr ""
873
 
874
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:694
875
- msgid "Choose a custom text to display on order success page."
876
  msgstr ""
877
 
878
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:702
879
- msgid "Order Success Data"
 
 
880
  msgstr ""
881
 
882
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:703
883
- msgid "Hide product table and customer data on order success page"
884
  msgstr ""
885
 
886
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:804
887
  msgid ""
888
- "Sorry, but the new Virtual VAT rules cannot be applied to small business."
 
889
  msgstr ""
890
 
891
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-install.php:13
892
- msgid "<strong>Welcome to WooCommerce Germanized</strong>"
893
  msgstr ""
894
 
895
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-install.php:14
896
- msgid ""
897
- "Just a few more steps and your Online-Shop will become legally compliant:"
898
  msgstr ""
899
 
900
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-install.php:19
901
- msgid "Germanize WooCommerce"
902
  msgstr ""
903
 
904
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-install.php:23
905
- msgid ""
906
- "We will adjust WooCommerce Settings for you e.g.: EUR, German Price Format "
907
- "etc."
908
  msgstr ""
909
 
910
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-install.php:28
911
- msgid "Generate Legal Pages"
912
  msgstr ""
913
 
914
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-install.php:32
915
- msgid ""
916
- "We will automatically add legal pages such as Data Privacy Statement, Power "
917
- "of Revocation, Terms & Conditions etc."
918
  msgstr ""
919
 
920
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-install.php:37
921
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-update.php:19
922
- msgid "Generate EU VAT Rates"
923
  msgstr ""
924
 
925
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-install.php:41
926
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-update.php:23
927
- msgid "We will automatically insert EU VAT Rates for selling virtual products."
 
 
 
928
  msgstr ""
929
 
930
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-install.php:49
931
- msgid "Install WooCommerce Germanized"
932
  msgstr ""
933
 
934
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-install.php:49
935
- msgid "Skip setup"
936
  msgstr ""
937
 
938
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-review.php:14
939
- msgid "Do you like WooCommerce Germanized?"
940
  msgstr ""
941
 
942
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-review.php:16
943
  msgid ""
944
- "If you like WooCommerce Germanized and our Plugin does a good job it would "
945
- "be great if you would write a review about WooCommerce Germanized on "
946
- "WordPress.org. Thank you for your support!"
947
  msgstr ""
948
 
949
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-review.php:19
950
- msgid "Write review now"
951
  msgstr ""
952
 
953
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-review.php:20
954
- msgid "Found Bugs?"
 
 
955
  msgstr ""
956
 
957
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-review.php:23
958
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-theme-incompatibility.php:20
959
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-theme-not-ready.php:20
960
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-theme-supported.php:22
961
- msgid "Hide this notice"
962
  msgstr ""
963
 
964
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-theme-incompatibility.php:14
965
- msgid "Theme incompatibility found"
 
 
966
  msgstr ""
967
 
968
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-theme-incompatibility.php:15
969
- #, php-format
 
 
 
970
  msgid ""
971
- "It seems like your theme tries to overwrite legally relevant templates. "
972
- "Please review your checkout page. Some things might look weird because "
973
- "WooCommerce Germanized had to stop template overriding for legal purposes "
974
- "(Critical templates: %s). See <a href=\"%s\" target=\"_blank\">making your "
975
- "theme compatible</a> or check out our Theme <a href=\"%s\" target=\"_blank"
976
- "\">VendiPro</a> for 100&#37; compatibility."
977
  msgstr ""
978
 
979
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-theme-incompatibility.php:17
980
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-theme-not-ready.php:17
981
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-theme-supported.php:19
982
- msgid "Get VendiPro now"
983
  msgstr ""
984
 
985
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-theme-not-ready.php:14
986
- msgid "Theme not yet ready"
987
  msgstr ""
988
 
989
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-theme-not-ready.php:15
990
- #, php-format
 
 
 
 
 
 
 
991
  msgid ""
992
- "It seems like your theme is not yet ready for WooCommerce Germanized. Please "
993
- "check your theme's styles. Some things might look weird - WooCommerce "
994
- "Germanized can only offer basic styles. See <a href=\"%s\" target=\"_blank"
995
- "\">making your theme compatible</a> or check out our Theme <a href=\"%s\" "
996
- "target=\"_blank\">VendiPro</a> for 100&#37; compatibility."
997
  msgstr ""
998
 
999
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-theme-supported.php:14
1000
- #, php-format
1001
- msgid "Enable full %s support"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1002
  msgstr ""
1003
 
1004
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-theme-supported.php:15
1005
- #, php-format
1006
- msgid ""
1007
- "Your current theme %s needs some adaptions to seamlessly integrate with "
1008
- "WooCommerce Germanized. Our Pro Version will <strong>enable support for %s</"
1009
- "strong> and makes sure WooCommerce Germanized settings are shown and styled "
1010
- "within frontend for a better user experience. A better user experience will "
1011
- "help you selling more products."
1012
  msgstr ""
1013
 
1014
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-theme-supported.php:17
1015
- #, php-format
1016
- msgid "Enable support for %s"
1017
  msgstr ""
1018
 
1019
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-theme-supported.php:18
1020
- msgid "or"
1021
  msgstr ""
1022
 
1023
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-update.php:13
1024
- msgid "<strong>Update WooCommerce Germanized</strong>"
1025
  msgstr ""
1026
 
1027
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-update.php:14
1028
- msgid ""
1029
- "If you are selling virtual products to EU countries different from your base "
1030
- "country, you will have to charge the customers country VAT rate by "
1031
- "01.01.2015. If you want to install EU VAT rates automatically please choose "
1032
- "the option below."
1033
  msgstr ""
1034
 
1035
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-notice-update.php:31
1036
- msgid "Update WooCommerce Germanized"
1037
  msgstr ""
1038
 
1039
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-settings-pro.php:23
1040
- msgid "Get WooCommerce Germanized Pro to unlock"
1041
  msgstr ""
1042
 
1043
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-settings-pro.php:24
1044
- msgid ""
1045
- "Enjoy even more professional features such as invoices, legal text "
1046
- "generators, B2B VAT settings and premium support!"
1047
  msgstr ""
1048
 
1049
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-settings-pro.php:25
1050
- msgid "Upgrade now"
1051
  msgstr ""
1052
 
1053
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-ajax.php:58
1054
  #, php-format
1055
- msgid "%s [new]"
 
 
1056
  msgstr ""
1057
 
1058
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-ajax.php:79
1059
- msgid "is not a valid email address."
1060
  msgstr ""
1061
 
1062
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-ajax.php:82
1063
- msgid "Please enter a valid postcode/ZIP"
1064
  msgstr ""
1065
 
1066
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-ajax.php:85
1067
- msgid "is not valid."
 
 
 
 
 
1068
  msgstr ""
1069
 
1070
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-ajax.php:100
1071
  msgid ""
1072
- "Thank you. We have received your Revocation Request. You will receive a "
1073
- "conformation email within a few minutes."
1074
  msgstr ""
1075
 
1076
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:62
1077
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:73
1078
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:38
1079
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/widgets/class-wc-gzd-widget-trusted-shops-reviews.php:26
1080
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/widgets/class-wc-gzd-widget-trusted-shops-rich-snippets.php:26
1081
- msgid "Title"
1082
  msgstr ""
1083
 
1084
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:63
1085
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:71
1086
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:41
1087
- msgid "Sir"
1088
  msgstr ""
1089
 
1090
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:63
1091
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:71
1092
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:42
1093
- msgid "Madam"
1094
  msgstr ""
1095
 
1096
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-ekomi.php:41
1097
- msgid "eKomi Customer"
 
 
1098
  msgstr ""
1099
 
1100
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-ekomi.php:312
1101
- msgid "Ekomi Integration"
1102
  msgstr ""
1103
 
1104
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-ekomi.php:315
1105
- msgid "Shop ID"
1106
  msgstr ""
1107
 
1108
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-ekomi.php:316
1109
- msgid "Insert your Shop ID here."
1110
  msgstr ""
1111
 
1112
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-ekomi.php:324
1113
- msgid "Link to Certificate"
 
 
1114
  msgstr ""
1115
 
1116
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-ekomi.php:325
1117
- msgid "Insert the link to your Certificate"
1118
  msgstr ""
1119
 
1120
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-ekomi.php:333
1121
- msgid "Partner ID"
1122
  msgstr ""
1123
 
1124
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-ekomi.php:334
1125
- msgid ""
1126
- "Insert your Partner ID here (you may find that ID on your certificate "
1127
- "website)"
1128
  msgstr ""
1129
 
1130
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-ekomi.php:342
1131
- msgid "Interface ID"
 
 
1132
  msgstr ""
1133
 
1134
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-ekomi.php:343
1135
- msgid "Insert your Interface ID here."
1136
  msgstr ""
1137
 
1138
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-ekomi.php:351
1139
- msgid "Interface Password"
 
 
1140
  msgstr ""
1141
 
1142
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-ekomi.php:352
1143
- msgid "Insert your Interface Password here."
1144
  msgstr ""
1145
 
1146
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-ekomi.php:360
1147
- msgid "Days until Email"
1148
  msgstr ""
1149
 
1150
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-ekomi.php:361
1151
  msgid ""
1152
- "Number of days between an order being marked as completed and review email "
1153
- "to customer."
1154
  msgstr ""
1155
 
1156
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-ekomi.php:376
1157
- msgid "eKomi Options"
1158
  msgstr ""
1159
 
1160
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-emails.php:175
1161
- msgid "Forward your Revocation online"
1162
  msgstr ""
1163
 
1164
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:107
1165
- #, php-format
1166
- msgid ""
1167
- "Please install <a href=\"%s\" target=\"_blank\">WooCommerce</a> before "
1168
- "installing WooCommerce Germanized. Thank you!"
1169
  msgstr ""
1170
 
1171
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:332
1172
- msgid "data-security"
1173
  msgstr ""
1174
 
1175
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:337
1176
- msgid "imprint"
1177
  msgstr ""
1178
 
1179
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:342
1180
- msgid "terms"
1181
  msgstr ""
1182
 
1183
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:347
1184
- msgid "revocation"
1185
  msgstr ""
1186
 
1187
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:352
1188
- msgid "shipping-methods"
1189
  msgstr ""
1190
 
1191
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:357
1192
- msgid "payment-methods"
1193
  msgstr ""
1194
 
1195
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:39
1196
- #, php-format
1197
- msgid "Plus %s payment charge."
1198
  msgstr ""
1199
 
1200
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:57
1201
  #, php-format
1202
- msgid "plus %s payment charge"
 
 
 
1203
  msgstr ""
1204
 
1205
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:81
1206
- msgid "Fee"
 
 
 
1207
  msgstr ""
1208
 
1209
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:83
 
1210
  msgid ""
1211
- "This fee is being added if customer selects payment method within checkout."
 
1212
  msgstr ""
1213
 
1214
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:88
1215
- msgid "Fee is taxable?"
1216
  msgstr ""
1217
 
1218
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:90
1219
- msgid "Check if fee is taxable."
1220
  msgstr ""
1221
 
1222
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:121
1223
- msgid "Payment charge"
1224
  msgstr ""
1225
 
1226
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:33
1227
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:35
1228
- msgid "Product Delivery Times"
1229
  msgstr ""
1230
 
1231
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:36
1232
- msgid "Product Delivery Time"
1233
  msgstr ""
1234
 
1235
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:38
1236
- msgid "Search Delivery Times"
 
1237
  msgstr ""
1238
 
1239
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:39
1240
- msgid "All Product Delivery Times"
1241
  msgstr ""
1242
 
1243
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:40
1244
- msgid "Edit Product Delivery Time"
 
 
 
 
1245
  msgstr ""
1246
 
1247
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:41
1248
- msgid "Update Product Delivery Time"
1249
  msgstr ""
1250
 
1251
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:42
1252
- msgid "Add New Product Delivery Time"
1253
  msgstr ""
1254
 
1255
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:43
1256
- msgid "New Product Delivery Time Name"
 
 
1257
  msgstr ""
1258
 
1259
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:63
1260
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:65
1261
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:67
1262
- msgid "Units"
1263
  msgstr ""
1264
 
1265
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:68
1266
- msgid "Search Units"
 
 
1267
  msgstr ""
1268
 
1269
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:69
1270
- msgid "All Units"
1271
  msgstr ""
1272
 
1273
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:70
1274
- msgid "Edit Unit"
1275
  msgstr ""
1276
 
1277
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:71
1278
- msgid "Update Unit"
1279
  msgstr ""
1280
 
1281
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:72
1282
- msgid "Add New Unit"
1283
  msgstr ""
1284
 
1285
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:73
1286
- msgid "New Unit Name"
 
 
1287
  msgstr ""
1288
 
1289
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:22
1290
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-revocation.php:27
1291
- msgid "Revocation"
1292
  msgstr ""
1293
 
1294
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:24
1295
- msgid "Tip: Delete whatever entry does not apply, and provide, as needed"
1296
  msgstr ""
1297
 
1298
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:25
1299
- msgid ""
1300
- "I/We hereby give notice that I/We withdraw from my/our contract of sale of "
1301
- "the following goods/provision of the following service: "
1302
  msgstr ""
1303
 
1304
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:29
1305
- msgid "Received"
1306
  msgstr ""
1307
 
1308
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:33
1309
- msgid "Order Date"
1310
  msgstr ""
1311
 
1312
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:35
1313
- msgid "Customer Data"
1314
  msgstr ""
1315
 
1316
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:47
1317
- msgid "First Name"
 
 
1318
  msgstr ""
1319
 
1320
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:52
1321
- msgid "Last Name"
1322
  msgstr ""
1323
 
1324
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:57
1325
- msgid "Street"
1326
  msgstr ""
1327
 
1328
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:62
1329
- msgid "Postal Code"
1330
  msgstr ""
1331
 
1332
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:67
1333
- msgid "City"
1334
  msgstr ""
1335
 
1336
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:72
1337
- msgid "Country"
 
 
 
1338
  msgstr ""
1339
 
1340
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:78
1341
- msgid "Mail"
1342
  msgstr ""
1343
 
1344
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:51
1345
- msgid "Prepayment"
1346
  msgstr ""
1347
 
1348
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:52
1349
- msgid "Cash On Delivery"
1350
  msgstr ""
1351
 
1352
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:53
1353
- msgid "Credit Card"
1354
  msgstr ""
1355
 
1356
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:54
1357
- msgid "Paypal"
1358
  msgstr ""
1359
 
1360
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:55
1361
- msgid "Invoice"
 
 
1362
  msgstr ""
1363
 
1364
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:56
1365
- msgid "Direct Debit"
 
 
 
1366
  msgstr ""
1367
 
1368
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:57
1369
- msgid "Financing"
1370
  msgstr ""
1371
 
1372
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:230
1373
- #, php-format
1374
- msgid "%s ratings"
 
1375
  msgstr ""
1376
 
1377
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:231
1378
- #, php-format
1379
- msgid "Rated %s out of %s"
1380
  msgstr ""
1381
 
1382
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:233
1383
- #, php-format
1384
- msgid "out of %s"
1385
  msgstr ""
1386
 
1387
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:238
1388
- #, php-format
1389
- msgid "%s of %s based on %s <a href=\"%s\" target=\"_blank\">ratings</a>."
1390
  msgstr ""
1391
 
1392
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:252
1393
- msgid "Show customer reviews"
 
 
1394
  msgstr ""
1395
 
1396
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:299
1397
- msgid "Trusted Shops Customer Reviews"
1398
  msgstr ""
1399
 
1400
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:412
1401
- msgid "Review Collector"
1402
  msgstr ""
1403
 
1404
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:417
1405
- msgid "Export customer data"
1406
  msgstr ""
1407
 
1408
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:421
1409
- msgid "30 days"
 
1410
  msgstr ""
1411
 
1412
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:422
1413
- msgid "60 days"
 
1414
  msgstr ""
1415
 
1416
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:423
1417
- msgid "90 days"
1418
  msgstr ""
1419
 
1420
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:425
1421
- msgid "Start export"
1422
  msgstr ""
1423
 
1424
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:426
1425
- #, php-format
1426
- msgid ""
1427
- "Export your customer data and ask consumers for a review with the Trusted "
1428
- "Shops <a href=\"%s\" target=\"_blank\">Review Collector</a>."
1429
  msgstr ""
1430
 
1431
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:445
1432
- msgid "Trusted Shops Integration"
1433
  msgstr ""
1434
 
1435
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:448
1436
- msgid "TS-ID"
1437
  msgstr ""
1438
 
1439
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:449
1440
- msgid "Insert your Trusted Shops ID here."
 
 
 
 
 
 
1441
  msgstr ""
1442
 
1443
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:458
1444
- msgid "Configure the Trustbadge for your shop"
1445
  msgstr ""
1446
 
1447
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:458
1448
  #, php-format
1449
  msgid ""
1450
- "You'll find a step-by-step instruction for your shopsoftware in our "
1451
- "integration center. <a href=\"%s\" target=\"_blank\">Click here</a>"
 
 
 
1452
  msgstr ""
1453
 
1454
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:461
1455
- msgid "Trustbadge code"
1456
  msgstr ""
1457
 
1458
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:464
1459
- msgid "Fill in your trustbadge code here"
 
 
 
 
 
1460
  msgstr ""
1461
 
1462
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:464
1463
- msgid ""
1464
- "If no further steps were required in the integration center, the Trustbadge "
1465
- "is already displayed in your shop."
 
 
1466
  msgstr ""
1467
 
1468
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:471
1469
- msgid "Configure Customer Reviews"
1470
  msgstr ""
1471
 
1472
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:474
1473
  msgid "Enable Review Widget"
1474
  msgstr ""
1475
 
1476
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:475
1477
  #, php-format
1478
  msgid ""
1479
  "This option will enable a Widget which shows your Trusted Shops Reviews as a "
1480
  "graphic. You may configure your Widgets <a href=\"%s\">here</a>."
1481
  msgstr ""
1482
 
1483
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:483
1484
- msgid "Enable Rich Snippets for Google"
 
 
 
 
1485
  msgstr ""
1486
 
1487
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:484
1488
  msgid ""
1489
  "This option will update your reviews received via Trusted Shops once per day "
1490
- "and enables a Widget to show your reviews as Rich Snippets."
1491
  msgstr ""
1492
 
1493
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:492
1494
- msgid "Enable Review Reminder"
1495
  msgstr ""
1496
 
1497
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:493
1498
- msgid ""
1499
- "This option will enable a one-time email review reminder being sent to your "
1500
- "customer."
1501
  msgstr ""
1502
 
1503
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:501
1504
  msgid "Days until reminder"
1505
  msgstr ""
1506
 
1507
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:502
1508
  msgid ""
1509
  "Decide how many days after an order the email review reminder will be sent."
1510
  msgstr ""
1511
 
1512
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:512
1513
  msgid "Assign payment methods"
1514
  msgstr ""
1515
 
1516
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:542
1517
  #, php-format
1518
  msgid ""
1519
  "Choose a Trusted Shops Payment Gateway linked to WooCommerce Payment Gateway "
1520
  "%s"
1521
  msgstr ""
1522
 
1523
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:561
1524
  msgid "About Trusted Shops"
1525
  msgstr ""
1526
 
1527
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-trusted-shops.php:594
1528
- msgid "Trusted Shops Options"
1529
- msgstr ""
1530
-
1531
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-ekomi.php:24
1532
- msgid "eKomi Review Reminder"
1533
  msgstr ""
1534
 
1535
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-ekomi.php:25
1536
  msgid ""
1537
- "This E-Mail is being sent to a customer to transfer eKomi order review link "
1538
- "to a customer."
1539
  msgstr ""
1540
 
1541
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-ekomi.php:27
1542
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-trusted-shops.php:27
1543
- msgid "Please rate your Order"
1544
  msgstr ""
1545
 
1546
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-ekomi.php:28
1547
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-trusted-shops.php:28
1548
- msgid "Please rate your {site_title} order from {order_date}"
1549
  msgstr ""
1550
 
1551
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-new-account-activation.php:38
1552
- msgid "New account activation"
1553
  msgstr ""
1554
 
1555
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-new-account-activation.php:39
 
1556
  msgid ""
1557
- "Customer \"new account activation\" emails are sent to the customer when a "
1558
- "customer signs up via checkout or account pages. This mail is being used as "
1559
- "double opt in for new customer accounts."
1560
  msgstr ""
1561
 
1562
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-new-account-activation.php:44
1563
- msgid "Activate your account on {site_title}"
1564
  msgstr ""
1565
 
1566
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-new-account-activation.php:45
1567
- msgid "Account activation {site_title}"
1568
  msgstr ""
1569
 
1570
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-revocation.php:28
1571
- msgid "Email being sent if a customer fills out the revocation form."
1572
  msgstr ""
1573
 
1574
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-revocation.php:33
1575
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-revocation.php:34
1576
- msgid "Your Revocation"
1577
  msgstr ""
1578
 
1579
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-trusted-shops.php:24
1580
- msgid "Trusted Shops Review Reminder"
 
 
 
 
1581
  msgstr ""
1582
 
1583
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/emails/class-wc-gzd-email-customer-trusted-shops.php:25
 
1584
  msgid ""
1585
- "This E-Mail is being sent to a customer to remind him about the possibility "
1586
- "to leave a review at Trusted Shops."
1587
  msgstr ""
1588
 
1589
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-core-functions.php:49
1590
- msgid "Data Security"
1591
  msgstr ""
1592
 
1593
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-template-functions.php:116
1594
- msgid "Proceed to Checkout"
1595
  msgstr ""
1596
 
1597
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-template-functions.php:147
1598
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/edit-data-notice.php:16
1599
- msgid "Edit Order"
1600
  msgstr ""
1601
 
1602
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-template-functions.php:158
1603
- msgid "Choose a Payment Gateway"
1604
  msgstr ""
1605
 
1606
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-template-functions.php:216
1607
- msgid ""
1608
- "To get immediate access to digital content you have to agree to the losal of "
1609
- "your right to cancel."
1610
  msgstr ""
1611
 
1612
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-template-functions.php:363
1613
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/order-submit.php:24
1614
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/review-order-2-2.php:175
1615
- msgid "Place order"
 
 
1616
  msgstr ""
1617
 
1618
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/widgets/class-wc-gzd-widget-trusted-shops-reviews.php:19
 
 
 
 
1619
  msgid "Display your Trusted Shops Reviews as graphic."
1620
  msgstr ""
1621
 
1622
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/widgets/class-wc-gzd-widget-trusted-shops-reviews.php:21
1623
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/widgets/class-wc-gzd-widget-trusted-shops-reviews.php:25
1624
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/widgets/class-wc-gzd-widget-trusted-shops-reviews.php:47
1625
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/widgets/class-wc-gzd-widget-trusted-shops-rich-snippets.php:45
1626
  msgid "Trusted Shops Reviews"
1627
  msgstr ""
1628
 
1629
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/widgets/class-wc-gzd-widget-trusted-shops-rich-snippets.php:19
1630
  msgid "Display your Trusted Shops Reviews as Rich Snippets."
1631
  msgstr ""
1632
 
1633
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/widgets/class-wc-gzd-widget-trusted-shops-rich-snippets.php:21
1634
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/widgets/class-wc-gzd-widget-trusted-shops-rich-snippets.php:25
1635
  msgid "Trusted Shops Rich Snippets"
1636
  msgstr ""
1637
 
1638
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/edit-data-notice.php:16
1639
- #, php-format
1640
  msgid ""
1641
- "Please check all of your entries carefully. You may change your entries with "
1642
- "the help of the button \"%s\"."
1643
  msgstr ""
1644
 
1645
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/edit-data-notice.php:18
1646
- msgid ""
1647
- "Please check all of your entries carefully. You may change your entries with "
1648
- "the help of the \"Back\" button in your browser"
1649
  msgstr ""
1650
 
1651
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/form-pay-2-2.php:19
1652
- msgid "Payment"
 
1653
  msgstr ""
1654
 
1655
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/form-pay-2-2.php:44
1656
- msgid ""
1657
- "Sorry, it seems that there are no available payment methods for your "
1658
- "location. Please contact us if you require assistance or wish to make "
1659
- "alternate arrangements."
1660
  msgstr ""
1661
 
1662
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/form-pay-2-2.php:52
1663
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/review-order-2-2.php:63
1664
- msgid "Your order"
1665
  msgstr ""
1666
 
1667
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/form-pay-2-2.php:57
1668
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/review-order-2-2.php:70
1669
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/review-order-fallback.php:17
1670
- msgid "Product"
1671
  msgstr ""
1672
 
1673
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/form-pay-2-2.php:58
1674
- msgid "Qty"
1675
  msgstr ""
1676
 
1677
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/form-pay-2-2.php:59
1678
- msgid "Totals"
 
 
 
1679
  msgstr ""
1680
 
1681
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/form-pay-2-2.php:93
1682
- msgid "Pay for order"
 
 
1683
  msgstr ""
1684
 
1685
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/order-submit.php:17
1686
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/review-order-2-2.php:168
1687
  msgid ""
1688
  "Since your browser does not support JavaScript, or it is disabled, please "
1689
  "ensure you click the <em>Update Totals</em> button before placing your "
@@ -1691,56 +3818,18 @@ msgid ""
1691
  "do so."
1692
  msgstr ""
1693
 
1694
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/order-submit.php:17
1695
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/review-order-2-2.php:168
1696
- msgid "Update totals"
1697
- msgstr ""
1698
-
1699
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/order-submit.php:28
1700
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/review-order-2-2.php:184
1701
- #, php-format
1702
- msgid ""
1703
- "I&rsquo;ve read and accept the <a href=\"%s\" target=\"_blank\">terms &amp; "
1704
- "conditions</a>"
1705
- msgstr ""
1706
-
1707
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/review-order-2-2.php:51
1708
- msgid "Please fill in your details above to see available payment methods."
1709
- msgstr ""
1710
-
1711
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/review-order-2-2.php:53
1712
- msgid ""
1713
- "Sorry, it seems that there are no available payment methods for your state. "
1714
- "Please contact us if you require assistance or wish to make alternate "
1715
- "arrangements."
1716
- msgstr ""
1717
-
1718
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/review-order-2-2.php:71
1719
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/review-order-fallback.php:18
1720
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/review-order-fallback.php:97
1721
- msgid "Total"
1722
- msgstr ""
1723
-
1724
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/review-order-2-2.php:103
1725
- msgid "Cart Subtotal"
1726
- msgstr ""
1727
-
1728
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/review-order-2-2.php:157
1729
- msgid "Order Total"
1730
- msgstr ""
1731
-
1732
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/checkout/review-order-fallback.php:50
1733
- msgid "Subtotal"
1734
- msgstr ""
1735
-
1736
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/emails/customer-ekomi.php:18
1737
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/emails/customer-trusted-shops.php:18
1738
  #, php-format
1739
  msgid "Dear %s %s,"
1740
  msgstr ""
1741
 
1742
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/emails/customer-ekomi.php:19
1743
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/emails/customer-trusted-shops.php:19
 
 
1744
  #, php-format
1745
  msgid ""
1746
  "You have recently shopped at %s. Thank you! We would be glad if you spent "
@@ -1748,103 +3837,111 @@ msgid ""
1748
  "the link."
1749
  msgstr ""
1750
 
1751
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/emails/customer-ekomi.php:22
1752
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/emails/customer-trusted-shops.php:22
1753
  msgid "Rate Order now"
1754
  msgstr ""
1755
 
1756
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/emails/customer-new-account-activation.php:18
 
1757
  #, php-format
1758
  msgid ""
1759
- "Thanks for creating an account on %s. Your username is <strong>%s</strong>. "
1760
- "Please follow the activation link to activate your account:"
1761
  msgstr ""
1762
 
1763
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/emails/customer-new-account-activation.php:20
1764
  msgid "Activate your account"
1765
  msgstr ""
1766
 
1767
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/emails/customer-new-account-activation.php:24
 
1768
  #, php-format
1769
  msgid "Your password has been automatically generated: <strong>%s</strong>"
1770
  msgstr ""
1771
 
1772
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/emails/customer-new-account-activation.php:28
 
1773
  #, php-format
1774
  msgid "If you haven't created an account on %s please ignore this email."
1775
  msgstr ""
1776
 
1777
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/emails/customer-new-account-activation.php:30
1778
  #, php-format
1779
  msgid ""
1780
  "If you cannot follow the link above please copy this url and paste it to "
1781
  "your browser bar: %s"
1782
  msgstr ""
1783
 
1784
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/emails/customer-revocation.php:16
 
 
1785
  msgid ""
1786
- "By sending you this email we confirm your Revocation. Please review your "
1787
- "data."
1788
  msgstr ""
1789
 
1790
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/emails/email-order-items-2-2.php:25
1791
- msgid "Product Image"
 
 
 
1792
  msgstr ""
1793
 
1794
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/emails/email-order-items-2-2.php:46
1795
  #, php-format
1796
- msgid "Download %d"
 
1797
  msgstr ""
1798
 
1799
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/emails/email-order-items-2-2.php:48
1800
- msgid "Download"
1801
  msgstr ""
1802
 
1803
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/footer/sale-info.php:13
1804
  msgid "All striked out prices refer to prices used to be charged at this shop."
1805
  msgstr ""
1806
 
1807
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/footer/vat-info.php:13
1808
  msgid "All prices incl. VAT."
1809
  msgstr ""
1810
 
1811
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/footer/vat-info.php:13
1812
  msgid "All prices excl. VAT."
1813
  msgstr ""
1814
 
1815
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/footer/vat-info.php:15
1816
- msgid ""
1817
- "Because of the small business owner state according to &#167;19 UStG the "
1818
- "seller charge no sales tax, and therefore do not show it."
1819
- msgstr ""
1820
-
1821
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/forms/revocation-form.php:18
1822
  msgid "To"
1823
  msgstr ""
1824
 
1825
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/forms/revocation-form.php:28
1826
  msgid "Forward Revocation"
1827
  msgstr ""
1828
 
1829
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/global/small-business-info.php:15
1830
  msgid ""
1831
- "Because of the small business owner state according to &#167;19 UstG the "
1832
- "seller does not levy nor state the German value added tax."
1833
  msgstr ""
1834
 
1835
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/single-product/legal-info.php:19
1836
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/templates/single-product/tax-info.php:18
1837
- msgid "VAT free based on &#167;19 UStG"
1838
  msgstr ""
1839
 
1840
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/woocommerce-germanized.php:561
1841
- msgid "Settings"
1842
  msgstr ""
1843
 
1844
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/woocommerce-germanized.php:719
1845
- msgid "Thank you. You have successfully activated your account."
 
1846
  msgstr ""
1847
 
1848
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/woocommerce-germanized.php:723
1849
- msgid "Sorry, but this activation code cannot be found."
 
 
 
 
 
1850
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce Germanized\n"
4
+ "POT-Creation-Date: 2017-11-09 14:18+0100\n"
5
+ "PO-Revision-Date: 2017-11-09 14:18+0100\n"
6
  "Last-Translator: holzhannes <holzhannes@posteo.de>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.0.4\n"
13
+ "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e;_x\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+ "X-Poedit-SearchPathExcluded-0: tmp\n"
18
+ "X-Poedit-SearchPathExcluded-1: vendor\n"
19
+ "X-Poedit-SearchPathExcluded-2: node_modules\n"
20
+ "X-Poedit-SearchPathExcluded-3: tests\n"
21
 
22
+ #: i18n/labels.php:16
23
+ msgid "RRP: "
24
+ msgstr ""
25
+
26
+ #: i18n/labels.php:17
27
+ msgid "New Price: "
28
+ msgstr ""
29
+
30
+ #: i18n/labels.php:18
31
+ msgid "Old Price: "
32
+ msgstr ""
33
+
34
+ #: i18n/units.php:16
35
  msgid "kg"
36
  msgstr ""
37
 
38
+ #: i18n/units.php:17
39
  msgid "g"
40
  msgstr ""
41
 
42
+ #: i18n/units.php:18
43
  msgid "lbs"
44
  msgstr ""
45
 
46
+ #: i18n/units.php:19
47
  msgid "oz"
48
  msgstr ""
49
 
50
+ #: i18n/units.php:20
51
  msgid "m"
52
  msgstr ""
53
 
54
+ #: i18n/units.php:21
55
  msgid "cm"
56
  msgstr ""
57
 
58
+ #: i18n/units.php:22
59
  msgid "mm"
60
  msgstr ""
61
 
62
+ #: i18n/units.php:23
63
  msgid "in"
64
  msgstr ""
65
 
66
+ #: i18n/units.php:24
67
  msgid "yd"
68
  msgstr ""
69
 
70
+ #: i18n/units.php:25
71
  msgid "ml"
72
  msgstr ""
73
 
74
+ #: i18n/units.php:26
75
  msgid "l"
76
  msgstr ""
77
 
78
+ #: includes/abstracts/abstract-wc-gzd-product.php:264
79
+ #: includes/abstracts/abstract-wc-gzd-product.php:273
80
+ #: includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php:169
81
+ #: includes/wc-gzd-core-functions.php:129
82
+ #: includes/wc-gzd-template-functions.php:608 woocommerce-germanized.php:828
83
  msgid "incl. VAT"
84
  msgstr ""
85
 
86
+ #: includes/abstracts/abstract-wc-gzd-product.php:264
87
  msgid "excl. VAT"
88
  msgstr ""
89
 
90
+ #: includes/abstracts/abstract-wc-gzd-product.php:266
91
+ #: includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php:169
92
+ #: includes/wc-gzd-core-functions.php:129 woocommerce-germanized.php:828
93
  #, php-format
94
  msgid "incl. %s%% VAT"
95
  msgstr ""
96
 
97
+ #: includes/abstracts/abstract-wc-gzd-product.php:266
98
  #, php-format
99
  msgid "excl. %s%% VAT"
100
  msgstr ""
101
 
102
+ #: includes/admin/class-wc-gzd-admin-customer.php:46
103
  msgid "Double opt in"
104
  msgstr ""
105
 
106
+ #: includes/admin/class-wc-gzd-admin-customer.php:50
107
  msgid "Yes, customer opted in"
108
  msgstr ""
109
 
110
+ #: includes/admin/class-wc-gzd-admin-importer.php:36
111
+ #: includes/admin/class-wc-gzd-admin-importer.php:45
112
+ #: includes/admin/class-wc-gzd-admin.php:28
113
+ #: includes/admin/class-wc-gzd-admin.php:37
114
+ #: includes/class-wc-gzd-checkout.php:22 includes/class-wc-gzd-checkout.php:31
115
+ #: includes/class-wc-gzd-coupon-helper.php:24
116
+ #: includes/class-wc-gzd-coupon-helper.php:33
117
+ #: includes/class-wc-gzd-customer-helper.php:19
118
+ #: includes/class-wc-gzd-customer-helper.php:28
119
+ #: includes/class-wc-gzd-dependencies.php:54
120
+ #: includes/class-wc-gzd-dependencies.php:63
121
+ #: includes/class-wc-gzd-hook-priorities.php:33
122
+ #: includes/class-wc-gzd-hook-priorities.php:42
123
+ #: includes/export/class-wc-gzd-product-export.php:23
124
+ #: includes/export/class-wc-gzd-product-export.php:32
125
+ #: includes/import/class-wc-gzd-product-import.php:23
126
+ #: includes/import/class-wc-gzd-product-import.php:32
127
+ #: woocommerce-germanized.php:94 woocommerce-germanized.php:103
128
+ msgid "Cheatin&#8217; huh?"
129
+ msgstr ""
130
+
131
+ #: includes/admin/class-wc-gzd-admin-status.php:38
132
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:139
133
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:208
134
+ #: includes/class-wc-gzd-install.php:487 includes/wc-gzd-core-functions.php:57
135
+ msgid "Terms & Conditions"
136
+ msgstr ""
137
+
138
+ #: includes/admin/class-wc-gzd-admin-status.php:39
139
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:219
140
+ #: includes/class-wc-gzd-install.php:492
141
+ msgid "Power of Revocation"
142
+ msgstr ""
143
+
144
+ #: includes/admin/class-wc-gzd-admin-status.php:40
145
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:139
146
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:230
147
+ #: includes/class-wc-gzd-install.php:482 includes/wc-gzd-core-functions.php:63
148
+ msgid "Imprint"
149
+ msgstr ""
150
+
151
+ #: includes/admin/class-wc-gzd-admin-status.php:41
152
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:241
153
+ #: includes/class-wc-gzd-install.php:477
154
+ msgid "Data Security Statement"
155
+ msgstr ""
156
+
157
+ #: includes/admin/class-wc-gzd-admin-status.php:42
158
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:252
159
+ #: includes/class-wc-gzd-install.php:502
160
+ msgid "Payment Methods"
161
+ msgstr ""
162
+
163
+ #: includes/admin/class-wc-gzd-admin-status.php:43
164
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:263
165
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1240
166
+ #: includes/class-wc-gzd-install.php:497
167
+ msgid "Shipping Methods"
168
+ msgstr ""
169
+
170
+ #: includes/admin/class-wc-gzd-admin-welcome.php:53
171
  msgid "About WooCommerce Germanized"
172
  msgstr ""
173
 
174
+ #: includes/admin/class-wc-gzd-admin-welcome.php:54
175
+ #: includes/admin/views/html-notice-install.php:13
176
  msgid "Welcome to WooCommerce Germanized"
177
  msgstr ""
178
 
179
+ #: includes/admin/class-wc-gzd-admin-welcome.php:309
180
  msgid "Go to WooCommerce Germanized Settings"
181
  msgstr ""
182
 
183
+ #: includes/admin/class-wc-gzd-admin.php:76
184
+ msgid "Order confirmation manually sent to customer."
185
+ msgstr ""
186
+
187
+ #: includes/admin/class-wc-gzd-admin.php:82
188
+ msgid "Resend order confirmation"
189
+ msgstr ""
190
+
191
+ #: includes/admin/class-wc-gzd-admin.php:91
192
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:25
193
+ msgid "Germanized"
194
+ msgstr ""
195
+
196
+ #: includes/admin/class-wc-gzd-admin.php:101
197
+ msgid "Parcel Delivery Data Transfer:"
198
+ msgstr ""
199
+
200
+ #: includes/admin/class-wc-gzd-admin.php:102
201
+ msgid "allowed"
202
+ msgstr ""
203
+
204
+ #: includes/admin/class-wc-gzd-admin.php:102
205
+ msgid "not allowed"
206
  msgstr ""
207
 
208
+ #: includes/admin/class-wc-gzd-admin.php:175
209
  msgid "Optional Email Content"
210
  msgstr ""
211
 
212
+ #: includes/admin/class-wc-gzd-admin.php:184
213
  msgid "Add content which will be replacing default page content within emails."
214
  msgstr ""
215
 
216
+ #: includes/admin/class-wc-gzd-admin.php:194
217
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:152
 
218
  msgid "Optional Mini Description"
219
  msgstr ""
220
 
221
+ #: includes/admin/class-wc-gzd-admin.php:211
222
  msgid ""
223
  "This content will be shown as short product description within checkout and "
224
  "emails."
225
  msgstr ""
226
 
227
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:46
228
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:112
229
+ msgid "Service"
 
 
230
  msgstr ""
231
 
232
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:46
233
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:113
234
+ msgid "Service products do not sell physical products."
 
 
 
235
  msgstr ""
236
 
237
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:87
238
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:136
239
+ msgid "Sale Label"
240
+ msgstr ""
241
+
242
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:89
243
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:99
244
+ msgid "Same as Parent"
245
+ msgstr ""
246
+
247
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:97
248
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:137
249
+ msgid "Sale Regular Label"
250
+ msgstr ""
251
+
252
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:115
253
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:140
254
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:694
255
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:847
256
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:896
257
+ msgid "Product Units"
258
  msgstr ""
259
 
260
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:115
261
+ msgid ""
262
+ "Number of units included per default product price. Example: 1000 ml. Leave "
263
+ "blank to use parent value."
264
+ msgstr ""
265
+
266
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:119
267
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:161
268
+ msgid "Calculation"
269
+ msgstr ""
270
+
271
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:122
272
+ msgid "Calculate unit prices automatically"
273
+ msgstr ""
274
+
275
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:127
276
  msgid "Regular Unit Price"
277
  msgstr ""
278
 
279
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:131
 
 
280
  msgid "Sale Unit Price"
281
  msgstr ""
282
 
283
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:137
284
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:213
285
+ #: includes/api/class-wc-gzd-rest-products-controller.php:39
286
+ #: includes/api/class-wc-gzd-rest-products-controller.php:204
287
+ #: includes/class-wc-gzd-post-types.php:37
288
  msgid "Delivery Time"
289
  msgstr ""
290
 
291
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:143
292
+ msgid "Same as parent"
293
+ msgstr ""
294
+
295
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:120
296
+ msgid "Diff. Taxation"
297
+ msgstr ""
298
+
299
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:121
300
+ msgid "Product applies to differential taxation based on §25a UStG."
301
+ msgstr ""
302
+
303
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:136
304
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:137
305
+ msgid "Select Price Label"
306
+ msgstr ""
307
+
308
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:136
309
+ msgid ""
310
+ "If the product is on sale you may want to show a price label right before "
311
+ "outputting the old price to inform the customer."
312
+ msgstr ""
313
+
314
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:137
315
+ msgid ""
316
+ "If the product is on sale you may want to show a price label right before "
317
+ "outputting the new price to inform the customer."
318
  msgstr ""
319
 
320
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:139
321
+ #: includes/api/class-wc-gzd-rest-products-controller.php:114
322
+ #: includes/class-wc-gzd-post-types.php:66
323
+ #: includes/export/class-wc-gzd-product-export.php:48
324
+ msgid "Unit"
325
+ msgstr ""
326
+
327
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:139
328
  msgid "Select unit"
329
  msgstr ""
330
 
331
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:139
332
  msgid "Needed if selling on a per unit basis"
333
  msgstr ""
334
 
335
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:140
336
+ msgid "Number of units included per default product price. Example: 1000 ml."
337
  msgstr ""
338
 
339
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:141
340
+ msgid "Base Price Units"
341
  msgstr ""
342
 
343
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:141
344
+ msgid ""
345
+ "Base price units. Example base price: 0,99 € / 100 ml. Insert 100 as base "
346
+ "price unit amount."
347
  msgstr ""
348
 
349
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:161
350
+ msgid "Calculate base prices automatically."
 
351
  msgstr ""
352
 
353
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:163
354
+ msgid "Regular Base Price"
 
355
  msgstr ""
356
 
357
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:164
358
+ msgid "Sale Base Price"
359
  msgstr ""
360
 
361
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:174
362
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:217
363
+ msgid "Search for a delivery time&hellip;"
364
  msgstr ""
365
 
366
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:226
367
+ msgid "Free shipping?"
 
368
  msgstr ""
369
 
370
+ #: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:226
371
+ msgid "This option disables the \"plus shipping costs\" notice on product page"
372
+ msgstr ""
373
+
374
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:43
375
  #, php-format
376
+ msgid "Invoices & Packing Slips %s"
377
  msgstr ""
378
 
379
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:44
380
+ #, php-format
381
+ msgid "PDF %s"
382
  msgstr ""
383
 
384
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:45
385
+ #, php-format
386
+ msgid "Multistep Checkout %s"
387
  msgstr ""
388
 
389
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:46
390
+ #, php-format
391
+ msgid "Terms & Conditions generator %s"
392
  msgstr ""
393
 
394
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:47
395
  #, php-format
396
+ msgid "Revocation generator %s"
 
 
397
  msgstr ""
398
 
399
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:95
400
+ msgid "General Options"
401
  msgstr ""
402
 
403
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:96
404
+ msgid "Display Options"
405
+ msgstr ""
406
+
407
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:97
408
+ msgid "Email Options"
409
+ msgstr ""
410
+
411
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:124
412
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:130
413
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:106
414
+ msgid "None"
415
  msgstr ""
416
 
417
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:145
418
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:762
419
+ msgid "General"
420
+ msgstr ""
421
+
422
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:148
423
  msgid "Submit Order Button Text"
424
  msgstr ""
425
 
426
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:149
427
  msgid "This text serves as Button text for the Order Submit Button."
428
  msgstr ""
429
 
430
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:154
431
  msgid "Buy Now"
432
  msgstr ""
433
 
434
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:158
435
  msgid "Phone as required field"
436
  msgstr ""
437
 
438
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:159
439
  msgid "Should phone number be a required field within checkout?"
440
  msgstr ""
441
 
442
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:166
443
  msgid "Add title field"
444
  msgstr ""
445
 
446
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:167
447
  msgid "Add a title field to the address within checkout?"
448
  msgstr ""
449
 
450
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:174
451
+ msgid "Disallow cancellations"
452
+ msgstr ""
453
+
454
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:175
455
+ msgid "Don’t allow customers to manually cancel orders."
456
+ msgstr ""
457
+
458
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:176
459
+ msgid ""
460
+ "By default payment methods like PayPal allow order cancellation by clicking "
461
+ "the abort link. This option will stop customers from manually cancel orders."
462
+ msgstr ""
463
+
464
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:183
465
+ msgid "Disallow gateway choosing"
466
+ msgstr ""
467
+
468
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:184
469
+ msgid "Don’t allow customers to change the payment gateway after ordering."
470
+ msgstr ""
471
+
472
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:185
473
+ msgid ""
474
+ "Customers paying through a gateway which allows later payment (e.g. PayPal) "
475
+ "will find a link within their customer account which redirects them to a pay "
476
+ "page. This page offers the possibility to choose another gateway than before "
477
+ "which may lead to further problems e.g. additional gateway costs etc. which "
478
+ "would require a new order submittal. This option makes sure the customer "
479
+ "gets redirected directly to the gateways payment page, e.g. to PayPal."
480
+ msgstr ""
481
+
482
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:193
483
  msgid "Contract"
484
  msgstr ""
485
 
486
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:193
487
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:596
488
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:608
489
  #, php-format
490
  msgid "%sUpgrade to %spro%s%s to unlock this feature and get premium support."
491
  msgstr ""
492
 
493
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:205
494
+ #: includes/admin/views/html-page-status-germanized.php:141
495
  msgid "Legal Pages"
496
  msgstr ""
497
 
498
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:209
 
 
 
 
 
 
499
  msgid "This page should contain your terms & conditions."
500
  msgstr ""
501
 
502
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:215
503
  #, php-format
504
  msgid "Don't have terms & conditions yet? <a href=\"%s\">Generate now</a>!"
505
  msgstr ""
506
 
507
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:220
 
 
 
 
 
508
  msgid ""
509
  "This page should contain information regarding your customer's Right of "
510
  "Revocation."
511
  msgstr ""
512
 
513
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:226
514
  #, php-format
515
  msgid "Don't have a revocation page yet? <a href=\"%s\">Generate now</a>!"
516
  msgstr ""
517
 
518
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:231
 
 
 
 
 
 
519
  msgid "This page should contain an imprint with your company's information."
520
  msgstr ""
521
 
522
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:242
 
 
 
 
 
523
  msgid ""
524
  "This page should contain information regarding your data security policy."
525
  msgstr ""
526
 
527
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:253
 
 
 
 
 
528
  msgid ""
529
  "This page should contain information regarding the Payment Methods that are "
530
  "chooseable during checkout."
531
  msgstr ""
532
 
533
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:264
 
 
 
 
 
534
  msgid ""
535
  "This page should contain information regarding shipping methods that are "
536
  "chooseable during checkout."
537
  msgstr ""
538
 
539
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:275
540
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:278
541
+ msgid "Dispute Resolution"
 
 
 
542
  msgstr ""
543
 
544
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:275
545
+ #, php-format
546
  msgid ""
547
+ "As with Feb. 1 2017 new regulations regarding alternative dispute resolution "
548
+ "take effect. Further information regarding your duty to supply information "
549
+ "can be found <a href=\"%s\" target=\"_blank\">here</a>."
 
 
 
550
  msgstr ""
551
 
552
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:279
553
  msgid ""
554
+ "You may select whether you are willing, obliged or not willing to "
555
+ "participate in dispute settlement proceeedings before a consumer arbitration "
556
+ "board. The corresponding Resolution Text is attached to the [gzd_complaints] "
557
+ "shortcode which you should add to your imprint. Trusted Shops advises you to "
558
+ "add that text to your Terms & Conditions as well."
559
  msgstr ""
560
 
561
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:285
562
+ msgid "Not obliged, not willing"
563
  msgstr ""
564
 
565
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:286
566
+ msgid "Not obliged, willing"
567
  msgstr ""
568
 
569
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:287
570
+ msgid "Obliged"
571
  msgstr ""
572
 
573
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:292
574
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:302
575
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:312
576
+ msgid "Resolution Text"
577
  msgstr ""
578
 
579
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:293
580
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:303
581
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:313
582
+ msgid ""
583
+ "Adapt this example text regarding alternative dispute resolution to your "
584
+ "needs. Text will be added to the [gzd_complaints] Shortcode. You may as well "
585
+ "add this text to your terms & conditions."
586
  msgstr ""
587
 
588
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:295
589
+ msgid ""
590
+ "The european commission provides a platform for online dispute resolution "
591
+ "(OS) which is accessible at http://ec.europa.eu/consumers/odr/. We are not "
592
+ "obliged nor willing to participate in dispute settlement proceedings before "
593
+ "a consumer arbitration board."
594
  msgstr ""
595
 
596
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:305
597
+ msgid ""
598
+ "The european commission provides a platform for online dispute resolution "
599
+ "(OS) which is accessible at http://ec.europa.eu/consumers/odr/. Consumers "
600
+ "may use this platform for the settlements of their disputes. We are in "
601
+ "principle prepared to participate in an extrajudicial arbitration proceeding."
602
  msgstr ""
603
 
604
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:315
 
605
  msgid ""
606
+ "The european commission provides a platform for online dispute resolution "
607
+ "(OS) which is accessible at http://ec.europa.eu/consumers/odr/. Consumers "
608
+ "may contact [Name, Address, Website of arbitration board] for the "
609
+ "settlements of their disputes. We are obliged to participate in arbitration "
610
+ "proceeding before that board."
611
  msgstr ""
612
 
613
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:322
614
+ msgid "Shortcode Status"
 
615
  msgstr ""
616
 
617
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:325
618
+ msgid "Please choose a page as your imprint first."
619
  msgstr ""
620
 
621
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:325
622
+ msgid "Found"
 
 
 
623
  msgstr ""
624
 
625
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:325
626
+ #, php-format
627
+ msgid "Not found within %s"
628
  msgstr ""
629
 
630
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:325
631
+ msgid "Append it now"
632
  msgstr ""
633
 
634
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:330
635
+ msgid "Small Businesses"
636
  msgstr ""
637
 
638
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:333
639
+ #: includes/admin/views/html-page-status-germanized.php:37
640
+ msgid "Small-Enterprise-Regulation"
 
641
  msgstr ""
642
 
643
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:334
644
+ msgid "VAT based on &#167;19 UStG"
645
  msgstr ""
646
 
647
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:338
648
+ #, php-format
649
  msgid ""
650
+ "set this Option if you have chosen <a href=\"%s\" target=\"_blank\">&#167;19 "
651
+ "UStG</a>"
 
652
  msgstr ""
653
 
654
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:342
655
+ msgid "Show no VAT notice"
656
  msgstr ""
657
 
658
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:343
659
+ msgid "Show no VAT &#167;19 UStG notice on single product"
660
  msgstr ""
661
 
662
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:350
663
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:373
664
+ msgid "Notice Text"
665
  msgstr ""
666
 
667
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:351
 
668
  msgid ""
669
+ "You may want to adjust the small buisness notice text to meet your criteria."
 
 
 
 
 
 
 
670
  msgstr ""
671
 
672
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:355
673
+ #: includes/wc-gzd-core-functions.php:94
674
  msgid ""
675
+ "Value added tax is not collected, as small businesses according to §19 (1) "
676
+ "UStG."
 
677
  msgstr ""
678
 
679
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:361
680
+ msgid "Differential Taxation"
681
  msgstr ""
682
 
683
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:364
684
+ msgid "Taxation Notice"
 
 
685
  msgstr ""
686
 
687
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:365
688
+ msgid "Enable differential taxation text notice beneath product price."
689
  msgstr ""
690
 
691
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:367
692
  msgid ""
693
+ "If you have disabled this option, a normal VAT notice will be displayed, "
694
+ "which is sufficient as Trusted Shops states. To further inform your "
695
+ "customers you may enable this notice."
696
  msgstr ""
697
 
698
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:374
699
+ msgid ""
700
+ "This text will be shown as a further notice for the customer to inform him "
701
+ "about differential taxation."
702
  msgstr ""
703
 
704
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:379
705
+ msgid "incl. VAT (differential taxation according to §25a UStG.)"
 
706
  msgstr ""
707
 
708
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:383
709
+ msgid "Checkout Notice"
710
  msgstr ""
711
 
712
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:384
713
+ msgid "Enable differential taxation notice during checkout and in emails."
 
 
714
  msgstr ""
715
 
716
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:392
717
+ msgid "Delivery Times"
718
  msgstr ""
719
 
720
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:395
721
+ #: includes/admin/views/html-page-status-germanized.php:42
722
+ msgid "Default Delivery Time"
723
  msgstr ""
724
 
725
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:396
726
+ msgid ""
727
+ "This delivery time will be added to every product if no delivery time has "
728
+ "been chosen individually"
729
  msgstr ""
730
 
731
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:403
732
+ msgid "Manage Delivery Times"
 
 
733
  msgstr ""
734
 
735
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:407
736
+ msgid "Delivery Time Text"
 
 
 
 
 
 
 
 
737
  msgstr ""
738
 
739
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:408
740
+ msgid ""
741
+ "This text will be used to indicate delivery time for products. Use "
742
+ "{delivery_time} as placeholder."
743
  msgstr ""
744
 
745
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:413
746
+ msgid "Delivery time: {delivery_time}"
747
  msgstr ""
748
 
749
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:418
750
+ #: includes/compatibility/class-wc-gzd-compatibility-polylang.php:258
751
+ msgid "Sale Price Labels"
752
  msgstr ""
753
 
754
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:421
755
+ msgid "Default Sale Label"
756
  msgstr ""
757
 
758
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:422
759
  msgid ""
760
+ "Choose whether you would like to have a default sale price label to inform "
761
+ "the customer about the regular price (e.g. Recommended Retail Price)."
762
  msgstr ""
763
 
764
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:429
765
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:441
766
+ msgid "Manage Price Labels"
767
  msgstr ""
768
 
769
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:433
770
+ msgid "Default Sale Regular Label"
 
771
  msgstr ""
772
 
773
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:434
774
  msgid ""
775
+ "Choose whether you would like to have a default sale price regular label to "
776
+ "inform the customer about the sale price (e.g. New Price)."
777
  msgstr ""
778
 
779
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:447
780
+ msgid "Shipping Costs"
781
  msgstr ""
782
 
783
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:450
784
+ msgid "Shipping Costs Text"
785
  msgstr ""
786
 
787
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:451
788
  msgid ""
789
+ "This text will be used to inform the customer about shipping costs. Use "
790
+ "{link}{/link} to insert link to shipping costs page."
791
  msgstr ""
792
 
793
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:456
794
+ msgid "plus {link}Shipping Costs{/link}"
795
  msgstr ""
796
 
797
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:460
798
+ msgid "Free Shipping Text"
799
  msgstr ""
800
 
801
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:461
802
+ msgid ""
803
+ "This text will be used to inform the customer about free shipping. Leave "
804
+ "empty to disable notice. Use {link}{/link} to insert link to shipping costs "
805
+ "page."
806
  msgstr ""
807
 
808
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:470
809
+ msgid "Shipping Costs Tax"
810
  msgstr ""
811
 
812
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:471
813
+ msgid "Enable better taxation for shpping costs?"
814
  msgstr ""
815
 
816
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:475
817
+ #, php-format
818
+ msgid ""
819
+ "By choosing this option shipping cost taxation will be calculated based on "
820
+ "tax rates within cart. Imagine the following example. Further information "
821
+ "can be found <a href=\"%s\" target=\"_blank\">here</a>. %s"
822
  msgstr ""
823
 
824
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:479
825
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:501
826
+ msgid "Force Tax Calculation"
827
  msgstr ""
828
 
829
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:480
830
+ msgid "Force shipping costs tax calculation for every method?"
 
831
  msgstr ""
832
 
833
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:484
834
+ msgid ""
835
+ "This option will overwrite settings for each individual shipping method to "
836
+ "force tax calculation (instead of only calculating tax for those methods "
837
+ "which are taxeable)."
838
+ msgstr ""
839
+
840
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:489
841
+ msgid "Fees"
842
+ msgstr ""
843
+
844
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:492
845
+ msgid "Fee Tax"
846
  msgstr ""
847
 
848
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:493
849
+ msgid "Enable better taxation for fees?"
850
  msgstr ""
851
 
852
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:497
853
  msgid ""
854
+ "By choosing this option fee taxation will be calculated based on tax rates "
855
+ "within cart. See shipping costs taxation for more information."
856
  msgstr ""
857
 
858
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:502
859
+ msgid "Force fee tax calculation for every fee?"
860
  msgstr ""
861
 
862
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:506
863
+ msgid ""
864
+ "This option will overwrite settings for each individual fee to force tax "
865
+ "calculation (instead of only calculating tax for those fees which are "
866
+ "taxeable)."
867
+ msgstr ""
868
+
869
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:511
870
+ msgid "Customers"
871
+ msgstr ""
872
+
873
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:514
874
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:714
875
+ msgid "Checkbox"
876
+ msgstr ""
877
+
878
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:515
879
+ msgid "Add a checkbox to customer registration form."
880
+ msgstr ""
881
+
882
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:522
883
+ msgid "Checkbox text"
884
  msgstr ""
885
 
886
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:523
887
  msgid ""
888
+ "Choose a Plain Text which will be shown as checkbox text for customer "
889
+ "account creation. Use {term_link}{/term_link}, {data_security_link}{/"
890
+ "data_security_link}, {revocation_link}{/revocation_link} as Placeholders for "
891
+ "the links to legal pages."
892
  msgstr ""
893
 
894
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:525
895
  msgid ""
896
+ "Yes, I’d like create a new account and have read and understood the "
897
+ "{data_security_link}data privacy statement{/data_security_link}."
 
 
 
898
  msgstr ""
899
 
900
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:532
901
+ msgid "Checkout"
902
  msgstr ""
903
 
904
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:533
905
  msgid ""
906
+ "Replace default WooCommerce text regarding account creation during checkout."
907
  msgstr ""
908
 
909
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:534
910
  msgid ""
911
+ "Use the text from above instead of the default WooCommerce text regarding "
912
+ "account creation during checkout. This checkbox is only show if you have "
913
+ "activated guest accounts."
914
  msgstr ""
915
 
916
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:541
917
+ msgid "Customer Double Opt In"
918
  msgstr ""
919
 
920
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:542
921
+ msgid "Enable customer double opt in on registration?"
922
  msgstr ""
923
 
924
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:543
925
+ #, php-format
926
  msgid ""
927
+ "If customer chooses to create a customer account an email with an activation "
928
+ "link will be sent by mail. Customer account will be marked as activated if "
929
+ "user clicks on the link within the email. More information on this topic can "
930
+ "be found <a href=\"%s\" target=\"_blank\">here</a>."
931
  msgstr ""
932
 
933
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:550
934
+ msgid "Disable Login and Checkout"
935
  msgstr ""
936
 
937
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:551
938
+ msgid "Disable login and checkout for unactivated customers."
939
  msgstr ""
940
 
941
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:552
942
  msgid ""
943
+ "Customers that did not click on the activation link will not be able to "
944
+ "complete checkout nor login to their account."
945
  msgstr ""
946
 
947
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:559
948
+ msgid "Delete Unactivated After"
949
  msgstr ""
950
 
951
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:560
952
+ msgid ""
953
+ "This will make sure unactivated customer accounts will be deleted after X "
954
+ "days. Set to 0 if you don't want to automatically delete unactivated "
955
+ "customers."
956
  msgstr ""
957
 
958
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:561
959
+ msgid "days"
 
 
960
  msgstr ""
961
 
962
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:570
963
+ #: includes/wc-gzd-core-functions.php:60
964
+ msgid "Right of Recission"
965
  msgstr ""
966
 
967
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:573
968
+ msgid "Revocation Address"
969
  msgstr ""
970
 
971
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:574
972
+ msgid ""
973
+ "Type in an address, telephone/telefax number, email address which is to be "
974
+ "used as revocation address"
975
  msgstr ""
976
 
977
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:583
978
+ #: includes/admin/views/html-page-status-germanized.php:81
979
+ msgid "Virtual VAT"
980
  msgstr ""
981
 
982
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:586
983
+ msgid "Enable Virtual VAT"
984
+ msgstr ""
985
+
986
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:587
987
  msgid ""
988
+ "Enable if you want to charge your customer's countries' VAT for virtual "
989
+ "products."
990
  msgstr ""
991
 
992
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:591
993
+ #, php-format
994
+ msgid ""
995
+ "New EU VAT rule applies on 01.01.2015. Make sure that every digital or "
996
+ "virtual product has chosen the right tax class (Virtual Rate or Virtual "
997
+ "Reduced Rate). Gross prices will not differ from the prices you have chosen "
998
+ "for affected products. In fact the net price will differ depending on the "
999
+ "VAT rate of your customers' country. Shop settings will be adjusted to show "
1000
+ "prices including tax. More information can be found <a href=\"%s\" target="
1001
+ "\"_blank\">here</a>."
1002
  msgstr ""
1003
 
1004
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:596
1005
+ msgid "Invoices"
1006
+ msgstr ""
1007
+
1008
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:608
1009
+ msgid "VAT"
1010
+ msgstr ""
1011
+
1012
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:640
1013
+ msgid "Customer"
1014
+ msgstr ""
1015
+
1016
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:640
1017
+ msgid "Admin"
1018
+ msgstr ""
1019
+
1020
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:651
1021
+ #, php-format
1022
+ msgid "Attach %s"
1023
+ msgstr ""
1024
+
1025
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:652
1026
+ #, php-format
1027
+ msgid "Attach %s to the following email templates"
1028
+ msgstr ""
1029
+
1030
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:665
1031
+ msgid "E-Mails"
1032
  msgstr ""
1033
 
1034
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:665
1035
  msgid ""
1036
+ "Use drag & drop to customize attachment order. Don't forget to save your "
1037
+ "changes."
 
1038
  msgstr ""
1039
 
1040
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:682
1041
+ msgid "Email Display Options"
1042
+ msgstr ""
1043
+
1044
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:685
1045
+ msgid "Show within Emails"
1046
+ msgstr ""
1047
+
1048
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:686
1049
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:839
1050
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:888
1051
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:952
1052
+ msgid "Base Price"
1053
+ msgstr ""
1054
+
1055
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:702
1056
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:855
1057
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:904
1058
+ msgid "Delivery Time Notice"
1059
+ msgstr ""
1060
+
1061
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:710
1062
+ msgid "Short Description"
1063
+ msgstr ""
1064
+
1065
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:721
1066
+ msgid "Hide Username"
1067
  msgstr ""
1068
 
1069
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:722
1070
  msgid ""
1071
+ "Hide username from email content if password or password reset link is "
1072
+ "embedded."
 
 
1073
  msgstr ""
1074
 
1075
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:723
1076
  msgid ""
1077
+ "Trusted Shops advises to not show the username together with an account "
1078
+ "password or password reset link. This option hides (or masks) the username "
1079
+ "in those specific cases."
1080
  msgstr ""
1081
 
1082
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:731
1083
+ msgid "Email Attachment Options"
1084
  msgstr ""
1085
 
1086
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:731
1087
+ #, php-format
1088
  msgid ""
1089
+ "Want to attach automatically generated PDF files to emails instead of plain "
1090
+ "text? %sUpgrade to %spro%s%s"
 
 
1091
  msgstr ""
1092
 
1093
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:754
1094
+ msgid "Downloadable Product"
 
 
 
1095
  msgstr ""
1096
 
1097
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:755
1098
+ msgid "Virtual Product"
1099
  msgstr ""
1100
 
1101
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:765
1102
+ msgid "Add to Cart"
1103
  msgstr ""
1104
 
1105
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:766
1106
+ msgid "Show add to cart button on listings?"
1107
+ msgstr ""
1108
+
1109
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:770
1110
  msgid ""
1111
+ "unset this option if you don't want to show the add to cart button within "
1112
+ "the product listings"
1113
  msgstr ""
1114
 
1115
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:774
1116
+ msgid "Link to Details"
1117
  msgstr ""
1118
 
1119
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:775
1120
  msgid ""
1121
+ "Want to link to product details page instead of add to cart within listings?"
 
 
1122
  msgstr ""
1123
 
1124
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:779
 
1125
  msgid ""
1126
+ "Decide whether you like to link to your product's details page instead of "
1127
+ "displaying an add to cart button within product listings."
1128
  msgstr ""
1129
 
1130
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:783
1131
+ msgid "Product Details Text"
1132
  msgstr ""
1133
 
1134
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:785
1135
+ msgid "Details"
1136
  msgstr ""
1137
 
1138
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:787
1139
+ msgid ""
1140
+ "If you have chosen to link to product details page instead of add to cart "
1141
+ "URL you may want to change the button text."
1142
  msgstr ""
1143
 
1144
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:792
1145
+ msgid "Digital Delivery Time Text"
1146
  msgstr ""
1147
 
1148
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:796
1149
  msgid ""
1150
+ "Enter a text which will be shown as digital delivery time text (replacement "
1151
+ "for default digital time on digital products)."
1152
  msgstr ""
1153
 
1154
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:801
1155
+ msgid "Notice Footer"
1156
  msgstr ""
1157
 
1158
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:802
1159
+ msgid "Show a global VAT notice within footer"
 
1160
  msgstr ""
1161
 
1162
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:810
1163
+ msgid "Show a global sale price notice within footer"
1164
  msgstr ""
1165
 
1166
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:819
1167
+ msgid "Products"
 
 
1168
  msgstr ""
1169
 
1170
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:822
1171
+ msgid "Show within Product Listings"
1172
  msgstr ""
1173
 
1174
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:823
1175
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:872
1176
+ msgid "Shipping Costs notice"
 
1177
  msgstr ""
1178
 
1179
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:831
1180
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:880
1181
+ msgid "Tax Info"
1182
  msgstr ""
1183
 
1184
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:863
1185
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:912
1186
+ #: includes/class-wc-gzd-post-types.php:93
1187
+ #: includes/class-wc-gzd-post-types.php:95
1188
+ #: includes/class-wc-gzd-post-types.php:97
1189
+ msgid "Price Labels"
1190
  msgstr ""
1191
 
1192
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:871
1193
+ msgid "Show on Product Detail Page"
1194
  msgstr ""
1195
 
1196
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:920
1197
+ msgid "Hide Tax Rate"
1198
  msgstr ""
1199
 
1200
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:921
1201
+ msgid "Hide specific tax rate within shop pages."
1202
  msgstr ""
1203
 
1204
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:925
1205
  msgid ""
1206
+ "This option will make sure that within shop pages no specific tax rates are "
1207
+ "shown. Instead only incl. tax or excl. tax notice is shown."
 
1208
  msgstr ""
1209
 
1210
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:929
1211
+ msgid "Hide Shipping Costs Notice"
1212
  msgstr ""
1213
 
1214
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:930
1215
+ msgid ""
1216
+ "Select product types for which you might want to disable the shipping costs "
1217
+ "notice."
1218
  msgstr ""
1219
 
1220
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:940
1221
+ msgid "Hide Delivery Time Notice"
 
 
 
1222
  msgstr ""
1223
 
1224
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:941
1225
+ msgid ""
1226
+ "Select product types for which you might want to disable the delivery time "
1227
+ "notice."
1228
  msgstr ""
1229
 
1230
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:955
1231
+ msgid "Base Price Text"
1232
+ msgstr ""
1233
+
1234
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:956
1235
  msgid ""
1236
+ "This text will be used to display the base price. Use {price} to insert the "
1237
+ "price. If you want to specifically format base price output use {base}, "
1238
+ "{unit} and {base_price} as placeholders."
 
 
 
1239
  msgstr ""
1240
 
1241
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:961
1242
+ msgid "{price}"
 
 
1243
  msgstr ""
1244
 
1245
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:965
1246
+ msgid "Variable Base Price"
1247
  msgstr ""
1248
 
1249
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:966
1250
+ msgid "Enable price range base prices for variable products."
1251
+ msgstr ""
1252
+
1253
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:973
1254
+ msgid "Product Units Text"
1255
+ msgstr ""
1256
+
1257
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:974
1258
  msgid ""
1259
+ "This text will be used to display the product units. Use {product_units} to "
1260
+ "insert the amount of product units. Use {unit} to insert the unit. "
1261
+ "Optionally display the formatted unit price with {unit_price}."
 
 
1262
  msgstr ""
1263
 
1264
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:979
1265
+ msgid "Product contains: {product_units} {unit}"
1266
+ msgstr ""
1267
+
1268
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:984
1269
+ msgid "Checkout & Cart"
1270
+ msgstr ""
1271
+
1272
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:987
1273
+ msgid "DHL Parcel Shops"
1274
+ msgstr ""
1275
+
1276
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:988
1277
+ msgid ""
1278
+ "Allow customers to choose a DHL parcel shop or packing station as delivery "
1279
+ "address."
1280
+ msgstr ""
1281
+
1282
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:992
1283
+ msgid ""
1284
+ "This option adds a checkbox to your checkout shipping fields which allows "
1285
+ "the customer to optionally choose a DHL packing station or parcel shop for "
1286
+ "delivery. A PostNumber is required."
1287
+ msgstr ""
1288
+
1289
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:996
1290
+ msgid "Supported Countries"
1291
+ msgstr ""
1292
+
1293
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1000
1294
+ msgid "Choose countries which support Parcel Shop delivery."
1295
+ msgstr ""
1296
+
1297
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1004
1298
+ msgid "Disabled Methods"
1299
+ msgstr ""
1300
+
1301
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1010
1302
+ msgid ""
1303
+ "Optionally choose methods for which DHL Parcel Shop Delivery should be "
1304
+ "disabled. Does only work if you have disabled choosing shipping methods "
1305
+ "within checkout."
1306
+ msgstr ""
1307
+
1308
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1014
1309
+ #: includes/class-wc-gzd-dhl-parcel-shops.php:348
1310
+ msgid "Parcel Shop Finder"
1311
+ msgstr ""
1312
+
1313
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1015
1314
+ msgid ""
1315
+ "Enable DHL Parcel Shop Finder to let customers choose a parcel shop nearby."
1316
+ msgstr ""
1317
+
1318
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1019
1319
+ #, php-format
1320
+ msgid ""
1321
+ "You may enable this option to add a <a href=\"%s\" target=\"_blank\">Parcel "
1322
+ "Shop Finder</a> to your checkout. Adds an link next to the checkbox. The "
1323
+ "finder (DHL API) opens in an overlay and lets the customer find and choose a "
1324
+ "parcel shop or packing station nearby."
1325
+ msgstr ""
1326
+
1327
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1023
1328
+ #: includes/admin/views/html-page-status-germanized.php:55
1329
+ msgid "Fallback Mode"
1330
+ msgstr ""
1331
+
1332
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1024
1333
+ msgid ""
1334
+ "Enable to make sure default checkout template is not being overriden by "
1335
+ "theme."
1336
+ msgstr ""
1337
+
1338
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1028
1339
+ msgid ""
1340
+ "If you are facing problems within your checkout e.g. legally relevant data "
1341
+ "is not showing (terms, delivery time, unit price etc.) your theme seems to "
1342
+ "be incompatible (not using default WooCommerce hooks and filters). As a "
1343
+ "workaround you may use this fallback which ensures default review-order.php "
1344
+ "and form-checkout.php is used."
1345
+ msgstr ""
1346
+
1347
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1032
1348
+ msgid "Force free shipping"
1349
+ msgstr ""
1350
+
1351
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1033
1352
+ msgid "Force free shipping method if available?"
1353
+ msgstr ""
1354
+
1355
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1037
1356
+ msgid ""
1357
+ "By default WooCommerce will let customers choose other shipping methods than "
1358
+ "free shipping (if available). This option will force free shipping if "
1359
+ "available."
1360
+ msgstr ""
1361
+
1362
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1041
1363
+ msgid "Hide taxes estimated"
1364
+ msgstr ""
1365
+
1366
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1042
1367
+ msgid ""
1368
+ "Do you want to hide the \"taxes and shipping estimated\" text from your cart?"
1369
+ msgstr ""
1370
+
1371
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1046
1372
+ msgid ""
1373
+ "By default WooCommerce adds a \"taxes and shipping estimated\" text to your "
1374
+ "cart. This might puzzle your customers and may not meet german law."
1375
+ msgstr ""
1376
+
1377
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1050
1378
+ msgid "Show Thumbnails"
1379
+ msgstr ""
1380
+
1381
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1051
1382
+ msgid "Show product thumbnails on checkout page?"
1383
+ msgstr ""
1384
+
1385
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1055
1386
+ msgid ""
1387
+ "Uncheck if you don't want to show your product thumbnails within checkout "
1388
+ "table."
1389
+ msgstr ""
1390
+
1391
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1059
1392
+ msgid "Hide Shipping Select"
1393
+ msgstr ""
1394
+
1395
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1060
1396
+ msgid "Hide shipping rate selection from checkout?"
1397
+ msgstr ""
1398
+
1399
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1064
1400
+ msgid ""
1401
+ "This option will hide shipping rate selection from checkout. By then "
1402
+ "customers will only be able to change their shipping rate on cart page."
1403
+ msgstr ""
1404
+
1405
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1068
1406
+ msgid "Show back to cart button"
1407
+ msgstr ""
1408
+
1409
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1069
1410
+ msgid "Show back to cart button within your checkout table?"
1411
+ msgstr ""
1412
+
1413
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1073
1414
+ msgid ""
1415
+ "This button may let your customer edit their order before submitting. Some "
1416
+ "people state that this button should be hidden to avoid legal problems."
1417
+ msgstr ""
1418
+
1419
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1077
1420
+ msgid "Show edit data notice"
1421
+ msgstr ""
1422
+
1423
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1078
1424
+ msgid "Show a \"check-your-entries\" notice to the user?"
1425
+ msgstr ""
1426
+
1427
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1082
1428
+ msgid "This notice will be added right before the order comments field."
1429
+ msgstr ""
1430
+
1431
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1086
1432
+ msgid "Checkout Table Color"
1433
+ msgstr ""
1434
+
1435
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1088
1436
+ msgid ""
1437
+ "Choose the color of your checkout product table. This table should be "
1438
+ "highlighted within your checkout page."
1439
+ msgstr ""
1440
+
1441
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1094
1442
+ msgid "Checkout Legal Display"
1443
+ msgstr ""
1444
+
1445
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1095
1446
+ msgid "Use Text without Checkbox"
1447
+ msgstr ""
1448
+
1449
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1097
1450
+ msgid ""
1451
+ "This version will remove checkboxes from Checkout and display a text "
1452
+ "instead. This seems to be legally compliant (Zalando & Co are using this "
1453
+ "option)."
1454
+ msgstr ""
1455
+
1456
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1103
1457
+ msgid "Legal Text"
1458
+ msgstr ""
1459
+
1460
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1104
1461
+ msgid ""
1462
+ "Choose a Plain Text which will be shown right above checkout submit button. "
1463
+ "Use {term_link}{/term_link}, {data_security_link}{/data_security_link}, "
1464
+ "{revocation_link}{/revocation_link} as Placeholders for the links to legal "
1465
+ "pages."
1466
+ msgstr ""
1467
+
1468
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1106
1469
+ msgid ""
1470
+ "With your order, you agree to have read and understood our {term_link}Terms "
1471
+ "and Conditions{/term_link} and your {revocation_link}Right of Recission{/"
1472
+ "revocation_link}."
1473
+ msgstr ""
1474
+
1475
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1113
1476
+ msgid "Legal Text Error"
1477
+ msgstr ""
1478
+
1479
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1114
1480
+ msgid ""
1481
+ "If you have chosen to use checkbox validation please choose a error message "
1482
+ "which will be shown if the user doesn't check checkbox. Use {term_link}{/"
1483
+ "term_link}, {data_security_link}{/data_security_link}, {revocation_link}{/"
1484
+ "revocation_link} as Placeholders for the links to legal pages."
1485
+ msgstr ""
1486
+
1487
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1116
1488
+ msgid ""
1489
+ "To finish the order you have to accept to our {term_link}Terms and "
1490
+ "Conditions{/term_link} and {revocation_link}Right of Recission{/"
1491
+ "revocation_link}."
1492
+ msgstr ""
1493
+
1494
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1123
1495
+ msgid "Show digital notice"
1496
+ msgstr ""
1497
+
1498
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1124
1499
+ msgid "Show checkbox for digital products."
1500
+ msgstr ""
1501
+
1502
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1125
1503
+ msgid ""
1504
+ "Disable this option if you want your customers to obtain their right of "
1505
+ "recission even if digital products are being bought."
1506
+ msgstr ""
1507
+
1508
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1132
1509
+ msgid "Digital Product types"
1510
+ msgstr ""
1511
+
1512
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1133
1513
+ msgid ""
1514
+ "Select product types for which the loss of recission notice is shown. "
1515
+ "Product types like \"simple product\" may be redudant because they include "
1516
+ "virtual and downloadable products."
1517
+ msgstr ""
1518
+
1519
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1143
1520
+ msgid "Legal Digital Text"
1521
+ msgstr ""
1522
+
1523
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1144
1524
+ msgid ""
1525
+ "Choose a Plain Text which will be shown right above checkout submit button "
1526
+ "if a user has picked a digital product. See legal text option for possible "
1527
+ "placeholders."
1528
+ msgstr ""
1529
+
1530
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1146
1531
+ msgid ""
1532
+ "For digital products: I strongly agree that the execution of the agreement "
1533
+ "starts before the revocation period has expired. I am aware that my right of "
1534
+ "withdrawal ceases with the beginning of the agreement."
1535
+ msgstr ""
1536
+
1537
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1153
1538
+ msgid "Legal Digital Error"
1539
+ msgstr ""
1540
+
1541
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1154
1542
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1193
1543
+ msgid ""
1544
+ "This text will be shown as error message if customer has not checked the "
1545
+ "corresponding checkbox. See legal text option for possible placeholders."
1546
+ msgstr ""
1547
+
1548
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1156
1549
+ #: includes/wc-gzd-cart-functions.php:381
1550
+ msgid ""
1551
+ "To retrieve direct access to digital content you have to agree to the loss "
1552
+ "of your right of withdrawal."
1553
+ msgstr ""
1554
+
1555
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1163
1556
+ msgid "Digital Confirmation Notice"
1557
+ msgstr ""
1558
+
1559
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1164
1560
+ msgid ""
1561
+ "This text will be appended to your order processing email if the order "
1562
+ "contains digital products. Use placeholders {link}{/link} to insert link to "
1563
+ "right of withdrawal page."
1564
+ msgstr ""
1565
+
1566
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1167
1567
+ msgid ""
1568
+ "Furthermore you have expressly agreed to start the performance of the "
1569
+ "contract for digital items (e.g. downloads) before expiry of the withdrawal "
1570
+ "period. I have noted to lose my {link}right of withdrawal{/link} with the "
1571
+ "beginning of the performance of the contract."
1572
+ msgstr ""
1573
+
1574
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1173
1575
+ msgid "Show service notice"
1576
+ msgstr ""
1577
+
1578
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1174
1579
+ msgid "Show checkbox for service products."
1580
+ msgstr ""
1581
+
1582
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1175
1583
+ msgid ""
1584
+ "Disable this option if you want your customers to obtain their right of "
1585
+ "recission even if service products are being bought."
1586
+ msgstr ""
1587
+
1588
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1182
1589
+ msgid "Legal Service Text"
1590
+ msgstr ""
1591
+
1592
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1183
1593
+ msgid ""
1594
+ "Choose a Plain Text which will be shown right above checkout submit button "
1595
+ "if a user has picked a service product. See legal text option for possible "
1596
+ "placeholders."
1597
+ msgstr ""
1598
+
1599
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1185
1600
+ #: includes/wc-gzd-cart-functions.php:406
1601
+ msgid ""
1602
+ "For services: I demand and acknowledge the immediate performance of the "
1603
+ "service before the expiration of the withdrawal period. I acknowledge that "
1604
+ "thereby I lose my right to cancel once the service has begun."
1605
+ msgstr ""
1606
+
1607
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1192
1608
+ msgid "Legal Service Error"
1609
+ msgstr ""
1610
+
1611
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1195
1612
+ #: includes/wc-gzd-cart-functions.php:417
1613
+ msgid ""
1614
+ "To allow the immediate performance of the services you have to agree to the "
1615
+ "loss of your right of withdrawal."
1616
+ msgstr ""
1617
+
1618
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1202
1619
+ msgid "Service Confirmation Notice"
1620
+ msgstr ""
1621
+
1622
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1203
1623
+ msgid ""
1624
+ "This text will be appended to your order processing email if the order "
1625
+ "contains service products. Use placeholders {link}{/link} to insert link to "
1626
+ "right of withdrawal page."
1627
+ msgstr ""
1628
+
1629
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1206
1630
+ msgid ""
1631
+ "Furthermore you have expressly agreed to start the performance of the "
1632
+ "contract for services before expiry of the withdrawal period. I have noted "
1633
+ "to lose my {link}right of withdrawal{/link} with the beginning of the "
1634
+ "performance of the contract."
1635
+ msgstr ""
1636
+
1637
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1212
1638
+ msgid "Parcel Delivery Checkbox"
1639
+ msgstr ""
1640
+
1641
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1213
1642
+ msgid ""
1643
+ "Show checkbox for data transmission to third party parcel service providers."
1644
+ msgstr ""
1645
+
1646
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1214
1647
+ msgid ""
1648
+ "You may optionally choose to show a checkbox which lets the customer accept "
1649
+ "data transmission to a third party parcel service provider to receive parcel "
1650
+ "delivery reminders."
1651
+ msgstr ""
1652
+
1653
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1221
1654
+ msgid "Checkbox required"
1655
+ msgstr ""
1656
+
1657
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1222
1658
+ msgid "Make the parcel delivery checkbox a required field."
1659
+ msgstr ""
1660
+
1661
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1223
1662
+ msgid ""
1663
+ "For some reason you may want to force your customers to Opt-In to the data "
1664
+ "transmission to a third party parcel service provider."
1665
+ msgstr ""
1666
+
1667
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1230
1668
+ msgid "Parcel Delivery Text"
1669
+ msgstr ""
1670
+
1671
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1231
1672
+ msgid ""
1673
+ "Choose a Plain Text which will be shown right next to the corresponding "
1674
+ "checkbox to inform the customer about the data being transfered to the third "
1675
+ "party shipping supplier. Use {shipping_method_title} to insert the shipping "
1676
+ "method title."
1677
+ msgstr ""
1678
+
1679
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1233
1680
+ #: includes/wc-gzd-cart-functions.php:466
1681
+ msgid ""
1682
+ "Yes, I would like to be reminded via E-mail about parcel delivery "
1683
+ "({shipping_method_title}). Your E-mail Address will only be transferred to "
1684
+ "our parcel service provider for that particular reason."
1685
+ msgstr ""
1686
+
1687
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1241
1688
+ msgid "Select shipping methods which are applicable for the Opt-In Checkbox."
1689
+ msgstr ""
1690
+
1691
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1251
1692
+ msgid "Pay now Button"
1693
+ msgstr ""
1694
+
1695
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1252
1696
+ msgid "Add a pay now button to emails and order success page."
1697
+ msgstr ""
1698
+
1699
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1253
1700
+ msgid ""
1701
+ "Add a pay now button to order confirmation email and order success page if "
1702
+ "the order awaits payment (PayPal etc)."
1703
+ msgstr ""
1704
+
1705
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1260
1706
+ msgid "Order Success Text"
1707
+ msgstr ""
1708
+
1709
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1261
1710
+ msgid "Choose a custom text to display on order success page."
1711
+ msgstr ""
1712
+
1713
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1269
1714
+ msgid "Order Success Data"
1715
+ msgstr ""
1716
+
1717
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1270
1718
+ msgid "Hide product table and customer data on order success page"
1719
+ msgstr ""
1720
+
1721
+ #: includes/admin/settings/class-wc-gzd-settings-germanized.php:1378
1722
+ msgid ""
1723
+ "Sorry, but the new Virtual VAT rules cannot be applied to small business."
1724
+ msgstr ""
1725
+
1726
+ #: includes/admin/views/html-notice-dependencies.php:13
1727
+ msgid "Dependencies missing, outdated or not yet tested"
1728
+ msgstr ""
1729
+
1730
+ #: includes/admin/views/html-notice-dependencies.php:19
1731
+ msgid ""
1732
+ "To use WooCommerce Germanized you may at first install the following plugins:"
1733
+ msgstr ""
1734
+
1735
+ #: includes/admin/views/html-notice-dependencies.php:31
1736
+ msgid ""
1737
+ "To use WooCommerce Germanized you may at first update the following plugins "
1738
+ "to a newer version:"
1739
+ msgstr ""
1740
+
1741
+ #: includes/admin/views/html-notice-dependencies.php:36
1742
+ #, php-format
1743
+ msgid "%s required in at least version %s"
1744
+ msgstr ""
1745
+
1746
+ #: includes/admin/views/html-notice-dependencies.php:43
1747
+ msgid ""
1748
+ "Seems like you are using a not yet supported version of a Plugin which "
1749
+ "Germanized requires. You may downgrade the Plugin or update to the latest "
1750
+ "version of Germanized."
1751
+ msgstr ""
1752
+
1753
+ #: includes/admin/views/html-notice-dependencies.php:48
1754
+ #, php-format
1755
+ msgid "%s %s is not yet supported - you may install an %s"
1756
+ msgstr ""
1757
+
1758
+ #: includes/admin/views/html-notice-dependencies.php:48
1759
+ msgid "older version"
1760
+ msgstr ""
1761
+
1762
+ #: includes/admin/views/html-notice-dependencies.php:60
1763
+ msgid "Check for Updates"
1764
+ msgstr ""
1765
+
1766
+ #: includes/admin/views/html-notice-dependencies.php:64
1767
+ #: includes/admin/views/html-notice-theme-supported.php:18
1768
+ msgid "or"
1769
+ msgstr ""
1770
+
1771
+ #: includes/admin/views/html-notice-dependencies.php:66
1772
+ msgid "Install an older version"
1773
+ msgstr ""
1774
+
1775
+ #: includes/admin/views/html-notice-import.php:13
1776
+ msgid "Data import available"
1777
+ msgstr ""
1778
+
1779
+ #: includes/admin/views/html-notice-import.php:14
1780
+ msgid ""
1781
+ "It seems like as if you already had a german market extension for "
1782
+ "WooCommerce installed. Do you want to import some data? This may take a "
1783
+ "while depending on the number of products."
1784
+ msgstr ""
1785
+
1786
+ #: includes/admin/views/html-notice-import.php:16
1787
+ msgid "Import data"
1788
+ msgstr ""
1789
+
1790
+ #: includes/admin/views/html-notice-import.php:17
1791
+ msgid "Skip import"
1792
+ msgstr ""
1793
+
1794
+ #: includes/admin/views/html-notice-install.php:14
1795
+ msgid ""
1796
+ "Just a few more steps and your Online-Shop will become legally compliant:"
1797
+ msgstr ""
1798
+
1799
+ #: includes/admin/views/html-notice-install.php:19
1800
+ msgid "Germanize WooCommerce"
1801
+ msgstr ""
1802
+
1803
+ #: includes/admin/views/html-notice-install.php:23
1804
+ msgid ""
1805
+ "We will adjust WooCommerce Settings for you e.g.: EUR, German Price Format "
1806
+ "etc."
1807
+ msgstr ""
1808
+
1809
+ #: includes/admin/views/html-notice-install.php:31
1810
+ msgid "Generate Legal Pages"
1811
+ msgstr ""
1812
+
1813
+ #: includes/admin/views/html-notice-install.php:35
1814
+ msgid ""
1815
+ "We will automatically add legal pages such as Data Privacy Statement, Power "
1816
+ "of Revocation, Terms & Conditions etc."
1817
+ msgstr ""
1818
+
1819
+ #: includes/admin/views/html-notice-install.php:43
1820
+ msgid "Insert EU VAT Rates"
1821
+ msgstr ""
1822
+
1823
+ #: includes/admin/views/html-notice-install.php:47
1824
+ msgid "We will automatically insert VAT Rates for EU countries."
1825
+ msgstr ""
1826
+
1827
+ #: includes/admin/views/html-notice-install.php:53
1828
+ msgid "Insert Virtual EU VAT Rates"
1829
+ msgstr ""
1830
+
1831
+ #: includes/admin/views/html-notice-install.php:57
1832
+ msgid "We will automatically insert EU VAT Rates for selling virtual products."
1833
+ msgstr ""
1834
+
1835
+ #: includes/admin/views/html-notice-install.php:65
1836
+ msgid "Install WooCommerce Germanized"
1837
+ msgstr ""
1838
+
1839
+ #: includes/admin/views/html-notice-install.php:65
1840
+ msgid "Skip setup"
1841
+ msgstr ""
1842
+
1843
+ #: includes/admin/views/html-notice-pro.php:14
1844
+ msgid "For professionals: Upgrade to Pro-Version"
1845
+ msgstr ""
1846
+
1847
+ #: includes/admin/views/html-notice-pro.php:16
1848
+ msgid ""
1849
+ "Do you enjoy WooCommerce Germanized? Do you want to benefit from even more "
1850
+ "and better features? You may consider an uprade to Pro. Check out some of "
1851
+ "the main Pro features:"
1852
+ msgstr ""
1853
+
1854
+ #: includes/admin/views/html-notice-pro.php:19
1855
+ msgid "PDF invoices and packing slips"
1856
+ msgstr ""
1857
+
1858
+ #: includes/admin/views/html-notice-pro.php:20
1859
+ msgid "Generator for terms & conditions and right of recission"
1860
+ msgstr ""
1861
+
1862
+ #: includes/admin/views/html-notice-pro.php:21
1863
+ msgid "Multistep Checkout"
1864
+ msgstr ""
1865
+
1866
+ #: includes/admin/views/html-notice-pro.php:22
1867
+ msgid "Premium Ticket Support"
1868
+ msgstr ""
1869
+
1870
+ #: includes/admin/views/html-notice-pro.php:25
1871
+ msgid "Learn more about Pro Version"
1872
+ msgstr ""
1873
+
1874
+ #: includes/admin/views/html-notice-pro.php:28
1875
+ #: includes/admin/views/html-notice-review.php:23
1876
+ #: includes/admin/views/html-notice-theme-incompatibility.php:20
1877
+ #: includes/admin/views/html-notice-theme-not-ready.php:20
1878
+ #: includes/admin/views/html-notice-theme-supported.php:22
1879
+ msgid "Hide this notice"
1880
+ msgstr ""
1881
+
1882
+ #: includes/admin/views/html-notice-review.php:14
1883
+ msgid "Do you like WooCommerce Germanized?"
1884
+ msgstr ""
1885
+
1886
+ #: includes/admin/views/html-notice-review.php:16
1887
+ msgid ""
1888
+ "If you like WooCommerce Germanized and our Plugin does a good job it would "
1889
+ "be great if you would write a review about WooCommerce Germanized on "
1890
+ "WordPress.org. Thank you for your support!"
1891
+ msgstr ""
1892
+
1893
+ #: includes/admin/views/html-notice-review.php:19
1894
+ msgid "Write review now"
1895
+ msgstr ""
1896
+
1897
+ #: includes/admin/views/html-notice-review.php:20
1898
+ msgid "Found Bugs?"
1899
+ msgstr ""
1900
+
1901
+ #: includes/admin/views/html-notice-theme-incompatibility.php:14
1902
+ msgid "Theme incompatibility found"
1903
+ msgstr ""
1904
+
1905
+ #: includes/admin/views/html-notice-theme-incompatibility.php:15
1906
+ #, php-format
1907
+ msgid ""
1908
+ "It seems like your theme tries to overwrite legally relevant templates. "
1909
+ "Please review your checkout page. Some things might look weird because "
1910
+ "WooCommerce Germanized had to stop template overriding for legal purposes "
1911
+ "(Critical templates: %s). See <a href=\"%s\" target=\"_blank\">making your "
1912
+ "theme compatible</a> or check out our Theme <a href=\"%s\" target=\"_blank"
1913
+ "\">VendiPro</a> for 100&#37; compatibility."
1914
+ msgstr ""
1915
+
1916
+ #: includes/admin/views/html-notice-theme-incompatibility.php:17
1917
+ #: includes/admin/views/html-notice-theme-not-ready.php:17
1918
+ #: includes/admin/views/html-notice-theme-supported.php:19
1919
+ msgid "Get VendiPro now"
1920
+ msgstr ""
1921
+
1922
+ #: includes/admin/views/html-notice-theme-not-ready.php:14
1923
+ msgid "Theme not yet ready"
1924
+ msgstr ""
1925
+
1926
+ #: includes/admin/views/html-notice-theme-not-ready.php:15
1927
+ #, php-format
1928
+ msgid ""
1929
+ "It seems like your theme is not yet ready for WooCommerce Germanized. Please "
1930
+ "check your theme's styles. Some things might look weird - WooCommerce "
1931
+ "Germanized can only offer basic styles. See <a href=\"%s\" target=\"_blank"
1932
+ "\">making your theme compatible</a> or check out our Theme <a href=\"%s\" "
1933
+ "target=\"_blank\">VendiPro</a> for 100&#37; compatibility."
1934
+ msgstr ""
1935
+
1936
+ #: includes/admin/views/html-notice-theme-supported.php:14
1937
+ #, php-format
1938
+ msgid "Enable full %s support"
1939
+ msgstr ""
1940
+
1941
+ #: includes/admin/views/html-notice-theme-supported.php:15
1942
+ #, php-format
1943
+ msgid ""
1944
+ "Your current theme %s needs some adaptions to seamlessly integrate with "
1945
+ "WooCommerce Germanized. Our Pro Version will <strong>enable support for %s</"
1946
+ "strong> and makes sure WooCommerce Germanized settings are shown and styled "
1947
+ "within frontend for a better user experience. A better user experience will "
1948
+ "help you selling more products."
1949
+ msgstr ""
1950
+
1951
+ #: includes/admin/views/html-notice-theme-supported.php:17
1952
+ #, php-format
1953
+ msgid "Enable support for %s"
1954
+ msgstr ""
1955
+
1956
+ #: includes/admin/views/html-notice-update.php:12
1957
+ msgid ""
1958
+ "<strong>WooCommerce Germanized Data Update Required</strong> &#8211; We just "
1959
+ "need to update your install to the latest version"
1960
+ msgstr ""
1961
+
1962
+ #: includes/admin/views/html-notice-update.php:13
1963
+ msgid "Run the updater"
1964
+ msgstr ""
1965
+
1966
+ #: includes/admin/views/html-notice-update.php:17
1967
+ msgid ""
1968
+ "It is strongly recommended that you backup your database before proceeding. "
1969
+ "Are you sure you wish to run the updater now?"
1970
+ msgstr ""
1971
+
1972
+ #: includes/admin/views/html-page-status-germanized.php:11
1973
+ msgid ""
1974
+ "Please copy and paste this information in your ticket when contacting "
1975
+ "support:"
1976
+ msgstr ""
1977
+
1978
+ #: includes/admin/views/html-page-status-germanized.php:12
1979
+ msgid "Get System Report"
1980
+ msgstr ""
1981
+
1982
+ #: includes/admin/views/html-page-status-germanized.php:15
1983
+ msgid "Copied!"
1984
+ msgstr ""
1985
+
1986
+ #: includes/admin/views/html-page-status-germanized.php:15
1987
+ msgid "Copy for Support"
1988
+ msgstr ""
1989
+
1990
+ #: includes/admin/views/html-page-status-germanized.php:22
1991
+ msgid "WooCommerce Germanized"
1992
+ msgstr ""
1993
+
1994
+ #: includes/admin/views/html-page-status-germanized.php:27
1995
+ msgid "Version"
1996
+ msgstr ""
1997
+
1998
+ #: includes/admin/views/html-page-status-germanized.php:32
1999
+ msgid "Database Version"
2000
+ msgstr ""
2001
+
2002
+ #: includes/admin/views/html-page-status-germanized.php:52
2003
+ msgid "Term doesn’t exist"
2004
+ msgstr ""
2005
+
2006
+ #: includes/admin/views/html-page-status-germanized.php:66
2007
+ msgid "Taxes"
2008
+ msgstr ""
2009
+
2010
+ #: includes/admin/views/html-page-status-germanized.php:71
2011
+ msgid "Shipping Taxes"
2012
+ msgstr ""
2013
+
2014
+ #: includes/admin/views/html-page-status-germanized.php:73
2015
+ #: includes/admin/views/html-page-status-germanized.php:78
2016
+ msgid "Forced"
2017
+ msgstr ""
2018
+
2019
+ #: includes/admin/views/html-page-status-germanized.php:76
2020
+ msgid "Fee Taxes"
2021
+ msgstr ""
2022
+
2023
+ #: includes/admin/views/html-page-status-germanized.php:86
2024
+ msgid "Tax Rate Name Collision"
2025
+ msgstr ""
2026
+
2027
+ #: includes/admin/views/html-page-status-germanized.php:87
2028
+ msgid ""
2029
+ "Make sure, that different tax rates do not have the same names. WooCommerce "
2030
+ "will then merge these rates within checkout into one line."
2031
+ msgstr ""
2032
+
2033
+ #: includes/admin/views/html-page-status-germanized.php:130
2034
+ msgid "VAT Table Check"
2035
+ msgstr ""
2036
+
2037
+ #: includes/admin/views/html-page-status-germanized.php:131
2038
+ msgid "Checks whether all WooCommerce tax relevant tables have been added."
2039
+ msgstr ""
2040
+
2041
+ #: includes/admin/views/html-page-status-germanized.php:132
2042
+ #, php-format
2043
+ msgid "Missing: %s"
2044
+ msgstr ""
2045
+
2046
+ #: includes/admin/views/html-page-status-germanized.php:150
2047
+ msgid "Page doesn’t exist"
2048
+ msgstr ""
2049
+
2050
+ #: includes/admin/views/html-page-status-germanized.php:161
2051
+ msgid "Compatibility"
2052
+ msgstr ""
2053
+
2054
+ #: includes/admin/views/html-page-status-germanized.php:176
2055
+ #, php-format
2056
+ msgid "Checks whether compatibility options for %s are being applied."
2057
+ msgstr ""
2058
+
2059
+ #: includes/admin/views/html-page-status-germanized.php:179
2060
+ msgid "Version % not supported, supporting version %s - %s"
2061
+ msgstr ""
2062
+
2063
+ #: includes/admin/views/html-page-status-germanized.php:192
2064
+ msgid "Tools"
2065
+ msgstr ""
2066
+
2067
+ #: includes/admin/views/html-page-status-germanized.php:197
2068
+ msgid "Settings Tour"
2069
+ msgstr ""
2070
+
2071
+ #: includes/admin/views/html-page-status-germanized.php:198
2072
+ msgid ""
2073
+ "This will delete every option which prevents the Germanized settings tour "
2074
+ "from starting."
2075
+ msgstr ""
2076
+
2077
+ #: includes/admin/views/html-page-status-germanized.php:199
2078
+ msgid "Reenable Tour"
2079
+ msgstr ""
2080
+
2081
+ #: includes/admin/views/html-page-status-germanized.php:202
2082
+ msgid "German Formal"
2083
+ msgstr ""
2084
+
2085
+ #: includes/admin/views/html-page-status-germanized.php:203
2086
+ msgid ""
2087
+ "This option will install and activate German formal as your WordPress and "
2088
+ "WooCommerce language."
2089
+ msgstr ""
2090
+
2091
+ #: includes/admin/views/html-page-status-germanized.php:204
2092
+ msgid "Install de_DE_formal"
2093
+ msgstr ""
2094
+
2095
+ #: includes/admin/views/html-page-status-germanized.php:207
2096
+ msgid "Text Options"
2097
+ msgstr ""
2098
+
2099
+ #: includes/admin/views/html-page-status-germanized.php:208
2100
+ msgid ""
2101
+ "This option removes custom Germanized text options (e.g. Pay-Button-Text) "
2102
+ "and installs default options. You may use this options to reinstall text "
2103
+ "options e.g. after a language switch."
2104
+ msgstr ""
2105
+
2106
+ #: includes/admin/views/html-page-status-germanized.php:209
2107
+ msgid "Delete text options"
2108
+ msgstr ""
2109
+
2110
+ #: includes/admin/views/html-page-status-germanized.php:212
2111
+ msgid "Delete Version Cache"
2112
+ msgstr ""
2113
+
2114
+ #: includes/admin/views/html-page-status-germanized.php:213
2115
+ msgid ""
2116
+ "This option deletes plugin version caches necessary to check whether "
2117
+ "activated plugins are compatible with Germanized."
2118
+ msgstr ""
2119
+
2120
+ #: includes/admin/views/html-page-status-germanized.php:214
2121
+ msgid "Delete version cache"
2122
+ msgstr ""
2123
+
2124
+ #: includes/admin/views/html-page-status-germanized.php:217
2125
+ msgid "Renew EU VAT Rates"
2126
+ msgstr ""
2127
+
2128
+ #: includes/admin/views/html-page-status-germanized.php:218
2129
+ msgid ""
2130
+ "Insert VAT rates (standard, recuded and virtual) for EU countries. This "
2131
+ "option deletes all of your standard, reduced and virtual rates before "
2132
+ "inserting."
2133
+ msgstr ""
2134
+
2135
+ #: includes/admin/views/html-page-status-germanized.php:219
2136
+ msgid "Renew VAT Rates"
2137
+ msgstr ""
2138
+
2139
+ #: includes/admin/views/html-page-status-germanized.php:228
2140
+ msgid "Templates"
2141
+ msgstr ""
2142
+
2143
+ #: includes/admin/views/html-page-status-germanized.php:273
2144
+ #, php-format
2145
+ msgid ""
2146
+ "<code>%s</code> version <strong style=\"color:red\">%s</strong> is out of "
2147
+ "date. The core version is %s"
2148
+ msgstr ""
2149
+
2150
+ #: includes/admin/views/html-page-status-germanized.php:285
2151
+ #: includes/admin/views/html-page-status-germanized.php:294
2152
+ msgid "Overrides"
2153
+ msgstr ""
2154
+
2155
+ #: includes/admin/views/html-page-status-germanized.php:305
2156
+ msgid "Learn how to update outdated templates"
2157
+ msgstr ""
2158
+
2159
+ #: includes/admin/views/html-settings-pro.php:23
2160
+ msgid "Get WooCommerce Germanized Pro to unlock"
2161
+ msgstr ""
2162
+
2163
+ #: includes/admin/views/html-settings-pro.php:24
2164
+ msgid ""
2165
+ "Enjoy even more professional features such as invoices, legal text "
2166
+ "generators, B2B VAT settings and premium support!"
2167
+ msgstr ""
2168
+
2169
+ #: includes/admin/views/html-settings-pro.php:25
2170
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:67
2171
+ msgid "Upgrade now"
2172
+ msgstr ""
2173
+
2174
+ #: includes/api/class-wc-gzd-rest-customers-controller.php:137
2175
+ #: includes/api/class-wc-gzd-rest-customers-controller.php:144
2176
+ #: includes/api/class-wc-gzd-rest-orders-controller.php:161
2177
+ #: includes/api/class-wc-gzd-rest-orders-controller.php:168
2178
+ #: includes/class-wc-gzd-checkout.php:299
2179
+ #: includes/class-wc-gzd-checkout.php:309
2180
+ #: includes/class-wc-gzd-customer-helper.php:112
2181
+ #: includes/class-wc-gzd-customer-helper.php:120
2182
+ #: includes/class-wc-gzd-revocation.php:38
2183
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:630
2184
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:92
2185
+ #: includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-reviews.php:26
2186
+ #: includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-rich-snippets.php:26
2187
+ msgid "Title"
2188
+ msgstr ""
2189
+
2190
+ #: includes/api/class-wc-gzd-rest-customers-controller.php:151
2191
+ #: includes/class-wc-gzd-dhl-parcel-shops.php:153
2192
+ msgid "Send to DHL Parcel Shop?"
2193
+ msgstr ""
2194
+
2195
+ #: includes/api/class-wc-gzd-rest-customers-controller.php:157
2196
+ #: includes/api/class-wc-gzd-rest-orders-controller.php:181
2197
+ #: includes/class-wc-gzd-dhl-parcel-shops.php:163
2198
+ #: includes/class-wc-gzd-dhl-parcel-shops.php:188
2199
+ #: includes/class-wc-gzd-dhl-parcel-shops.php:201
2200
+ msgid "Postnumber"
2201
+ msgstr ""
2202
+
2203
+ #: includes/api/class-wc-gzd-rest-customers-controller.php:163
2204
+ #: includes/api/class-wc-gzd-rest-orders-controller.php:194
2205
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:30
2206
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:633
2207
+ #: includes/gateways/direct-debit/views/html-export.php:27
2208
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops.php:126
2209
+ msgid "Direct Debit"
2210
+ msgstr ""
2211
+
2212
+ #: includes/api/class-wc-gzd-rest-customers-controller.php:168
2213
+ #: includes/api/class-wc-gzd-rest-orders-controller.php:199
2214
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:108
2215
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:436
2216
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:659
2217
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:800
2218
+ msgid "Account Holder"
2219
+ msgstr ""
2220
+
2221
+ #: includes/api/class-wc-gzd-rest-customers-controller.php:173
2222
+ #: includes/api/class-wc-gzd-rest-orders-controller.php:204
2223
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:115
2224
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:437
2225
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:667
2226
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:804
2227
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:896
2228
+ msgid "IBAN"
2229
+ msgstr ""
2230
+
2231
+ #: includes/api/class-wc-gzd-rest-customers-controller.php:178
2232
+ #: includes/api/class-wc-gzd-rest-orders-controller.php:209
2233
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:121
2234
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:438
2235
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:808
2236
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:897
2237
+ msgid "BIC/SWIFT"
2238
+ msgstr ""
2239
+
2240
+ #: includes/api/class-wc-gzd-rest-orders-controller.php:175
2241
+ #: includes/class-wc-gzd-dhl-parcel-shops.php:238
2242
+ #: includes/class-wc-gzd-dhl-parcel-shops.php:271
2243
+ #: includes/class-wc-gzd-dhl-parcel-shops.php:325
2244
+ #: includes/class-wc-gzd-dhl-parcel-shops.php:326
2245
+ msgid "Parcel Shop"
2246
+ msgstr ""
2247
+
2248
+ #: includes/api/class-wc-gzd-rest-orders-controller.php:187
2249
+ msgid "Parcel Delivery Data Transfer"
2250
+ msgstr ""
2251
+
2252
+ #: includes/api/class-wc-gzd-rest-orders-controller.php:214
2253
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:127
2254
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:442
2255
+ msgid "Mandate Reference ID"
2256
+ msgstr ""
2257
+
2258
+ #: includes/api/class-wc-gzd-rest-products-controller.php:44
2259
+ #: includes/api/class-wc-gzd-rest-products-controller.php:209
2260
+ msgid "Delivery Time ID"
2261
+ msgstr ""
2262
+
2263
+ #: includes/api/class-wc-gzd-rest-products-controller.php:49
2264
+ #: includes/api/class-wc-gzd-rest-products-controller.php:214
2265
+ msgid "Delivery Time Name"
2266
+ msgstr ""
2267
+
2268
+ #: includes/api/class-wc-gzd-rest-products-controller.php:55
2269
+ #: includes/api/class-wc-gzd-rest-products-controller.php:220
2270
+ msgid "Delivery Time Slug"
2271
+ msgstr ""
2272
+
2273
+ #: includes/api/class-wc-gzd-rest-products-controller.php:60
2274
+ #: includes/api/class-wc-gzd-rest-products-controller.php:225
2275
+ msgid "Delivery Time HTML"
2276
+ msgstr ""
2277
+
2278
+ #: includes/api/class-wc-gzd-rest-products-controller.php:68
2279
+ #: includes/api/class-wc-gzd-rest-products-controller.php:91
2280
+ #: includes/api/class-wc-gzd-rest-products-controller.php:233
2281
+ #: includes/api/class-wc-gzd-rest-products-controller.php:256
2282
+ #: includes/class-wc-gzd-post-types.php:96
2283
+ msgid "Price Label"
2284
+ msgstr ""
2285
+
2286
+ #: includes/api/class-wc-gzd-rest-products-controller.php:73
2287
+ #: includes/api/class-wc-gzd-rest-products-controller.php:96
2288
+ #: includes/api/class-wc-gzd-rest-products-controller.php:238
2289
+ #: includes/api/class-wc-gzd-rest-products-controller.php:261
2290
+ msgid "Price Label ID"
2291
+ msgstr ""
2292
+
2293
+ #: includes/api/class-wc-gzd-rest-products-controller.php:78
2294
+ #: includes/api/class-wc-gzd-rest-products-controller.php:101
2295
+ #: includes/api/class-wc-gzd-rest-products-controller.php:243
2296
+ #: includes/api/class-wc-gzd-rest-products-controller.php:266
2297
+ msgid "Price Label Name"
2298
+ msgstr ""
2299
+
2300
+ #: includes/api/class-wc-gzd-rest-products-controller.php:84
2301
+ #: includes/api/class-wc-gzd-rest-products-controller.php:107
2302
+ #: includes/api/class-wc-gzd-rest-products-controller.php:249
2303
+ #: includes/api/class-wc-gzd-rest-products-controller.php:272
2304
+ msgid "Price Label Slug"
2305
+ msgstr ""
2306
+
2307
+ #: includes/api/class-wc-gzd-rest-products-controller.php:119
2308
+ msgid "Unit ID"
2309
+ msgstr ""
2310
+
2311
+ #: includes/api/class-wc-gzd-rest-products-controller.php:124
2312
+ msgid "Unit Name"
2313
+ msgstr ""
2314
+
2315
+ #: includes/api/class-wc-gzd-rest-products-controller.php:130
2316
+ msgid "Unit Slug"
2317
+ msgstr ""
2318
+
2319
+ #: includes/api/class-wc-gzd-rest-products-controller.php:137
2320
+ #: includes/api/class-wc-gzd-rest-products-controller.php:290
2321
+ msgid "Unit Price"
2322
+ msgstr ""
2323
+
2324
+ #: includes/api/class-wc-gzd-rest-products-controller.php:142
2325
+ #: includes/api/class-wc-gzd-rest-products-controller.php:295
2326
+ msgid "Unit Base"
2327
+ msgstr ""
2328
+
2329
+ #: includes/api/class-wc-gzd-rest-products-controller.php:147
2330
+ #: includes/api/class-wc-gzd-rest-products-controller.php:300
2331
+ msgid "Unit Product"
2332
+ msgstr ""
2333
+
2334
+ #: includes/api/class-wc-gzd-rest-products-controller.php:152
2335
+ #: includes/api/class-wc-gzd-rest-products-controller.php:305
2336
+ msgid "Unit Auto Calculation"
2337
+ msgstr ""
2338
+
2339
+ #: includes/api/class-wc-gzd-rest-products-controller.php:158
2340
+ #: includes/api/class-wc-gzd-rest-products-controller.php:311
2341
+ msgid "Current Unit Price"
2342
+ msgstr ""
2343
+
2344
+ #: includes/api/class-wc-gzd-rest-products-controller.php:163
2345
+ #: includes/api/class-wc-gzd-rest-products-controller.php:316
2346
+ msgid "Unit Regular Price"
2347
+ msgstr ""
2348
+
2349
+ #: includes/api/class-wc-gzd-rest-products-controller.php:168
2350
+ #: includes/api/class-wc-gzd-rest-products-controller.php:321
2351
+ msgid "Unit Sale Price"
2352
+ msgstr ""
2353
+
2354
+ #: includes/api/class-wc-gzd-rest-products-controller.php:173
2355
+ #: includes/api/class-wc-gzd-rest-products-controller.php:326
2356
+ msgid "Unit Price HTML"
2357
+ msgstr ""
2358
+
2359
+ #: includes/api/class-wc-gzd-rest-products-controller.php:181
2360
+ #: includes/api/class-wc-gzd-rest-products-controller.php:285
2361
+ msgid "Small Cart Product Description"
2362
+ msgstr ""
2363
+
2364
+ #: includes/api/class-wc-gzd-rest-products-controller.php:186
2365
+ msgid "Deactivate the hint for additional shipping costs"
2366
+ msgstr ""
2367
+
2368
+ #: includes/api/class-wc-gzd-rest-products-controller.php:192
2369
+ #: includes/api/class-wc-gzd-rest-products-controller.php:279
2370
+ msgid "Whether this product is a service or not"
2371
+ msgstr ""
2372
+
2373
+ #: includes/api/class-wc-gzd-rest-products-controller.php:198
2374
+ msgid "Whether this product applies for differential taxation or not"
2375
+ msgstr ""
2376
+
2377
+ #: includes/api/v1/class-wc-gzd-rest-product-delivery-times-controller.php:80
2378
+ #: includes/api/v1/class-wc-gzd-rest-product-price-labels-controller.php:80
2379
+ #: includes/api/v1/class-wc-gzd-rest-product-units-controller.php:80
2380
+ msgid "Unique identifier for the resource."
2381
+ msgstr ""
2382
+
2383
+ #: includes/api/v1/class-wc-gzd-rest-product-delivery-times-controller.php:86
2384
+ #: includes/api/v1/class-wc-gzd-rest-product-price-labels-controller.php:86
2385
+ #: includes/api/v1/class-wc-gzd-rest-product-units-controller.php:86
2386
+ msgid "Resource name."
2387
+ msgstr ""
2388
+
2389
+ #: includes/api/v1/class-wc-gzd-rest-product-delivery-times-controller.php:94
2390
+ #: includes/api/v1/class-wc-gzd-rest-product-price-labels-controller.php:94
2391
+ #: includes/api/v1/class-wc-gzd-rest-product-units-controller.php:94
2392
+ msgid "An alphanumeric identifier for the resource unique to its type."
2393
+ msgstr ""
2394
+
2395
+ #: includes/api/v1/class-wc-gzd-rest-product-delivery-times-controller.php:102
2396
+ #: includes/api/v1/class-wc-gzd-rest-product-price-labels-controller.php:102
2397
+ #: includes/api/v1/class-wc-gzd-rest-product-units-controller.php:102
2398
+ msgid "HTML description of the resource."
2399
+ msgstr ""
2400
+
2401
+ #: includes/api/v1/class-wc-gzd-rest-product-delivery-times-controller.php:110
2402
+ #: includes/api/v1/class-wc-gzd-rest-product-price-labels-controller.php:110
2403
+ #: includes/api/v1/class-wc-gzd-rest-product-units-controller.php:110
2404
+ msgid "Number of published products for the resource."
2405
+ msgstr ""
2406
+
2407
+ #: includes/class-wc-gzd-ajax.php:64
2408
+ #, php-format
2409
+ msgid "%s [new]"
2410
+ msgstr ""
2411
+
2412
+ #: includes/class-wc-gzd-ajax.php:91
2413
+ msgid "is not a valid email address."
2414
+ msgstr ""
2415
+
2416
+ #: includes/class-wc-gzd-ajax.php:94
2417
+ msgid "Please enter a valid postcode/ZIP"
2418
+ msgstr ""
2419
+
2420
+ #: includes/class-wc-gzd-ajax.php:97
2421
+ msgid "is not valid."
2422
+ msgstr ""
2423
+
2424
+ #: includes/class-wc-gzd-ajax.php:117
2425
+ msgid ""
2426
+ "Thank you. We have received your Revocation Request. You will receive a "
2427
+ "conformation email within a few minutes."
2428
+ msgstr ""
2429
+
2430
+ #: includes/class-wc-gzd-checkout.php:300
2431
+ #: includes/class-wc-gzd-checkout.php:308
2432
+ #: includes/class-wc-gzd-checkout.php:333
2433
+ #: includes/class-wc-gzd-checkout.php:558
2434
+ #: includes/class-wc-gzd-customer-helper.php:114
2435
+ #: includes/class-wc-gzd-customer-helper.php:122
2436
+ #: includes/class-wc-gzd-revocation.php:41
2437
+ msgid "Mr."
2438
+ msgstr ""
2439
+
2440
+ #: includes/class-wc-gzd-checkout.php:300
2441
+ #: includes/class-wc-gzd-checkout.php:308
2442
+ #: includes/class-wc-gzd-checkout.php:334
2443
+ #: includes/class-wc-gzd-checkout.php:558
2444
+ #: includes/class-wc-gzd-checkout.php:563
2445
+ #: includes/class-wc-gzd-customer-helper.php:114
2446
+ #: includes/class-wc-gzd-customer-helper.php:122
2447
+ #: includes/class-wc-gzd-revocation.php:42
2448
+ msgid "Ms."
2449
+ msgstr ""
2450
+
2451
+ #: includes/class-wc-gzd-coupon-helper.php:251
2452
+ msgid "Is voucher?"
2453
+ msgstr ""
2454
+
2455
+ #: includes/class-wc-gzd-coupon-helper.php:252
2456
+ #, php-format
2457
+ msgid ""
2458
+ "Whether or not this coupon is a voucher which has been sold to a customer "
2459
+ "without VAT and needs to be taxed as soon as the customer redeems the "
2460
+ "voucher. Find more information <a href=\"%s\" target=\"_blank\">here</a>."
2461
+ msgstr ""
2462
+
2463
+ #: includes/class-wc-gzd-customer-helper.php:101
2464
+ #: includes/class-wc-gzd-customer-helper.php:195
2465
+ #: includes/class-wc-gzd-customer-helper.php:244
2466
+ msgid ""
2467
+ "Please activate your account through clicking on the activation link "
2468
+ "received via email."
2469
+ msgstr ""
2470
+
2471
+ #: includes/class-wc-gzd-customer-helper.php:204
2472
+ #, php-format
2473
+ msgid "Continue without creating an account? <a href=\"%s\">Click here</a>"
2474
+ msgstr ""
2475
+
2476
+ #: includes/class-wc-gzd-customer-helper.php:206
2477
+ msgid "Please create an account or login before continuing to checkout"
2478
+ msgstr ""
2479
+
2480
+ #: includes/class-wc-gzd-customer-helper.php:265
2481
+ msgid "Thank you. You have successfully activated your account."
2482
+ msgstr ""
2483
+
2484
+ #: includes/class-wc-gzd-customer-helper.php:270
2485
+ msgid "Sorry, but this activation code cannot be found."
2486
+ msgstr ""
2487
+
2488
+ #: includes/class-wc-gzd-dhl-parcel-shops.php:180
2489
+ msgid "DHL Parcel Shop?"
2490
+ msgstr ""
2491
+
2492
+ #: includes/class-wc-gzd-dhl-parcel-shops.php:182
2493
+ msgid "No"
2494
+ msgstr ""
2495
+
2496
+ #: includes/class-wc-gzd-dhl-parcel-shops.php:182
2497
+ msgid "Yes"
2498
+ msgstr ""
2499
+
2500
+ #: includes/class-wc-gzd-dhl-parcel-shops.php:183
2501
+ msgid "Select whether delivery to parcel shop should be enabled."
2502
+ msgstr ""
2503
+
2504
+ #: includes/class-wc-gzd-dhl-parcel-shops.php:190
2505
+ msgid ""
2506
+ "In case delivery to parcel shop is enabled please fill in the corresponding "
2507
+ "DHL post number."
2508
+ msgstr ""
2509
+
2510
+ #: includes/class-wc-gzd-dhl-parcel-shops.php:291
2511
+ msgid "Your PostNumber should contain numbers only"
2512
+ msgstr ""
2513
+
2514
+ #: includes/class-wc-gzd-dhl-parcel-shops.php:297
2515
+ #: includes/class-wc-gzd-dhl-parcel-shops.php:332
2516
+ #, php-format
2517
+ msgid "Parcel Shop Delivery is only supported in: %s."
2518
+ msgstr ""
2519
+
2520
+ #: includes/class-wc-gzd-ekomi.php:55
2521
+ msgid "eKomi Customer"
2522
+ msgstr ""
2523
+
2524
+ #: includes/class-wc-gzd-ekomi.php:391
2525
+ msgid "Ekomi Integration"
2526
+ msgstr ""
2527
+
2528
+ #: includes/class-wc-gzd-ekomi.php:394
2529
+ msgid "Shop ID"
2530
+ msgstr ""
2531
+
2532
+ #: includes/class-wc-gzd-ekomi.php:395
2533
+ msgid "Insert your Shop ID here."
2534
+ msgstr ""
2535
+
2536
+ #: includes/class-wc-gzd-ekomi.php:403
2537
+ msgid "Link to Certificate"
2538
+ msgstr ""
2539
+
2540
+ #: includes/class-wc-gzd-ekomi.php:404
2541
+ msgid "Insert the link to your Certificate"
2542
+ msgstr ""
2543
+
2544
+ #: includes/class-wc-gzd-ekomi.php:412
2545
+ msgid "Partner ID"
2546
+ msgstr ""
2547
+
2548
+ #: includes/class-wc-gzd-ekomi.php:413
2549
+ msgid ""
2550
+ "Insert your Partner ID here (you may find that ID on your certificate "
2551
+ "website)"
2552
+ msgstr ""
2553
+
2554
+ #: includes/class-wc-gzd-ekomi.php:421
2555
+ msgid "Interface ID"
2556
+ msgstr ""
2557
+
2558
+ #: includes/class-wc-gzd-ekomi.php:422
2559
+ msgid "Insert your Interface ID here."
2560
+ msgstr ""
2561
+
2562
+ #: includes/class-wc-gzd-ekomi.php:430
2563
+ msgid "Interface Password"
2564
+ msgstr ""
2565
+
2566
+ #: includes/class-wc-gzd-ekomi.php:431
2567
+ msgid "Insert your Interface Password here."
2568
+ msgstr ""
2569
+
2570
+ #: includes/class-wc-gzd-ekomi.php:439
2571
+ msgid "Days until Email"
2572
+ msgstr ""
2573
+
2574
+ #: includes/class-wc-gzd-ekomi.php:440
2575
+ msgid ""
2576
+ "Number of days between an order being marked as completed and review email "
2577
+ "to customer."
2578
+ msgstr ""
2579
+
2580
+ #: includes/class-wc-gzd-ekomi.php:455
2581
+ msgid "eKomi Options"
2582
+ msgstr ""
2583
+
2584
+ #: includes/class-wc-gzd-emails.php:78
2585
+ msgid "Someone requested a password reset for your account."
2586
+ msgstr ""
2587
+
2588
+ #: includes/class-wc-gzd-emails.php:91
2589
+ #, php-format
2590
+ msgid "Thanks for creating an account on %s."
2591
+ msgstr ""
2592
+
2593
+ #: includes/class-wc-gzd-emails.php:531
2594
+ msgid "Forward your Revocation online"
2595
+ msgstr ""
2596
+
2597
+ #: includes/class-wc-gzd-install.php:128
2598
+ #, php-format
2599
+ msgid ""
2600
+ "Please install <a href=\"%s\" target=\"_blank\">WooCommerce</a> before "
2601
+ "installing WooCommerce Germanized. Thank you!"
2602
+ msgstr ""
2603
+
2604
+ #: includes/class-wc-gzd-install.php:476
2605
+ msgid "data-security"
2606
+ msgstr ""
2607
+
2608
+ #: includes/class-wc-gzd-install.php:481
2609
+ msgid "imprint"
2610
+ msgstr ""
2611
+
2612
+ #: includes/class-wc-gzd-install.php:486
2613
+ msgid "terms"
2614
+ msgstr ""
2615
+
2616
+ #: includes/class-wc-gzd-install.php:491
2617
+ msgid "revocation"
2618
+ msgstr ""
2619
+
2620
+ #: includes/class-wc-gzd-install.php:496
2621
+ msgid "shipping-methods"
2622
+ msgstr ""
2623
+
2624
+ #: includes/class-wc-gzd-install.php:501
2625
+ msgid "payment-methods"
2626
+ msgstr ""
2627
+
2628
+ #: includes/class-wc-gzd-payment-gateways.php:86
2629
+ #: includes/class-wc-gzd-payment-gateways.php:125
2630
+ #, php-format
2631
+ msgid "%s payment charge"
2632
+ msgstr ""
2633
+
2634
+ #: includes/class-wc-gzd-payment-gateways.php:89
2635
+ #: includes/wc-gzd-order-functions.php:20
2636
+ #: includes/wc-gzd-template-functions.php:538
2637
+ #, php-format
2638
+ msgid "Plus %s forwarding fee (charged by the transport agent)"
2639
+ msgstr ""
2640
+
2641
+ #: includes/class-wc-gzd-payment-gateways.php:153
2642
+ msgid "Fee"
2643
+ msgstr ""
2644
+
2645
+ #: includes/class-wc-gzd-payment-gateways.php:155
2646
+ msgid ""
2647
+ "This fee is being added if customer selects payment method within checkout."
2648
+ msgstr ""
2649
+
2650
+ #: includes/class-wc-gzd-payment-gateways.php:160
2651
+ msgid "Fee is taxable?"
2652
+ msgstr ""
2653
+
2654
+ #: includes/class-wc-gzd-payment-gateways.php:162
2655
+ msgid "Check if fee is taxable."
2656
+ msgstr ""
2657
+
2658
+ #: includes/class-wc-gzd-payment-gateways.php:169
2659
+ msgid "Forwarding Fee"
2660
+ msgstr ""
2661
+
2662
+ #: includes/class-wc-gzd-payment-gateways.php:172
2663
+ msgid ""
2664
+ "Forwarding fee will be charged by the transport agent in addition to the "
2665
+ "cash of delivery fee e.g. DHL - tax free."
2666
+ msgstr ""
2667
+
2668
+ #: includes/class-wc-gzd-payment-gateways.php:212
2669
+ msgid "Payment charge"
2670
+ msgstr ""
2671
+
2672
+ #: includes/class-wc-gzd-post-types.php:33
2673
+ #: includes/class-wc-gzd-post-types.php:35
2674
+ msgid "Product Delivery Times"
2675
+ msgstr ""
2676
+
2677
+ #: includes/class-wc-gzd-post-types.php:36
2678
+ msgid "Product Delivery Time"
2679
+ msgstr ""
2680
+
2681
+ #: includes/class-wc-gzd-post-types.php:38
2682
+ msgid "Search Delivery Times"
2683
+ msgstr ""
2684
+
2685
+ #: includes/class-wc-gzd-post-types.php:39
2686
+ msgid "All Product Delivery Times"
2687
+ msgstr ""
2688
+
2689
+ #: includes/class-wc-gzd-post-types.php:40
2690
+ msgid "Edit Product Delivery Time"
2691
+ msgstr ""
2692
+
2693
+ #: includes/class-wc-gzd-post-types.php:41
2694
+ msgid "Update Product Delivery Time"
2695
+ msgstr ""
2696
+
2697
+ #: includes/class-wc-gzd-post-types.php:42
2698
+ msgid "Add New Product Delivery Time"
2699
+ msgstr ""
2700
+
2701
+ #: includes/class-wc-gzd-post-types.php:43
2702
+ msgid "New Product Delivery Time Name"
2703
+ msgstr ""
2704
+
2705
+ #: includes/class-wc-gzd-post-types.php:63
2706
+ #: includes/class-wc-gzd-post-types.php:65
2707
+ #: includes/class-wc-gzd-post-types.php:67
2708
+ msgid "Units"
2709
+ msgstr ""
2710
+
2711
+ #: includes/class-wc-gzd-post-types.php:68
2712
+ msgid "Search Units"
2713
+ msgstr ""
2714
+
2715
+ #: includes/class-wc-gzd-post-types.php:69
2716
+ msgid "All Units"
2717
+ msgstr ""
2718
+
2719
+ #: includes/class-wc-gzd-post-types.php:70
2720
+ msgid "Edit Unit"
2721
+ msgstr ""
2722
+
2723
+ #: includes/class-wc-gzd-post-types.php:71
2724
+ msgid "Update Unit"
2725
+ msgstr ""
2726
+
2727
+ #: includes/class-wc-gzd-post-types.php:72
2728
+ msgid "Add New Unit"
2729
+ msgstr ""
2730
+
2731
+ #: includes/class-wc-gzd-post-types.php:73
2732
+ msgid "New Unit Name"
2733
+ msgstr ""
2734
+
2735
+ #: includes/class-wc-gzd-post-types.php:98
2736
+ msgid "Search Price Labels"
2737
+ msgstr ""
2738
+
2739
+ #: includes/class-wc-gzd-post-types.php:99
2740
+ msgid "All Price Labels"
2741
+ msgstr ""
2742
+
2743
+ #: includes/class-wc-gzd-post-types.php:100
2744
+ msgid "Edit Price Label"
2745
+ msgstr ""
2746
+
2747
+ #: includes/class-wc-gzd-post-types.php:101
2748
+ msgid "Update Price Label"
2749
+ msgstr ""
2750
+
2751
+ #: includes/class-wc-gzd-post-types.php:102
2752
+ msgid "Add New Price Label"
2753
+ msgstr ""
2754
+
2755
+ #: includes/class-wc-gzd-post-types.php:103
2756
+ msgid "New Price Label Name"
2757
+ msgstr ""
2758
+
2759
+ #: includes/class-wc-gzd-product-variable.php:115
2760
+ #: includes/class-wc-gzd-product-variable.php:120
2761
+ #, php-format
2762
+ msgid "%1$s&ndash;%2$s"
2763
+ msgstr ""
2764
+
2765
+ #: includes/class-wc-gzd-revocation.php:22
2766
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:29
2767
+ msgid "Revocation"
2768
+ msgstr ""
2769
+
2770
+ #: includes/class-wc-gzd-revocation.php:24
2771
+ msgid "Tip: Delete whatever entry does not apply, and provide, as needed"
2772
+ msgstr ""
2773
+
2774
+ #: includes/class-wc-gzd-revocation.php:25
2775
+ msgid ""
2776
+ "I/We hereby give notice that I/We withdraw from my/our contract of sale of "
2777
+ "the following goods/provision of the following service: "
2778
+ msgstr ""
2779
+
2780
+ #: includes/class-wc-gzd-revocation.php:29
2781
+ msgid "Received"
2782
+ msgstr ""
2783
+
2784
+ #: includes/class-wc-gzd-revocation.php:33
2785
+ msgid "Order Date"
2786
+ msgstr ""
2787
+
2788
+ #: includes/class-wc-gzd-revocation.php:35
2789
+ msgid "Customer Data"
2790
+ msgstr ""
2791
+
2792
+ #: includes/class-wc-gzd-revocation.php:47
2793
+ msgid "First Name"
2794
+ msgstr ""
2795
+
2796
+ #: includes/class-wc-gzd-revocation.php:52
2797
+ msgid "Last Name"
2798
+ msgstr ""
2799
+
2800
+ #: includes/class-wc-gzd-revocation.php:57
2801
+ msgid "Street"
2802
+ msgstr ""
2803
+
2804
+ #: includes/class-wc-gzd-revocation.php:62
2805
+ msgid "Postal Code"
2806
+ msgstr ""
2807
+
2808
+ #: includes/class-wc-gzd-revocation.php:67
2809
+ msgid "City"
2810
+ msgstr ""
2811
+
2812
+ #: includes/class-wc-gzd-revocation.php:72
2813
+ msgid "Country"
2814
+ msgstr ""
2815
+
2816
+ #: includes/class-wc-gzd-revocation.php:78
2817
+ msgid "Mail"
2818
+ msgstr ""
2819
+
2820
+ #: includes/compatibility/class-wc-gzd-compatibility-polylang.php:244
2821
+ msgid "Unit Price Metas"
2822
+ msgstr ""
2823
+
2824
+ #: includes/compatibility/class-wc-gzd-compatibility-polylang.php:245
2825
+ msgid ""
2826
+ "Note the last unit price field is the final unit price taking into account "
2827
+ "the effect of unit sale price"
2828
+ msgstr ""
2829
+
2830
+ #: includes/compatibility/class-wc-gzd-compatibility-polylang.php:259
2831
+ msgid ""
2832
+ "Sale price labels used to mark old prices (e.g. Recommended Retail Price)"
2833
+ msgstr ""
2834
+
2835
+ #: includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php:109
2836
+ #: includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php:116
2837
+ msgid "recurring payments"
2838
+ msgstr ""
2839
+
2840
+ #: includes/emails/class-wc-gzd-email-customer-ekomi.php:24
2841
+ msgid "eKomi Review Reminder"
2842
+ msgstr ""
2843
+
2844
+ #: includes/emails/class-wc-gzd-email-customer-ekomi.php:25
2845
+ msgid ""
2846
+ "This E-Mail is being sent to a customer to transfer eKomi order review link "
2847
+ "to a customer."
2848
+ msgstr ""
2849
+
2850
+ #: includes/emails/class-wc-gzd-email-customer-ekomi.php:46
2851
+ #: includes/emails/class-wc-gzd-email-customer-trusted-shops.php:46
2852
+ msgid "Please rate your {site_title} order from {order_date}"
2853
+ msgstr ""
2854
+
2855
+ #: includes/emails/class-wc-gzd-email-customer-ekomi.php:56
2856
+ #: includes/emails/class-wc-gzd-email-customer-trusted-shops.php:56
2857
+ msgid "Please rate your Order"
2858
+ msgstr ""
2859
+
2860
+ #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:38
2861
+ msgid "New account activation"
2862
+ msgstr ""
2863
+
2864
+ #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:39
2865
+ msgid ""
2866
+ "Customer \"new account activation\" emails are sent to the customer when a "
2867
+ "customer signs up via checkout or account pages. This mail is being used as "
2868
+ "double opt in for new customer accounts."
2869
+ msgstr ""
2870
+
2871
+ #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:57
2872
+ msgid "Activate your account on {site_title}"
2873
+ msgstr ""
2874
+
2875
+ #: includes/emails/class-wc-gzd-email-customer-new-account-activation.php:67
2876
+ msgid "Account activation {site_title}"
2877
+ msgstr ""
2878
+
2879
+ #: includes/emails/class-wc-gzd-email-customer-paid-for-order.php:25
2880
+ msgid "Paid for order"
2881
+ msgstr ""
2882
+
2883
+ #: includes/emails/class-wc-gzd-email-customer-paid-for-order.php:26
2884
+ msgid "This E-Mail is being sent to a customer after the order has been paid."
2885
+ msgstr ""
2886
+
2887
+ #: includes/emails/class-wc-gzd-email-customer-paid-for-order.php:45
2888
+ msgid "Payment received for order {order_number}"
2889
+ msgstr ""
2890
+
2891
+ #: includes/emails/class-wc-gzd-email-customer-paid-for-order.php:55
2892
+ msgid "Payment received"
2893
+ msgstr ""
2894
+
2895
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:30
2896
+ msgid "Email being sent if a customer fills out the revocation form."
2897
+ msgstr ""
2898
+
2899
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:48
2900
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:58
2901
+ msgid "Your revocation"
2902
+ msgstr ""
2903
+
2904
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:142
2905
+ msgid "Admin email"
2906
+ msgstr ""
2907
+
2908
+ #: includes/emails/class-wc-gzd-email-customer-revocation.php:145
2909
+ msgid ""
2910
+ "Insert the email address of your shop manager here. A copy of the revocation "
2911
+ "email is being sent to this address."
2912
+ msgstr ""
2913
+
2914
+ #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:29
2915
+ #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:48
2916
+ #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:58
2917
+ msgid "SEPA Direct Debit Mandate"
2918
+ msgstr ""
2919
+
2920
+ #: includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php:30
2921
+ msgid ""
2922
+ "Email contains a copy of the SEPA mandate generated by information provided "
2923
+ "by the customer."
2924
+ msgstr ""
2925
+
2926
+ #: includes/emails/class-wc-gzd-email-customer-trusted-shops.php:24
2927
+ msgid "Trusted Shops Review Reminder"
2928
+ msgstr ""
2929
+
2930
+ #: includes/emails/class-wc-gzd-email-customer-trusted-shops.php:25
2931
+ msgid ""
2932
+ "This E-Mail is being sent to a customer to remind him about the possibility "
2933
+ "to leave a review at Trusted Shops."
2934
+ msgstr ""
2935
+
2936
+ #: includes/export/class-wc-gzd-product-export.php:42
2937
+ msgid "Is service?"
2938
+ msgstr ""
2939
+
2940
+ #: includes/export/class-wc-gzd-product-export.php:43
2941
+ msgid "Is differential taxed?"
2942
+ msgstr ""
2943
+
2944
+ #: includes/export/class-wc-gzd-product-export.php:44
2945
+ msgid "Has free shipping?"
2946
+ msgstr ""
2947
+
2948
+ #: includes/export/class-wc-gzd-product-export.php:45
2949
+ msgid "Unit price regular"
2950
+ msgstr ""
2951
+
2952
+ #: includes/export/class-wc-gzd-product-export.php:46
2953
+ msgid "Unit price sale"
2954
+ msgstr ""
2955
+
2956
+ #: includes/export/class-wc-gzd-product-export.php:47
2957
+ msgid "Unit price calculated automatically?"
2958
+ msgstr ""
2959
+
2960
+ #: includes/export/class-wc-gzd-product-export.php:49
2961
+ msgid "Unit base"
2962
+ msgstr ""
2963
+
2964
+ #: includes/export/class-wc-gzd-product-export.php:50
2965
+ msgid "Unit product"
2966
+ msgstr ""
2967
+
2968
+ #: includes/export/class-wc-gzd-product-export.php:51
2969
+ msgid "Cart description"
2970
+ msgstr ""
2971
+
2972
+ #: includes/export/class-wc-gzd-product-export.php:52
2973
+ msgid "Delivery time"
2974
+ msgstr ""
2975
+
2976
+ #: includes/export/class-wc-gzd-product-export.php:53
2977
+ msgid "Sale price label"
2978
+ msgstr ""
2979
+
2980
+ #: includes/export/class-wc-gzd-product-export.php:54
2981
+ msgid "Sale price regular label"
2982
+ msgstr ""
2983
+
2984
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:31
2985
+ #, php-format
2986
+ msgid ""
2987
+ "Allows you to offer direct debit as a payment method to your customers. Adds "
2988
+ "SEPA fields to checkout. %s"
2989
+ msgstr ""
2990
+
2991
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:31
2992
+ msgid "SEPA XML Bulk Export"
2993
+ msgstr ""
2994
+
2995
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:56
2996
+ msgid ""
2997
+ "[company_info]\n"
2998
+ "debtee identification number: [company_identification_number]\n"
2999
+ "mandat reference number: [mandate_id].\n"
3000
+ "\n"
3001
+ "<h3>SEPA Direct Debit Mandate</h3>\n"
3002
+ "\n"
3003
+ "I hereby authorize the payee to [mandate_type_text] draft from my savings "
3004
+ "account listed below for the specified amount. I further authorize my bank "
3005
+ "to accept the direct debit from this account.\n"
3006
+ "\n"
3007
+ "Notice: I may request a full refund within eight weeks starting with the "
3008
+ "initial debiting date. Responsibilities agreed with my credit institute "
3009
+ "apply for a refund.\n"
3010
+ "\n"
3011
+ "<strong>Debtor:</strong>\n"
3012
+ "Account holder: [account_holder]\n"
3013
+ "Street: [street]\n"
3014
+ "Postcode: [postcode]\n"
3015
+ "City: [city]\n"
3016
+ "Country: [country]\n"
3017
+ "IBAN: [account_iban]\n"
3018
+ "BIC: [account_swift]\n"
3019
+ "\n"
3020
+ "[city], [date], [account_holder]\n"
3021
+ "\n"
3022
+ "This letter is done automatically and is valid without signature.\n"
3023
+ "\n"
3024
+ "<hr/>\n"
3025
+ "\n"
3026
+ "Please notice: Period for pre-information of the SEPA direct debit is "
3027
+ "shortened to one day."
3028
+ msgstr ""
3029
+
3030
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:186
3031
+ msgid "SEPA"
3032
+ msgstr ""
3033
+
3034
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:187
3035
+ msgid "SEPA XML"
3036
+ msgstr ""
3037
+
3038
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:243
3039
+ msgid "SEPA XML Export"
3040
+ msgstr ""
3041
+
3042
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:377
3043
+ #, php-format
3044
+ msgid "Order %s"
3045
+ msgstr ""
3046
+
3047
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:398
3048
+ msgid "Will be notified separately"
3049
+ msgstr ""
3050
+
3051
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:447
3052
+ #, php-format
3053
+ msgid ""
3054
+ "We will debit %s from your account by direct debit on or shortly after %s."
3055
+ msgstr ""
3056
+
3057
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:551
3058
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:574
3059
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:594
3060
+ msgid "a single payment"
3061
+ msgstr ""
3062
+
3063
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:624
3064
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:86
3065
+ msgid "Enable/Disable"
3066
+ msgstr ""
3067
+
3068
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:626
3069
+ msgid "Enable Direct Debit Payment"
3070
+ msgstr ""
3071
+
3072
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:632
3073
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:94
3074
+ msgid "This controls the title which the user sees during checkout."
3075
+ msgstr ""
3076
+
3077
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:637
3078
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:99
3079
+ msgid "Description"
3080
+ msgstr ""
3081
+
3082
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:639
3083
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:101
3084
+ msgid "Payment method description that the customer will see on your checkout."
3085
+ msgstr ""
3086
+
3087
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:640
3088
+ msgid "The order amount will be debited directly from your bank account."
3089
+ msgstr ""
3090
+
3091
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:644
3092
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:106
3093
+ msgid "Instructions"
3094
+ msgstr ""
3095
+
3096
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:646
3097
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:108
3098
+ msgid "Instructions that will be added to the thank you page and emails."
3099
  msgstr ""
3100
 
3101
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:651
3102
+ msgid "Debtee"
 
 
 
 
 
 
3103
  msgstr ""
3104
 
3105
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:653
3106
+ msgid "Insert your company information."
 
3107
  msgstr ""
3108
 
3109
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:655
3110
+ msgid "Company Inc, John Doe Street, New York"
3111
  msgstr ""
3112
 
3113
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:661
3114
+ msgid "Insert the bank account holder name."
3115
  msgstr ""
3116
 
3117
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:663
3118
+ msgid "Company Inc"
 
 
 
 
3119
  msgstr ""
3120
 
3121
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:669
3122
+ msgid "Insert the bank account IBAN."
3123
  msgstr ""
3124
 
3125
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:674
3126
+ msgid "BIC"
3127
  msgstr ""
3128
 
3129
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:676
3130
+ msgid "Insert the bank account BIC."
 
 
3131
  msgstr ""
3132
 
3133
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:681
3134
+ msgid "Debtee identification number"
3135
  msgstr ""
3136
 
3137
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:683
3138
  #, php-format
3139
+ msgid ""
3140
+ "Insert your debtee indentification number. More information can be found <a "
3141
+ "href=\"%s\">here</a>."
3142
  msgstr ""
3143
 
3144
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:687
3145
+ msgid "Generate Mandate ID"
3146
  msgstr ""
3147
 
3148
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:689
3149
+ msgid "Automatically generate Mandate ID."
3150
  msgstr ""
3151
 
3152
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:690
3153
+ msgid ""
3154
+ "Automatically generate Mandate ID after order completion (based on Order ID)."
3155
+ msgstr ""
3156
+
3157
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:694
3158
+ msgid "XML Pain Format"
3159
  msgstr ""
3160
 
3161
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:696
3162
  msgid ""
3163
+ "You may adjust the XML Export Pain Schema to your banks needs. Some banks "
3164
+ "may require pain.001.003.03."
3165
  msgstr ""
3166
 
3167
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:700
3168
+ msgid "Mandate ID Format"
 
 
 
 
3169
  msgstr ""
3170
 
3171
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:702
3172
+ msgid ""
3173
+ "You may extend the Mandate ID format by adding a prefix and/or suffix. Use "
3174
+ "{id} as placeholder to insert the automatically generated ID."
3175
  msgstr ""
3176
 
3177
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:706
3178
+ msgid "Mandate Text"
 
 
3179
  msgstr ""
3180
 
3181
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:708
3182
+ msgid ""
3183
+ "This text will be populated with live order/checkout data. Will be used as "
3184
+ "preview direct debit mandate and as email template text."
3185
  msgstr ""
3186
 
3187
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:715
3188
+ msgid "Enable \"agree to SEPA mandate\" checkbox"
3189
  msgstr ""
3190
 
3191
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:717
3192
+ msgid "Enable a checkbox linking to a SEPA direct debit mandate preview."
3193
  msgstr ""
3194
 
3195
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:721
3196
+ msgid "Checkbox label"
3197
  msgstr ""
3198
 
3199
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:723
3200
+ msgid ""
3201
+ "Customize the checkbox label. Use {link}link name{/link} to insert the "
3202
+ "preview link."
3203
  msgstr ""
3204
 
3205
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:724
3206
+ msgid "I hereby agree to the {link}direct debit mandate{/link}."
3207
  msgstr ""
3208
 
3209
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:728
3210
+ msgid "Enable pre-notification"
3211
  msgstr ""
3212
 
3213
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:729
3214
+ msgid "Insert pre-notification text within the order confirmation email."
 
 
3215
  msgstr ""
3216
 
3217
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:731
3218
+ msgid ""
3219
+ "This option inserts a standard text containing a pre-notification for the "
3220
+ "customer."
3221
  msgstr ""
3222
 
3223
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:735
3224
+ msgid "Debit days"
3225
  msgstr ""
3226
 
3227
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:737
3228
+ msgid ""
3229
+ "This option is used to calculate the debit date and is added to the order "
3230
+ "date."
3231
  msgstr ""
3232
 
3233
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:741
3234
+ msgid "Mask IBAN"
3235
  msgstr ""
3236
 
3237
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:742
3238
+ msgid "Mask the IBAN within emails."
3239
  msgstr ""
3240
 
3241
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:744
3242
  msgid ""
3243
+ "This will lead to masked IBANs within emails (replaced by *). All but last 4 "
3244
+ "digits will be masked."
3245
  msgstr ""
3246
 
3247
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:753
3248
+ msgid "Remember"
3249
  msgstr ""
3250
 
3251
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:754
3252
+ msgid "Remember account data for returning customers."
3253
  msgstr ""
3254
 
3255
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:756
3256
+ msgid "Save account data as user meta if user has/creates a customer account."
 
 
 
3257
  msgstr ""
3258
 
3259
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:839
3260
+ msgid "Please insert your SEPA account data."
3261
  msgstr ""
3262
 
3263
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:849
3264
+ msgid "Your IBAN seems to be invalid."
3265
  msgstr ""
3266
 
3267
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:851
3268
+ msgid "Your IBAN's country code doesn’t match with your billing country."
3269
  msgstr ""
3270
 
3271
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:855
3272
+ msgid "Your BIC seems to be invalid."
3273
  msgstr ""
3274
 
3275
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:867
3276
+ msgid "Please accept the direct debit mandate."
3277
  msgstr ""
3278
 
3279
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:898
3280
+ msgid "is invalid"
3281
  msgstr ""
3282
 
3283
+ #: includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:934
3284
+ msgid "Awaiting Direct Debit Payment"
 
3285
  msgstr ""
3286
 
3287
+ #: includes/gateways/direct-debit/views/html-encryption-notice.php:17
3288
  #, php-format
3289
+ msgid ""
3290
+ "Please upgrade your PHP Version to at least 5.4 and make sure that you have "
3291
+ "<a href=\"%s\" target=\"_blank\">openssl</a> enabled and WP Version 4.4 or "
3292
+ "greater installed to support account data encryption."
3293
  msgstr ""
3294
 
3295
+ #: includes/gateways/direct-debit/views/html-encryption-notice.php:21
3296
+ #, php-format
3297
+ msgid ""
3298
+ "Please insert the following code in your <a href=\"%s\" target=\"_blank\">wp-"
3299
+ "config.php</a> to enable encryption. You may of course choose your own key:"
3300
  msgstr ""
3301
 
3302
+ #: includes/gateways/direct-debit/views/html-encryption-notice.php:23
3303
+ #, php-format
3304
  msgid ""
3305
+ "Your customers’ account data (IBAN, BIC) will from then on be saved <a href="
3306
+ "\"%s\" target=\"_blank\">encrypted</a> within your database."
3307
  msgstr ""
3308
 
3309
+ #: includes/gateways/direct-debit/views/html-export.php:33
3310
+ msgid "Start Date"
3311
  msgstr ""
3312
 
3313
+ #: includes/gateways/direct-debit/views/html-export.php:37
3314
+ msgid "End Date"
3315
  msgstr ""
3316
 
3317
+ #: includes/gateways/direct-debit/views/html-export.php:41
3318
+ msgid "Unpaid only"
3319
  msgstr ""
3320
 
3321
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:26
3322
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:95
3323
+ msgid "Pay by Invoice"
3324
  msgstr ""
3325
 
3326
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:27
3327
+ msgid "Customers will be able to pay by invoice."
3328
  msgstr ""
3329
 
3330
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:57
3331
+ #: woocommerce-germanized.php:582
3332
+ msgid "Settings"
3333
  msgstr ""
3334
 
3335
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:64
3336
+ msgid "Automatically generate PDF invoices for this gateway?"
3337
  msgstr ""
3338
 
3339
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:65
3340
+ msgid ""
3341
+ "By upgrading to the professional version you'll be able to automatically "
3342
+ "generate PDF invoices to this payment gateway. Furthermore you'll benefit "
3343
+ "from even more professional features such as a multistep checkout page, "
3344
+ "legal text generators, B2B VAT settings and premium support!"
3345
  msgstr ""
3346
 
3347
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:68
3348
+ msgid "Learn more about PDF invoicing"
3349
  msgstr ""
3350
 
3351
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:88
3352
+ msgid "Enable Pay by Invoice"
3353
  msgstr ""
3354
 
3355
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:102
3356
+ msgid ""
3357
+ "You'll receive an invoice after your order. Please transfer the order amount "
3358
+ "to our bank account within 14 days."
3359
  msgstr ""
3360
 
3361
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:113
3362
+ msgid "Order Status"
 
 
3363
  msgstr ""
3364
 
3365
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:115
3366
+ msgid ""
3367
+ "Choose which order status should be applied after a customer has chosen to "
3368
+ "pay by invoice."
3369
  msgstr ""
3370
 
3371
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:121
3372
+ msgid "Registered customers"
3373
  msgstr ""
3374
 
3375
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:122
3376
+ msgid "Do only offer pay by invoice to registered/logged in customers."
3377
  msgstr ""
3378
 
3379
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:124
3380
+ msgid "This will enable Pay by Invoice to logged in customers only"
3381
  msgstr ""
3382
 
3383
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:129
3384
+ msgid "Customer limitation"
3385
  msgstr ""
3386
 
3387
+ #: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:130
3388
+ msgid ""
3389
+ "Do only offer pay by invoice to customers who have at least completed one "
3390
+ "order."
3391
  msgstr ""
3392
 
3393
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:45
3394
+ msgid "GTIN"
 
3395
  msgstr ""
3396
 
3397
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:46
3398
+ msgid "Brand"
3399
  msgstr ""
3400
 
3401
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:47
3402
+ msgid "MPN"
 
 
3403
  msgstr ""
3404
 
3405
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:95
3406
+ msgid "Trusted Shops Options"
3407
  msgstr ""
3408
 
3409
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:117
3410
+ msgid "Trusted Shops Integration"
3411
  msgstr ""
3412
 
3413
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:120
3414
+ msgid "Trusted Shops ID"
3415
  msgstr ""
3416
 
3417
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:121
3418
+ msgid ""
3419
+ "The Trusted Shops ID is a unique identifier for your shop. You can find your "
3420
+ "Trusted Shops ID in your confirmation email after signing up."
3421
  msgstr ""
3422
 
3423
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:129
3424
+ msgid "Mode"
3425
  msgstr ""
3426
 
3427
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:134
3428
+ msgid "Standard Mode"
3429
  msgstr ""
3430
 
3431
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:135
3432
+ msgid "Expert Mode"
3433
  msgstr ""
3434
 
3435
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:142
3436
+ msgid "Configure your Trustbadge"
3437
  msgstr ""
3438
 
3439
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:142
3440
+ #, php-format
3441
+ msgid ""
3442
+ "<a href=\"%s\" target=\"_blank\">Here</a> you can find a step-by-step "
3443
+ "introduction."
3444
  msgstr ""
3445
 
3446
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:145
3447
+ msgid "Variant"
3448
  msgstr ""
3449
 
3450
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:150
3451
+ msgid "Display Trustbadge without review stars"
3452
  msgstr ""
3453
 
3454
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:151
3455
+ msgid "Display Trustbadge with review stars"
3456
  msgstr ""
3457
 
3458
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:152
3459
+ msgid "Don’t show Trustbadge"
3460
  msgstr ""
3461
 
3462
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:158
3463
+ msgid "Y-Offset"
3464
  msgstr ""
3465
 
3466
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:159
3467
+ msgid ""
3468
+ "Adjust the y-axis position of your Trustbadge from 0-250 (pixel) vertically "
3469
+ "on low right hand side of your shop."
3470
  msgstr ""
3471
 
3472
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:162
3473
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:217
3474
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:249
3475
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:257
3476
+ msgid "px"
3477
  msgstr ""
3478
 
3479
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:168
3480
+ msgid "Trustbadge code"
3481
  msgstr ""
3482
 
3483
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:172
3484
+ msgid ""
3485
+ "Use shortcodes e.g. {variant} to dynamically insert your options. You may of "
3486
+ "couse replace them with static code."
3487
  msgstr ""
3488
 
3489
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:179
3490
+ msgid "Configure Product Reviews"
 
3491
  msgstr ""
3492
 
3493
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:182
3494
+ msgid "Product Reviews"
 
3495
  msgstr ""
3496
 
3497
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:183
3498
+ msgid ""
3499
+ "Collect Product Reviews. This options replaces default WooCommerce Reviews."
3500
  msgstr ""
3501
 
3502
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:184
3503
+ msgid ""
3504
+ "More Traffic, less returns: Make sure to unlock unlimited Product Reviews in "
3505
+ "your Trusted Shops plan."
3506
  msgstr ""
3507
 
3508
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:191
3509
+ msgid "Product Review Sticker"
3510
  msgstr ""
3511
 
3512
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:192
3513
+ msgid "Show Product Reviews on Product Detail page on Reviews tab."
3514
  msgstr ""
3515
 
3516
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:199
3517
+ msgid "Border Color"
3518
  msgstr ""
3519
 
3520
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:206
3521
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:238
3522
+ msgid "Star Color"
3523
  msgstr ""
3524
 
3525
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:213
3526
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:245
3527
+ msgid "Star Size"
3528
  msgstr ""
3529
 
3530
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:222
3531
+ msgid "Product Sticker Code"
3532
  msgstr ""
3533
 
3534
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:230
3535
+ msgid "Product Review Stars"
3536
  msgstr ""
3537
 
3538
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:231
3539
+ msgid "Show Star ratings on Product Detail Page below your Product Name."
 
 
 
3540
  msgstr ""
3541
 
3542
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:254
3543
+ msgid "Font Size"
3544
  msgstr ""
3545
 
3546
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:263
3547
+ msgid "GTIN Attribute"
3548
  msgstr ""
3549
 
3550
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:264
3551
+ #, php-format
3552
+ msgid ""
3553
+ "This is the product identification code for trade items. If you use Google "
3554
+ "Shopping and want to display your review stars in Shopping and payed product "
3555
+ "ads, this information is necessary for Google. Please choose from the "
3556
+ "product attributes which you have manually customized <a href=\"%s\">here</"
3557
+ "a>."
3558
  msgstr ""
3559
 
3560
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:274
3561
+ msgid "Brand Attribute"
3562
  msgstr ""
3563
 
3564
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:275
3565
  #, php-format
3566
  msgid ""
3567
+ "This is the brand name of the product. By setting this variable you can "
3568
+ "improve your data analysis possibilities. If you create individual products "
3569
+ "and do not have a GTIN, you can pass the brand name along with the MPN to "
3570
+ "use Google Integration. Please choose from the product attributes which you "
3571
+ "have manually customized <a href=\"%s\">here</a>."
3572
  msgstr ""
3573
 
3574
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:285
3575
+ msgid "MPN Attribute"
3576
  msgstr ""
3577
 
3578
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:286
3579
+ #, php-format
3580
+ msgid ""
3581
+ "Number that associates the product to its manufacturer. If you create "
3582
+ "individual products and do not have a GTIN, you can pass the MPN along with "
3583
+ "the brand name to use Google Integration. Please choose from the product "
3584
+ "attributes which you have manually customized <a href=\"%s\">here</a>."
3585
  msgstr ""
3586
 
3587
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:296
3588
+ msgid "Product Review Code"
3589
+ msgstr ""
3590
+
3591
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:305
3592
+ msgid "Additional Options"
3593
  msgstr ""
3594
 
3595
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:308
3596
+ msgid "Review Widget"
3597
  msgstr ""
3598
 
3599
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:309
3600
  msgid "Enable Review Widget"
3601
  msgstr ""
3602
 
3603
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:310
3604
  #, php-format
3605
  msgid ""
3606
  "This option will enable a Widget which shows your Trusted Shops Reviews as a "
3607
  "graphic. You may configure your Widgets <a href=\"%s\">here</a>."
3608
  msgstr ""
3609
 
3610
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:318
3611
+ msgid "Rich Snippets"
3612
+ msgstr ""
3613
+
3614
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:319
3615
+ msgid "Enable Rich Snippets Widget."
3616
  msgstr ""
3617
 
3618
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:320
3619
  msgid ""
3620
  "This option will update your reviews received via Trusted Shops once per day "
3621
+ "and enables a Widget to show your reviews as Rich Snippets"
3622
  msgstr ""
3623
 
3624
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:334
3625
+ msgid "Review Reminder"
3626
  msgstr ""
3627
 
3628
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:335
3629
+ msgid "Send a one-time email review reminder to your customers."
 
 
3630
  msgstr ""
3631
 
3632
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:343
3633
  msgid "Days until reminder"
3634
  msgstr ""
3635
 
3636
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:344
3637
  msgid ""
3638
  "Decide how many days after an order the email review reminder will be sent."
3639
  msgstr ""
3640
 
3641
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:360
3642
  msgid "Assign payment methods"
3643
  msgstr ""
3644
 
3645
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:395
3646
  #, php-format
3647
  msgid ""
3648
  "Choose a Trusted Shops Payment Gateway linked to WooCommerce Payment Gateway "
3649
  "%s"
3650
  msgstr ""
3651
 
3652
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:417
3653
  msgid "About Trusted Shops"
3654
  msgstr ""
3655
 
3656
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:419
3657
+ msgid "Get your account"
 
 
 
 
3658
  msgstr ""
3659
 
3660
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:421
3661
  msgid ""
3662
+ "Use additional options to customize your Trusted Shops Integration or use "
3663
+ "the latest code version here. E.g.:"
3664
  msgstr ""
3665
 
3666
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:423
3667
+ msgid "Place your Trustbadge wherever you want"
 
3668
  msgstr ""
3669
 
3670
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:424
3671
+ msgid "Deactivate mobile use"
 
3672
  msgstr ""
3673
 
3674
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:425
3675
+ msgid "Jump from your Product Reviews stars directly to your Product Reviews"
3676
  msgstr ""
3677
 
3678
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:427
3679
+ #, php-format
3680
  msgid ""
3681
+ "<a href=\"%s\" target=\"_blank\">Learn more</a> about <a href=\"%s\" target="
3682
+ "\"_blank\">Trustbadge</a> options and <a href=\"%s\" target=\"_blank"
3683
+ "\">Product Reviews</a> configuration."
3684
  msgstr ""
3685
 
3686
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:549
3687
+ msgid "Review Collector"
3688
  msgstr ""
3689
 
3690
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:554
3691
+ msgid "Export customer data"
3692
  msgstr ""
3693
 
3694
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:558
3695
+ msgid "30 days"
3696
  msgstr ""
3697
 
3698
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:559
3699
+ msgid "60 days"
 
3700
  msgstr ""
3701
 
3702
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:560
3703
+ msgid "90 days"
3704
+ msgstr ""
3705
+
3706
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:562
3707
+ msgid "Start export"
3708
  msgstr ""
3709
 
3710
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-admin.php:563
3711
+ #, php-format
3712
  msgid ""
3713
+ "Export your customer data and ask consumers for a review with the Trusted "
3714
+ "Shops <a href=\"%s\" target=\"_blank\">Review Collector</a>."
3715
  msgstr ""
3716
 
3717
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-schedule.php:88
3718
+ msgid "Trusted Shops Customer Reviews"
3719
  msgstr ""
3720
 
3721
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops-template-hooks.php:63
3722
+ msgid "Reviews"
3723
  msgstr ""
3724
 
3725
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops.php:121
3726
+ msgid "Prepayment"
 
3727
  msgstr ""
3728
 
3729
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops.php:122
3730
+ msgid "Cash On Delivery"
3731
  msgstr ""
3732
 
3733
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops.php:123
3734
+ msgid "Credit Card"
 
 
3735
  msgstr ""
3736
 
3737
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops.php:124
3738
+ msgid "Paypal"
3739
+ msgstr ""
3740
+
3741
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops.php:125
3742
+ msgid "Invoice"
3743
  msgstr ""
3744
 
3745
+ #: includes/trusted-shops/class-wc-gzd-trusted-shops.php:127
3746
+ msgid "Financing"
3747
+ msgstr ""
3748
+
3749
+ #: includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-reviews.php:19
3750
  msgid "Display your Trusted Shops Reviews as graphic."
3751
  msgstr ""
3752
 
3753
+ #: includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-reviews.php:21
3754
+ #: includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-reviews.php:25
3755
+ #: includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-reviews.php:45
3756
+ #: includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-rich-snippets.php:45
3757
  msgid "Trusted Shops Reviews"
3758
  msgstr ""
3759
 
3760
+ #: includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-rich-snippets.php:19
3761
  msgid "Display your Trusted Shops Reviews as Rich Snippets."
3762
  msgstr ""
3763
 
3764
+ #: includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-rich-snippets.php:21
3765
+ #: includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-rich-snippets.php:25
3766
  msgid "Trusted Shops Rich Snippets"
3767
  msgstr ""
3768
 
3769
+ #: includes/wc-gzd-cart-functions.php:370
 
3770
  msgid ""
3771
+ "I want immediate access to the digital content and I acknowledge that "
3772
+ "thereby I lose my right to cancel once the service has begun."
3773
  msgstr ""
3774
 
3775
+ #: includes/wc-gzd-core-functions.php:66
3776
+ msgid "Data Security"
 
 
3777
  msgstr ""
3778
 
3779
+ #: includes/wc-gzd-template-functions.php:141
3780
+ #: templates/checkout/edit-data-notice.php:16
3781
+ msgid "Edit Order"
3782
  msgstr ""
3783
 
3784
+ #: includes/wc-gzd-template-functions.php:152
3785
+ msgid "Choose a Payment Gateway"
 
 
 
3786
  msgstr ""
3787
 
3788
+ #: includes/wc-gzd-template-functions.php:294
3789
+ msgid "Please accept our parcel delivery agreement"
 
3790
  msgstr ""
3791
 
3792
+ #: includes/wc-gzd-template-functions.php:443
3793
+ msgid "Place order"
 
 
3794
  msgstr ""
3795
 
3796
+ #: includes/wc-gzd-template-functions.php:519
3797
+ msgid "Please accept the creation of a new customer account"
3798
  msgstr ""
3799
 
3800
+ #: templates/checkout/edit-data-notice.php:16
3801
+ #, php-format
3802
+ msgid ""
3803
+ "Please check all of your entries carefully. You may change your entries with "
3804
+ "the help of the button \"%s\"."
3805
  msgstr ""
3806
 
3807
+ #: templates/checkout/edit-data-notice.php:18
3808
+ msgid ""
3809
+ "Please check all of your entries carefully. You may change your entries with "
3810
+ "the help of the \"Back\" button in your browser"
3811
  msgstr ""
3812
 
3813
+ #: templates/checkout/order-submit.php:19
 
3814
  msgid ""
3815
  "Since your browser does not support JavaScript, or it is disabled, please "
3816
  "ensure you click the <em>Update Totals</em> button before placing your "
3818
  "do so."
3819
  msgstr ""
3820
 
3821
+ #: templates/emails/customer-ekomi.php:18
3822
+ #: templates/emails/customer-trusted-shops.php:18
3823
+ #: templates/emails/plain/customer-ekomi.php:19
3824
+ #: templates/emails/plain/customer-trusted-shops.php:12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3825
  #, php-format
3826
  msgid "Dear %s %s,"
3827
  msgstr ""
3828
 
3829
+ #: templates/emails/customer-ekomi.php:20
3830
+ #: templates/emails/customer-trusted-shops.php:19
3831
+ #: templates/emails/plain/customer-ekomi.php:21
3832
+ #: templates/emails/plain/customer-trusted-shops.php:14
3833
  #, php-format
3834
  msgid ""
3835
  "You have recently shopped at %s. Thank you! We would be glad if you spent "
3837
  "the link."
3838
  msgstr ""
3839
 
3840
+ #: templates/emails/customer-ekomi.php:24
3841
+ #: templates/emails/customer-trusted-shops.php:22
3842
  msgid "Rate Order now"
3843
  msgstr ""
3844
 
3845
+ #: templates/emails/customer-new-account-activation.php:18
3846
+ #: templates/emails/plain/customer-new-account-activation.php:16
3847
  #, php-format
3848
  msgid ""
3849
+ "Thanks for creating an account on %s. Please follow the activation link to "
3850
+ "activate your account:"
3851
  msgstr ""
3852
 
3853
+ #: templates/emails/customer-new-account-activation.php:20
3854
  msgid "Activate your account"
3855
  msgstr ""
3856
 
3857
+ #: templates/emails/customer-new-account-activation.php:24
3858
+ #: templates/emails/plain/customer-new-account-activation.php:26
3859
  #, php-format
3860
  msgid "Your password has been automatically generated: <strong>%s</strong>"
3861
  msgstr ""
3862
 
3863
+ #: templates/emails/customer-new-account-activation.php:28
3864
+ #: templates/emails/plain/customer-new-account-activation.php:30
3865
  #, php-format
3866
  msgid "If you haven't created an account on %s please ignore this email."
3867
  msgstr ""
3868
 
3869
+ #: templates/emails/customer-new-account-activation.php:30
3870
  #, php-format
3871
  msgid ""
3872
  "If you cannot follow the link above please copy this url and paste it to "
3873
  "your browser bar: %s"
3874
  msgstr ""
3875
 
3876
+ #: templates/emails/customer-paid-for-order.php:28
3877
+ #: templates/emails/plain/customer-paid-for-order.php:25
3878
+ #, php-format
3879
  msgid ""
3880
+ "Hi there. Thank you! We have successfully received your payment for order "
3881
+ "%s. Your order is now being processed."
3882
  msgstr ""
3883
 
3884
+ #: templates/emails/customer-revocation.php:16
3885
+ #: templates/emails/plain/customer-revocation.php:14
3886
+ msgid ""
3887
+ "By sending you this email we confirm your Revocation. Please review your "
3888
+ "data."
3889
  msgstr ""
3890
 
3891
+ #: templates/emails/customer-sepa-direct-debit-mandate.php:16
3892
  #, php-format
3893
+ msgid ""
3894
+ "Please see the SEPA direct debit mandate for order %s attached to this email."
3895
  msgstr ""
3896
 
3897
+ #: templates/emails/email-sepa-data.php:20
3898
+ msgid "SEPA Data"
3899
  msgstr ""
3900
 
3901
+ #: templates/footer/sale-info.php:13
3902
  msgid "All striked out prices refer to prices used to be charged at this shop."
3903
  msgstr ""
3904
 
3905
+ #: templates/footer/vat-info.php:13
3906
  msgid "All prices incl. VAT."
3907
  msgstr ""
3908
 
3909
+ #: templates/footer/vat-info.php:13
3910
  msgid "All prices excl. VAT."
3911
  msgstr ""
3912
 
3913
+ #: templates/forms/revocation-form.php:18
 
 
 
 
 
 
3914
  msgid "To"
3915
  msgstr ""
3916
 
3917
+ #: templates/forms/revocation-form.php:31
3918
  msgid "Forward Revocation"
3919
  msgstr ""
3920
 
3921
+ #: templates/global/complaints.php:12
3922
  msgid ""
3923
+ "Alternative Dispute Resolution in accordance with Art. 14 (1) ODR-VO and § "
3924
+ "36 VSBG:"
3925
  msgstr ""
3926
 
3927
+ #: templates/order/order-pay-now-button.php:14
3928
+ msgid "Pay now"
 
3929
  msgstr ""
3930
 
3931
+ #: templates/trusted-shops/reviews.php:14
3932
+ msgid "Show customer reviews"
3933
  msgstr ""
3934
 
3935
+ #: templates/trusted-shops/rich-snippets.php:24
3936
+ #, php-format
3937
+ msgid "&#216; %s / %s of %s %s %s customer reviews | Trusted Shops %s"
3938
  msgstr ""
3939
 
3940
+ #: templates/trusted-shops/rich-snippets.php:28
3941
+ #, php-format
3942
+ msgid "%s custom reviews"
3943
+ msgstr ""
3944
+
3945
+ #: woocommerce-germanized.php:737
3946
+ msgid "Order Confirmation"
3947
  msgstr ""
includes/abstracts/abstract-wc-gzd-product.php CHANGED
@@ -140,6 +140,10 @@ class WC_GZD_Product {
140
  $product_base = $this->unit_product;
141
  }
142
 
 
 
 
 
143
  $this->unit_price_regular = wc_format_decimal( ( $args[ 'regular_price' ] / $product_base ) * $base, wc_get_price_decimals() );
144
  $this->unit_price_sale = '';
145
 
@@ -386,6 +390,9 @@ class WC_GZD_Product {
386
  * @return string formatted unit price
387
  */
388
  public function get_unit_price( $qty = 1, $price = '' ) {
 
 
 
389
  $tax_display_mode = get_option( 'woocommerce_tax_display_shop' );
390
  return ( $tax_display_mode == 'incl' ) ? $this->get_unit_price_including_tax( $qty, $price ) : $this->get_unit_price_excluding_tax( $qty, $price );
391
  }
140
  $product_base = $this->unit_product;
141
  }
142
 
143
+ // Do not recalculate if unit base and/or product is empty
144
+ if ( 0 == $product_base || 0 == $base )
145
+ return;
146
+
147
  $this->unit_price_regular = wc_format_decimal( ( $args[ 'regular_price' ] / $product_base ) * $base, wc_get_price_decimals() );
148
  $this->unit_price_sale = '';
149
 
390
  * @return string formatted unit price
391
  */
392
  public function get_unit_price( $qty = 1, $price = '' ) {
393
+
394
+ do_action( 'woocommerce_gzd_before_get_unit_price', $this, $price, $qty );
395
+
396
  $tax_display_mode = get_option( 'woocommerce_tax_display_shop' );
397
  return ( $tax_display_mode == 'incl' ) ? $this->get_unit_price_including_tax( $qty, $price ) : $this->get_unit_price_excluding_tax( $qty, $price );
398
  }
includes/class-wc-gzd-ajax.php CHANGED
@@ -119,10 +119,11 @@ class WC_GZD_AJAX {
119
  // Send Mail
120
  if ( $mail = WC_germanized()->emails->get_email_instance_by_id( 'customer_revocation' ) ) {
121
 
 
122
  $mail->trigger( $data );
123
 
124
  // Send to Admin
125
- $data[ 'mail' ] = apply_filters( 'wc_gzd_revocation_admin_mail', get_bloginfo('admin_email') );
126
  $mail->trigger( $data );
127
  }
128
 
119
  // Send Mail
120
  if ( $mail = WC_germanized()->emails->get_email_instance_by_id( 'customer_revocation' ) ) {
121
 
122
+ // Send to customer
123
  $mail->trigger( $data );
124
 
125
  // Send to Admin
126
+ $data[ 'send_to_admin' ] = true;
127
  $mail->trigger( $data );
128
  }
129
 
includes/class-wc-gzd-checkout.php CHANGED
@@ -191,7 +191,8 @@ class WC_GZD_Checkout {
191
  $hide = true;
192
  }
193
 
194
- if ( $rate->cost == 0 ) {
 
195
  $keep[] = $key;
196
  }
197
  }
191
  $hide = true;
192
  }
193
 
194
+ // Always show local pickup
195
+ if ( $rate->cost == 0 || strpos( $key, 'local_pickup' ) !== false ) {
196
  $keep[] = $key;
197
  }
198
  }
includes/class-wc-gzd-payment-gateways.php CHANGED
@@ -23,10 +23,32 @@ class WC_GZD_Payment_Gateways {
23
  public function __construct() {
24
  // Make sure fields are inited before being saved
25
  add_action( 'woocommerce_settings_save_checkout', array( $this, 'save_fields' ), 5 );
 
26
  // Init gateway fields
27
  add_action( 'woocommerce_settings_checkout', array( $this, 'init_fields' ), 0 );
28
  add_action( 'woocommerce_calculate_totals', array( $this, 'checkout' ) );
29
  add_action( 'woocommerce_cart_calculate_fees', array( $this, 'init_fee' ), 0 );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  }
31
 
32
  public function save_fields() {
23
  public function __construct() {
24
  // Make sure fields are inited before being saved
25
  add_action( 'woocommerce_settings_save_checkout', array( $this, 'save_fields' ), 5 );
26
+
27
  // Init gateway fields
28
  add_action( 'woocommerce_settings_checkout', array( $this, 'init_fields' ), 0 );
29
  add_action( 'woocommerce_calculate_totals', array( $this, 'checkout' ) );
30
  add_action( 'woocommerce_cart_calculate_fees', array( $this, 'init_fee' ), 0 );
31
+
32
+ // Gateway admin export
33
+ add_action( 'current_screen', array( $this, 'gateway_admin_init' ), 20 );
34
+ // AJAX
35
+ add_action( 'init', array( $this, 'gateway_ajax_init' ), 30 );
36
+ }
37
+
38
+ public function gateway_admin_init() {
39
+
40
+ $allowed = array( 'edit-shop_order', 'export' );
41
+ $screen = get_current_screen();
42
+
43
+ if ( $screen && in_array( $screen->id, $allowed ) ) {
44
+ $direct_debit = new WC_GZD_Gateway_Direct_Debit();
45
+ }
46
+ }
47
+
48
+ public function gateway_ajax_init() {
49
+ if ( is_ajax() ) {
50
+ $direct_debit = new WC_GZD_Gateway_Direct_Debit();
51
+ }
52
  }
53
 
54
  public function save_fields() {
includes/class-wc-gzd-shortcodes.php CHANGED
@@ -37,8 +37,9 @@ class WC_GZD_Shortcodes {
37
 
38
  }
39
 
40
- public static function gzd_add_price_suffixes( $price, $product ) {
41
  global $product;
 
42
 
43
  ob_start();
44
  woocommerce_gzd_template_single_legal_info();
37
 
38
  }
39
 
40
+ public static function gzd_add_price_suffixes( $price, $org_product ) {
41
  global $product;
42
+ $product = $org_product;
43
 
44
  ob_start();
45
  woocommerce_gzd_template_single_legal_info();
includes/compatibility/class-wc-gzd-compatibility-woocommerce-dynamic-pricing.php CHANGED
@@ -47,13 +47,11 @@ class WC_GZD_Compatibility_Woocommerce_Dynamic_Pricing extends WC_GZD_Compatibil
47
  }
48
 
49
  public function set_unit_price_filter() {
50
- add_filter( 'woocommerce_gzd_unit_price_including_tax', array( $this, 'calculate_unit_price' ), 10, 4 );
51
- add_filter( 'woocommerce_gzd_unit_price_excluding_tax', array( $this, 'calculate_unit_price' ), 10, 4 );
52
  }
53
 
54
- public function calculate_unit_price( $price, $single_price, $qty, $product ) {
55
  $product->recalculate_unit_price();
56
- return $price;
57
  }
58
 
59
  }
47
  }
48
 
49
  public function set_unit_price_filter() {
50
+ add_action( 'woocommerce_gzd_before_get_unit_price', array( $this, 'calculate_unit_price' ), 10, 2 );
 
51
  }
52
 
53
+ public function calculate_unit_price( $product, $price ) {
54
  $product->recalculate_unit_price();
 
55
  }
56
 
57
  }
includes/compatibility/class-wc-gzd-compatibility-woocommerce-role-based-prices.php ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * WPML Helper
4
+ *
5
+ * Specific configuration for WPML
6
+ *
7
+ * @class WC_GZD_WPML_Helper
8
+ * @category Class
9
+ * @author vendidero
10
+ */
11
+ class WC_GZD_Compatibility_Woocommerce_Role_Based_Prices extends WC_GZD_Compatibility {
12
+
13
+ public function __construct() {
14
+ parent::__construct(
15
+ 'WooCommerce Role Based Prices',
16
+ 'woocommerce-role-based-prices/woocommerce-role-based-prices.php'
17
+ );
18
+ }
19
+
20
+ public function load() {
21
+ // Add filter to price output
22
+ add_filter( 'woocommerce_get_price_html', array( $this, 'set_unit_price_product_filter' ), 200, 2 );
23
+
24
+ // Filter seems to be removed due to low priority
25
+ remove_filter( 'woocommerce_cart_item_price', 'wc_gzd_cart_product_unit_price', wc_gzd_get_hook_priority( 'cart_product_unit_price' ), 3 );
26
+ remove_filter( 'woocommerce_cart_item_subtotal', 'wc_gzd_cart_product_unit_price', wc_gzd_get_hook_priority( 'cart_subtotal_unit_price' ), 3 );
27
+
28
+ // Readd filter with higher priority
29
+ add_filter( 'woocommerce_cart_item_price', 'wc_gzd_cart_product_unit_price', 500, 3 );
30
+ add_filter( 'woocommerce_cart_item_subtotal', 'wc_gzd_cart_product_unit_price', 500, 3 );
31
+
32
+ // Filters to recalculate unit price during cart/checkout
33
+ add_action( 'woocommerce_before_cart', array( $this, 'set_unit_price_filter' ), 10 );
34
+ add_action( 'woocommerce_before_checkout_form', array( $this, 'set_unit_price_filter' ), 10 );
35
+ add_action( 'woocommerce_gzd_review_order_before_cart_contents', array( $this, 'set_unit_price_filter' ), 10 );
36
+
37
+ // Recalculate unit price before adding order item meta
38
+ add_filter( 'woocommerce_gzd_order_item_unit_price', array( $this, 'unit_price_order_item' ), 10, 4 );
39
+ }
40
+
41
+ public function set_unit_price_product_filter( $html, $product ) {
42
+ $this->set_unit_price_filter();
43
+ return $html;
44
+ }
45
+
46
+ public function unit_price_order_item( $price, $gzd_product, $item, $order ) {
47
+ $product_price = $order->get_item_subtotal( $item, true );
48
+
49
+ $gzd_product->recalculate_unit_price( array(
50
+ 'regular_price' => $product_price,
51
+ 'price' => $product_price,
52
+ ) );
53
+
54
+ return $gzd_product->get_unit_html( false );
55
+ }
56
+
57
+ public function set_unit_price_filter() {
58
+ add_action( 'woocommerce_gzd_before_get_unit_price', array( $this, 'calculate_unit_price' ), 10, 2 );
59
+ }
60
+
61
+ public function calculate_unit_price( $product, $price ) {
62
+ $product->recalculate_unit_price();
63
+ }
64
+
65
+ }
includes/emails/class-wc-gzd-email-customer-ekomi.php CHANGED
@@ -27,9 +27,6 @@ class WC_GZD_Email_Customer_Ekomi extends WC_Email {
27
  $this->template_html = 'emails/customer-ekomi.php';
28
  $this->template_plain = 'emails/plain/customer-ekomi.php';
29
 
30
- $this->heading = _x( 'Please rate your Order', 'ekomi', 'woocommerce-germanized' );
31
- $this->subject = _x( 'Please rate your {site_title} order from {order_date}', 'ekomi', 'woocommerce-germanized' );
32
-
33
  // Triggers for this email
34
  add_action( 'woocommerce_germanized_ekomi_review_notification', array( $this, 'trigger' ) );
35
 
@@ -39,6 +36,26 @@ class WC_GZD_Email_Customer_Ekomi extends WC_Email {
39
  $this->customer_email = true;
40
  }
41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  /**
43
  * trigger function.
44
  *
27
  $this->template_html = 'emails/customer-ekomi.php';
28
  $this->template_plain = 'emails/plain/customer-ekomi.php';
29
 
 
 
 
30
  // Triggers for this email
31
  add_action( 'woocommerce_germanized_ekomi_review_notification', array( $this, 'trigger' ) );
32
 
36
  $this->customer_email = true;
37
  }
38
 
39
+ /**
40
+ * Get email subject.
41
+ *
42
+ * @since 3.1.0
43
+ * @return string
44
+ */
45
+ public function get_default_subject() {
46
+ return _x( 'Please rate your {site_title} order from {order_date}', 'ekomi', 'woocommerce-germanized' );
47
+ }
48
+
49
+ /**
50
+ * Get email heading.
51
+ *
52
+ * @since 3.1.0
53
+ * @return string
54
+ */
55
+ public function get_default_heading() {
56
+ return _x( 'Please rate your Order', 'ekomi', 'woocommerce-germanized' );
57
+ }
58
+
59
  /**
60
  * trigger function.
61
  *
includes/emails/class-wc-gzd-email-customer-new-account-activation.php CHANGED
@@ -41,15 +41,32 @@ class WC_GZD_Email_Customer_New_Account_Activation extends WC_Email {
41
  $this->template_html = 'emails/customer-new-account-activation.php';
42
  $this->template_plain = 'emails/plain/customer-new-account-activation.php';
43
 
44
- $this->subject = __( 'Activate your account on {site_title}', 'woocommerce-germanized');
45
- $this->heading = __( 'Account activation {site_title}', 'woocommerce-germanized');
46
-
47
  // Call parent constuctor
48
  parent::__construct();
49
 
50
  $this->customer_email = true;
51
  }
52
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  /**
54
  * trigger function.
55
  *
41
  $this->template_html = 'emails/customer-new-account-activation.php';
42
  $this->template_plain = 'emails/plain/customer-new-account-activation.php';
43
 
 
 
 
44
  // Call parent constuctor
45
  parent::__construct();
46
 
47
  $this->customer_email = true;
48
  }
49
 
50
+ /**
51
+ * Get email subject.
52
+ *
53
+ * @since 3.1.0
54
+ * @return string
55
+ */
56
+ public function get_default_subject() {
57
+ return __( 'Activate your account on {site_title}', 'woocommerce-germanized');
58
+ }
59
+
60
+ /**
61
+ * Get email heading.
62
+ *
63
+ * @since 3.1.0
64
+ * @return string
65
+ */
66
+ public function get_default_heading() {
67
+ return __( 'Account activation {site_title}', 'woocommerce-germanized');
68
+ }
69
+
70
  /**
71
  * trigger function.
72
  *
includes/emails/class-wc-gzd-email-customer-paid-for-order.php CHANGED
@@ -28,9 +28,6 @@ class WC_GZD_Email_Customer_Paid_For_Order extends WC_Email {
28
  $this->template_html = 'emails/customer-paid-for-order.php';
29
  $this->template_plain = 'emails/plain/customer-paid-for-order.php';
30
 
31
- $this->heading = __( 'Payment received', 'woocommerce-germanized' );
32
- $this->subject = __( 'Payment received for order {order_number}', 'woocommerce-germanized' );
33
-
34
  // Triggers for this email
35
  add_action( 'woocommerce_order_status_pending_to_processing_notification', array( $this, 'trigger' ), 30 );
36
 
@@ -38,6 +35,26 @@ class WC_GZD_Email_Customer_Paid_For_Order extends WC_Email {
38
  parent::__construct();
39
  }
40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  /**
42
  * trigger function.
43
  *
28
  $this->template_html = 'emails/customer-paid-for-order.php';
29
  $this->template_plain = 'emails/plain/customer-paid-for-order.php';
30
 
 
 
 
31
  // Triggers for this email
32
  add_action( 'woocommerce_order_status_pending_to_processing_notification', array( $this, 'trigger' ), 30 );
33
 
35
  parent::__construct();
36
  }
37
 
38
+ /**
39
+ * Get email subject.
40
+ *
41
+ * @since 3.1.0
42
+ * @return string
43
+ */
44
+ public function get_default_subject() {
45
+ return __( 'Payment received for order {order_number}', 'woocommerce-germanized' );
46
+ }
47
+
48
+ /**
49
+ * Get email heading.
50
+ *
51
+ * @since 3.1.0
52
+ * @return string
53
+ */
54
+ public function get_default_heading() {
55
+ return __( 'Payment received', 'woocommerce-germanized' );
56
+ }
57
+
58
  /**
59
  * trigger function.
60
  *
includes/emails/class-wc-gzd-email-customer-revocation.php CHANGED
@@ -15,6 +15,8 @@ if ( ! class_exists( 'WC_GZD_Email_Customer_Revocation' ) ) :
15
  */
16
  class WC_GZD_Email_Customer_Revocation extends WC_Email {
17
 
 
 
18
  /**
19
  * Constructor
20
  *
@@ -30,15 +32,32 @@ class WC_GZD_Email_Customer_Revocation extends WC_Email {
30
  $this->template_html = 'emails/customer-revocation.php';
31
  $this->template_plain = 'emails/plain/customer-revocation.php';
32
 
33
- $this->subject = __( 'Your Revocation', 'woocommerce-germanized' );
34
- $this->heading = __( 'Your Revocation', 'woocommerce-germanized' );
35
-
36
  // Call parent constuctor
37
  parent::__construct();
38
 
39
  $this->customer_email = true;
40
  }
41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  /**
43
  * trigger function.
44
  *
@@ -47,20 +66,32 @@ class WC_GZD_Email_Customer_Revocation extends WC_Email {
47
  */
48
  public function trigger( $user_data = array() ) {
49
 
50
- if ( !empty( $user_data['address_mail'] ) ) {
51
- $this->object = $user_data;
52
- $this->user_email = $user_data['address_mail'];
53
- if ( !empty( $user_data['mail'] ) )
54
- $this->user_email = $user_data['mail'];
55
- $this->recipient = $this->user_email;
56
  }
57
 
 
 
58
  if ( ! $this->is_enabled() || ! $this->get_recipient() )
59
  return;
60
 
61
  $this->send( $this->get_recipient(), $this->get_subject(), $this->get_content(), $this->get_headers(), $this->get_attachments() );
62
  }
63
 
 
 
 
 
 
 
 
 
 
 
64
  /**
65
  * get_content_html function.
66
  *
@@ -98,6 +129,25 @@ class WC_GZD_Email_Customer_Revocation extends WC_Email {
98
  ) );
99
  return ob_get_clean();
100
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  }
102
 
103
  endif;
15
  */
16
  class WC_GZD_Email_Customer_Revocation extends WC_Email {
17
 
18
+ public $user_email = '';
19
+
20
  /**
21
  * Constructor
22
  *
32
  $this->template_html = 'emails/customer-revocation.php';
33
  $this->template_plain = 'emails/plain/customer-revocation.php';
34
 
 
 
 
35
  // Call parent constuctor
36
  parent::__construct();
37
 
38
  $this->customer_email = true;
39
  }
40
 
41
+ /**
42
+ * Get email subject.
43
+ *
44
+ * @since 3.1.0
45
+ * @return string
46
+ */
47
+ public function get_default_subject() {
48
+ return __( 'Your revocation', 'woocommerce-germanized' );
49
+ }
50
+
51
+ /**
52
+ * Get email heading.
53
+ *
54
+ * @since 3.1.0
55
+ * @return string
56
+ */
57
+ public function get_default_heading() {
58
+ return __( 'Your revocation', 'woocommerce-germanized' );
59
+ }
60
+
61
  /**
62
  * trigger function.
63
  *
66
  */
67
  public function trigger( $user_data = array() ) {
68
 
69
+ $this->object = $user_data;
70
+ $this->user_email = $user_data['address_mail'];
71
+
72
+ if ( ! empty( $user_data['send_to_admin'] ) && $user_data['send_to_admin'] ) {
73
+ $this->customer_email = false;
74
+ $this->user_email = $this->get_admin_email();
75
  }
76
 
77
+ $this->recipient = $this->user_email;
78
+
79
  if ( ! $this->is_enabled() || ! $this->get_recipient() )
80
  return;
81
 
82
  $this->send( $this->get_recipient(), $this->get_subject(), $this->get_content(), $this->get_headers(), $this->get_attachments() );
83
  }
84
 
85
+ /**
86
+ * Get email heading.
87
+ *
88
+ * @access public
89
+ * @return string
90
+ */
91
+ public function get_admin_email() {
92
+ return apply_filters( 'wc_gzd_revocation_admin_mail', $this->get_option( 'admin_email', get_bloginfo( 'admin_email' ) ) );
93
+ }
94
+
95
  /**
96
  * get_content_html function.
97
  *
129
  ) );
130
  return ob_get_clean();
131
  }
132
+
133
+ /**
134
+ * Initialise settings form fields.
135
+ */
136
+ public function init_form_fields() {
137
+
138
+ parent::init_form_fields();
139
+
140
+ $this->form_fields = array_merge( $this->form_fields, array(
141
+ 'admin_email' => array(
142
+ 'title' => __( 'Admin email', 'woocommerce-germanized' ),
143
+ 'type' => 'text',
144
+ 'desc_tip' => true,
145
+ 'description' => __( 'Insert the email address of your shop manager here. A copy of the revocation email is being sent to this address.', 'woocommerce-germanized' ),
146
+ 'placeholder' => '',
147
+ 'default' => get_bloginfo( 'admin_email' ),
148
+ ),
149
+ ) );
150
+ }
151
  }
152
 
153
  endif;
includes/emails/class-wc-gzd-email-customer-sepa-direct-debit-mandate.php CHANGED
@@ -32,15 +32,32 @@ class WC_GZD_Email_Customer_SEPA_Direct_Debit_Mandate extends WC_Email {
32
  $this->template_html = 'emails/customer-sepa-direct-debit-mandate.php';
33
  $this->template_plain = 'emails/plain/customer-sepa-direct-debit-mandate.php';
34
 
35
- $this->subject = __( 'SEPA Direct Debit Mandate', 'woocommerce-germanized' );
36
- $this->heading = __( 'SEPA Direct Debit Mandate', 'woocommerce-germanized' );
37
-
38
  // Call parent constuctor
39
  parent::__construct();
40
 
41
  $this->customer_email = true;
42
  }
43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
  /**
45
  * trigger function.
46
  *
32
  $this->template_html = 'emails/customer-sepa-direct-debit-mandate.php';
33
  $this->template_plain = 'emails/plain/customer-sepa-direct-debit-mandate.php';
34
 
 
 
 
35
  // Call parent constuctor
36
  parent::__construct();
37
 
38
  $this->customer_email = true;
39
  }
40
 
41
+ /**
42
+ * Get email subject.
43
+ *
44
+ * @since 3.1.0
45
+ * @return string
46
+ */
47
+ public function get_default_subject() {
48
+ return __( 'SEPA Direct Debit Mandate', 'woocommerce-germanized' );
49
+ }
50
+
51
+ /**
52
+ * Get email heading.
53
+ *
54
+ * @since 3.1.0
55
+ * @return string
56
+ */
57
+ public function get_default_heading() {
58
+ return __( 'SEPA Direct Debit Mandate', 'woocommerce-germanized' );
59
+ }
60
+
61
  /**
62
  * trigger function.
63
  *
includes/emails/class-wc-gzd-email-customer-trusted-shops.php CHANGED
@@ -27,9 +27,6 @@ class WC_GZD_Email_Customer_Trusted_Shops extends WC_Email {
27
  $this->template_html = 'emails/customer-trusted-shops.php';
28
  $this->template_plain = 'emails/plain/customer-trusted-shops.php';
29
 
30
- $this->heading = _x( 'Please rate your Order', 'trusted-shops', 'woocommerce-germanized' );
31
- $this->subject = _x( 'Please rate your {site_title} order from {order_date}', 'trusted-shops', 'woocommerce-germanized' );
32
-
33
  // Triggers for this email
34
  add_action( 'woocommerce_germanized_trusted_shops_review_notification', array( $this, 'trigger' ) );
35
 
@@ -39,6 +36,26 @@ class WC_GZD_Email_Customer_Trusted_Shops extends WC_Email {
39
  $this->customer_email = true;
40
  }
41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  /**
43
  * trigger function.
44
  *
27
  $this->template_html = 'emails/customer-trusted-shops.php';
28
  $this->template_plain = 'emails/plain/customer-trusted-shops.php';
29
 
 
 
 
30
  // Triggers for this email
31
  add_action( 'woocommerce_germanized_trusted_shops_review_notification', array( $this, 'trigger' ) );
32
 
36
  $this->customer_email = true;
37
  }
38
 
39
+ /**
40
+ * Get email subject.
41
+ *
42
+ * @since 3.1.0
43
+ * @return string
44
+ */
45
+ public function get_default_subject() {
46
+ return _x( 'Please rate your {site_title} order from {order_date}', 'trusted-shops', 'woocommerce-germanized' );
47
+ }
48
+
49
+ /**
50
+ * Get email heading.
51
+ *
52
+ * @since 3.1.0
53
+ * @return string
54
+ */
55
+ public function get_default_heading() {
56
+ return _x( 'Please rate your Order', 'trusted-shops', 'woocommerce-germanized' );
57
+ }
58
+
59
  /**
60
  * trigger function.
61
  *
includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php CHANGED
@@ -16,6 +16,8 @@ if ( ! defined( 'ABSPATH' ) ) {
16
  */
17
  class WC_GZD_Gateway_Direct_Debit extends WC_Payment_Gateway {
18
 
 
 
19
  public $admin_fields = array();
20
 
21
  /**
@@ -80,14 +82,6 @@ Please notice: Period for pre-information of the SEPA direct debit is shortened
80
 
81
  $this->supports = array(
82
  'products',
83
- 'subscriptions',
84
- 'subscription_cancellation',
85
- 'subscription_suspension',
86
- 'subscription_reactivation',
87
- 'subscription_amount_changes',
88
- 'subscription_date_changes',
89
- 'subscription_payment_method_change',
90
- 'gateway_scheduled_payments'
91
  );
92
 
93
  if ( $this->get_option( 'enabled' ) === 'yes' && ! $this->supports_encryption() ) {
@@ -105,13 +99,47 @@ Please notice: Period for pre-information of the SEPA direct debit is shortened
105
  $this->remember = 'no';
106
  }
107
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108
  // Actions
109
  add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
110
  add_action( 'woocommerce_thankyou_direct-debit', array( $this, 'thankyou_page' ) );
111
  add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) );
112
  add_action( 'woocommerce_review_order_after_payment', array( $this, 'checkbox' ), wc_gzd_get_hook_priority( 'checkout_direct_debit' ) );
113
- add_action( 'wp_ajax_show_direct_debit', array( $this, 'generate_mandate' ) );
114
- add_action( 'wp_ajax_nopriv_show_direct_debit', array( $this, 'generate_mandate' ) );
115
  add_filter( 'woocommerce_email_classes', array( $this, 'add_email_template' ) );
116
 
117
  add_action( 'woocommerce_after_checkout_validation', array( $this, 'validate_checkbox' ) );
@@ -123,10 +151,6 @@ Please notice: Period for pre-information of the SEPA direct debit is shortened
123
  add_action( 'woocommerce_checkout_update_order_meta', array( $this, 'set_order_meta' ), 10, 2 );
124
  add_action( 'woocommerce_scheduled_subscription_payment', array( $this, 'set_order_meta' ), 10, 2 );
125
 
126
- // User Meta
127
- add_action( 'woocommerce_subscription_payment_complete', array( $this, 'set_mandate_seqType_to_RCUR_for_user' ), 10, 2 );
128
- add_action( 'woocommerce_order_status_completed', array( $this, 'set_mandate_seqType_to_RCUR_for_user' ), 10, 2 );
129
-
130
  // Customer Emails
131
  add_action( 'woocommerce_email_before_order_table', array( $this, 'email_instructions' ), 10, 3 );
132
  add_action( 'woocommerce_germanized_order_confirmation_sent', array( $this, 'send_mail' ) );
@@ -134,12 +158,14 @@ Please notice: Period for pre-information of the SEPA direct debit is shortened
134
 
135
  // Order admin
136
  add_action( 'woocommerce_admin_order_data_after_order_details', array( $this, 'print_debit_fields' ), 10, 1 );
137
-
138
  add_action( 'woocommerce_before_order_object_save', array( $this, 'save_debit_fields' ), 10, 1 );
139
 
140
  if ( ! wc_gzd_get_dependencies()->woocommerce_version_supports_crud() ) {
141
- add_action( 'woocommerce_process_shop_order_meta', array( $this, 'save_debit_fields' ), 10, 1 );
142
- }
 
 
 
143
 
144
  // Admin order table download actions
145
  add_filter( 'woocommerce_admin_order_actions', array( $this, 'order_actions' ), 0, 2 );
@@ -148,36 +174,7 @@ Please notice: Period for pre-information of the SEPA direct debit is shortened
148
  add_action( 'export_filters', array( $this, 'export_view' ) );
149
  add_action( 'export_wp', array( $this, 'export' ), 0, 1 );
150
  add_filter( 'export_args', array( $this, 'export_args' ), 0, 1 );
151
-
152
- $this->admin_fields = array(
153
- 'direct_debit_holder' => array(
154
- 'label' => __( 'Account Holder', 'woocommerce-germanized' ),
155
- 'id' => '_direct_debit_holder',
156
- 'class' => '',
157
- 'type' => 'text',
158
- 'encrypt' => false,
159
- ),
160
- 'direct_debit_iban' => array(
161
- 'label' => __( 'IBAN', 'woocommerce-germanized' ),
162
- 'id' => '_direct_debit_iban',
163
- 'type' => 'text',
164
- 'encrypt' => true,
165
- ),
166
- 'direct_debit_bic' => array(
167
- 'label' => __( 'BIC/SWIFT', 'woocommerce-germanized' ),
168
- 'id' => '_direct_debit_bic',
169
- 'type' => 'text',
170
- 'encrypt' => true,
171
- ),
172
- 'direct_debit_mandate_id' => array(
173
- 'label' => __( 'Mandate Reference ID', 'woocommerce-germanized' ),
174
- 'id' => '_direct_debit_mandate_id',
175
- 'type' => 'text',
176
- 'encrypt' => false,
177
- ),
178
- );
179
-
180
- }
181
 
182
  public function print_debit_fields( $order ) {
183
 
@@ -334,33 +331,53 @@ Please notice: Period for pre-information of the SEPA direct debit is shortened
334
  $directDebit = Digitick\Sepa\TransferFile\Factory\TransferFileFacadeFactory::createDirectDebit( $msg_id, $this->company_account_holder, $this->pain_format );
335
  $directDebit = apply_filters( 'woocommerce_gzd_direct_debit_sepa_xml_exporter', $directDebit );
336
 
 
 
 
337
  while ( $order_query->have_posts() ) {
338
 
339
  $order_query->next_post();
340
  $order = wc_get_order( $order_query->post->ID );
341
 
342
- $payment_id = 'PMT-ID-' . wc_gzd_get_crud_data( $order, 'id' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
343
 
344
  $directDebit->addPaymentInfo( $payment_id, apply_filters( 'woocommerce_gzd_direct_debit_sepa_xml_exporter_payment_args', array(
345
  'id' => $payment_id,
346
  'creditorName' => $this->company_account_holder,
347
  'creditorAccountIBAN' => $this->clean_whitespaces( $this->company_account_iban ),
348
  'creditorAgentBIC' => $this->clean_whitespaces( $this->company_account_bic ),
349
- 'seqType' => $this->get_mandate_type( $order ),
350
  'creditorId' => $this->clean_whitespaces( $this->company_identification_number ),
351
- 'dueDate' => date_i18n( 'Y-m-d', $this->get_debit_date( $order ) ),
352
- ), $this, $order ) );
353
-
354
- $directDebit->addTransfer( $payment_id, apply_filters( 'woocommerce_gzd_direct_debit_sepa_xml_exporter_transfer_args', array(
355
- 'amount' => $order->get_total(),
356
- 'debtorIban' => $this->clean_whitespaces( $this->maybe_decrypt( wc_gzd_get_crud_data( $order, 'direct_debit_iban' ) ) ),
357
- 'debtorBic' => $this->clean_whitespaces( $this->maybe_decrypt( wc_gzd_get_crud_data( $order, 'direct_debit_bic' ) ) ),
358
- 'debtorName' => wc_gzd_get_crud_data( $order, 'direct_debit_holder' ),
359
- 'debtorMandate' => $this->get_mandate_id( $order ),
360
- 'debtorMandateSignDate' => date_i18n( 'Y-m-d', $this->get_mandate_sign_date( $order ) ),
361
- 'remittanceInformation' => apply_filters( 'woocommerce_germanized_direct_debit_purpose', sprintf( __( 'Order %s', 'woocommerce-germanized' ), $order->get_order_number() ), $order ),
362
- ), $this, $order ) );
363
- }
 
 
364
 
365
  header( 'Content-Description: File Transfer' );
366
  header( 'Content-Disposition: attachment; filename=' . $filename );
16
  */
17
  class WC_GZD_Gateway_Direct_Debit extends WC_Payment_Gateway {
18
 
19
+ public static $has_loaded = false;
20
+
21
  public $admin_fields = array();
22
 
23
  /**
82
 
83
  $this->supports = array(
84
  'products',
 
 
 
 
 
 
 
 
85
  );
86
 
87
  if ( $this->get_option( 'enabled' ) === 'yes' && ! $this->supports_encryption() ) {
99
  $this->remember = 'no';
100
  }
101
 
102
+ if ( ! self::$has_loaded ) {
103
+ $this->init();
104
+ }
105
+
106
+ $this->admin_fields = array(
107
+ 'direct_debit_holder' => array(
108
+ 'label' => __( 'Account Holder', 'woocommerce-germanized' ),
109
+ 'id' => '_direct_debit_holder',
110
+ 'class' => '',
111
+ 'type' => 'text',
112
+ 'encrypt' => false,
113
+ ),
114
+ 'direct_debit_iban' => array(
115
+ 'label' => __( 'IBAN', 'woocommerce-germanized' ),
116
+ 'id' => '_direct_debit_iban',
117
+ 'type' => 'text',
118
+ 'encrypt' => true,
119
+ ),
120
+ 'direct_debit_bic' => array(
121
+ 'label' => __( 'BIC/SWIFT', 'woocommerce-germanized' ),
122
+ 'id' => '_direct_debit_bic',
123
+ 'type' => 'text',
124
+ 'encrypt' => true,
125
+ ),
126
+ 'direct_debit_mandate_id' => array(
127
+ 'label' => __( 'Mandate Reference ID', 'woocommerce-germanized' ),
128
+ 'id' => '_direct_debit_mandate_id',
129
+ 'type' => 'text',
130
+ 'encrypt' => false,
131
+ ),
132
+ );
133
+
134
+ self::$has_loaded = true;
135
+ }
136
+
137
+ public function init() {
138
  // Actions
139
  add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
140
  add_action( 'woocommerce_thankyou_direct-debit', array( $this, 'thankyou_page' ) );
141
  add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) );
142
  add_action( 'woocommerce_review_order_after_payment', array( $this, 'checkbox' ), wc_gzd_get_hook_priority( 'checkout_direct_debit' ) );
 
 
143
  add_filter( 'woocommerce_email_classes', array( $this, 'add_email_template' ) );
144
 
145
  add_action( 'woocommerce_after_checkout_validation', array( $this, 'validate_checkbox' ) );
151
  add_action( 'woocommerce_checkout_update_order_meta', array( $this, 'set_order_meta' ), 10, 2 );
152
  add_action( 'woocommerce_scheduled_subscription_payment', array( $this, 'set_order_meta' ), 10, 2 );
153
 
 
 
 
 
154
  // Customer Emails
155
  add_action( 'woocommerce_email_before_order_table', array( $this, 'email_instructions' ), 10, 3 );
156
  add_action( 'woocommerce_germanized_order_confirmation_sent', array( $this, 'send_mail' ) );
158
 
159
  // Order admin
160
  add_action( 'woocommerce_admin_order_data_after_order_details', array( $this, 'print_debit_fields' ), 10, 1 );
 
161
  add_action( 'woocommerce_before_order_object_save', array( $this, 'save_debit_fields' ), 10, 1 );
162
 
163
  if ( ! wc_gzd_get_dependencies()->woocommerce_version_supports_crud() ) {
164
+ add_action( 'woocommerce_process_shop_order_meta', array( $this, 'save_debit_fields' ), 10, 1 );
165
+ }
166
+
167
+ add_action( 'wp_ajax_show_direct_debit', array( $this, 'generate_mandate' ) );
168
+ add_action( 'wp_ajax_nopriv_show_direct_debit', array( $this, 'generate_mandate' ) );
169
 
170
  // Admin order table download actions
171
  add_filter( 'woocommerce_admin_order_actions', array( $this, 'order_actions' ), 0, 2 );
174
  add_action( 'export_filters', array( $this, 'export_view' ) );
175
  add_action( 'export_wp', array( $this, 'export' ), 0, 1 );
176
  add_filter( 'export_args', array( $this, 'export_args' ), 0, 1 );
177
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
178
 
179
  public function print_debit_fields( $order ) {
180
 
331
  $directDebit = Digitick\Sepa\TransferFile\Factory\TransferFileFacadeFactory::createDirectDebit( $msg_id, $this->company_account_holder, $this->pain_format );
332
  $directDebit = apply_filters( 'woocommerce_gzd_direct_debit_sepa_xml_exporter', $directDebit );
333
 
334
+ // Group orders by their mandate type to only add one payment per mandate type group.
335
+ $mandate_type_groups = array();
336
+
337
  while ( $order_query->have_posts() ) {
338
 
339
  $order_query->next_post();
340
  $order = wc_get_order( $order_query->post->ID );
341
 
342
+ if ( ! $order ) {
343
+ continue;
344
+ }
345
+
346
+ $mandate_type = $this->get_mandate_type( $order );
347
+
348
+ if ( ! array_key_exists( $mandate_type, $mandate_type_groups ) ) {
349
+ $mandate_type_groups[ $mandate_type ] = array();
350
+ }
351
+
352
+ array_push( $mandate_type_groups[ $mandate_type ], $order );
353
+ }
354
+
355
+ foreach( $mandate_type_groups as $mandate_type => $orders ) {
356
+
357
+ $payment_id = 'PMT-ID-' . date( 'YmdHis', time() ) . '-' . strtolower( $mandate_type );
358
 
359
  $directDebit->addPaymentInfo( $payment_id, apply_filters( 'woocommerce_gzd_direct_debit_sepa_xml_exporter_payment_args', array(
360
  'id' => $payment_id,
361
  'creditorName' => $this->company_account_holder,
362
  'creditorAccountIBAN' => $this->clean_whitespaces( $this->company_account_iban ),
363
  'creditorAgentBIC' => $this->clean_whitespaces( $this->company_account_bic ),
364
+ 'seqType' => $mandate_type,
365
  'creditorId' => $this->clean_whitespaces( $this->company_identification_number ),
366
+ 'dueDate' => date_i18n( 'Y-m-d', $this->get_debit_date( $order ) ),
367
+ ), $this, $mandate_type ) );
368
+
369
+ foreach( $orders as $order ) {
370
+ $directDebit->addTransfer( $payment_id, apply_filters( 'woocommerce_gzd_direct_debit_sepa_xml_exporter_transfer_args', array(
371
+ 'amount' => $order->get_total(),
372
+ 'debtorIban' => $this->clean_whitespaces( $this->maybe_decrypt( wc_gzd_get_crud_data( $order, 'direct_debit_iban' ) ) ),
373
+ 'debtorBic' => $this->clean_whitespaces( $this->maybe_decrypt( wc_gzd_get_crud_data( $order, 'direct_debit_bic' ) ) ),
374
+ 'debtorName' => wc_gzd_get_crud_data( $order, 'direct_debit_holder' ),
375
+ 'debtorMandate' => $this->get_mandate_id( $order ),
376
+ 'debtorMandateSignDate' => date_i18n( 'Y-m-d', $this->get_mandate_sign_date( $order ) ),
377
+ 'remittanceInformation' => apply_filters( 'woocommerce_germanized_direct_debit_purpose', sprintf( __( 'Order %s', 'woocommerce-germanized' ), $order->get_order_number() ), $order ),
378
+ ), $this, $order ) );
379
+ }
380
+ }
381
 
382
  header( 'Content-Description: File Transfer' );
383
  header( 'Content-Disposition: attachment; filename=' . $filename );
includes/gateways/invoice/class-wc-gzd-gateway-invoice.php CHANGED
@@ -168,9 +168,19 @@ class WC_GZD_Gateway_Invoice extends WC_Payment_Gateway {
168
  if ( $this->get_option( 'customers_only' ) == 'yes' && ! is_user_logged_in() )
169
  return false;
170
 
171
- if ( $this->get_option( 'customers_completed' ) == 'yes' && ( ! is_user_logged_in() || ! WC()->customer->is_paying_customer( get_current_user_id() ) ) )
172
- return false;
173
-
 
 
 
 
 
 
 
 
 
 
174
  }
175
 
176
  return true;
168
  if ( $this->get_option( 'customers_only' ) == 'yes' && ! is_user_logged_in() )
169
  return false;
170
 
171
+ if ( $this->get_option( 'customers_completed' ) == 'yes' ) {
172
+ if ( is_user_logged_in() ) {
173
+ $customer = WC()->customer;
174
+
175
+ if ( method_exists( $customer, 'get_is_paying_customer' ) ) {
176
+ return $customer->get_is_paying_customer() === true;
177
+ } else {
178
+ return $customer->is_paying_customer( get_current_user_id() ) === true;
179
+ }
180
+ } else {
181
+ return false;
182
+ }
183
+ }
184
  }
185
 
186
  return true;
readme.txt CHANGED
@@ -2,10 +2,10 @@
2
  Contributors: vendidero
3
  Tags: woocommerce, german, woocommerce-de, germany, deutsch, deutschland, de, de_DE, shop, e-commerce, ecommerce, woothemes, sepa, invoice, market
4
  Requires at least: 3.8
5
- Tested up to: 4.8
6
  WC requires at least: 2.4
7
  WC tested up to: 3.2
8
- Stable tag: 1.9.5
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
@@ -169,6 +169,15 @@ Bug reports may be filed via our [GitHub repository](https://github.com/vendider
169
 
170
  == Changelog ==
171
 
 
 
 
 
 
 
 
 
 
172
  = 1.9.5 =
173
  * Fix: Fee tax share calculation for WC 3.2
174
  * Fix: Gateway fee saving
2
  Contributors: vendidero
3
  Tags: woocommerce, german, woocommerce-de, germany, deutsch, deutschland, de, de_DE, shop, e-commerce, ecommerce, woothemes, sepa, invoice, market
4
  Requires at least: 3.8
5
+ Tested up to: 4.9
6
  WC requires at least: 2.4
7
  WC tested up to: 3.2
8
+ Stable tag: 1.9.6
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
169
 
170
  == Changelog ==
171
 
172
+ = 1.9.6 =
173
+ * Feature: Role Based Prices unit price recalculation support
174
+ * Improvement: Option to explicitly set revocation admin email address
175
+ * Fix: Direct Debit Gateway Export
176
+ * Fix: Email default header and subjects (Woo 3.X)
177
+ * Fix: Unit price recalculation division by zero
178
+ * Fix: add_to_cart shortcode price suffixes
179
+ * Fix: Removed subcription support for direct debit (still beta and testing)
180
+
181
  = 1.9.5 =
182
  * Fix: Fee tax share calculation for WC 3.2
183
  * Fix: Gateway fee saving
woocommerce-germanized.php CHANGED
@@ -3,11 +3,11 @@
3
  * Plugin Name: WooCommerce Germanized
4
  * Plugin URI: https://www.vendidero.de/woocommerce-germanized
5
  * Description: Extends WooCommerce to become a legally compliant store for the german market.
6
- * Version: 1.9.5
7
  * Author: Vendidero
8
  * Author URI: https://vendidero.de
9
  * Requires at least: 3.8
10
- * Tested up to: 4.8
11
  * WC requires at least: 2.4
12
  * WC tested up to: 3.2
13
  * Requires at least WooCommerce: 2.4
@@ -31,7 +31,7 @@ final class WooCommerce_Germanized {
31
  *
32
  * @var string
33
  */
34
- public $version = '1.9.5';
35
 
36
  /**
37
  * Single instance of WooCommerce Germanized Main Class
@@ -371,7 +371,12 @@ final class WooCommerce_Germanized {
371
  public function setup_compatibility() {
372
 
373
  $plugins = apply_filters( 'woocommerce_gzd_compatibilities',
374
- array( 'wpml', 'woocommerce-subscriptions', 'polylang', 'woocommerce-dynamic-pricing' )
 
 
 
 
 
375
  );
376
 
377
  foreach ( $plugins as $comp ) {
3
  * Plugin Name: WooCommerce Germanized
4
  * Plugin URI: https://www.vendidero.de/woocommerce-germanized
5
  * Description: Extends WooCommerce to become a legally compliant store for the german market.
6
+ * Version: 1.9.6
7
  * Author: Vendidero
8
  * Author URI: https://vendidero.de
9
  * Requires at least: 3.8
10
+ * Tested up to: 4.9
11
  * WC requires at least: 2.4
12
  * WC tested up to: 3.2
13
  * Requires at least WooCommerce: 2.4
31
  *
32
  * @var string
33
  */
34
+ public $version = '1.9.6';
35
 
36
  /**
37
  * Single instance of WooCommerce Germanized Main Class
371
  public function setup_compatibility() {
372
 
373
  $plugins = apply_filters( 'woocommerce_gzd_compatibilities',
374
+ array(
375
+ 'wpml',
376
+ 'polylang',
377
+ 'woocommerce-dynamic-pricing',
378
+ 'woocommerce-role-based-prices'
379
+ )
380
  );
381
 
382
  foreach ( $plugins as $comp ) {