WooCommerce Germanized - Version 1.7.2

Version Description

  • Feature - Optionally do not allow customers to switch payment gateway after ordering
  • Feature - Better Woo Subscriptions Compatibility
  • Feature - Parcel Delivery Data Transfer Checkbox for certain shipping methods (optional)
  • Feature - Better SEPA XML Library (https://github.com/php-sepa-xml/php-sepa-xml) with Pain Format Support
  • Fix - Customer Double Opt In Notice
  • Fix - Hide Shipping Time if Product is not in stock
  • Fix - Free Shipping REST API
  • Fix - Unit Price Saving
  • Fix - Order REST API
  • Fix - JS Variation Reset
  • Fix - Maybe Reduce Order Stock (for gateways like PayPal)
Download this release

Release Info

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

Code changes from version 1.7.1 to 1.7.2

Files changed (62) hide show
  1. assets/js/add-to-cart-variation.js +4 -0
  2. assets/js/add-to-cart-variation.min.js +1 -1
  3. i18n/languages/woocommerce-germanized-de_DE.mo +0 -0
  4. i18n/languages/woocommerce-germanized-de_DE.po +496 -355
  5. i18n/languages/woocommerce-germanized-de_DE_formal.mo +0 -0
  6. i18n/languages/woocommerce-germanized-de_DE_formal.po +496 -355
  7. includes/admin/class-wc-gzd-admin-notices.php +1 -0
  8. includes/admin/class-wc-gzd-admin.php +16 -0
  9. includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php +11 -2
  10. includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php +52 -38
  11. includes/admin/settings/class-wc-gzd-settings-germanized.php +56 -0
  12. includes/api/class-wc-gzd-rest-orders-controller.php +16 -10
  13. includes/api/class-wc-gzd-rest-products-controller.php +1 -1
  14. includes/class-wc-gzd-checkout.php +48 -1
  15. includes/class-wc-gzd-customer-helper.php +1 -0
  16. includes/class-wc-gzd-emails.php +1 -6
  17. includes/class-wc-gzd-shortcodes.php +31 -1
  18. includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php +7 -3
  19. includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php +33 -19
  20. includes/gateways/direct-debit/libraries/php-sepa-xml/.travis.yml +14 -0
  21. includes/gateways/direct-debit/libraries/php-sepa-xml/DomBuilder/BaseDomBuilder.php +179 -0
  22. includes/gateways/direct-debit/libraries/php-sepa-xml/DomBuilder/CustomerCreditTransferDomBuilder.php +211 -0
  23. includes/gateways/direct-debit/libraries/php-sepa-xml/DomBuilder/CustomerDirectDebitTransferDomBuilder.php +243 -0
  24. includes/gateways/direct-debit/libraries/php-sepa-xml/DomBuilder/DomBuilderFactory.php +48 -0
  25. includes/gateways/direct-debit/libraries/php-sepa-xml/DomBuilder/DomBuilderInterface.php +69 -0
  26. includes/gateways/direct-debit/libraries/php-sepa-xml/Exception/Exception.php +27 -0
  27. includes/gateways/direct-debit/libraries/php-sepa-xml/Exception/InvalidArgumentException.php +27 -0
  28. includes/gateways/direct-debit/libraries/php-sepa-xml/Exception/InvalidPaymentMethodException.php +27 -0
  29. includes/gateways/direct-debit/libraries/php-sepa-xml/Exception/InvalidTransferFileConfiguration.php +27 -0
  30. includes/gateways/direct-debit/libraries/php-sepa-xml/Exception/InvalidTransferTypeException.php +27 -0
  31. includes/gateways/direct-debit/libraries/php-sepa-xml/GroupHeader.php +237 -0
  32. includes/gateways/direct-debit/libraries/php-sepa-xml/PaymentInformation.php +438 -0
  33. includes/gateways/direct-debit/libraries/php-sepa-xml/TransferFile/BaseTransferFile.php +95 -0
  34. includes/gateways/direct-debit/libraries/php-sepa-xml/TransferFile/CustomerCreditTransferFile.php +64 -0
  35. includes/gateways/direct-debit/libraries/php-sepa-xml/TransferFile/CustomerDirectDebitTransferFile.php +67 -0
  36. includes/gateways/direct-debit/libraries/php-sepa-xml/TransferFile/Facade/BaseCustomerTransferFileFacade.php +67 -0
  37. includes/gateways/direct-debit/libraries/php-sepa-xml/TransferFile/Facade/CustomerCreditFacade.php +79 -0
  38. includes/gateways/direct-debit/libraries/php-sepa-xml/TransferFile/Facade/CustomerDirectDebitFacade.php +137 -0
  39. includes/gateways/direct-debit/libraries/php-sepa-xml/TransferFile/Facade/CustomerTransferFileFacadeInterface.php +50 -0
  40. includes/gateways/direct-debit/libraries/php-sepa-xml/TransferFile/Factory/TransferFileFacadeFactory.php +87 -0
  41. includes/gateways/direct-debit/libraries/php-sepa-xml/TransferFile/TransferFileInterface.php +43 -0
  42. includes/gateways/direct-debit/libraries/php-sepa-xml/TransferInformation/BaseTransferInformation.php +214 -0
  43. includes/gateways/direct-debit/libraries/php-sepa-xml/TransferInformation/CustomerCreditTransferInformation.php +51 -0
  44. includes/gateways/direct-debit/libraries/php-sepa-xml/TransferInformation/CustomerDirectDebitTransferInformation.php +189 -0
  45. includes/gateways/direct-debit/libraries/php-sepa-xml/TransferInformation/TransferInformationInterface.php +36 -0
  46. includes/gateways/direct-debit/libraries/php-sepa-xml/Util/StringHelper.php +54 -0
  47. includes/gateways/direct-debit/libraries/sepa-xml-creator/LICENSE +0 -339
  48. includes/gateways/direct-debit/libraries/sepa-xml-creator/SepaXmlCreator.php +0 -428
  49. includes/gateways/direct-debit/libraries/sepa-xml-creator/pain.001.002.03.xsd +0 -506
  50. includes/gateways/direct-debit/libraries/sepa-xml-creator/pain.008.002.02.xsd +0 -676
  51. includes/gateways/invoice/class-wc-gzd-gateway-invoice.php +4 -1
  52. includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-reviews.php +0 -2
  53. includes/wc-gzd-cart-functions.php +33 -5
  54. includes/wc-gzd-core-functions.php +23 -5
  55. includes/wc-gzd-order-functions.php +10 -3
  56. includes/wc-gzd-product-functions.php +5 -0
  57. includes/wc-gzd-template-functions.php +26 -0
  58. includes/wc-gzd-template-hooks.php +6 -3
  59. readme.txt +14 -1
  60. templates/checkout/terms-parcel-delivery.php +18 -0
  61. woocommerce-germanized.php +15 -4
  62. wpml-config.xml +1 -0
assets/js/add-to-cart-variation.js CHANGED
@@ -95,6 +95,10 @@
95
 
96
  .on( 'click', '.reset_variations', function() {
97
  $.fn.wc_gzd_variation_form.reset_variation();
 
 
 
 
98
  });
99
 
100
  };
95
 
96
  .on( 'click', '.reset_variations', function() {
97
  $.fn.wc_gzd_variation_form.reset_variation();
98
+ })
99
+
100
+ .on( 'reset_data', function() {
101
+ $.fn.wc_gzd_variation_form.reset_variation();
102
  });
103
 
104
  };
assets/js/add-to-cart-variation.min.js CHANGED
@@ -1,4 +1,4 @@
1
  /*!
2
  * Variations Plugin
3
  */
4
- !function(a){a.fn.wc_gzd_variation_form=function(){var b=this,c=b.parents(".type-product");a.fn.wc_gzd_variation_form.reset_variation=function(){a(".type-product").find(".org_price").length>0&&a(".type-product .price.variation_modified:not(.price-unit)").html(a(".type-product").find(".org_price").html()).removeClass("variation_modified").show(),a(".type-product").find(".org_delivery_time").length>0&&a(".type-product .delivery-time-info").html(a(".type-product").find(".org_delivery_time").html()).removeClass("variation_modified").show(),a(".type-product").find(".org_unit_price").length>0&&a(".type-product .price-unit").html(a(".product").find(".org_unit_price").html()).removeClass("variation_modified").show(),a(".type-product").find(".org_tax_info").length>0&&a(".type-product .tax-info").html(a(".product").find(".org_tax_info").html()).removeClass("variation_modified").show(),a(".type-product").find(".org_shipping_costs_info").length>0&&a(".type-product .shipping-costs-info").html(a(".product").find(".org_shipping_costs_info").html()).removeClass("variation_modified").show(),a(".type-product").find(".org_product_units").length>0&&a(".type-product .product-units").html(a(".product").find(".org_product_units").html()).removeClass("variation_modified").show(),a(".org_product_info").remove(),a(".variation_modified").remove()},b.on("found_variation",function(b,d){c.find(".price:first").hasClass("variation_modified")||(c.append('<div class="org_price org_product_info">'+c.find(".price:not(.price-unit):first").html()+"</div>"),c.find(".delivery-time-info:first").length>0&&c.append('<div class="org_delivery_time org_product_info">'+c.find(".delivery-time-info:first").html()+"</div>"),c.find(".tax-info:first").length>0&&c.append('<div class="org_tax_info org_product_info">'+c.find(".tax-info:first").html()+"</div>"),c.find(".shipping-costs-info:first").length>0&&c.append('<div class="org_shipping_costs_info org_product_info">'+c.find(".shipping-costs-info:first").html()+"</div>"),c.find(".price-unit:first").length>0&&c.append('<div class="org_unit_price org_product_info">'+c.find(".price-unit:first").html()+"</div>"),c.find(".product-units:first").length>0&&c.append('<div class="org_product_units org_product_info">'+c.find(".product-units:first").html()+"</div>"),a(".org_product_info").hide()),""!==d.price_html&&(a(".single_variation .price").hide(),c.find(".price:not(.price-unit):first").html(d.price_html).addClass("variation_modified"),c.find(".price:not(.price-unit):first").find(".price").contents().unwrap()),c.find(".delivery-time-info:first").hide(),c.find(".price-unit:first").hide(),c.find(".tax-info:first").hide(),c.find(".shipping-costs-info:first").hide(),c.find(".product-units:first").hide(),""!==d.delivery_time&&c.find("p.delivery-time-info:first").html(d.delivery_time).addClass("variation_modified").show(),""!==d.tax_info&&c.find(".tax-info:first").html(d.tax_info).addClass("variation_modified").show(),""!==d.shipping_costs_info&&c.find(".shipping-costs-info:first").html(d.shipping_costs_info).addClass("variation_modified").show(),""!==d.unit_price&&(c.find(".price-unit:first").remove(),c.find('div[itemprop="offers"]:first').after('<p class="price price-unit smaller variation_modified">'+d.unit_price+"</p>").show()),""!==d.product_units&&(c.find(".product-units:first").remove(),c.find(".product_meta").prepend('<span class="product-units-wrapper product-units variation_modified">'+d.product_units+"</span>").show())}).on("update_variation_values",function(){setTimeout(function(){(!a(".single_variation_wrap").is(":visible")||a(".single_add_to_cart_button").is("[disabled]"))&&a.fn.wc_gzd_variation_form.reset_variation()},250)}).on("click",".reset_variations",function(){a.fn.wc_gzd_variation_form.reset_variation()})},a(function(){return"undefined"==typeof wc_add_to_cart_variation_params?!1:(a(".variations_form").wc_gzd_variation_form(),a(".variations_form .variations select").change(),void a(".variations_form .variations input:radio:checked").change())})}(jQuery,window,document);
1
  /*!
2
  * Variations Plugin
3
  */
4
+ !function(a){a.fn.wc_gzd_variation_form=function(){var b=this,c=b.parents(".type-product");a.fn.wc_gzd_variation_form.reset_variation=function(){a(".type-product").find(".org_price").length>0&&a(".type-product .price.variation_modified:not(.price-unit)").html(a(".type-product").find(".org_price").html()).removeClass("variation_modified").show(),a(".type-product").find(".org_delivery_time").length>0&&a(".type-product .delivery-time-info").html(a(".type-product").find(".org_delivery_time").html()).removeClass("variation_modified").show(),a(".type-product").find(".org_unit_price").length>0&&a(".type-product .price-unit").html(a(".product").find(".org_unit_price").html()).removeClass("variation_modified").show(),a(".type-product").find(".org_tax_info").length>0&&a(".type-product .tax-info").html(a(".product").find(".org_tax_info").html()).removeClass("variation_modified").show(),a(".type-product").find(".org_shipping_costs_info").length>0&&a(".type-product .shipping-costs-info").html(a(".product").find(".org_shipping_costs_info").html()).removeClass("variation_modified").show(),a(".type-product").find(".org_product_units").length>0&&a(".type-product .product-units").html(a(".product").find(".org_product_units").html()).removeClass("variation_modified").show(),a(".org_product_info").remove(),a(".variation_modified").remove()},b.on("found_variation",function(b,d){c.find(".price:first").hasClass("variation_modified")||(c.append('<div class="org_price org_product_info">'+c.find(".price:not(.price-unit):first").html()+"</div>"),c.find(".delivery-time-info:first").length>0&&c.append('<div class="org_delivery_time org_product_info">'+c.find(".delivery-time-info:first").html()+"</div>"),c.find(".tax-info:first").length>0&&c.append('<div class="org_tax_info org_product_info">'+c.find(".tax-info:first").html()+"</div>"),c.find(".shipping-costs-info:first").length>0&&c.append('<div class="org_shipping_costs_info org_product_info">'+c.find(".shipping-costs-info:first").html()+"</div>"),c.find(".price-unit:first").length>0&&c.append('<div class="org_unit_price org_product_info">'+c.find(".price-unit:first").html()+"</div>"),c.find(".product-units:first").length>0&&c.append('<div class="org_product_units org_product_info">'+c.find(".product-units:first").html()+"</div>"),a(".org_product_info").hide()),""!==d.price_html&&(a(".single_variation .price").hide(),c.find(".price:not(.price-unit):first").html(d.price_html).addClass("variation_modified"),c.find(".price:not(.price-unit):first").find(".price").contents().unwrap()),c.find(".delivery-time-info:first").hide(),c.find(".price-unit:first").hide(),c.find(".tax-info:first").hide(),c.find(".shipping-costs-info:first").hide(),c.find(".product-units:first").hide(),""!==d.delivery_time&&c.find("p.delivery-time-info:first").html(d.delivery_time).addClass("variation_modified").show(),""!==d.tax_info&&c.find(".tax-info:first").html(d.tax_info).addClass("variation_modified").show(),""!==d.shipping_costs_info&&c.find(".shipping-costs-info:first").html(d.shipping_costs_info).addClass("variation_modified").show(),""!==d.unit_price&&(c.find(".price-unit:first").remove(),c.find('div[itemprop="offers"]:first').after('<p class="price price-unit smaller variation_modified">'+d.unit_price+"</p>").show()),""!==d.product_units&&(c.find(".product-units:first").remove(),c.find(".product_meta").prepend('<span class="product-units-wrapper product-units variation_modified">'+d.product_units+"</span>").show())}).on("update_variation_values",function(){setTimeout(function(){(!a(".single_variation_wrap").is(":visible")||a(".single_add_to_cart_button").is("[disabled]"))&&a.fn.wc_gzd_variation_form.reset_variation()},250)}).on("click",".reset_variations",function(){a.fn.wc_gzd_variation_form.reset_variation()}).on("reset_data",function(){a.fn.wc_gzd_variation_form.reset_variation()})},a(function(){return"undefined"==typeof wc_add_to_cart_variation_params?!1:(a(".variations_form").wc_gzd_variation_form(),a(".variations_form .variations select").change(),void a(".variations_form .variations input:radio:checked").change())})}(jQuery,window,document);
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: 2016-09-01 13:30+0100\n"
6
- "PO-Revision-Date: 2016-09-01 13:31+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "Language: de_DE\n"
@@ -92,7 +92,7 @@ msgstr "l"
92
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:172
93
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php:72
94
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:269
95
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/woocommerce-germanized.php:780
96
  msgid "incl. VAT"
97
  msgstr "inkl. MwSt."
98
 
@@ -105,7 +105,7 @@ msgstr "exkl. MwSt."
105
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:174
106
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php:72
107
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:269
108
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/woocommerce-germanized.php:780
109
  #, php-format
110
  msgid "incl. %s%% VAT"
111
  msgstr "inkl. %s%% MwSt."
@@ -147,39 +147,40 @@ msgstr "So geht das leider nicht.."
147
 
148
  # @ woocommerce-germanized
149
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:42
150
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:207
151
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-core-functions.php:49
152
  msgid "Terms & Conditions"
153
  msgstr "AGB"
154
 
155
  # @ woocommerce-germanized
156
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:43
157
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:218
158
  msgid "Power of Revocation"
159
  msgstr "Widerrufsbelehrung"
160
 
161
  # @ woocommerce-germanized
162
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:44
163
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:229
164
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-core-functions.php:55
165
  msgid "Imprint"
166
  msgstr "Impressum"
167
 
168
  # @ woocommerce-germanized
169
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:45
170
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:240
171
  msgid "Data Security Statement"
172
  msgstr "Datenschutzbelehrung"
173
 
174
  # @ woocommerce-germanized
175
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:46
176
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:251
177
  msgid "Payment Methods"
178
  msgstr "Zahlungarten"
179
 
180
  # @ woocommerce-germanized
181
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:47
182
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:262
 
183
  msgid "Shipping Methods"
184
  msgstr "Versandarten"
185
 
@@ -199,37 +200,49 @@ msgstr "Willkommen bei WooCommerce Germanized"
199
  msgid "Go to WooCommerce Germanized Settings"
200
  msgstr "zu den WooCommerce Germanized Einstellungen"
201
 
 
 
 
 
 
 
 
 
 
 
 
 
202
  # @ woocommerce-germanized
203
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:90
204
  msgid "WooCommerce Status"
205
  msgstr "WooCommerce Status"
206
 
207
  # @ woocommerce-germanized
208
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:90
209
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-page-status.php:16
210
  msgid "System Status"
211
  msgstr "Systemstatus"
212
 
213
  # @ woocommerce-germanized
214
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:147
215
  msgid "Optional Email Content"
216
  msgstr "Optionaler E-Mail Inhalt"
217
 
218
  # @ woocommerce-germanized
219
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:156
220
  msgid "Add content which will be replacing default page content within emails."
221
  msgstr ""
222
  "Fülle dieses Feld aus um einen abweichenden E-Mail Anhangstext für diese "
223
  "Seite zu bestimmen."
224
 
225
  # @ woocommerce-germanized
226
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:166
227
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:137
228
  msgid "Optional Mini Description"
229
  msgstr "Warenkorb Kurzbeschreibung"
230
 
231
  # @ woocommerce-germanized
232
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:183
233
  msgid ""
234
  "This content will be shown as short product description within checkout and "
235
  "emails."
@@ -238,22 +251,22 @@ msgstr ""
238
  "Produkt Kurzbeschreibung angezeigt."
239
 
240
  # @ woocommerce-germanized
241
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:300
242
  msgid "Complaints Procedure"
243
  msgstr "Beschwerdeverfahren"
244
 
245
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:46
246
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:42
247
  msgid "Service"
248
  msgstr "Dienstleistung"
249
 
250
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:46
251
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:43
252
  msgid "Service products do not sell physical products."
253
  msgstr "Dienstleistungen werden nicht in physikalischer Form verkauft."
254
 
255
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:86
256
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:56
257
  msgid "Sale Label"
258
  msgstr "Streichpreis Hinweis"
259
 
@@ -264,20 +277,20 @@ msgid "Same as Parent"
264
  msgstr "Gleiche wie übergeordnet"
265
 
266
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:96
267
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:57
268
  msgid "Sale Regular Label"
269
  msgstr "Angebotspreis Hinweis"
270
 
271
  # @ woocommerce-germanized
272
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:109
273
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:72
274
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:691
275
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:740
276
  msgid "Product Units"
277
  msgstr "Produkteinheiten"
278
 
279
  # @ woocommerce-germanized
280
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:109
281
  msgid ""
282
  "Number of units included per default product price. Example: 1000 ml. Leave "
283
  "blank to use parent value."
@@ -286,46 +299,46 @@ msgstr ""
286
  "Frei lassen um den Wert des Eltern-Produkts zu verwenden."
287
 
288
  # @ woocommerce-germanized
289
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:113
290
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:91
291
  msgid "Calculation"
292
  msgstr "Berechnung"
293
 
294
  # @ woocommerce-germanized
295
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:116
296
  msgid "Calculate unit prices automatically"
297
  msgstr "Grundpreis automatisch berechnen."
298
 
299
  # @ woocommerce-germanized
300
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:121
301
  msgid "Regular Unit Price"
302
  msgstr "Einheitspreis"
303
 
304
  # @ woocommerce-germanized
305
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:125
306
  msgid "Sale Unit Price"
307
  msgstr "Angebots-Einheitspreis"
308
 
309
  # @ woocommerce-germanized
310
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:131
311
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:112
312
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:28
313
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:181
314
  msgid "Delivery Time"
315
  msgstr "Lieferzeit"
316
 
317
  # @ woocommerce-germanized
318
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:132
319
  msgid "Same as parent"
320
  msgstr "Gleiche wie übergeordnet"
321
 
322
  # @ woocommerce-germanized
323
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:56
324
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:57
325
  msgid "Select Price Label"
326
  msgstr "Preishinweis auswählen"
327
 
328
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:56
329
  msgid ""
330
  "If the product is on sale you may want to show a price label right before "
331
  "outputting the old price to inform the customer."
@@ -335,7 +348,7 @@ msgstr ""
335
  "Preis). Mit diesem Hinweis kannst du genau festlegen, um welchen Preis es "
336
  "sich dabei handelte (z.B. UVP)."
337
 
338
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:57
339
  msgid ""
340
  "If the product is on sale you may want to show a price label right before "
341
  "outputting the new price to inform the customer."
@@ -345,35 +358,35 @@ msgstr ""
345
  "Preis)."
346
 
347
  # @ woocommerce-germanized
348
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:71
349
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:103
350
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:66
351
  msgid "Unit"
352
  msgstr "Einheit"
353
 
354
  # @ woocommerce-germanized
355
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:71
356
  msgid "Select unit"
357
  msgstr "Einheit auswählen"
358
 
359
  # @ woocommerce-germanized
360
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:71
361
  msgid "Needed if selling on a per unit basis"
362
  msgstr "Notwendig falls auf pro-Einheit-Basis verkauft werden soll"
363
 
364
  # @ woocommerce-germanized
365
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:72
366
  msgid "Number of units included per default product price. Example: 1000 ml."
367
  msgstr ""
368
  "Anzahl der Produkteinheiten auf Basis des Produktpreises. Beispiel: 1000 ml."
369
 
370
  # @ woocommerce-germanized
371
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:73
372
  msgid "Base Price Units"
373
  msgstr "Grundpreiseinheiten"
374
 
375
  # @ woocommerce-germanized
376
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:73
377
  msgid ""
378
  "Base price units. Example base price: 0,99 € / 100 ml. Insert 100 as base "
379
  "price unit amount."
@@ -382,32 +395,32 @@ msgstr ""
382
  "hier 100 als Grundpreiseinheiten ein."
383
 
384
  # @ woocommerce-germanized
385
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:91
386
  msgid "Calculate base prices automatically."
387
  msgstr "Grundpreis automatisch berechnen."
388
 
389
  # @ woocommerce-germanized
390
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:93
391
  msgid "Regular Base Price"
392
  msgstr "Regulärer Grundpreis"
393
 
394
  # @ woocommerce-germanized
395
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:94
396
  msgid "Sale Base Price"
397
  msgstr "Angebotsgrundpreis"
398
 
399
  # @ woocommerce-germanized
400
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:113
401
  msgid "Search for a delivery time&hellip;"
402
  msgstr "Lieferzeit suchen&hellip;"
403
 
404
  # @ woocommerce-germanized
405
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:119
406
  msgid "Free shipping?"
407
  msgstr "Versand kostenlos?"
408
 
409
  # @ woocommerce-germanized
410
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:119
411
  msgid "This option disables the \"plus shipping costs\" notice on product page"
412
  msgstr ""
413
  "Deaktiviert den Hinweis \"zzgl. Versandkosten\". Ohne Auswirkungen auf die "
@@ -473,7 +486,7 @@ msgstr "Keine"
473
 
474
  # @ woocommerce-germanized
475
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:136
476
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:606
477
  msgid "General"
478
  msgstr "Allgemein"
479
 
@@ -567,15 +580,43 @@ msgstr ""
567
  "Kunden den Abbrechen-Link verwendet. Diese Option verhindert den manuellen "
568
  "Abbruch einer Bestellung durch den Kunden."
569
 
 
 
 
 
570
  # @ woocommerce-germanized
571
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:192
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
572
  msgid "Contract"
573
  msgstr "Kaufvertrag"
574
 
575
  # @ woocommerce-germanized
576
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:192
577
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:499
578
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:511
579
  #, php-format
580
  msgid "%sUpgrade to %spro%s%s to unlock this feature and get premium support."
581
  msgstr ""
@@ -583,24 +624,24 @@ msgstr ""
583
  "erhalte professionellen Support."
584
 
585
  # @ woocommerce-germanized
586
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:204
587
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:141
588
  msgid "Legal Pages"
589
  msgstr "Rechtlich relevante Seiten"
590
 
591
  # @ woocommerce-germanized
592
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:208
593
  msgid "This page should contain your terms & conditions."
594
  msgstr "Diese Seite sollte deine Allgemeinen Geschäftsbedingungen enthalten."
595
 
596
  # @ woocommerce-germanized
597
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:214
598
  #, php-format
599
  msgid "Don't have terms & conditions yet? <a href=\"%s\">Generate now</a>!"
600
  msgstr "Du hast noch keine AGB? <a href=\"%s\">Jetzt generieren</a>!"
601
 
602
  # @ woocommerce-germanized
603
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:219
604
  msgid ""
605
  "This page should contain information regarding your customer's Right of "
606
  "Revocation."
@@ -610,27 +651,27 @@ msgstr ""
610
  "[revocation_form]"
611
 
612
  # @ woocommerce-germanized
613
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:225
614
  #, php-format
615
  msgid "Don't have a revocation page yet? <a href=\"%s\">Generate now</a>!"
616
  msgstr ""
617
  "Du hast noch keine Widerrufsbelehrung? <a href=\"%s\">Jetzt generieren</a>!"
618
 
619
  # @ woocommerce-germanized
620
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:230
621
  msgid "This page should contain an imprint with your company's information."
622
  msgstr ""
623
  "Diese Seite sollte das Impressum d.h. die Informationen (gemäß TMG) zu "
624
  "deinem Unternehmen enthalten."
625
 
626
  # @ woocommerce-germanized
627
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:241
628
  msgid ""
629
  "This page should contain information regarding your data security policy."
630
  msgstr "Diese Seite sollte deine Datenschutzbelehrung enthalten."
631
 
632
  # @ woocommerce-germanized
633
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:252
634
  msgid ""
635
  "This page should contain information regarding the Payment Methods that are "
636
  "chooseable during checkout."
@@ -640,7 +681,7 @@ msgstr ""
640
  "[payment_methods_info]"
641
 
642
  # @ woocommerce-germanized
643
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:263
644
  msgid ""
645
  "This page should contain information regarding shipping methods that are "
646
  "chooseable during checkout."
@@ -649,12 +690,12 @@ msgstr ""
649
  "Versandarten bereitstellen."
650
 
651
  # @ woocommerce-germanized
652
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:274
653
  msgid "Complaints"
654
  msgstr "Beschwerden"
655
 
656
  # @ woocommerce-germanized
657
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:274
658
  #, php-format
659
  msgid ""
660
  "Options regarding new EU online dispute resolution platform (OS). Read more "
@@ -665,12 +706,12 @@ msgstr ""
665
  "Pflichten."
666
 
667
  # @ woocommerce-germanized
668
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:277
669
  msgid "Complaints Procedure Text"
670
  msgstr "Hinweistext"
671
 
672
  # @ woocommerce-germanized
673
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:278
674
  msgid ""
675
  "Customize the text produced by the shortcode [gzd_complaints] to your needs. "
676
  "This text is to be meant to inform your customer about the existance of a "
@@ -682,7 +723,7 @@ msgstr ""
682
  "informieren. Du solltest diesen Shortcode z.B. in deinem Impressum einbinden."
683
 
684
  # @ woocommerce-germanized
685
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:280
686
  msgid ""
687
  "Online dispute resolution in accordance with Art. 14 (1) ODR-VO: The "
688
  "european commission provides a platform for online dispute resolution (OS) "
@@ -693,43 +734,43 @@ msgstr ""
693
  "du unter http://ec.europa.eu/consumers/odr/ findest."
694
 
695
  # @ woocommerce-germanized
696
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:287
697
  msgid "Shortcode Status"
698
  msgstr "Shortcode Status"
699
 
700
  # @ woocommerce-germanized
701
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:290
702
  msgid "Please choose a page as your imprint first."
703
  msgstr "Bitte hinterlege zuerst eine Seite als dein Impressum."
704
 
705
  # @ woocommerce-germanized
706
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:290
707
  msgid "Found"
708
  msgstr "Eingebunden"
709
 
710
  # @ woocommerce-germanized
711
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:290
712
  msgid "Not found within your imprint"
713
  msgstr "Nicht in deinem Impressum gefunden"
714
 
715
  # @ woocommerce-germanized
716
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:290
717
  msgid "Append it now"
718
  msgstr "Jetzt hinzufügen"
719
 
720
  # @ woocommerce-germanized
721
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:295
722
  msgid "Delivery Times"
723
  msgstr "Lieferzeiten"
724
 
725
  # @ woocommerce-germanized
726
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:298
727
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:42
728
  msgid "Default Delivery Time"
729
  msgstr "Standard-Lieferzeit"
730
 
731
  # @ woocommerce-germanized
732
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:299
733
  msgid ""
734
  "This delivery time will be added to every product if no delivery time has "
735
  "been chosen individually"
@@ -738,17 +779,17 @@ msgstr ""
738
  "zugeordnet wurde"
739
 
740
  # @ woocommerce-germanized
741
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:306
742
  msgid "Manage Delivery Times"
743
  msgstr "Lieferzeiten verwalten"
744
 
745
  # @ woocommerce-germanized
746
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:310
747
  msgid "Delivery Time Text"
748
  msgstr "Lieferzeit Text"
749
 
750
  # @ woocommerce-germanized
751
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:311
752
  msgid ""
753
  "This text will be used to indicate delivery time for products. Use "
754
  "{delivery_time} as placeholder."
@@ -757,21 +798,21 @@ msgstr ""
757
  "{delivery_time} als Platzhalter verwenden."
758
 
759
  # @ woocommerce-germanized
760
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:316
761
  msgid "Delivery time: {delivery_time}"
762
  msgstr "Lieferzeit: {delivery_time}"
763
 
764
  # @ woocommerce-germanized
765
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:321
766
  msgid "Sale Price Labels"
767
  msgstr "Preishinweise"
768
 
769
  # @ woocommerce-germanized
770
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:324
771
  msgid "Default Sale Label"
772
  msgstr "Streichpreis-Hinweis"
773
 
774
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:325
775
  msgid ""
776
  "Choose whether you would like to have a default sale price label to inform "
777
  "the customer about the regular price (e.g. Recommended Retail Price)."
@@ -780,16 +821,16 @@ msgstr ""
780
  "den Kunden auf den alten Preis (bei reduzierten Produkten, sog. "
781
  "Streichpreis) hinweist (z.B. UVP)."
782
 
783
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:332
784
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:344
785
  msgid "Manage Price Labels"
786
  msgstr "Preishinweise verwalten"
787
 
788
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:336
789
  msgid "Default Sale Regular Label"
790
  msgstr "Angebotspreis-Hinweis"
791
 
792
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:337
793
  msgid ""
794
  "Choose whether you would like to have a default sale price regular label to "
795
  "inform the customer about the sale price (e.g. New Price)."
@@ -799,17 +840,17 @@ msgstr ""
799
  "hinweist (z.B. Unser neuer Preis)."
800
 
801
  # @ woocommerce-germanized
802
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:350
803
  msgid "Shipping Costs"
804
  msgstr "Versandkosten"
805
 
806
  # @ woocommerce-germanized
807
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:353
808
  msgid "Shipping Costs Text"
809
  msgstr "Versandkosten Text"
810
 
811
  # @ woocommerce-germanized
812
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:354
813
  msgid ""
814
  "This text will be used to inform the customer about shipping costs. Use "
815
  "{link}{/link} to insert link to shipping costs page."
@@ -819,17 +860,17 @@ msgstr ""
819
  "zur Versandkosten-Seite einzufügen."
820
 
821
  # @ woocommerce-germanized
822
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:359
823
  msgid "plus {link}Shipping Costs{/link}"
824
  msgstr "zzgl. {link}Versandkosten{/link}"
825
 
826
  # @ woocommerce-germanized
827
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:363
828
  msgid "Free Shipping Text"
829
  msgstr "Kostenloser Versand Text"
830
 
831
  # @ woocommerce-germanized
832
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:364
833
  msgid ""
834
  "This text will be used to inform the customer about free shipping. Leave "
835
  "empty to disable notice. Use {link}{/link} to insert link to shipping costs "
@@ -840,17 +881,17 @@ msgstr ""
840
  "Versandkosten-Seite einzufügen."
841
 
842
  # @ woocommerce-germanized
843
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:373
844
  msgid "Shipping Costs Tax"
845
  msgstr "Steuerberechnung"
846
 
847
  # @ woocommerce-germanized
848
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:374
849
  msgid "Enable better taxation for shpping costs?"
850
  msgstr "Genauere Steuerberechnung für Versandkosten aktivieren?"
851
 
852
  # @ woocommerce-germanized
853
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:378
854
  #, php-format
855
  msgid ""
856
  "By choosing this option shipping cost taxation will be calculated based on "
@@ -864,18 +905,18 @@ msgstr ""
864
  "Bruttobeträge. Hier ein kleines Beispiel: %s"
865
 
866
  # @ woocommerce-germanized
867
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:382
868
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:404
869
  msgid "Force Tax Calculation"
870
  msgstr "Steuerberechnung erzwingen"
871
 
872
  # @ woocommerce-germanized
873
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:383
874
  msgid "Force shipping costs tax calculation for every method?"
875
  msgstr "Erzwinge die Besteuerung für Versandkosten für jede Versandart?"
876
 
877
  # @ woocommerce-germanized
878
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:387
879
  msgid ""
880
  "This option will overwrite settings for each individual shipping method to "
881
  "force tax calculation (instead of only calculating tax for those methods "
@@ -885,22 +926,22 @@ msgstr ""
885
  "Versandarten und erzwingt die Steuerberechnung."
886
 
887
  # @ woocommerce-germanized
888
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:392
889
  msgid "Fees"
890
  msgstr "Gebühren"
891
 
892
  # @ woocommerce-germanized
893
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:395
894
  msgid "Fee Tax"
895
  msgstr "Steuerberechnung"
896
 
897
  # @ woocommerce-germanized
898
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:396
899
  msgid "Enable better taxation for fees?"
900
  msgstr "Genauere Steuerberechnung für Gebühren aktivieren?"
901
 
902
  # @ woocommerce-germanized
903
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:400
904
  msgid ""
905
  "By choosing this option fee taxation will be calculated based on tax rates "
906
  "within cart. See shipping costs taxation for more information."
@@ -911,12 +952,12 @@ msgstr ""
911
  "Nettobeträge in Bruttobeträge an."
912
 
913
  # @ woocommerce-germanized
914
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:405
915
  msgid "Force fee tax calculation for every fee?"
916
  msgstr "Berechnung der Steuern für Gebühren erzwingen?"
917
 
918
  # @ woocommerce-germanized
919
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:409
920
  msgid ""
921
  "This option will overwrite settings for each individual fee to force tax "
922
  "calculation (instead of only calculating tax for those fees which are "
@@ -926,28 +967,28 @@ msgstr ""
926
  "Steuerberechnung."
927
 
928
  # @ woocommerce-germanized
929
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:414
930
  msgid "Customers"
931
  msgstr "Kunden"
932
 
933
  # @ woocommerce-germanized
934
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:417
935
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:546
936
  msgid "Checkbox"
937
  msgstr "Checkbox"
938
 
939
  # @ woocommerce-germanized
940
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:418
941
  msgid "Add a checkbox to customer registration form."
942
  msgstr "Füge eine Checkbox zum Formular für die Kundenregistrierung hinzu."
943
 
944
  # @ woocommerce-germanized
945
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:425
946
  msgid "Checkbox text"
947
  msgstr "Checkbox Text"
948
 
949
  # @ woocommerce-germanized
950
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:426
951
  msgid ""
952
  "Choose a Plain Text which will be shown as checkbox text for customer "
953
  "account creation. Use {term_link}{/term_link}, {data_security_link}{/"
@@ -961,7 +1002,7 @@ msgstr ""
961
  "Hinweisseiten."
962
 
963
  # @ woocommerce-germanized
964
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:428
965
  msgid ""
966
  "Yes, I’d like create a new account and have read and understood the "
967
  "{data_security_link}data privacy statement{/data_security_link}."
@@ -970,19 +1011,19 @@ msgstr ""
970
  "{data_security_link}Datenschutzerklärung{/data_security_link}."
971
 
972
  # @ woocommerce-germanized
973
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:435
974
  msgid "Checkout"
975
  msgstr "Kasse"
976
 
977
  # @ woocommerce-germanized
978
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:436
979
  msgid ""
980
  "Replace default WooCommerce text regarding account creation during checkout."
981
  msgstr ""
982
  "Ersetze den WooCommerce Text (Kundenkonto erstellen?) durch den o.g. Hinweis."
983
 
984
  # @ woocommerce-germanized
985
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:437
986
  msgid ""
987
  "Use the text from above instead of the default WooCommerce text regarding "
988
  "account creation during checkout. This checkbox is only show if you have "
@@ -994,17 +1035,17 @@ msgstr ""
994
  "zulässt."
995
 
996
  # @ woocommerce-germanized
997
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:444
998
  msgid "Customer Double Opt In"
999
  msgstr "Double Opt-In"
1000
 
1001
  # @ woocommerce-germanized
1002
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:445
1003
  msgid "Enable customer double opt in on registration?"
1004
  msgstr "Double Opt-In Verfahren für Kundenkonten aktivieren?"
1005
 
1006
  # @ woocommerce-germanized
1007
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:446
1008
  #, php-format
1009
  msgid ""
1010
  "If customer chooses to create a customer account an email with an activation "
@@ -1018,15 +1059,15 @@ msgstr ""
1018
  "Verfahren ist laut Amtsgericht Berlin Pankow/Weißensee notwendig. Mehr "
1019
  "Informationen findest du <a href=\"%s\" target=\"_blank\">hier</a>."
1020
 
1021
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:453
1022
  msgid "Disable Login and Checkout"
1023
  msgstr "Login und Checkout"
1024
 
1025
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:454
1026
  msgid "Disable login and checkout for unactivated customers."
1027
  msgstr "Deaktiviere den Login und Checkout für inaktive Kunden."
1028
 
1029
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:455
1030
  msgid ""
1031
  "Customers that did not click on the activation link will not be able to "
1032
  "complete checkout nor login to their account."
@@ -1036,12 +1077,12 @@ msgstr ""
1036
  "werden."
1037
 
1038
  # @ woocommerce-germanized
1039
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:462
1040
  msgid "Delete Unactivated After"
1041
  msgstr "Unaktivierte löschen nach"
1042
 
1043
  # @ woocommerce-germanized
1044
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:463
1045
  msgid ""
1046
  "This will make sure unactivated customer accounts will be deleted after X "
1047
  "days. Set to 0 if you don't want to automatically delete unactivated "
@@ -1052,23 +1093,23 @@ msgstr ""
1052
  "setze den Wert auf 0."
1053
 
1054
  # @ woocommerce-germanized
1055
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:464
1056
  msgid "days"
1057
  msgstr "Tagen"
1058
 
1059
  # @ woocommerce-germanized
1060
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:473
1061
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-core-functions.php:52
1062
  msgid "Right of Recission"
1063
  msgstr "Widerrufsrecht"
1064
 
1065
  # @ woocommerce-germanized
1066
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:476
1067
  msgid "Revocation Address"
1068
  msgstr "Widerruf richten an"
1069
 
1070
  # @ woocommerce-germanized
1071
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:477
1072
  msgid ""
1073
  "Type in an address, telephone/telefax number, email address which is to be "
1074
  "used as revocation address"
@@ -1077,18 +1118,18 @@ msgstr ""
1077
  "die deine Kunden ihren Widerruf richten sollen"
1078
 
1079
  # @ woocommerce-germanized
1080
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:486
1081
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:81
1082
  msgid "Virtual VAT"
1083
  msgstr "USt. Änderung 2015"
1084
 
1085
  # @ woocommerce-germanized
1086
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:489
1087
  msgid "Enable Virtual VAT"
1088
  msgstr "USt. Anpassung aktivieren"
1089
 
1090
  # @ woocommerce-germanized
1091
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:490
1092
  msgid ""
1093
  "Enable if you want to charge your customer's countries' VAT for virtual "
1094
  "products."
@@ -1096,7 +1137,7 @@ msgstr ""
1096
  "Für virtuelle Produkte den USt.-Satz des Dienstleistungsempfängers berechnen."
1097
 
1098
  # @ woocommerce-germanized
1099
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:494
1100
  #, php-format
1101
  msgid ""
1102
  "New EU VAT rule applies on 01.01.2015. Make sure that every digital or "
@@ -1119,35 +1160,35 @@ msgstr ""
1119
  "dazu findest du <a href=\"%s\" target=\"_blank\">hier</a>."
1120
 
1121
  # @ woocommerce-germanized
1122
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:499
1123
  msgctxt "invoices"
1124
  msgid "Invoices"
1125
  msgstr "Rechnungen"
1126
 
1127
  # @ woocommerce-germanized
1128
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:511
1129
  msgid "VAT"
1130
  msgstr "Umsatzsteuer"
1131
 
1132
  # @ woocommerce-germanized
1133
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:546
1134
  #, php-format
1135
  msgid "Attach %s"
1136
  msgstr "%s"
1137
 
1138
  # @ woocommerce-germanized
1139
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:547
1140
  #, php-format
1141
  msgid "Attach %s to the following email templates"
1142
  msgstr "%s an die folgenden E-Mail Templates anfügen"
1143
 
1144
  # @ woocommerce-germanized
1145
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:560
1146
  msgid "E-Mails"
1147
  msgstr "E-Mails"
1148
 
1149
  # @ woocommerce-germanized
1150
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:560
1151
  msgid ""
1152
  "Use drag & drop to customize attachment order. Don't forget to save your "
1153
  "changes."
@@ -1156,12 +1197,12 @@ msgstr ""
1156
  "beeinflussen und speichere anschließend deine Änderungen."
1157
 
1158
  # @ woocommerce-germanized
1159
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:577
1160
  msgid "Email Attachment Options"
1161
  msgstr "PDF Anhang"
1162
 
1163
  # @ woocommerce-germanized
1164
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:577
1165
  #, php-format
1166
  msgid ""
1167
  "Want to attach automatically generated PDF files to emails instead of plain "
@@ -1171,27 +1212,27 @@ msgstr ""
1171
  "%sUpgrade zur %spro%s Version%s"
1172
 
1173
  # @ woocommerce-germanized
1174
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:600
1175
  msgid "Downloadable Product"
1176
  msgstr "Herunterladbares Produkt"
1177
 
1178
  # @ woocommerce-germanized
1179
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:601
1180
  msgid "Virtual Product"
1181
  msgstr "Virtuelles Produkt"
1182
 
1183
  # @ woocommerce-germanized
1184
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:609
1185
  msgid "Add to Cart"
1186
  msgstr "Zum Warenkorb Button"
1187
 
1188
  # @ woocommerce-germanized
1189
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:610
1190
  msgid "Show add to cart button on listings?"
1191
  msgstr "Den zum Warenkorb Button in Produktlisten darstellen?"
1192
 
1193
  # @ woocommerce-germanized
1194
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:614
1195
  msgid ""
1196
  "unset this option if you don't want to show the add to cart button within "
1197
  "the product listings"
@@ -1200,18 +1241,18 @@ msgstr ""
1200
  "von Produktauflistungen darstellen möchten"
1201
 
1202
  # @ woocommerce-germanized
1203
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:618
1204
  msgid "Link to Details"
1205
  msgstr "Verlinkung zu Produktdetails"
1206
 
1207
  # @ woocommerce-germanized
1208
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:619
1209
  msgid ""
1210
  "Want to link to product details page instead of add to cart within listings?"
1211
  msgstr "Zum Warenkorb Button mit Button zur Produktdetail-Seite ersetzen?"
1212
 
1213
  # @ woocommerce-germanized
1214
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:623
1215
  msgid ""
1216
  "Decide whether you like to link to your product's details page instead of "
1217
  "displaying an add to cart button within product listings."
@@ -1221,17 +1262,17 @@ msgstr ""
1221
  "diese Option."
1222
 
1223
  # @ woocommerce-germanized
1224
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:627
1225
  msgid "Product Details Text"
1226
  msgstr "Produktdetails Text"
1227
 
1228
  # @ woocommerce-germanized
1229
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:629
1230
  msgid "Details"
1231
  msgstr "Details"
1232
 
1233
  # @ woocommerce-germanized
1234
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:631
1235
  msgid ""
1236
  "If you have chosen to link to product details page instead of add to cart "
1237
  "URL you may want to change the button text."
@@ -1241,11 +1282,11 @@ msgstr ""
1241
  "einen Button-Text vergeben."
1242
 
1243
  # @ woocommerce-germanized
1244
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:636
1245
  msgid "Digital Delivery Time Text"
1246
  msgstr "Lieferzeit Digital"
1247
 
1248
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:640
1249
  msgid ""
1250
  "Enter a text which will be shown as digital delivery time text (replacement "
1251
  "for default digital time on digital products)."
@@ -1255,76 +1296,76 @@ msgstr ""
1255
  "lassen."
1256
 
1257
  # @ woocommerce-germanized
1258
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:645
1259
  msgid "Notice Footer"
1260
  msgstr "Hinweise im Footer"
1261
 
1262
  # @ woocommerce-germanized
1263
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:646
1264
  msgid "Show a global VAT notice within footer"
1265
  msgstr "Einen seitenübergreifenden Hinweis bzgl. der MwSt. im Footer einfügen."
1266
 
1267
  # @ woocommerce-germanized
1268
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:654
1269
  msgid "Show a global sale price notice within footer"
1270
  msgstr ""
1271
  "Einen seitenübergreifenden Hinweis bzgl. reduzierter Preise im Footer "
1272
  "einfügen."
1273
 
1274
  # @ woocommerce-germanized
1275
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:663
1276
  msgid "Products"
1277
  msgstr "Produkt"
1278
 
1279
  # @ woocommerce-germanized
1280
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:666
1281
  msgid "Show within Product Listings"
1282
  msgstr "In Produktlisten"
1283
 
1284
  # @ woocommerce-germanized
1285
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:667
1286
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:716
1287
  msgid "Shipping Costs notice"
1288
  msgstr "Versandkosten-Hinweis"
1289
 
1290
  # @ woocommerce-germanized
1291
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:675
1292
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:724
1293
  msgid "Tax Info"
1294
  msgstr "MwSt. Hinweis"
1295
 
1296
  # @ woocommerce-germanized
1297
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:683
1298
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:732
1299
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:787
1300
  msgid "Base Price"
1301
  msgstr "Grundpreis"
1302
 
1303
  # @ woocommerce-germanized
1304
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:699
1305
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:748
1306
  msgid "Delivery Time Notice"
1307
  msgstr "Lieferzeiten-Hinweis"
1308
 
1309
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:707
1310
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:756
1311
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:93
1312
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:95
1313
  msgid "Price Labels"
1314
  msgstr "Preishinweise"
1315
 
1316
  # @ woocommerce-germanized
1317
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:715
1318
  msgid "Show on Product Detail Page"
1319
  msgstr "Auf der Produktseite"
1320
 
1321
  # @ woocommerce-germanized
1322
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:764
1323
  msgid "Hide Shipping Costs Notice"
1324
  msgstr "Versandkosten ausblenden"
1325
 
1326
  # @ woocommerce-germanized
1327
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:765
1328
  msgid ""
1329
  "Select product types for which you might want to disable the shipping costs "
1330
  "notice."
@@ -1333,11 +1374,11 @@ msgstr ""
1333
  "möchtest."
1334
 
1335
  # @ woocommerce-germanized
1336
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:775
1337
  msgid "Hide Delivery Time Notice"
1338
  msgstr "Lieferzeiten ausblenden"
1339
 
1340
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:776
1341
  msgid ""
1342
  "Select product types for which you might want to disable the delivery time "
1343
  "notice."
@@ -1346,12 +1387,12 @@ msgstr ""
1346
  "möchtest."
1347
 
1348
  # @ woocommerce-germanized
1349
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:790
1350
  msgid "Base Price Text"
1351
  msgstr "Grundpreis Text"
1352
 
1353
  # @ woocommerce-germanized
1354
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:791
1355
  msgid ""
1356
  "This text will be used to display the base price. Use {price} to insert the "
1357
  "price. If you want to specifically format base price output use {base}, "
@@ -1363,26 +1404,26 @@ msgstr ""
1363
  "{base_price} für die einzelnen Elemente."
1364
 
1365
  # @ woocommerce-germanized
1366
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:796
1367
  msgid "{price}"
1368
  msgstr "{price}"
1369
 
1370
  # @ woocommerce-germanized
1371
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:800
1372
  msgid "Variable Base Price"
1373
  msgstr "Variabler Grundpreis"
1374
 
1375
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:801
1376
  msgid "Enable price range base prices for variable products."
1377
  msgstr "Aktiviere von-bis-Grundpreise für variable Produkte."
1378
 
1379
  # @ woocommerce-germanized
1380
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:808
1381
  msgid "Product Units Text"
1382
  msgstr "Produkteinheiten Text"
1383
 
1384
  # @ woocommerce-germanized
1385
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:809
1386
  msgid ""
1387
  "This text will be used to display the product units. Use {product_units} to "
1388
  "insert the amount of product units. Use {unit} to insert the unit. "
@@ -1394,23 +1435,23 @@ msgstr ""
1394
  "Grundpreis."
1395
 
1396
  # @ woocommerce-germanized
1397
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:814
1398
  msgid "Product contains: {product_units} {unit}"
1399
  msgstr "Produkt enthält: {product_units} {unit}"
1400
 
1401
  # @ woocommerce-germanized
1402
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:819
1403
  msgid "Checkout & Cart"
1404
  msgstr "Checkout & Warenkorb"
1405
 
1406
  # @ woocommerce-germanized
1407
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:822
1408
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:55
1409
  msgid "Fallback Mode"
1410
  msgstr "Fallback Modus"
1411
 
1412
  # @ woocommerce-germanized
1413
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:823
1414
  msgid ""
1415
  "Enable to make sure default checkout template is not being overriden by "
1416
  "theme."
@@ -1418,7 +1459,7 @@ msgstr ""
1418
  "Überschreiben relevanter Templates im Checkout durch dein Theme verhindern."
1419
 
1420
  # @ woocommerce-germanized
1421
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:827
1422
  msgid ""
1423
  "If you are facing problems within your checkout e.g. legally relevant data "
1424
  "is not showing (terms, delivery time, unit price etc.) your theme seems to "
@@ -1432,17 +1473,17 @@ msgstr ""
1432
  "Checkout (review-order.php und form-checkout.php) zu überschreiben. "
1433
 
1434
  # @ woocommerce-germanized
1435
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:831
1436
  msgid "Force free shipping"
1437
  msgstr "Versandmethode erzwingen"
1438
 
1439
  # @ woocommerce-germanized
1440
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:832
1441
  msgid "Force free shipping method if available?"
1442
  msgstr "Kostenlosen Versand erzwingen wenn die Methode zur Verfügung steht?"
1443
 
1444
  # @ woocommerce-germanized
1445
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:836
1446
  msgid ""
1447
  "By default WooCommerce will let customers choose other shipping methods than "
1448
  "free shipping (if available). This option will force free shipping if "
@@ -1453,18 +1494,18 @@ msgstr ""
1453
  "Versand, sobald dieser verfügbar ist."
1454
 
1455
  # @ woocommerce-germanized
1456
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:840
1457
  msgid "Hide taxes estimated"
1458
  msgstr "Hinweis \"Steuern geschätzt\""
1459
 
1460
  # @ woocommerce-germanized
1461
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:841
1462
  msgid ""
1463
  "Do you want to hide the \"taxes and shipping estimated\" text from your cart?"
1464
  msgstr "Den Hinweis \"Versandkosten und Steuern werden geschätzt\" entfernen?"
1465
 
1466
  # @ woocommerce-germanized
1467
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:845
1468
  msgid ""
1469
  "By default WooCommerce adds a \"taxes and shipping estimated\" text to your "
1470
  "cart. This might puzzle your customers and may not meet german law."
@@ -1474,17 +1515,17 @@ msgstr ""
1474
  "Markt geeignet."
1475
 
1476
  # @ woocommerce-germanized
1477
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:849
1478
  msgid "Show Thumbnails"
1479
  msgstr "Thumbnails anzeigen"
1480
 
1481
  # @ woocommerce-germanized
1482
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:850
1483
  msgid "Show product thumbnails on checkout page?"
1484
  msgstr "Produktbilder im Checkout darstellen?"
1485
 
1486
  # @ woocommerce-germanized
1487
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:854
1488
  msgid ""
1489
  "Uncheck if you don't want to show your product thumbnails within checkout "
1490
  "table."
@@ -1493,17 +1534,17 @@ msgstr ""
1493
  "bekommen möchtest."
1494
 
1495
  # @ woocommerce-germanized
1496
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:858
1497
  msgid "Hide Shipping Select"
1498
  msgstr "Versandarten Auswahl"
1499
 
1500
  # @ woocommerce-germanized
1501
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:859
1502
  msgid "Hide shipping rate selection from checkout?"
1503
  msgstr "Die Auswahl von Versandarten im Checkout deaktivieren?"
1504
 
1505
  # @ woocommerce-germanized
1506
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:863
1507
  msgid ""
1508
  "This option will hide shipping rate selection from checkout. By then "
1509
  "customers will only be able to change their shipping rate on cart page."
@@ -1513,18 +1554,18 @@ msgstr ""
1513
  "Versandmethode ändern."
1514
 
1515
  # @ woocommerce-germanized
1516
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:867
1517
  msgid "Show back to cart button"
1518
  msgstr "Bestellung bearbeiten"
1519
 
1520
  # @ woocommerce-germanized
1521
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:868
1522
  msgid "Show back to cart button within your checkout table?"
1523
  msgstr ""
1524
  "Einen \"Bestellung bearbeiten\" Button in der Bestellübersicht anzeigen?"
1525
 
1526
  # @ woocommerce-germanized
1527
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:872
1528
  msgid ""
1529
  "This button may let your customer edit their order before submitting. Some "
1530
  "people state that this button should be hidden to avoid legal problems."
@@ -1536,28 +1577,28 @@ msgstr ""
1536
  "keine weitere Informationen abgedruckt werden sollten."
1537
 
1538
  # @ woocommerce-germanized
1539
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:876
1540
  msgid "Show edit data notice"
1541
  msgstr "Bestellung prüfen Hinweis"
1542
 
1543
  # @ woocommerce-germanized
1544
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:877
1545
  msgid "Show a \"check-your-entries\" notice to the user?"
1546
  msgstr "Einen \"Bestellung prüfen\" Hinweis anzeigen?"
1547
 
1548
  # @ woocommerce-germanized
1549
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:881
1550
  msgid "This notice will be added right before the order comments field."
1551
  msgstr ""
1552
  "Dieser Hinweis wird direkt oberhalb des Bestellhinweise-Feldes eingefügt."
1553
 
1554
  # @ woocommerce-germanized
1555
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:885
1556
  msgid "Checkout Table Color"
1557
  msgstr "Hintergrundfarbe der Tabelle"
1558
 
1559
  # @ woocommerce-germanized
1560
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:887
1561
  msgid ""
1562
  "Choose the color of your checkout product table. This table should be "
1563
  "highlighted within your checkout page."
@@ -1566,17 +1607,17 @@ msgstr ""
1566
  "Tabelle sollte sich farblich vom Rest des Inhalts abheben."
1567
 
1568
  # @ woocommerce-germanized
1569
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:893
1570
  msgid "Checkout Legal Display"
1571
  msgstr "Checkbox oder Text"
1572
 
1573
  # @ woocommerce-germanized
1574
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:894
1575
  msgid "Use Text without Checkbox"
1576
  msgstr "Rechtshinweis ohne Checkbox."
1577
 
1578
  # @ woocommerce-germanized
1579
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:896
1580
  msgid ""
1581
  "This version will remove checkboxes from Checkout and display a text "
1582
  "instead. This seems to be legally compliant (Zalando & Co are using this "
@@ -1587,12 +1628,12 @@ msgstr ""
1587
  "diese Form)"
1588
 
1589
  # @ woocommerce-germanized
1590
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:902
1591
  msgid "Legal Text"
1592
  msgstr "Rechtlicher Hinweistext"
1593
 
1594
  # @ woocommerce-germanized
1595
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:903
1596
  msgid ""
1597
  "Choose a Plain Text which will be shown right above checkout submit button. "
1598
  "Use {term_link}{/term_link}, {data_security_link}{/data_security_link}, "
@@ -1605,7 +1646,7 @@ msgstr ""
1605
  "revocation_link} um die jeweiligen Links zu den Seiten einzufügen."
1606
 
1607
  # @ woocommerce-germanized
1608
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:905
1609
  msgid ""
1610
  "With your order, you agree to have read and understood our {term_link}Terms "
1611
  "and Conditions{/term_link} and your {revocation_link}Right of Recission{/"
@@ -1616,12 +1657,12 @@ msgstr ""
1616
  "revocation_link} einverstanden."
1617
 
1618
  # @ woocommerce-germanized
1619
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:912
1620
  msgid "Legal Text Error"
1621
  msgstr "Fehlermeldung der Checkbox"
1622
 
1623
  # @ woocommerce-germanized
1624
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:913
1625
  msgid ""
1626
  "If you have chosen to use checkbox validation please choose a error message "
1627
  "which will be shown if the user doesn't check checkbox. Use {term_link}{/"
@@ -1636,7 +1677,7 @@ msgstr ""
1636
  "revocation_link}"
1637
 
1638
  # @ woocommerce-germanized
1639
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:915
1640
  msgid ""
1641
  "To finish the order you have to accept to our {term_link}Terms and "
1642
  "Conditions{/term_link} and {revocation_link}Right of Recission{/"
@@ -1646,17 +1687,17 @@ msgstr ""
1646
  "term_link} und {revocation_link}Widerrufsbestimmungen{/revocation_link}."
1647
 
1648
  # @ woocommerce-germanized
1649
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:922
1650
  msgid "Show digital notice"
1651
  msgstr "Checkbox digitale Produkte"
1652
 
1653
  # @ woocommerce-germanized
1654
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:923
1655
  msgid "Show checkbox for digital products."
1656
  msgstr "Checkbox bei digitalen Produkten anzeigen."
1657
 
1658
  # @ woocommerce-germanized
1659
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:924
1660
  msgid ""
1661
  "Disable this option if you want your customers to obtain their right of "
1662
  "recission even if digital products are being bought."
@@ -1666,12 +1707,12 @@ msgstr ""
1666
  "werden, dass im Falle von digitalen Produkten das Widerrufsrecht erlischt."
1667
 
1668
  # @ woocommerce-germanized
1669
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:931
1670
  msgid "Digital Product types"
1671
  msgstr "Digitale Produkttypen"
1672
 
1673
  # @ woocommerce-germanized
1674
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:932
1675
  msgid ""
1676
  "Select product types for which the loss of recission notice is shown. "
1677
  "Product types like \"simple product\" may be redudant because they include "
@@ -1683,12 +1724,12 @@ msgstr ""
1683
  "einschließen."
1684
 
1685
  # @ woocommerce-germanized
1686
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:942
1687
  msgid "Legal Digital Text"
1688
  msgstr "Hinweis Digital"
1689
 
1690
  # @ woocommerce-germanized
1691
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:943
1692
  msgid ""
1693
  "Choose a Plain Text which will be shown right above checkout submit button "
1694
  "if a user has picked a digital product. See legal text option for possible "
@@ -1699,7 +1740,7 @@ msgstr ""
1699
  "Platzhalter verwenden wie beim Rechtlichen Hinweistext"
1700
 
1701
  # @ woocommerce-germanized
1702
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:945
1703
  msgid ""
1704
  "For digital products: I strongly agree that the execution of the agreement "
1705
  "starts before the revocation period has expired. I am aware that my right of "
@@ -1710,13 +1751,13 @@ msgstr ""
1710
  "bekannt, dass mit Beginn der Ausführung mein Widerrufsrecht erlischt."
1711
 
1712
  # @ woocommerce-germanized
1713
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:952
1714
  msgid "Legal Digital Error"
1715
  msgstr "Fehlermeldung Digital"
1716
 
1717
  # @ woocommerce-germanized
1718
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:953
1719
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:992
1720
  msgid ""
1721
  "This text will be shown as error message if customer has not checked the "
1722
  "corresponding checkbox. See legal text option for possible placeholders."
@@ -1726,7 +1767,7 @@ msgstr ""
1726
  "Hinweistext für eine Liste der Platzhalter."
1727
 
1728
  # @ woocommerce-germanized
1729
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:955
1730
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:317
1731
  msgid ""
1732
  "To retrieve direct access to digital content you have to agree to the loss "
@@ -1736,12 +1777,12 @@ msgstr ""
1736
  "Widerrufsrecht verzichten."
1737
 
1738
  # @ woocommerce-germanized
1739
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:962
1740
  msgid "Digital Confirmation Notice"
1741
  msgstr "Digitale Bestätigung"
1742
 
1743
  # @ woocommerce-germanized
1744
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:963
1745
  msgid ""
1746
  "This text will be appended to your order processing email if the order "
1747
  "contains digital products. Use placeholders {link}{/link} to insert link to "
@@ -1752,7 +1793,7 @@ msgstr ""
1752
  "Platzhalter {link}{/link} um einen Link zur Widerrufsbelehrung einzufügen."
1753
 
1754
  # @ woocommerce-germanized
1755
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:966
1756
  msgid ""
1757
  "Furthermore you have expressly agreed to start the performance of the "
1758
  "contract for digital items (e.g. downloads) before expiry of the withdrawal "
@@ -1766,17 +1807,17 @@ msgstr ""
1766
  "verlieren."
1767
 
1768
  # @ woocommerce-germanized
1769
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:972
1770
  msgid "Show service notice"
1771
  msgstr "Checkbox Dienstleistungen"
1772
 
1773
  # @ woocommerce-germanized
1774
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:973
1775
  msgid "Show checkbox for service products."
1776
  msgstr "Checkbox bei Dienstleistungen anzeigen."
1777
 
1778
  # @ woocommerce-germanized
1779
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:974
1780
  msgid ""
1781
  "Disable this option if you want your customers to obtain their right of "
1782
  "recission even if service products are being bought."
@@ -1787,12 +1828,12 @@ msgstr ""
1787
  "Widerrufsfrist mit der Dienstleistung begonnen wird."
1788
 
1789
  # @ woocommerce-germanized
1790
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:981
1791
  msgid "Legal Service Text"
1792
  msgstr "Hinweis Dienstleistungen"
1793
 
1794
  # @ woocommerce-germanized
1795
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:982
1796
  msgid ""
1797
  "Choose a Plain Text which will be shown right above checkout submit button "
1798
  "if a user has picked a service product. See legal text option for possible "
@@ -1803,7 +1844,7 @@ msgstr ""
1803
  "Platzhalter verwenden wie beim Rechtlichen Hinweistext."
1804
 
1805
  # @ woocommerce-germanized
1806
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:984
1807
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:339
1808
  msgid ""
1809
  "For services: I demand and acknowledge the immediate performance of the "
@@ -1816,12 +1857,12 @@ msgstr ""
1816
  "vollständiger Erfüllung des Vertrages erlischt."
1817
 
1818
  # @ woocommerce-germanized
1819
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:991
1820
  msgid "Legal Service Error"
1821
- msgstr "Fehlermeldung Dienstleistung"
1822
 
1823
  # @ woocommerce-germanized
1824
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:994
1825
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:348
1826
  msgid ""
1827
  "To allow the immediate performance of the services you have to agree to the "
@@ -1830,12 +1871,12 @@ msgstr ""
1830
  "Bitte stimme dem Beginn der Dienstleistung vor Ablauf der Widerrufsfrist zu."
1831
 
1832
  # @ woocommerce-germanized
1833
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1001
1834
  msgid "Service Confirmation Notice"
1835
  msgstr "Dienstleistung Bestätigung"
1836
 
1837
  # @ woocommerce-germanized
1838
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1002
1839
  msgid ""
1840
  "This text will be appended to your order processing email if the order "
1841
  "contains service products. Use placeholders {link}{/link} to insert link to "
@@ -1846,7 +1887,7 @@ msgstr ""
1846
  "Platzhalter {link}{/link} um einen Link zur Widerrufsbelehrung einzufügen."
1847
 
1848
  # @ woocommerce-germanized
1849
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1005
1850
  msgid ""
1851
  "Furthermore you have expressly agreed to start the performance of the "
1852
  "contract for services before expiry of the withdrawal period. I have noted "
@@ -1860,19 +1901,97 @@ msgstr ""
1860
  "erlischt."
1861
 
1862
  # @ woocommerce-germanized
1863
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1011
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1864
  msgid "Pay now Button"
1865
  msgstr "Jetzt bezahlen Button"
1866
 
1867
  # @ woocommerce-germanized
1868
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1012
1869
  msgid "Add a pay now button to emails and order success page."
1870
  msgstr ""
1871
  "Füge einen jetzt bezahlen - Button zur E-Mail und der Bestätigungs-Seite "
1872
  "hinzu."
1873
 
1874
  # @ woocommerce-germanized
1875
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1013
1876
  msgid ""
1877
  "Add a pay now button to order confirmation email and order success page if "
1878
  "the order awaits payment (PayPal etc)."
@@ -1882,30 +2001,30 @@ msgstr ""
1882
  "benötigt (z.B. per PayPal)."
1883
 
1884
  # @ woocommerce-germanized
1885
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1020
1886
  msgid "Order Success Text"
1887
  msgstr "Bestellung eingegangen"
1888
 
1889
  # @ woocommerce-germanized
1890
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1021
1891
  msgid "Choose a custom text to display on order success page."
1892
  msgstr ""
1893
  "Hier kannst du einen individuellen kurzen Text eingeben, der nach der "
1894
  "Bestellung ausgegeben wird."
1895
 
1896
  # @ woocommerce-germanized
1897
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1029
1898
  msgid "Order Success Data"
1899
  msgstr "Bestellbestätigungs-Daten"
1900
 
1901
  # @ woocommerce-germanized
1902
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1030
1903
  msgid "Hide product table and customer data on order success page"
1904
  msgstr ""
1905
  "Produktdetails (Tabelle, Kundeninfos) von der Bestätigungsseite entfernen."
1906
 
1907
  # @ woocommerce-germanized
1908
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1138
1909
  msgid ""
1910
  "Sorry, but the new Virtual VAT rules cannot be applied to small business."
1911
  msgstr ""
@@ -2478,10 +2597,10 @@ msgstr "jetzt upgraden"
2478
  # @ woocommerce
2479
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:87
2480
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:93
2481
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:88
2482
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:94
2483
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:195
2484
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:206
2485
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:74
2486
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:81
2487
  msgid "Title"
@@ -2489,47 +2608,51 @@ msgstr "Anrede"
2489
 
2490
  # @ woocommerce-germanized
2491
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:113
2492
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:114
2493
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:26
2494
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:471
2495
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/views/html-export.php:27
2496
  msgid "Direct Debit"
2497
  msgstr "Lastschrift"
2498
 
2499
  # @ woocommerce-germanized
2500
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:118
2501
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:119
2502
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:273
2503
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:292
2504
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:497
2505
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:619
2506
  msgid "Account Holder"
2507
  msgstr "Kontoinhaber"
2508
 
2509
  # @ woocommerce-germanized
2510
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:123
2511
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:124
2512
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:274
2513
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:299
2514
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:505
2515
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:623
2516
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:715
2517
  msgid "IBAN"
2518
  msgstr "IBAN"
2519
 
2520
  # @ woocommerce-germanized
2521
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:128
2522
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:129
2523
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:275
2524
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:306
2525
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:627
2526
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:716
2527
  msgid "BIC/SWIFT"
2528
  msgstr "BIC/SWIFT"
2529
 
 
 
 
 
2530
  # @ woocommerce-germanized
2531
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:134
2532
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:313
2533
  msgid "Mandate Reference ID"
2534
  msgstr "Mandat-Referenznummer"
2535
 
@@ -2725,9 +2848,9 @@ msgstr ""
2725
  "Mail mit deinen Daten als Bestätigung."
2726
 
2727
  # @ woocommerce-germanized
2728
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:196
2729
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:204
2730
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:336
2731
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:76
2732
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:83
2733
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:41
@@ -2735,9 +2858,9 @@ msgid "Mr."
2735
  msgstr "Herr"
2736
 
2737
  # @ woocommerce-germanized
2738
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:196
2739
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:204
2740
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:336
2741
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:76
2742
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:83
2743
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:42
@@ -2745,30 +2868,30 @@ msgid "Ms."
2745
  msgstr "Frau"
2746
 
2747
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:150
2748
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:195
2749
  msgid ""
2750
  "Please activate your account through clicking on the activation link "
2751
  "received via email."
2752
  msgstr ""
2753
  "Bitte aktiviere dein Kundenkonto indem du auf den Link in der E-Mail klickst."
2754
 
2755
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:158
2756
  #, php-format
2757
  msgid "Continue without creating an account? <a href=\"%s\">Click here</a>"
2758
  msgstr "Weiter zur Kasse ohne Kundenkonto? <a href=\"%s\">Hier klicken</a>"
2759
 
2760
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:160
2761
  msgid "Please create an account or login before continuing to checkout"
2762
  msgstr ""
2763
  "Bitte erstelle ein Kundenkonto oder logge dich ein, bevor du zur Kasse gehst"
2764
 
2765
  # @ woocommerce-germanized
2766
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:216
2767
  msgid "Thank you. You have successfully activated your account."
2768
  msgstr "Vielen Dank. Dein Benutzerkonto wurde erfolgreich aktiviert."
2769
 
2770
  # @ woocommerce-germanized
2771
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:222
2772
  msgid "Sorry, but this activation code cannot be found."
2773
  msgstr "Sorry, dieser Aktivierungscode ist uns leider nicht bekannt."
2774
 
@@ -2875,7 +2998,7 @@ msgid "eKomi Options"
2875
  msgstr "eKomi"
2876
 
2877
  # @ woocommerce-germanized
2878
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-emails.php:296
2879
  msgctxt "revocation-form"
2880
  msgid "Forward your Revocation online"
2881
  msgstr "Deinen Widerruf online erklären"
@@ -2891,73 +3014,73 @@ msgstr ""
2891
  "WooCommerce Germanized installierst. Vielen Dank!"
2892
 
2893
  # @ woocommerce-germanized
2894
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:461
2895
  msgctxt "Page slug"
2896
  msgid "data-security"
2897
  msgstr "datenschutzbelehrung"
2898
 
2899
  # @ woocommerce-germanized
2900
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:462
2901
  msgctxt "Page title"
2902
  msgid "Data Security Statement"
2903
  msgstr "Datenschutzbelehrung"
2904
 
2905
  # @ woocommerce-germanized
2906
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:466
2907
  msgctxt "Page slug"
2908
  msgid "imprint"
2909
  msgstr "impressum"
2910
 
2911
  # @ woocommerce-germanized
2912
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:467
2913
  msgctxt "Page title"
2914
  msgid "Imprint"
2915
  msgstr "Impressum"
2916
 
2917
  # @ woocommerce-germanized
2918
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:471
2919
  msgctxt "Page slug"
2920
  msgid "terms"
2921
  msgstr "agb"
2922
 
2923
  # @ woocommerce-germanized
2924
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:472
2925
  msgctxt "Page title"
2926
  msgid "Terms & Conditions"
2927
  msgstr "AGB"
2928
 
2929
  # @ woocommerce-germanized
2930
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:476
2931
  msgctxt "Page slug"
2932
  msgid "revocation"
2933
  msgstr "widerrufsbelehrung"
2934
 
2935
  # @ woocommerce-germanized
2936
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:477
2937
  msgctxt "Page title"
2938
  msgid "Power of Revocation"
2939
  msgstr "Widerrufsbelehrung"
2940
 
2941
  # @ woocommerce-germanized
2942
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:481
2943
  msgctxt "Page slug"
2944
  msgid "shipping-methods"
2945
  msgstr "versandarten"
2946
 
2947
  # @ woocommerce-germanized
2948
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:482
2949
  msgctxt "Page title"
2950
  msgid "Shipping Methods"
2951
  msgstr "Versandarten"
2952
 
2953
  # @ woocommerce-germanized
2954
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:486
2955
  msgctxt "Page slug"
2956
  msgid "payment-methods"
2957
  msgstr "bezahlmoeglichkeiten"
2958
 
2959
  # @ woocommerce-germanized
2960
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:487
2961
  msgctxt "Page title"
2962
  msgid "Payment Methods"
2963
  msgstr "Zahlungsarten"
@@ -2971,8 +3094,8 @@ msgstr "%s Zahlungsgebühr"
2971
 
2972
  # @ woocommerce-germanized
2973
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:54
2974
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-order-functions.php:21
2975
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-template-functions.php:468
2976
  #, php-format
2977
  msgid "Plus %s forwarding fee (charged by the transport agent)"
2978
  msgstr "zzgl. %s Übermittlungsentgelt (direkt an den Zusteller)"
@@ -3386,7 +3509,7 @@ msgid "SEPA XML Bulk Export"
3386
  msgstr "SEPA XML Export"
3387
 
3388
  # @ woocommerce-germanized
3389
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:49
3390
  msgid ""
3391
  "[company_info]\n"
3392
  "debtee identification number: [company_identification_number]\n"
@@ -3454,119 +3577,119 @@ msgstr ""
3454
  "Bitte beachte: Die First für die Vorabinformation der SEPA-Lastschrift wird "
3455
  "auf einen Tag verkürzt. "
3456
 
3457
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:135
3458
  msgid "SEPA XML Export"
3459
  msgstr "SEPA XML Export"
3460
 
3461
  # @ woocommerce-germanized
3462
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:229
3463
  #, php-format
3464
  msgid "Order %s"
3465
  msgstr "Bestellung %s"
3466
 
3467
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:254
3468
  msgid "Will be notified separately"
3469
  msgstr "Wird separat mitgeteilt"
3470
 
3471
  # @ woocommerce-germanized
3472
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:462
3473
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:79
3474
  msgid "Enable/Disable"
3475
  msgstr "Aktivieren/Deaktivieren"
3476
 
3477
  # @ woocommerce-germanized
3478
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:464
3479
  msgid "Enable Direct Debit Payment"
3480
  msgstr "Bezahlung per Lastschrift aktivieren"
3481
 
3482
  # @ woocommerce-germanized
3483
  # @ woocommerce
3484
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:468
3485
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:85
3486
  msgctxt "gateway"
3487
  msgid "Title"
3488
  msgstr "Bezeichnung"
3489
 
3490
  # @ woocommerce-germanized
3491
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:470
3492
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:87
3493
  msgid "This controls the title which the user sees during checkout."
3494
  msgstr ""
3495
  "Beschreibungstext, den Benutzer bei der Auswahl dieser Zahlungsart sehen."
3496
 
3497
  # @ woocommerce-germanized
3498
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:475
3499
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:92
3500
  msgid "Description"
3501
  msgstr "Beschreibung"
3502
 
3503
  # @ woocommerce-germanized
3504
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:477
3505
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:94
3506
  msgid "Payment method description that the customer will see on your checkout."
3507
  msgstr "Beschreibung der Zahlungsart, die Kunden auf deiner Website sehen."
3508
 
3509
  # @ woocommerce-germanized
3510
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:478
3511
  msgid "The order amount will be debited directly from your bank account."
3512
  msgstr ""
3513
  "Der Gesamtbestellbetrag wird per SEPA-Lastschrift direkt von deinem Konto "
3514
  "abgebucht."
3515
 
3516
  # @ woocommerce-germanized
3517
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:482
3518
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:99
3519
  msgid "Instructions"
3520
  msgstr "Anweisungen"
3521
 
3522
  # @ woocommerce-germanized
3523
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:484
3524
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:101
3525
  msgid "Instructions that will be added to the thank you page and emails."
3526
  msgstr "Anweisung, die zur „Danke“-Seite und zu E-Mails hinzugefügt werden."
3527
 
3528
  # @ woocommerce-germanized
3529
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:489
3530
  msgid "Debtee"
3531
  msgstr "Gläubiger Informationen"
3532
 
3533
  # @ woocommerce-germanized
3534
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:491
3535
  msgid "Insert your company information."
3536
  msgstr "Füge hier die Informationen zu deinem Unternehmen ein."
3537
 
3538
  # @ woocommerce-germanized
3539
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:493
3540
  msgid "Company Inc, John Doe Street, New York"
3541
  msgstr "Musterfirma GmbH, Musterstraße 12, 12203 Musterstadt"
3542
 
3543
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:499
3544
  msgid "Insert the bank account holder name."
3545
  msgstr "Füge hier den Namen des Kontoinhabers ein."
3546
 
3547
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:501
3548
  msgid "Company Inc"
3549
  msgstr "Muster GmbH"
3550
 
3551
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:507
3552
  msgid "Insert the bank account IBAN."
3553
  msgstr "Füge hier den IBAN deines Kontos ein."
3554
 
3555
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:512
3556
  msgid "BIC"
3557
  msgstr "BIC"
3558
 
3559
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:514
3560
  msgid "Insert the bank account BIC."
3561
  msgstr "Füge hier den BIC deines Kontos ein."
3562
 
3563
  # @ woocommerce-germanized
3564
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:519
3565
  msgid "Debtee identification number"
3566
  msgstr "Identifikationsnummer"
3567
 
3568
  # @ woocommerce-germanized
3569
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:521
3570
  #, php-format
3571
  msgid ""
3572
  "Insert your debtee indentification number. More information can be found <a "
@@ -3576,16 +3699,16 @@ msgstr ""
3576
  "Weitere Informationen zu dieser Nummer erhältst du <a href=\"%s\">hier</a>."
3577
 
3578
  # @ woocommerce-germanized
3579
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:525
3580
  msgid "Generate Mandate ID"
3581
  msgstr "Mandat-Referenz generieren"
3582
 
3583
  # @ woocommerce-germanized
3584
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:527
3585
  msgid "Automatically generate Mandate ID."
3586
  msgstr "Mandat-Referenznummer automatisch generieren."
3587
 
3588
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:528
3589
  msgid ""
3590
  "Automatically generate Mandate ID after order completion (based on Order ID)."
3591
  msgstr ""
@@ -3593,11 +3716,24 @@ msgstr ""
3593
  "basierend auf der Bestellnummer."
3594
 
3595
  # @ woocommerce-germanized
3596
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:532
 
 
 
 
 
 
 
 
 
 
 
 
 
3597
  msgid "Mandate ID Format"
3598
  msgstr "Mandat-Referenz Format"
3599
 
3600
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:534
3601
  msgid ""
3602
  "You may extend the Mandate ID format by adding a prefix and/or suffix. Use "
3603
  "{id} as placeholder to insert the automatically generated ID."
@@ -3606,12 +3742,12 @@ msgstr ""
3606
  "{id} als Platzhalter um die automatisch generierte Referenznummer einzufügen."
3607
 
3608
  # @ woocommerce-germanized
3609
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:538
3610
  msgid "Mandate Text"
3611
  msgstr "Lastschriftmandat"
3612
 
3613
  # @ woocommerce-germanized
3614
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:540
3615
  msgid ""
3616
  "This text will be populated with live order/checkout data. Will be used as "
3617
  "preview direct debit mandate and as email template text."
@@ -3622,23 +3758,23 @@ msgstr ""
3622
  "Verfügung gestellt."
3623
 
3624
  # @ woocommerce-germanized
3625
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:547
3626
  msgid "Enable \"agree to SEPA mandate\" checkbox"
3627
  msgstr "Aktiviere die Checkbox zur Bestätigung des Lastschriftmandates."
3628
 
3629
  # @ woocommerce-germanized
3630
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:549
3631
  msgid "Enable a checkbox linking to a SEPA direct debit mandate preview."
3632
  msgstr ""
3633
  "Aktiviere eine Checkbox, die zu einer Vorschau des Lastschrift-Mandats führt."
3634
 
3635
  # @ woocommerce-germanized
3636
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:553
3637
  msgid "Checkbox label"
3638
  msgstr "Checkbox Text"
3639
 
3640
  # @ woocommerce-germanized
3641
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:555
3642
  msgid ""
3643
  "Customize the checkbox label. Use {link}link name{/link} to insert the "
3644
  "preview link."
@@ -3647,20 +3783,20 @@ msgstr ""
3647
  "auf die Vorschau zu verlinken."
3648
 
3649
  # @ woocommerce-germanized
3650
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:556
3651
  msgid "I hereby agree to the {link}direct debit mandate{/link}."
3652
  msgstr "Hiermit erteile ich das {link}SEPA Lastschriftmandat{/link}."
3653
 
3654
  # @ woocommerce-germanized
3655
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:560
3656
  msgid "Mask IBAN"
3657
  msgstr "IBAN maskieren"
3658
 
3659
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:561
3660
  msgid "Mask the IBAN within emails."
3661
  msgstr "IBAN in E-Mails maskieren."
3662
 
3663
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:563
3664
  msgid ""
3665
  "This will lead to masked IBANs within emails (replaced by *). All but last 4 "
3666
  "digits will be masked."
@@ -3668,15 +3804,15 @@ msgstr ""
3668
  "Der IBAN wird in E-Mails (abgesehen von den letzten 4 Stellen) mit * "
3669
  "maskiert."
3670
 
3671
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:572
3672
  msgid "Remember"
3673
  msgstr "Bankdaten merken\t"
3674
 
3675
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:573
3676
  msgid "Remember account data for returning customers."
3677
  msgstr "Bankverbindung für registrierte Kunden speichern."
3678
 
3679
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:575
3680
  msgid "Save account data as user meta if user has/creates a customer account."
3681
  msgstr ""
3682
  "Speichert die Bankverbindung für registrierte Kunden in der user_meta "
@@ -3684,37 +3820,37 @@ msgstr ""
3684
  "eigenständig aus."
3685
 
3686
  # @ woocommerce-germanized
3687
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:658
3688
  msgid "Please insert your SEPA account data."
3689
  msgstr "Bitte füge deine SEPA Kontoinformationen ein."
3690
 
3691
  # @ woocommerce-germanized
3692
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:668
3693
  msgid "Your IBAN seems to be invalid."
3694
  msgstr "Dein IBAN scheint nicht gültig zu sein."
3695
 
3696
  # @ woocommerce-germanized
3697
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:670
3698
  msgid "Your IBAN's country code doesn’t match with your billing country."
3699
  msgstr "Der Ländercode des IBANs stimmt nicht mit dem Rechnungsland überein."
3700
 
3701
  # @ woocommerce-germanized
3702
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:674
3703
  msgid "Your BIC seems to be invalid."
3704
  msgstr "Dein BIC/SWIFT scheint nicht gültig zu sein."
3705
 
3706
  # @ woocommerce-germanized
3707
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:686
3708
  msgid "Please accept the direct debit mandate."
3709
  msgstr "Bitte erteile das SEPA Lastschriftmandat."
3710
 
3711
  # @ woocommerce-germanized
3712
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:717
3713
  msgid "is invalid"
3714
  msgstr "ist ungültig"
3715
 
3716
  # @ woocommerce-germanized
3717
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:755
3718
  msgid "Processing direct debit"
3719
  msgstr "Lastschriftverfahren vorbereiten"
3720
 
@@ -3774,7 +3910,7 @@ msgstr ""
3774
  # @ woocommerce-germanized
3775
  # @ woocommerce
3776
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:50
3777
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/woocommerce-germanized.php:549
3778
  msgid "Settings"
3779
  msgstr "Einstellungen"
3780
 
@@ -4351,7 +4487,7 @@ msgstr "Zeigt deine Trusted Shops Bewertungen als Grafik an."
4351
  # @ woocommerce-germanized
4352
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-reviews.php:21
4353
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-reviews.php:25
4354
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-reviews.php:47
4355
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-rich-snippets.php:45
4356
  msgctxt "trusted-shops"
4357
  msgid "Trusted Shops Reviews"
@@ -4395,8 +4531,8 @@ msgstr "Datenschutzbelehrung"
4395
  # @ woocommerce-germanized
4396
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-core-functions.php:86
4397
  msgid ""
4398
- "Because of the small business owner state according to &#167;19 UStG the "
4399
- "seller charge no sales tax, and therefore do not show it."
4400
  msgstr "Kein Mehrwertsteuerausweis, da Kleinunternehmer nach §19 (1) UStG."
4401
 
4402
  # @ woocommerce-germanized
@@ -4415,13 +4551,18 @@ msgstr "Bestellung bearbeiten"
4415
  msgid "Choose a Payment Gateway"
4416
  msgstr "Zahlungsart auswählen"
4417
 
 
 
 
 
 
4418
  # @ woocommerce
4419
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-template-functions.php:378
4420
  msgid "Place order"
4421
  msgstr "Jetzt kaufen"
4422
 
4423
  # @ woocommerce-germanized
4424
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-template-functions.php:449
4425
  msgid "Please accept the creation of a new customer account"
4426
  msgstr "Bitte akzeptiere die Erstellung eines neuen Kundenkontos"
4427
 
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce Germanized v1.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-11-11 15:47+0100\n"
6
+ "PO-Revision-Date: 2016-11-11 15:49+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "Language: de_DE\n"
92
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:172
93
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php:72
94
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:269
95
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/woocommerce-germanized.php:791
96
  msgid "incl. VAT"
97
  msgstr "inkl. MwSt."
98
 
105
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:174
106
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php:72
107
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:269
108
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/woocommerce-germanized.php:791
109
  #, php-format
110
  msgid "incl. %s%% VAT"
111
  msgstr "inkl. %s%% MwSt."
147
 
148
  # @ woocommerce-germanized
149
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:42
150
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:216
151
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-core-functions.php:49
152
  msgid "Terms & Conditions"
153
  msgstr "AGB"
154
 
155
  # @ woocommerce-germanized
156
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:43
157
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:227
158
  msgid "Power of Revocation"
159
  msgstr "Widerrufsbelehrung"
160
 
161
  # @ woocommerce-germanized
162
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:44
163
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:238
164
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-core-functions.php:55
165
  msgid "Imprint"
166
  msgstr "Impressum"
167
 
168
  # @ woocommerce-germanized
169
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:45
170
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:249
171
  msgid "Data Security Statement"
172
  msgstr "Datenschutzbelehrung"
173
 
174
  # @ woocommerce-germanized
175
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:46
176
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:260
177
  msgid "Payment Methods"
178
  msgstr "Zahlungarten"
179
 
180
  # @ woocommerce-germanized
181
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:47
182
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:271
183
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1056
184
  msgid "Shipping Methods"
185
  msgstr "Versandarten"
186
 
200
  msgid "Go to WooCommerce Germanized Settings"
201
  msgstr "zu den WooCommerce Germanized Einstellungen"
202
 
203
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:64
204
+ msgid "Parcel Delivery Data Transfer:"
205
+ msgstr "Paketdienstleister Datenweitergabe:"
206
+
207
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:65
208
+ msgid "allowed"
209
+ msgstr "akzeptiert"
210
+
211
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:65
212
+ msgid "not allowed"
213
+ msgstr "nicht akzeptiert"
214
+
215
  # @ woocommerce-germanized
216
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:106
217
  msgid "WooCommerce Status"
218
  msgstr "WooCommerce Status"
219
 
220
  # @ woocommerce-germanized
221
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:106
222
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-page-status.php:16
223
  msgid "System Status"
224
  msgstr "Systemstatus"
225
 
226
  # @ woocommerce-germanized
227
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:163
228
  msgid "Optional Email Content"
229
  msgstr "Optionaler E-Mail Inhalt"
230
 
231
  # @ woocommerce-germanized
232
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:172
233
  msgid "Add content which will be replacing default page content within emails."
234
  msgstr ""
235
  "Fülle dieses Feld aus um einen abweichenden E-Mail Anhangstext für diese "
236
  "Seite zu bestimmen."
237
 
238
  # @ woocommerce-germanized
239
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:182
240
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:142
241
  msgid "Optional Mini Description"
242
  msgstr "Warenkorb Kurzbeschreibung"
243
 
244
  # @ woocommerce-germanized
245
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:199
246
  msgid ""
247
  "This content will be shown as short product description within checkout and "
248
  "emails."
251
  "Produkt Kurzbeschreibung angezeigt."
252
 
253
  # @ woocommerce-germanized
254
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:316
255
  msgid "Complaints Procedure"
256
  msgstr "Beschwerdeverfahren"
257
 
258
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:46
259
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:44
260
  msgid "Service"
261
  msgstr "Dienstleistung"
262
 
263
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:46
264
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:45
265
  msgid "Service products do not sell physical products."
266
  msgstr "Dienstleistungen werden nicht in physikalischer Form verkauft."
267
 
268
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:86
269
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:58
270
  msgid "Sale Label"
271
  msgstr "Streichpreis Hinweis"
272
 
277
  msgstr "Gleiche wie übergeordnet"
278
 
279
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:96
280
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:59
281
  msgid "Sale Regular Label"
282
  msgstr "Angebotspreis Hinweis"
283
 
284
  # @ woocommerce-germanized
285
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:114
286
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:74
287
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:708
288
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:757
289
  msgid "Product Units"
290
  msgstr "Produkteinheiten"
291
 
292
  # @ woocommerce-germanized
293
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:114
294
  msgid ""
295
  "Number of units included per default product price. Example: 1000 ml. Leave "
296
  "blank to use parent value."
299
  "Frei lassen um den Wert des Eltern-Produkts zu verwenden."
300
 
301
  # @ woocommerce-germanized
302
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:118
303
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:93
304
  msgid "Calculation"
305
  msgstr "Berechnung"
306
 
307
  # @ woocommerce-germanized
308
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:121
309
  msgid "Calculate unit prices automatically"
310
  msgstr "Grundpreis automatisch berechnen."
311
 
312
  # @ woocommerce-germanized
313
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:126
314
  msgid "Regular Unit Price"
315
  msgstr "Einheitspreis"
316
 
317
  # @ woocommerce-germanized
318
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:130
319
  msgid "Sale Unit Price"
320
  msgstr "Angebots-Einheitspreis"
321
 
322
  # @ woocommerce-germanized
323
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:136
324
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:114
325
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:28
326
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:181
327
  msgid "Delivery Time"
328
  msgstr "Lieferzeit"
329
 
330
  # @ woocommerce-germanized
331
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:137
332
  msgid "Same as parent"
333
  msgstr "Gleiche wie übergeordnet"
334
 
335
  # @ woocommerce-germanized
336
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:58
337
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:59
338
  msgid "Select Price Label"
339
  msgstr "Preishinweis auswählen"
340
 
341
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:58
342
  msgid ""
343
  "If the product is on sale you may want to show a price label right before "
344
  "outputting the old price to inform the customer."
348
  "Preis). Mit diesem Hinweis kannst du genau festlegen, um welchen Preis es "
349
  "sich dabei handelte (z.B. UVP)."
350
 
351
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:59
352
  msgid ""
353
  "If the product is on sale you may want to show a price label right before "
354
  "outputting the new price to inform the customer."
358
  "Preis)."
359
 
360
  # @ woocommerce-germanized
361
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:73
362
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:103
363
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:66
364
  msgid "Unit"
365
  msgstr "Einheit"
366
 
367
  # @ woocommerce-germanized
368
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:73
369
  msgid "Select unit"
370
  msgstr "Einheit auswählen"
371
 
372
  # @ woocommerce-germanized
373
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:73
374
  msgid "Needed if selling on a per unit basis"
375
  msgstr "Notwendig falls auf pro-Einheit-Basis verkauft werden soll"
376
 
377
  # @ woocommerce-germanized
378
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:74
379
  msgid "Number of units included per default product price. Example: 1000 ml."
380
  msgstr ""
381
  "Anzahl der Produkteinheiten auf Basis des Produktpreises. Beispiel: 1000 ml."
382
 
383
  # @ woocommerce-germanized
384
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:75
385
  msgid "Base Price Units"
386
  msgstr "Grundpreiseinheiten"
387
 
388
  # @ woocommerce-germanized
389
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:75
390
  msgid ""
391
  "Base price units. Example base price: 0,99 € / 100 ml. Insert 100 as base "
392
  "price unit amount."
395
  "hier 100 als Grundpreiseinheiten ein."
396
 
397
  # @ woocommerce-germanized
398
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:93
399
  msgid "Calculate base prices automatically."
400
  msgstr "Grundpreis automatisch berechnen."
401
 
402
  # @ woocommerce-germanized
403
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:95
404
  msgid "Regular Base Price"
405
  msgstr "Regulärer Grundpreis"
406
 
407
  # @ woocommerce-germanized
408
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:96
409
  msgid "Sale Base Price"
410
  msgstr "Angebotsgrundpreis"
411
 
412
  # @ woocommerce-germanized
413
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:115
414
  msgid "Search for a delivery time&hellip;"
415
  msgstr "Lieferzeit suchen&hellip;"
416
 
417
  # @ woocommerce-germanized
418
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:121
419
  msgid "Free shipping?"
420
  msgstr "Versand kostenlos?"
421
 
422
  # @ woocommerce-germanized
423
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:121
424
  msgid "This option disables the \"plus shipping costs\" notice on product page"
425
  msgstr ""
426
  "Deaktiviert den Hinweis \"zzgl. Versandkosten\". Ohne Auswirkungen auf die "
486
 
487
  # @ woocommerce-germanized
488
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:136
489
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:623
490
  msgid "General"
491
  msgstr "Allgemein"
492
 
580
  "Kunden den Abbrechen-Link verwendet. Diese Option verhindert den manuellen "
581
  "Abbruch einer Bestellung durch den Kunden."
582
 
583
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:191
584
+ msgid "Disallow gateway choosing"
585
+ msgstr "Wechsel der Zahlungsart"
586
+
587
  # @ woocommerce-germanized
588
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:192
589
+ msgid "Don’t allow customers to change the payment gateway after ordering."
590
+ msgstr ""
591
+ "Wechsel der Zahlungsart nach der Bestellung durch den Kunden verhindern."
592
+
593
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:193
594
+ msgid ""
595
+ "Customers paying through a gateway which allows later payment (e.g. PayPal) "
596
+ "will find a link within their customer account which redirects them to a pay "
597
+ "page. This page offers the possibility to choose another gateway than before "
598
+ "which may lead to further problems e.g. additional gateway costs etc. which "
599
+ "would require a new order submittal. This option makes sure the customer "
600
+ "gets redirected directly to the gateways payment page, e.g. to PayPal."
601
+ msgstr ""
602
+ "Kunden die eine Zahlungsart auswählen bei der man später bezahlen kann (z.B. "
603
+ "PayPal) finden im Kundenbereich einen Link \"bezahlen\" der sie auf eine "
604
+ "Seite weiterleitet, auf der man nachträglich die Zahlungsart für die "
605
+ "Bestellung ändern kann. Diese Auswahl führt u.U. zu Problemen wie dem "
606
+ "Hinzufügen von Zahlungsgebühren, was im Grunde eher eine Neubestellung "
607
+ "bedeuten würde. Diese Option verhindert die nachträgliche Änderung der "
608
+ "Zahlungsart und leitet den Kunden direkt auf die Bezahlseite, d.h. z.B. zu "
609
+ "PayPal weiter."
610
+
611
+ # @ woocommerce-germanized
612
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:201
613
  msgid "Contract"
614
  msgstr "Kaufvertrag"
615
 
616
  # @ woocommerce-germanized
617
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:201
618
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:508
619
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:520
620
  #, php-format
621
  msgid "%sUpgrade to %spro%s%s to unlock this feature and get premium support."
622
  msgstr ""
624
  "erhalte professionellen Support."
625
 
626
  # @ woocommerce-germanized
627
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:213
628
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:141
629
  msgid "Legal Pages"
630
  msgstr "Rechtlich relevante Seiten"
631
 
632
  # @ woocommerce-germanized
633
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:217
634
  msgid "This page should contain your terms & conditions."
635
  msgstr "Diese Seite sollte deine Allgemeinen Geschäftsbedingungen enthalten."
636
 
637
  # @ woocommerce-germanized
638
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:223
639
  #, php-format
640
  msgid "Don't have terms & conditions yet? <a href=\"%s\">Generate now</a>!"
641
  msgstr "Du hast noch keine AGB? <a href=\"%s\">Jetzt generieren</a>!"
642
 
643
  # @ woocommerce-germanized
644
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:228
645
  msgid ""
646
  "This page should contain information regarding your customer's Right of "
647
  "Revocation."
651
  "[revocation_form]"
652
 
653
  # @ woocommerce-germanized
654
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:234
655
  #, php-format
656
  msgid "Don't have a revocation page yet? <a href=\"%s\">Generate now</a>!"
657
  msgstr ""
658
  "Du hast noch keine Widerrufsbelehrung? <a href=\"%s\">Jetzt generieren</a>!"
659
 
660
  # @ woocommerce-germanized
661
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:239
662
  msgid "This page should contain an imprint with your company's information."
663
  msgstr ""
664
  "Diese Seite sollte das Impressum d.h. die Informationen (gemäß TMG) zu "
665
  "deinem Unternehmen enthalten."
666
 
667
  # @ woocommerce-germanized
668
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:250
669
  msgid ""
670
  "This page should contain information regarding your data security policy."
671
  msgstr "Diese Seite sollte deine Datenschutzbelehrung enthalten."
672
 
673
  # @ woocommerce-germanized
674
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:261
675
  msgid ""
676
  "This page should contain information regarding the Payment Methods that are "
677
  "chooseable during checkout."
681
  "[payment_methods_info]"
682
 
683
  # @ woocommerce-germanized
684
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:272
685
  msgid ""
686
  "This page should contain information regarding shipping methods that are "
687
  "chooseable during checkout."
690
  "Versandarten bereitstellen."
691
 
692
  # @ woocommerce-germanized
693
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:283
694
  msgid "Complaints"
695
  msgstr "Beschwerden"
696
 
697
  # @ woocommerce-germanized
698
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:283
699
  #, php-format
700
  msgid ""
701
  "Options regarding new EU online dispute resolution platform (OS). Read more "
706
  "Pflichten."
707
 
708
  # @ woocommerce-germanized
709
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:286
710
  msgid "Complaints Procedure Text"
711
  msgstr "Hinweistext"
712
 
713
  # @ woocommerce-germanized
714
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:287
715
  msgid ""
716
  "Customize the text produced by the shortcode [gzd_complaints] to your needs. "
717
  "This text is to be meant to inform your customer about the existance of a "
723
  "informieren. Du solltest diesen Shortcode z.B. in deinem Impressum einbinden."
724
 
725
  # @ woocommerce-germanized
726
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:289
727
  msgid ""
728
  "Online dispute resolution in accordance with Art. 14 (1) ODR-VO: The "
729
  "european commission provides a platform for online dispute resolution (OS) "
734
  "du unter http://ec.europa.eu/consumers/odr/ findest."
735
 
736
  # @ woocommerce-germanized
737
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:296
738
  msgid "Shortcode Status"
739
  msgstr "Shortcode Status"
740
 
741
  # @ woocommerce-germanized
742
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:299
743
  msgid "Please choose a page as your imprint first."
744
  msgstr "Bitte hinterlege zuerst eine Seite als dein Impressum."
745
 
746
  # @ woocommerce-germanized
747
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:299
748
  msgid "Found"
749
  msgstr "Eingebunden"
750
 
751
  # @ woocommerce-germanized
752
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:299
753
  msgid "Not found within your imprint"
754
  msgstr "Nicht in deinem Impressum gefunden"
755
 
756
  # @ woocommerce-germanized
757
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:299
758
  msgid "Append it now"
759
  msgstr "Jetzt hinzufügen"
760
 
761
  # @ woocommerce-germanized
762
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:304
763
  msgid "Delivery Times"
764
  msgstr "Lieferzeiten"
765
 
766
  # @ woocommerce-germanized
767
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:307
768
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:42
769
  msgid "Default Delivery Time"
770
  msgstr "Standard-Lieferzeit"
771
 
772
  # @ woocommerce-germanized
773
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:308
774
  msgid ""
775
  "This delivery time will be added to every product if no delivery time has "
776
  "been chosen individually"
779
  "zugeordnet wurde"
780
 
781
  # @ woocommerce-germanized
782
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:315
783
  msgid "Manage Delivery Times"
784
  msgstr "Lieferzeiten verwalten"
785
 
786
  # @ woocommerce-germanized
787
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:319
788
  msgid "Delivery Time Text"
789
  msgstr "Lieferzeit Text"
790
 
791
  # @ woocommerce-germanized
792
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:320
793
  msgid ""
794
  "This text will be used to indicate delivery time for products. Use "
795
  "{delivery_time} as placeholder."
798
  "{delivery_time} als Platzhalter verwenden."
799
 
800
  # @ woocommerce-germanized
801
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:325
802
  msgid "Delivery time: {delivery_time}"
803
  msgstr "Lieferzeit: {delivery_time}"
804
 
805
  # @ woocommerce-germanized
806
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:330
807
  msgid "Sale Price Labels"
808
  msgstr "Preishinweise"
809
 
810
  # @ woocommerce-germanized
811
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:333
812
  msgid "Default Sale Label"
813
  msgstr "Streichpreis-Hinweis"
814
 
815
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:334
816
  msgid ""
817
  "Choose whether you would like to have a default sale price label to inform "
818
  "the customer about the regular price (e.g. Recommended Retail Price)."
821
  "den Kunden auf den alten Preis (bei reduzierten Produkten, sog. "
822
  "Streichpreis) hinweist (z.B. UVP)."
823
 
824
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:341
825
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:353
826
  msgid "Manage Price Labels"
827
  msgstr "Preishinweise verwalten"
828
 
829
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:345
830
  msgid "Default Sale Regular Label"
831
  msgstr "Angebotspreis-Hinweis"
832
 
833
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:346
834
  msgid ""
835
  "Choose whether you would like to have a default sale price regular label to "
836
  "inform the customer about the sale price (e.g. New Price)."
840
  "hinweist (z.B. Unser neuer Preis)."
841
 
842
  # @ woocommerce-germanized
843
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:359
844
  msgid "Shipping Costs"
845
  msgstr "Versandkosten"
846
 
847
  # @ woocommerce-germanized
848
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:362
849
  msgid "Shipping Costs Text"
850
  msgstr "Versandkosten Text"
851
 
852
  # @ woocommerce-germanized
853
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:363
854
  msgid ""
855
  "This text will be used to inform the customer about shipping costs. Use "
856
  "{link}{/link} to insert link to shipping costs page."
860
  "zur Versandkosten-Seite einzufügen."
861
 
862
  # @ woocommerce-germanized
863
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:368
864
  msgid "plus {link}Shipping Costs{/link}"
865
  msgstr "zzgl. {link}Versandkosten{/link}"
866
 
867
  # @ woocommerce-germanized
868
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:372
869
  msgid "Free Shipping Text"
870
  msgstr "Kostenloser Versand Text"
871
 
872
  # @ woocommerce-germanized
873
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:373
874
  msgid ""
875
  "This text will be used to inform the customer about free shipping. Leave "
876
  "empty to disable notice. Use {link}{/link} to insert link to shipping costs "
881
  "Versandkosten-Seite einzufügen."
882
 
883
  # @ woocommerce-germanized
884
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:382
885
  msgid "Shipping Costs Tax"
886
  msgstr "Steuerberechnung"
887
 
888
  # @ woocommerce-germanized
889
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:383
890
  msgid "Enable better taxation for shpping costs?"
891
  msgstr "Genauere Steuerberechnung für Versandkosten aktivieren?"
892
 
893
  # @ woocommerce-germanized
894
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:387
895
  #, php-format
896
  msgid ""
897
  "By choosing this option shipping cost taxation will be calculated based on "
905
  "Bruttobeträge. Hier ein kleines Beispiel: %s"
906
 
907
  # @ woocommerce-germanized
908
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:391
909
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:413
910
  msgid "Force Tax Calculation"
911
  msgstr "Steuerberechnung erzwingen"
912
 
913
  # @ woocommerce-germanized
914
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:392
915
  msgid "Force shipping costs tax calculation for every method?"
916
  msgstr "Erzwinge die Besteuerung für Versandkosten für jede Versandart?"
917
 
918
  # @ woocommerce-germanized
919
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:396
920
  msgid ""
921
  "This option will overwrite settings for each individual shipping method to "
922
  "force tax calculation (instead of only calculating tax for those methods "
926
  "Versandarten und erzwingt die Steuerberechnung."
927
 
928
  # @ woocommerce-germanized
929
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:401
930
  msgid "Fees"
931
  msgstr "Gebühren"
932
 
933
  # @ woocommerce-germanized
934
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:404
935
  msgid "Fee Tax"
936
  msgstr "Steuerberechnung"
937
 
938
  # @ woocommerce-germanized
939
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:405
940
  msgid "Enable better taxation for fees?"
941
  msgstr "Genauere Steuerberechnung für Gebühren aktivieren?"
942
 
943
  # @ woocommerce-germanized
944
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:409
945
  msgid ""
946
  "By choosing this option fee taxation will be calculated based on tax rates "
947
  "within cart. See shipping costs taxation for more information."
952
  "Nettobeträge in Bruttobeträge an."
953
 
954
  # @ woocommerce-germanized
955
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:414
956
  msgid "Force fee tax calculation for every fee?"
957
  msgstr "Berechnung der Steuern für Gebühren erzwingen?"
958
 
959
  # @ woocommerce-germanized
960
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:418
961
  msgid ""
962
  "This option will overwrite settings for each individual fee to force tax "
963
  "calculation (instead of only calculating tax for those fees which are "
967
  "Steuerberechnung."
968
 
969
  # @ woocommerce-germanized
970
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:423
971
  msgid "Customers"
972
  msgstr "Kunden"
973
 
974
  # @ woocommerce-germanized
975
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:426
976
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:560
977
  msgid "Checkbox"
978
  msgstr "Checkbox"
979
 
980
  # @ woocommerce-germanized
981
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:427
982
  msgid "Add a checkbox to customer registration form."
983
  msgstr "Füge eine Checkbox zum Formular für die Kundenregistrierung hinzu."
984
 
985
  # @ woocommerce-germanized
986
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:434
987
  msgid "Checkbox text"
988
  msgstr "Checkbox Text"
989
 
990
  # @ woocommerce-germanized
991
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:435
992
  msgid ""
993
  "Choose a Plain Text which will be shown as checkbox text for customer "
994
  "account creation. Use {term_link}{/term_link}, {data_security_link}{/"
1002
  "Hinweisseiten."
1003
 
1004
  # @ woocommerce-germanized
1005
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:437
1006
  msgid ""
1007
  "Yes, I’d like create a new account and have read and understood the "
1008
  "{data_security_link}data privacy statement{/data_security_link}."
1011
  "{data_security_link}Datenschutzerklärung{/data_security_link}."
1012
 
1013
  # @ woocommerce-germanized
1014
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:444
1015
  msgid "Checkout"
1016
  msgstr "Kasse"
1017
 
1018
  # @ woocommerce-germanized
1019
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:445
1020
  msgid ""
1021
  "Replace default WooCommerce text regarding account creation during checkout."
1022
  msgstr ""
1023
  "Ersetze den WooCommerce Text (Kundenkonto erstellen?) durch den o.g. Hinweis."
1024
 
1025
  # @ woocommerce-germanized
1026
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:446
1027
  msgid ""
1028
  "Use the text from above instead of the default WooCommerce text regarding "
1029
  "account creation during checkout. This checkbox is only show if you have "
1035
  "zulässt."
1036
 
1037
  # @ woocommerce-germanized
1038
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:453
1039
  msgid "Customer Double Opt In"
1040
  msgstr "Double Opt-In"
1041
 
1042
  # @ woocommerce-germanized
1043
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:454
1044
  msgid "Enable customer double opt in on registration?"
1045
  msgstr "Double Opt-In Verfahren für Kundenkonten aktivieren?"
1046
 
1047
  # @ woocommerce-germanized
1048
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:455
1049
  #, php-format
1050
  msgid ""
1051
  "If customer chooses to create a customer account an email with an activation "
1059
  "Verfahren ist laut Amtsgericht Berlin Pankow/Weißensee notwendig. Mehr "
1060
  "Informationen findest du <a href=\"%s\" target=\"_blank\">hier</a>."
1061
 
1062
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:462
1063
  msgid "Disable Login and Checkout"
1064
  msgstr "Login und Checkout"
1065
 
1066
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:463
1067
  msgid "Disable login and checkout for unactivated customers."
1068
  msgstr "Deaktiviere den Login und Checkout für inaktive Kunden."
1069
 
1070
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:464
1071
  msgid ""
1072
  "Customers that did not click on the activation link will not be able to "
1073
  "complete checkout nor login to their account."
1077
  "werden."
1078
 
1079
  # @ woocommerce-germanized
1080
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:471
1081
  msgid "Delete Unactivated After"
1082
  msgstr "Unaktivierte löschen nach"
1083
 
1084
  # @ woocommerce-germanized
1085
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:472
1086
  msgid ""
1087
  "This will make sure unactivated customer accounts will be deleted after X "
1088
  "days. Set to 0 if you don't want to automatically delete unactivated "
1093
  "setze den Wert auf 0."
1094
 
1095
  # @ woocommerce-germanized
1096
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:473
1097
  msgid "days"
1098
  msgstr "Tagen"
1099
 
1100
  # @ woocommerce-germanized
1101
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:482
1102
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-core-functions.php:52
1103
  msgid "Right of Recission"
1104
  msgstr "Widerrufsrecht"
1105
 
1106
  # @ woocommerce-germanized
1107
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:485
1108
  msgid "Revocation Address"
1109
  msgstr "Widerruf richten an"
1110
 
1111
  # @ woocommerce-germanized
1112
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:486
1113
  msgid ""
1114
  "Type in an address, telephone/telefax number, email address which is to be "
1115
  "used as revocation address"
1118
  "die deine Kunden ihren Widerruf richten sollen"
1119
 
1120
  # @ woocommerce-germanized
1121
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:495
1122
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:81
1123
  msgid "Virtual VAT"
1124
  msgstr "USt. Änderung 2015"
1125
 
1126
  # @ woocommerce-germanized
1127
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:498
1128
  msgid "Enable Virtual VAT"
1129
  msgstr "USt. Anpassung aktivieren"
1130
 
1131
  # @ woocommerce-germanized
1132
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:499
1133
  msgid ""
1134
  "Enable if you want to charge your customer's countries' VAT for virtual "
1135
  "products."
1137
  "Für virtuelle Produkte den USt.-Satz des Dienstleistungsempfängers berechnen."
1138
 
1139
  # @ woocommerce-germanized
1140
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:503
1141
  #, php-format
1142
  msgid ""
1143
  "New EU VAT rule applies on 01.01.2015. Make sure that every digital or "
1160
  "dazu findest du <a href=\"%s\" target=\"_blank\">hier</a>."
1161
 
1162
  # @ woocommerce-germanized
1163
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:508
1164
  msgctxt "invoices"
1165
  msgid "Invoices"
1166
  msgstr "Rechnungen"
1167
 
1168
  # @ woocommerce-germanized
1169
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:520
1170
  msgid "VAT"
1171
  msgstr "Umsatzsteuer"
1172
 
1173
  # @ woocommerce-germanized
1174
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:555
1175
  #, php-format
1176
  msgid "Attach %s"
1177
  msgstr "%s"
1178
 
1179
  # @ woocommerce-germanized
1180
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:556
1181
  #, php-format
1182
  msgid "Attach %s to the following email templates"
1183
  msgstr "%s an die folgenden E-Mail Templates anfügen"
1184
 
1185
  # @ woocommerce-germanized
1186
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:569
1187
  msgid "E-Mails"
1188
  msgstr "E-Mails"
1189
 
1190
  # @ woocommerce-germanized
1191
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:569
1192
  msgid ""
1193
  "Use drag & drop to customize attachment order. Don't forget to save your "
1194
  "changes."
1197
  "beeinflussen und speichere anschließend deine Änderungen."
1198
 
1199
  # @ woocommerce-germanized
1200
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:586
1201
  msgid "Email Attachment Options"
1202
  msgstr "PDF Anhang"
1203
 
1204
  # @ woocommerce-germanized
1205
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:586
1206
  #, php-format
1207
  msgid ""
1208
  "Want to attach automatically generated PDF files to emails instead of plain "
1212
  "%sUpgrade zur %spro%s Version%s"
1213
 
1214
  # @ woocommerce-germanized
1215
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:609
1216
  msgid "Downloadable Product"
1217
  msgstr "Herunterladbares Produkt"
1218
 
1219
  # @ woocommerce-germanized
1220
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:610
1221
  msgid "Virtual Product"
1222
  msgstr "Virtuelles Produkt"
1223
 
1224
  # @ woocommerce-germanized
1225
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:626
1226
  msgid "Add to Cart"
1227
  msgstr "Zum Warenkorb Button"
1228
 
1229
  # @ woocommerce-germanized
1230
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:627
1231
  msgid "Show add to cart button on listings?"
1232
  msgstr "Den zum Warenkorb Button in Produktlisten darstellen?"
1233
 
1234
  # @ woocommerce-germanized
1235
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:631
1236
  msgid ""
1237
  "unset this option if you don't want to show the add to cart button within "
1238
  "the product listings"
1241
  "von Produktauflistungen darstellen möchten"
1242
 
1243
  # @ woocommerce-germanized
1244
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:635
1245
  msgid "Link to Details"
1246
  msgstr "Verlinkung zu Produktdetails"
1247
 
1248
  # @ woocommerce-germanized
1249
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:636
1250
  msgid ""
1251
  "Want to link to product details page instead of add to cart within listings?"
1252
  msgstr "Zum Warenkorb Button mit Button zur Produktdetail-Seite ersetzen?"
1253
 
1254
  # @ woocommerce-germanized
1255
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:640
1256
  msgid ""
1257
  "Decide whether you like to link to your product's details page instead of "
1258
  "displaying an add to cart button within product listings."
1262
  "diese Option."
1263
 
1264
  # @ woocommerce-germanized
1265
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:644
1266
  msgid "Product Details Text"
1267
  msgstr "Produktdetails Text"
1268
 
1269
  # @ woocommerce-germanized
1270
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:646
1271
  msgid "Details"
1272
  msgstr "Details"
1273
 
1274
  # @ woocommerce-germanized
1275
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:648
1276
  msgid ""
1277
  "If you have chosen to link to product details page instead of add to cart "
1278
  "URL you may want to change the button text."
1282
  "einen Button-Text vergeben."
1283
 
1284
  # @ woocommerce-germanized
1285
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:653
1286
  msgid "Digital Delivery Time Text"
1287
  msgstr "Lieferzeit Digital"
1288
 
1289
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:657
1290
  msgid ""
1291
  "Enter a text which will be shown as digital delivery time text (replacement "
1292
  "for default digital time on digital products)."
1296
  "lassen."
1297
 
1298
  # @ woocommerce-germanized
1299
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:662
1300
  msgid "Notice Footer"
1301
  msgstr "Hinweise im Footer"
1302
 
1303
  # @ woocommerce-germanized
1304
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:663
1305
  msgid "Show a global VAT notice within footer"
1306
  msgstr "Einen seitenübergreifenden Hinweis bzgl. der MwSt. im Footer einfügen."
1307
 
1308
  # @ woocommerce-germanized
1309
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:671
1310
  msgid "Show a global sale price notice within footer"
1311
  msgstr ""
1312
  "Einen seitenübergreifenden Hinweis bzgl. reduzierter Preise im Footer "
1313
  "einfügen."
1314
 
1315
  # @ woocommerce-germanized
1316
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:680
1317
  msgid "Products"
1318
  msgstr "Produkt"
1319
 
1320
  # @ woocommerce-germanized
1321
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:683
1322
  msgid "Show within Product Listings"
1323
  msgstr "In Produktlisten"
1324
 
1325
  # @ woocommerce-germanized
1326
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:684
1327
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:733
1328
  msgid "Shipping Costs notice"
1329
  msgstr "Versandkosten-Hinweis"
1330
 
1331
  # @ woocommerce-germanized
1332
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:692
1333
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:741
1334
  msgid "Tax Info"
1335
  msgstr "MwSt. Hinweis"
1336
 
1337
  # @ woocommerce-germanized
1338
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:700
1339
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:749
1340
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:804
1341
  msgid "Base Price"
1342
  msgstr "Grundpreis"
1343
 
1344
  # @ woocommerce-germanized
1345
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:716
1346
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:765
1347
  msgid "Delivery Time Notice"
1348
  msgstr "Lieferzeiten-Hinweis"
1349
 
1350
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:724
1351
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:773
1352
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:93
1353
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:95
1354
  msgid "Price Labels"
1355
  msgstr "Preishinweise"
1356
 
1357
  # @ woocommerce-germanized
1358
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:732
1359
  msgid "Show on Product Detail Page"
1360
  msgstr "Auf der Produktseite"
1361
 
1362
  # @ woocommerce-germanized
1363
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:781
1364
  msgid "Hide Shipping Costs Notice"
1365
  msgstr "Versandkosten ausblenden"
1366
 
1367
  # @ woocommerce-germanized
1368
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:782
1369
  msgid ""
1370
  "Select product types for which you might want to disable the shipping costs "
1371
  "notice."
1374
  "möchtest."
1375
 
1376
  # @ woocommerce-germanized
1377
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:792
1378
  msgid "Hide Delivery Time Notice"
1379
  msgstr "Lieferzeiten ausblenden"
1380
 
1381
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:793
1382
  msgid ""
1383
  "Select product types for which you might want to disable the delivery time "
1384
  "notice."
1387
  "möchtest."
1388
 
1389
  # @ woocommerce-germanized
1390
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:807
1391
  msgid "Base Price Text"
1392
  msgstr "Grundpreis Text"
1393
 
1394
  # @ woocommerce-germanized
1395
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:808
1396
  msgid ""
1397
  "This text will be used to display the base price. Use {price} to insert the "
1398
  "price. If you want to specifically format base price output use {base}, "
1404
  "{base_price} für die einzelnen Elemente."
1405
 
1406
  # @ woocommerce-germanized
1407
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:813
1408
  msgid "{price}"
1409
  msgstr "{price}"
1410
 
1411
  # @ woocommerce-germanized
1412
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:817
1413
  msgid "Variable Base Price"
1414
  msgstr "Variabler Grundpreis"
1415
 
1416
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:818
1417
  msgid "Enable price range base prices for variable products."
1418
  msgstr "Aktiviere von-bis-Grundpreise für variable Produkte."
1419
 
1420
  # @ woocommerce-germanized
1421
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:825
1422
  msgid "Product Units Text"
1423
  msgstr "Produkteinheiten Text"
1424
 
1425
  # @ woocommerce-germanized
1426
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:826
1427
  msgid ""
1428
  "This text will be used to display the product units. Use {product_units} to "
1429
  "insert the amount of product units. Use {unit} to insert the unit. "
1435
  "Grundpreis."
1436
 
1437
  # @ woocommerce-germanized
1438
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:831
1439
  msgid "Product contains: {product_units} {unit}"
1440
  msgstr "Produkt enthält: {product_units} {unit}"
1441
 
1442
  # @ woocommerce-germanized
1443
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:836
1444
  msgid "Checkout & Cart"
1445
  msgstr "Checkout & Warenkorb"
1446
 
1447
  # @ woocommerce-germanized
1448
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:839
1449
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:55
1450
  msgid "Fallback Mode"
1451
  msgstr "Fallback Modus"
1452
 
1453
  # @ woocommerce-germanized
1454
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:840
1455
  msgid ""
1456
  "Enable to make sure default checkout template is not being overriden by "
1457
  "theme."
1459
  "Überschreiben relevanter Templates im Checkout durch dein Theme verhindern."
1460
 
1461
  # @ woocommerce-germanized
1462
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:844
1463
  msgid ""
1464
  "If you are facing problems within your checkout e.g. legally relevant data "
1465
  "is not showing (terms, delivery time, unit price etc.) your theme seems to "
1473
  "Checkout (review-order.php und form-checkout.php) zu überschreiben. "
1474
 
1475
  # @ woocommerce-germanized
1476
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:848
1477
  msgid "Force free shipping"
1478
  msgstr "Versandmethode erzwingen"
1479
 
1480
  # @ woocommerce-germanized
1481
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:849
1482
  msgid "Force free shipping method if available?"
1483
  msgstr "Kostenlosen Versand erzwingen wenn die Methode zur Verfügung steht?"
1484
 
1485
  # @ woocommerce-germanized
1486
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:853
1487
  msgid ""
1488
  "By default WooCommerce will let customers choose other shipping methods than "
1489
  "free shipping (if available). This option will force free shipping if "
1494
  "Versand, sobald dieser verfügbar ist."
1495
 
1496
  # @ woocommerce-germanized
1497
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:857
1498
  msgid "Hide taxes estimated"
1499
  msgstr "Hinweis \"Steuern geschätzt\""
1500
 
1501
  # @ woocommerce-germanized
1502
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:858
1503
  msgid ""
1504
  "Do you want to hide the \"taxes and shipping estimated\" text from your cart?"
1505
  msgstr "Den Hinweis \"Versandkosten und Steuern werden geschätzt\" entfernen?"
1506
 
1507
  # @ woocommerce-germanized
1508
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:862
1509
  msgid ""
1510
  "By default WooCommerce adds a \"taxes and shipping estimated\" text to your "
1511
  "cart. This might puzzle your customers and may not meet german law."
1515
  "Markt geeignet."
1516
 
1517
  # @ woocommerce-germanized
1518
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:866
1519
  msgid "Show Thumbnails"
1520
  msgstr "Thumbnails anzeigen"
1521
 
1522
  # @ woocommerce-germanized
1523
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:867
1524
  msgid "Show product thumbnails on checkout page?"
1525
  msgstr "Produktbilder im Checkout darstellen?"
1526
 
1527
  # @ woocommerce-germanized
1528
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:871
1529
  msgid ""
1530
  "Uncheck if you don't want to show your product thumbnails within checkout "
1531
  "table."
1534
  "bekommen möchtest."
1535
 
1536
  # @ woocommerce-germanized
1537
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:875
1538
  msgid "Hide Shipping Select"
1539
  msgstr "Versandarten Auswahl"
1540
 
1541
  # @ woocommerce-germanized
1542
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:876
1543
  msgid "Hide shipping rate selection from checkout?"
1544
  msgstr "Die Auswahl von Versandarten im Checkout deaktivieren?"
1545
 
1546
  # @ woocommerce-germanized
1547
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:880
1548
  msgid ""
1549
  "This option will hide shipping rate selection from checkout. By then "
1550
  "customers will only be able to change their shipping rate on cart page."
1554
  "Versandmethode ändern."
1555
 
1556
  # @ woocommerce-germanized
1557
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:884
1558
  msgid "Show back to cart button"
1559
  msgstr "Bestellung bearbeiten"
1560
 
1561
  # @ woocommerce-germanized
1562
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:885
1563
  msgid "Show back to cart button within your checkout table?"
1564
  msgstr ""
1565
  "Einen \"Bestellung bearbeiten\" Button in der Bestellübersicht anzeigen?"
1566
 
1567
  # @ woocommerce-germanized
1568
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:889
1569
  msgid ""
1570
  "This button may let your customer edit their order before submitting. Some "
1571
  "people state that this button should be hidden to avoid legal problems."
1577
  "keine weitere Informationen abgedruckt werden sollten."
1578
 
1579
  # @ woocommerce-germanized
1580
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:893
1581
  msgid "Show edit data notice"
1582
  msgstr "Bestellung prüfen Hinweis"
1583
 
1584
  # @ woocommerce-germanized
1585
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:894
1586
  msgid "Show a \"check-your-entries\" notice to the user?"
1587
  msgstr "Einen \"Bestellung prüfen\" Hinweis anzeigen?"
1588
 
1589
  # @ woocommerce-germanized
1590
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:898
1591
  msgid "This notice will be added right before the order comments field."
1592
  msgstr ""
1593
  "Dieser Hinweis wird direkt oberhalb des Bestellhinweise-Feldes eingefügt."
1594
 
1595
  # @ woocommerce-germanized
1596
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:902
1597
  msgid "Checkout Table Color"
1598
  msgstr "Hintergrundfarbe der Tabelle"
1599
 
1600
  # @ woocommerce-germanized
1601
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:904
1602
  msgid ""
1603
  "Choose the color of your checkout product table. This table should be "
1604
  "highlighted within your checkout page."
1607
  "Tabelle sollte sich farblich vom Rest des Inhalts abheben."
1608
 
1609
  # @ woocommerce-germanized
1610
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:910
1611
  msgid "Checkout Legal Display"
1612
  msgstr "Checkbox oder Text"
1613
 
1614
  # @ woocommerce-germanized
1615
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:911
1616
  msgid "Use Text without Checkbox"
1617
  msgstr "Rechtshinweis ohne Checkbox."
1618
 
1619
  # @ woocommerce-germanized
1620
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:913
1621
  msgid ""
1622
  "This version will remove checkboxes from Checkout and display a text "
1623
  "instead. This seems to be legally compliant (Zalando & Co are using this "
1628
  "diese Form)"
1629
 
1630
  # @ woocommerce-germanized
1631
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:919
1632
  msgid "Legal Text"
1633
  msgstr "Rechtlicher Hinweistext"
1634
 
1635
  # @ woocommerce-germanized
1636
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:920
1637
  msgid ""
1638
  "Choose a Plain Text which will be shown right above checkout submit button. "
1639
  "Use {term_link}{/term_link}, {data_security_link}{/data_security_link}, "
1646
  "revocation_link} um die jeweiligen Links zu den Seiten einzufügen."
1647
 
1648
  # @ woocommerce-germanized
1649
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:922
1650
  msgid ""
1651
  "With your order, you agree to have read and understood our {term_link}Terms "
1652
  "and Conditions{/term_link} and your {revocation_link}Right of Recission{/"
1657
  "revocation_link} einverstanden."
1658
 
1659
  # @ woocommerce-germanized
1660
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:929
1661
  msgid "Legal Text Error"
1662
  msgstr "Fehlermeldung der Checkbox"
1663
 
1664
  # @ woocommerce-germanized
1665
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:930
1666
  msgid ""
1667
  "If you have chosen to use checkbox validation please choose a error message "
1668
  "which will be shown if the user doesn't check checkbox. Use {term_link}{/"
1677
  "revocation_link}"
1678
 
1679
  # @ woocommerce-germanized
1680
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:932
1681
  msgid ""
1682
  "To finish the order you have to accept to our {term_link}Terms and "
1683
  "Conditions{/term_link} and {revocation_link}Right of Recission{/"
1687
  "term_link} und {revocation_link}Widerrufsbestimmungen{/revocation_link}."
1688
 
1689
  # @ woocommerce-germanized
1690
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:939
1691
  msgid "Show digital notice"
1692
  msgstr "Checkbox digitale Produkte"
1693
 
1694
  # @ woocommerce-germanized
1695
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:940
1696
  msgid "Show checkbox for digital products."
1697
  msgstr "Checkbox bei digitalen Produkten anzeigen."
1698
 
1699
  # @ woocommerce-germanized
1700
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:941
1701
  msgid ""
1702
  "Disable this option if you want your customers to obtain their right of "
1703
  "recission even if digital products are being bought."
1707
  "werden, dass im Falle von digitalen Produkten das Widerrufsrecht erlischt."
1708
 
1709
  # @ woocommerce-germanized
1710
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:948
1711
  msgid "Digital Product types"
1712
  msgstr "Digitale Produkttypen"
1713
 
1714
  # @ woocommerce-germanized
1715
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:949
1716
  msgid ""
1717
  "Select product types for which the loss of recission notice is shown. "
1718
  "Product types like \"simple product\" may be redudant because they include "
1724
  "einschließen."
1725
 
1726
  # @ woocommerce-germanized
1727
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:959
1728
  msgid "Legal Digital Text"
1729
  msgstr "Hinweis Digital"
1730
 
1731
  # @ woocommerce-germanized
1732
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:960
1733
  msgid ""
1734
  "Choose a Plain Text which will be shown right above checkout submit button "
1735
  "if a user has picked a digital product. See legal text option for possible "
1740
  "Platzhalter verwenden wie beim Rechtlichen Hinweistext"
1741
 
1742
  # @ woocommerce-germanized
1743
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:962
1744
  msgid ""
1745
  "For digital products: I strongly agree that the execution of the agreement "
1746
  "starts before the revocation period has expired. I am aware that my right of "
1751
  "bekannt, dass mit Beginn der Ausführung mein Widerrufsrecht erlischt."
1752
 
1753
  # @ woocommerce-germanized
1754
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:969
1755
  msgid "Legal Digital Error"
1756
  msgstr "Fehlermeldung Digital"
1757
 
1758
  # @ woocommerce-germanized
1759
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:970
1760
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1009
1761
  msgid ""
1762
  "This text will be shown as error message if customer has not checked the "
1763
  "corresponding checkbox. See legal text option for possible placeholders."
1767
  "Hinweistext für eine Liste der Platzhalter."
1768
 
1769
  # @ woocommerce-germanized
1770
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:972
1771
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:317
1772
  msgid ""
1773
  "To retrieve direct access to digital content you have to agree to the loss "
1777
  "Widerrufsrecht verzichten."
1778
 
1779
  # @ woocommerce-germanized
1780
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:979
1781
  msgid "Digital Confirmation Notice"
1782
  msgstr "Digitale Bestätigung"
1783
 
1784
  # @ woocommerce-germanized
1785
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:980
1786
  msgid ""
1787
  "This text will be appended to your order processing email if the order "
1788
  "contains digital products. Use placeholders {link}{/link} to insert link to "
1793
  "Platzhalter {link}{/link} um einen Link zur Widerrufsbelehrung einzufügen."
1794
 
1795
  # @ woocommerce-germanized
1796
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:983
1797
  msgid ""
1798
  "Furthermore you have expressly agreed to start the performance of the "
1799
  "contract for digital items (e.g. downloads) before expiry of the withdrawal "
1807
  "verlieren."
1808
 
1809
  # @ woocommerce-germanized
1810
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:989
1811
  msgid "Show service notice"
1812
  msgstr "Checkbox Dienstleistungen"
1813
 
1814
  # @ woocommerce-germanized
1815
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:990
1816
  msgid "Show checkbox for service products."
1817
  msgstr "Checkbox bei Dienstleistungen anzeigen."
1818
 
1819
  # @ woocommerce-germanized
1820
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:991
1821
  msgid ""
1822
  "Disable this option if you want your customers to obtain their right of "
1823
  "recission even if service products are being bought."
1828
  "Widerrufsfrist mit der Dienstleistung begonnen wird."
1829
 
1830
  # @ woocommerce-germanized
1831
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:998
1832
  msgid "Legal Service Text"
1833
  msgstr "Hinweis Dienstleistungen"
1834
 
1835
  # @ woocommerce-germanized
1836
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:999
1837
  msgid ""
1838
  "Choose a Plain Text which will be shown right above checkout submit button "
1839
  "if a user has picked a service product. See legal text option for possible "
1844
  "Platzhalter verwenden wie beim Rechtlichen Hinweistext."
1845
 
1846
  # @ woocommerce-germanized
1847
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1001
1848
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:339
1849
  msgid ""
1850
  "For services: I demand and acknowledge the immediate performance of the "
1857
  "vollständiger Erfüllung des Vertrages erlischt."
1858
 
1859
  # @ woocommerce-germanized
1860
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1008
1861
  msgid "Legal Service Error"
1862
+ msgstr "Fehlermeldung"
1863
 
1864
  # @ woocommerce-germanized
1865
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1011
1866
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:348
1867
  msgid ""
1868
  "To allow the immediate performance of the services you have to agree to the "
1871
  "Bitte stimme dem Beginn der Dienstleistung vor Ablauf der Widerrufsfrist zu."
1872
 
1873
  # @ woocommerce-germanized
1874
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1018
1875
  msgid "Service Confirmation Notice"
1876
  msgstr "Dienstleistung Bestätigung"
1877
 
1878
  # @ woocommerce-germanized
1879
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1019
1880
  msgid ""
1881
  "This text will be appended to your order processing email if the order "
1882
  "contains service products. Use placeholders {link}{/link} to insert link to "
1887
  "Platzhalter {link}{/link} um einen Link zur Widerrufsbelehrung einzufügen."
1888
 
1889
  # @ woocommerce-germanized
1890
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1022
1891
  msgid ""
1892
  "Furthermore you have expressly agreed to start the performance of the "
1893
  "contract for services before expiry of the withdrawal period. I have noted "
1901
  "erlischt."
1902
 
1903
  # @ woocommerce-germanized
1904
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1028
1905
+ msgid "Parcel Delivery Checkbox"
1906
+ msgstr "Paketdienstleister Checkbox"
1907
+
1908
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1029
1909
+ msgid ""
1910
+ "Show checkbox for data transmission to third party parcel service providers."
1911
+ msgstr ""
1912
+ "Checkbox zur Erlaubnis der Datenweitergabe an den Paketdienstleister "
1913
+ "einfügen."
1914
+
1915
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1030
1916
+ msgid ""
1917
+ "You may optionally choose to show a checkbox which lets the customer accept "
1918
+ "data transmission to a third party parcel service provider to receive parcel "
1919
+ "delivery reminders."
1920
+ msgstr ""
1921
+ "Du kannst optional eine Checkbox einfügen, in der dein Kunde die "
1922
+ "Datenweitergabe an den Paketdienstleister akzeptieren kann (z.B. um eine "
1923
+ "Paketbenachrichtigung per E-Mail zu erhalten). Falls dein Kunde die Checkbox "
1924
+ "nicht setzt, siehst du das in der Bestellübersicht. Du musst dich selbst "
1925
+ "darum kümmern, dass die Daten dann nicht an den Paketdienstleister "
1926
+ "weitergeleitet werden. "
1927
+
1928
+ # @ woocommerce-germanized
1929
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1037
1930
+ msgid "Checkbox required"
1931
+ msgstr "Checkbox verpflichtend"
1932
+
1933
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1038
1934
+ msgid "Make the parcel delivery checkbox a required field."
1935
+ msgstr "Paketdienstleister Checkbox zum Pflichtfeld machen?"
1936
+
1937
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1039
1938
+ msgid ""
1939
+ "For some reason you may want to force your customers to Opt-In to the data "
1940
+ "transmission to a third party parcel service provider."
1941
+ msgstr ""
1942
+ "Unter Umständen möchtest du die Checkbox für die Datenweitergabe an den "
1943
+ "Paketdienstleister verpflichtend für den Kunden machen, wähle in diesem Fall "
1944
+ "diese Option aus."
1945
+
1946
+ # @ woocommerce-germanized
1947
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1046
1948
+ msgid "Parcel Delivery Text"
1949
+ msgstr "Paketdienstleister Text"
1950
+
1951
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1047
1952
+ msgid ""
1953
+ "Choose a Plain Text which will be shown right next to the corresponding "
1954
+ "checkbox to inform the customer about the data being transfered to the third "
1955
+ "party shipping supplier. Use {shipping_method_title} to insert the shipping "
1956
+ "method title."
1957
+ msgstr ""
1958
+ "Passe hier optional den Hinweistext an der neben der entsprechenden Checkbox "
1959
+ "angezeigt wird. Informiere deine Kunden über eine etwaige Datenweitergabe an "
1960
+ "den Paketdienstleister. Verwende den Platzhalter {shipping_method_title} um "
1961
+ "den Titel der Versandmethoden einzubetten."
1962
+
1963
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1049
1964
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:388
1965
+ msgid ""
1966
+ "Yes, I would like to be reminded via E-mail about parcel delivery "
1967
+ "({shipping_method_title}). Your E-mail Address will only be transferred to "
1968
+ "our parcel service provider for that particular reason."
1969
+ msgstr ""
1970
+ "Ja, ich möchte per E-Mail für diese Bestellung eine Paketankündigung vom "
1971
+ "Paketdienstleister ({shipping_method_title}) erhalten. Deine E-Mail Adresse "
1972
+ "wird nur für diesen einmaligen Zweck an unseren Paketdienstleister "
1973
+ "weitergegeben."
1974
+
1975
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1057
1976
+ msgid "Select shipping methods which are applicable for the Opt-In Checkbox."
1977
+ msgstr ""
1978
+ "Wähle Versandmethoden aus für die die Paketdienstleister Checkbox angezeigt "
1979
+ "werden soll."
1980
+
1981
+ # @ woocommerce-germanized
1982
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1067
1983
  msgid "Pay now Button"
1984
  msgstr "Jetzt bezahlen Button"
1985
 
1986
  # @ woocommerce-germanized
1987
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1068
1988
  msgid "Add a pay now button to emails and order success page."
1989
  msgstr ""
1990
  "Füge einen jetzt bezahlen - Button zur E-Mail und der Bestätigungs-Seite "
1991
  "hinzu."
1992
 
1993
  # @ woocommerce-germanized
1994
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1069
1995
  msgid ""
1996
  "Add a pay now button to order confirmation email and order success page if "
1997
  "the order awaits payment (PayPal etc)."
2001
  "benötigt (z.B. per PayPal)."
2002
 
2003
  # @ woocommerce-germanized
2004
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1076
2005
  msgid "Order Success Text"
2006
  msgstr "Bestellung eingegangen"
2007
 
2008
  # @ woocommerce-germanized
2009
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1077
2010
  msgid "Choose a custom text to display on order success page."
2011
  msgstr ""
2012
  "Hier kannst du einen individuellen kurzen Text eingeben, der nach der "
2013
  "Bestellung ausgegeben wird."
2014
 
2015
  # @ woocommerce-germanized
2016
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1085
2017
  msgid "Order Success Data"
2018
  msgstr "Bestellbestätigungs-Daten"
2019
 
2020
  # @ woocommerce-germanized
2021
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1086
2022
  msgid "Hide product table and customer data on order success page"
2023
  msgstr ""
2024
  "Produktdetails (Tabelle, Kundeninfos) von der Bestätigungsseite entfernen."
2025
 
2026
  # @ woocommerce-germanized
2027
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1194
2028
  msgid ""
2029
  "Sorry, but the new Virtual VAT rules cannot be applied to small business."
2030
  msgstr ""
2597
  # @ woocommerce
2598
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:87
2599
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:93
2600
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:87
2601
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:93
2602
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:238
2603
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:249
2604
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:74
2605
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:81
2606
  msgid "Title"
2608
 
2609
  # @ woocommerce-germanized
2610
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:113
2611
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:120
2612
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:26
2613
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:479
2614
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/views/html-export.php:27
2615
  msgid "Direct Debit"
2616
  msgstr "Lastschrift"
2617
 
2618
  # @ woocommerce-germanized
2619
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:118
2620
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:125
2621
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:281
2622
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:300
2623
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:505
2624
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:633
2625
  msgid "Account Holder"
2626
  msgstr "Kontoinhaber"
2627
 
2628
  # @ woocommerce-germanized
2629
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:123
2630
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:130
2631
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:282
2632
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:307
2633
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:513
2634
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:637
2635
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:729
2636
  msgid "IBAN"
2637
  msgstr "IBAN"
2638
 
2639
  # @ woocommerce-germanized
2640
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:128
2641
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:135
2642
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:283
2643
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:314
2644
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:641
2645
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:730
2646
  msgid "BIC/SWIFT"
2647
  msgstr "BIC/SWIFT"
2648
 
2649
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:99
2650
+ msgid "Parcel Delivery Data Transfer"
2651
+ msgstr "Paketdienstleister Datenweitergabe"
2652
+
2653
  # @ woocommerce-germanized
2654
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:140
2655
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:321
2656
  msgid "Mandate Reference ID"
2657
  msgstr "Mandat-Referenznummer"
2658
 
2848
  "Mail mit deinen Daten als Bestätigung."
2849
 
2850
  # @ woocommerce-germanized
2851
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:239
2852
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:247
2853
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:383
2854
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:76
2855
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:83
2856
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:41
2858
  msgstr "Herr"
2859
 
2860
  # @ woocommerce-germanized
2861
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:239
2862
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:247
2863
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:383
2864
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:76
2865
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:83
2866
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:42
2868
  msgstr "Frau"
2869
 
2870
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:150
2871
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:196
2872
  msgid ""
2873
  "Please activate your account through clicking on the activation link "
2874
  "received via email."
2875
  msgstr ""
2876
  "Bitte aktiviere dein Kundenkonto indem du auf den Link in der E-Mail klickst."
2877
 
2878
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:159
2879
  #, php-format
2880
  msgid "Continue without creating an account? <a href=\"%s\">Click here</a>"
2881
  msgstr "Weiter zur Kasse ohne Kundenkonto? <a href=\"%s\">Hier klicken</a>"
2882
 
2883
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:161
2884
  msgid "Please create an account or login before continuing to checkout"
2885
  msgstr ""
2886
  "Bitte erstelle ein Kundenkonto oder logge dich ein, bevor du zur Kasse gehst"
2887
 
2888
  # @ woocommerce-germanized
2889
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:217
2890
  msgid "Thank you. You have successfully activated your account."
2891
  msgstr "Vielen Dank. Dein Benutzerkonto wurde erfolgreich aktiviert."
2892
 
2893
  # @ woocommerce-germanized
2894
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:223
2895
  msgid "Sorry, but this activation code cannot be found."
2896
  msgstr "Sorry, dieser Aktivierungscode ist uns leider nicht bekannt."
2897
 
2998
  msgstr "eKomi"
2999
 
3000
  # @ woocommerce-germanized
3001
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-emails.php:291
3002
  msgctxt "revocation-form"
3003
  msgid "Forward your Revocation online"
3004
  msgstr "Deinen Widerruf online erklären"
3014
  "WooCommerce Germanized installierst. Vielen Dank!"
3015
 
3016
  # @ woocommerce-germanized
3017
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:464
3018
  msgctxt "Page slug"
3019
  msgid "data-security"
3020
  msgstr "datenschutzbelehrung"
3021
 
3022
  # @ woocommerce-germanized
3023
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:465
3024
  msgctxt "Page title"
3025
  msgid "Data Security Statement"
3026
  msgstr "Datenschutzbelehrung"
3027
 
3028
  # @ woocommerce-germanized
3029
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:469
3030
  msgctxt "Page slug"
3031
  msgid "imprint"
3032
  msgstr "impressum"
3033
 
3034
  # @ woocommerce-germanized
3035
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:470
3036
  msgctxt "Page title"
3037
  msgid "Imprint"
3038
  msgstr "Impressum"
3039
 
3040
  # @ woocommerce-germanized
3041
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:474
3042
  msgctxt "Page slug"
3043
  msgid "terms"
3044
  msgstr "agb"
3045
 
3046
  # @ woocommerce-germanized
3047
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:475
3048
  msgctxt "Page title"
3049
  msgid "Terms & Conditions"
3050
  msgstr "AGB"
3051
 
3052
  # @ woocommerce-germanized
3053
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:479
3054
  msgctxt "Page slug"
3055
  msgid "revocation"
3056
  msgstr "widerrufsbelehrung"
3057
 
3058
  # @ woocommerce-germanized
3059
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:480
3060
  msgctxt "Page title"
3061
  msgid "Power of Revocation"
3062
  msgstr "Widerrufsbelehrung"
3063
 
3064
  # @ woocommerce-germanized
3065
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:484
3066
  msgctxt "Page slug"
3067
  msgid "shipping-methods"
3068
  msgstr "versandarten"
3069
 
3070
  # @ woocommerce-germanized
3071
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:485
3072
  msgctxt "Page title"
3073
  msgid "Shipping Methods"
3074
  msgstr "Versandarten"
3075
 
3076
  # @ woocommerce-germanized
3077
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:489
3078
  msgctxt "Page slug"
3079
  msgid "payment-methods"
3080
  msgstr "bezahlmoeglichkeiten"
3081
 
3082
  # @ woocommerce-germanized
3083
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:490
3084
  msgctxt "Page title"
3085
  msgid "Payment Methods"
3086
  msgstr "Zahlungsarten"
3094
 
3095
  # @ woocommerce-germanized
3096
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:54
3097
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-order-functions.php:20
3098
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-template-functions.php:490
3099
  #, php-format
3100
  msgid "Plus %s forwarding fee (charged by the transport agent)"
3101
  msgstr "zzgl. %s Übermittlungsentgelt (direkt an den Zusteller)"
3509
  msgstr "SEPA XML Export"
3510
 
3511
  # @ woocommerce-germanized
3512
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:50
3513
  msgid ""
3514
  "[company_info]\n"
3515
  "debtee identification number: [company_identification_number]\n"
3577
  "Bitte beachte: Die First für die Vorabinformation der SEPA-Lastschrift wird "
3578
  "auf einen Tag verkürzt. "
3579
 
3580
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:136
3581
  msgid "SEPA XML Export"
3582
  msgstr "SEPA XML Export"
3583
 
3584
  # @ woocommerce-germanized
3585
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:241
3586
  #, php-format
3587
  msgid "Order %s"
3588
  msgstr "Bestellung %s"
3589
 
3590
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:262
3591
  msgid "Will be notified separately"
3592
  msgstr "Wird separat mitgeteilt"
3593
 
3594
  # @ woocommerce-germanized
3595
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:470
3596
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:79
3597
  msgid "Enable/Disable"
3598
  msgstr "Aktivieren/Deaktivieren"
3599
 
3600
  # @ woocommerce-germanized
3601
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:472
3602
  msgid "Enable Direct Debit Payment"
3603
  msgstr "Bezahlung per Lastschrift aktivieren"
3604
 
3605
  # @ woocommerce-germanized
3606
  # @ woocommerce
3607
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:476
3608
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:85
3609
  msgctxt "gateway"
3610
  msgid "Title"
3611
  msgstr "Bezeichnung"
3612
 
3613
  # @ woocommerce-germanized
3614
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:478
3615
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:87
3616
  msgid "This controls the title which the user sees during checkout."
3617
  msgstr ""
3618
  "Beschreibungstext, den Benutzer bei der Auswahl dieser Zahlungsart sehen."
3619
 
3620
  # @ woocommerce-germanized
3621
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:483
3622
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:92
3623
  msgid "Description"
3624
  msgstr "Beschreibung"
3625
 
3626
  # @ woocommerce-germanized
3627
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:485
3628
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:94
3629
  msgid "Payment method description that the customer will see on your checkout."
3630
  msgstr "Beschreibung der Zahlungsart, die Kunden auf deiner Website sehen."
3631
 
3632
  # @ woocommerce-germanized
3633
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:486
3634
  msgid "The order amount will be debited directly from your bank account."
3635
  msgstr ""
3636
  "Der Gesamtbestellbetrag wird per SEPA-Lastschrift direkt von deinem Konto "
3637
  "abgebucht."
3638
 
3639
  # @ woocommerce-germanized
3640
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:490
3641
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:99
3642
  msgid "Instructions"
3643
  msgstr "Anweisungen"
3644
 
3645
  # @ woocommerce-germanized
3646
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:492
3647
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:101
3648
  msgid "Instructions that will be added to the thank you page and emails."
3649
  msgstr "Anweisung, die zur „Danke“-Seite und zu E-Mails hinzugefügt werden."
3650
 
3651
  # @ woocommerce-germanized
3652
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:497
3653
  msgid "Debtee"
3654
  msgstr "Gläubiger Informationen"
3655
 
3656
  # @ woocommerce-germanized
3657
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:499
3658
  msgid "Insert your company information."
3659
  msgstr "Füge hier die Informationen zu deinem Unternehmen ein."
3660
 
3661
  # @ woocommerce-germanized
3662
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:501
3663
  msgid "Company Inc, John Doe Street, New York"
3664
  msgstr "Musterfirma GmbH, Musterstraße 12, 12203 Musterstadt"
3665
 
3666
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:507
3667
  msgid "Insert the bank account holder name."
3668
  msgstr "Füge hier den Namen des Kontoinhabers ein."
3669
 
3670
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:509
3671
  msgid "Company Inc"
3672
  msgstr "Muster GmbH"
3673
 
3674
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:515
3675
  msgid "Insert the bank account IBAN."
3676
  msgstr "Füge hier den IBAN deines Kontos ein."
3677
 
3678
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:520
3679
  msgid "BIC"
3680
  msgstr "BIC"
3681
 
3682
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:522
3683
  msgid "Insert the bank account BIC."
3684
  msgstr "Füge hier den BIC deines Kontos ein."
3685
 
3686
  # @ woocommerce-germanized
3687
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:527
3688
  msgid "Debtee identification number"
3689
  msgstr "Identifikationsnummer"
3690
 
3691
  # @ woocommerce-germanized
3692
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:529
3693
  #, php-format
3694
  msgid ""
3695
  "Insert your debtee indentification number. More information can be found <a "
3699
  "Weitere Informationen zu dieser Nummer erhältst du <a href=\"%s\">hier</a>."
3700
 
3701
  # @ woocommerce-germanized
3702
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:533
3703
  msgid "Generate Mandate ID"
3704
  msgstr "Mandat-Referenz generieren"
3705
 
3706
  # @ woocommerce-germanized
3707
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:535
3708
  msgid "Automatically generate Mandate ID."
3709
  msgstr "Mandat-Referenznummer automatisch generieren."
3710
 
3711
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:536
3712
  msgid ""
3713
  "Automatically generate Mandate ID after order completion (based on Order ID)."
3714
  msgstr ""
3716
  "basierend auf der Bestellnummer."
3717
 
3718
  # @ woocommerce-germanized
3719
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:540
3720
+ msgid "XML Pain Format"
3721
+ msgstr "XML Pain Format"
3722
+
3723
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:542
3724
+ msgid ""
3725
+ "You may adjust the XML Export Pain Schema to your banks needs. Some banks "
3726
+ "may require pain.001.003.03."
3727
+ msgstr ""
3728
+ "Passe hier das SEPA XML Schema an die Anforderungen deiner Bank an. Einige "
3729
+ "Banken benötigen z.B. pain.001.003.03."
3730
+
3731
+ # @ woocommerce-germanized
3732
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:546
3733
  msgid "Mandate ID Format"
3734
  msgstr "Mandat-Referenz Format"
3735
 
3736
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:548
3737
  msgid ""
3738
  "You may extend the Mandate ID format by adding a prefix and/or suffix. Use "
3739
  "{id} as placeholder to insert the automatically generated ID."
3742
  "{id} als Platzhalter um die automatisch generierte Referenznummer einzufügen."
3743
 
3744
  # @ woocommerce-germanized
3745
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:552
3746
  msgid "Mandate Text"
3747
  msgstr "Lastschriftmandat"
3748
 
3749
  # @ woocommerce-germanized
3750
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:554
3751
  msgid ""
3752
  "This text will be populated with live order/checkout data. Will be used as "
3753
  "preview direct debit mandate and as email template text."
3758
  "Verfügung gestellt."
3759
 
3760
  # @ woocommerce-germanized
3761
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:561
3762
  msgid "Enable \"agree to SEPA mandate\" checkbox"
3763
  msgstr "Aktiviere die Checkbox zur Bestätigung des Lastschriftmandates."
3764
 
3765
  # @ woocommerce-germanized
3766
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:563
3767
  msgid "Enable a checkbox linking to a SEPA direct debit mandate preview."
3768
  msgstr ""
3769
  "Aktiviere eine Checkbox, die zu einer Vorschau des Lastschrift-Mandats führt."
3770
 
3771
  # @ woocommerce-germanized
3772
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:567
3773
  msgid "Checkbox label"
3774
  msgstr "Checkbox Text"
3775
 
3776
  # @ woocommerce-germanized
3777
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:569
3778
  msgid ""
3779
  "Customize the checkbox label. Use {link}link name{/link} to insert the "
3780
  "preview link."
3783
  "auf die Vorschau zu verlinken."
3784
 
3785
  # @ woocommerce-germanized
3786
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:570
3787
  msgid "I hereby agree to the {link}direct debit mandate{/link}."
3788
  msgstr "Hiermit erteile ich das {link}SEPA Lastschriftmandat{/link}."
3789
 
3790
  # @ woocommerce-germanized
3791
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:574
3792
  msgid "Mask IBAN"
3793
  msgstr "IBAN maskieren"
3794
 
3795
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:575
3796
  msgid "Mask the IBAN within emails."
3797
  msgstr "IBAN in E-Mails maskieren."
3798
 
3799
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:577
3800
  msgid ""
3801
  "This will lead to masked IBANs within emails (replaced by *). All but last 4 "
3802
  "digits will be masked."
3804
  "Der IBAN wird in E-Mails (abgesehen von den letzten 4 Stellen) mit * "
3805
  "maskiert."
3806
 
3807
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:586
3808
  msgid "Remember"
3809
  msgstr "Bankdaten merken\t"
3810
 
3811
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:587
3812
  msgid "Remember account data for returning customers."
3813
  msgstr "Bankverbindung für registrierte Kunden speichern."
3814
 
3815
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:589
3816
  msgid "Save account data as user meta if user has/creates a customer account."
3817
  msgstr ""
3818
  "Speichert die Bankverbindung für registrierte Kunden in der user_meta "
3820
  "eigenständig aus."
3821
 
3822
  # @ woocommerce-germanized
3823
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:672
3824
  msgid "Please insert your SEPA account data."
3825
  msgstr "Bitte füge deine SEPA Kontoinformationen ein."
3826
 
3827
  # @ woocommerce-germanized
3828
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:682
3829
  msgid "Your IBAN seems to be invalid."
3830
  msgstr "Dein IBAN scheint nicht gültig zu sein."
3831
 
3832
  # @ woocommerce-germanized
3833
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:684
3834
  msgid "Your IBAN's country code doesn’t match with your billing country."
3835
  msgstr "Der Ländercode des IBANs stimmt nicht mit dem Rechnungsland überein."
3836
 
3837
  # @ woocommerce-germanized
3838
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:688
3839
  msgid "Your BIC seems to be invalid."
3840
  msgstr "Dein BIC/SWIFT scheint nicht gültig zu sein."
3841
 
3842
  # @ woocommerce-germanized
3843
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:700
3844
  msgid "Please accept the direct debit mandate."
3845
  msgstr "Bitte erteile das SEPA Lastschriftmandat."
3846
 
3847
  # @ woocommerce-germanized
3848
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:731
3849
  msgid "is invalid"
3850
  msgstr "ist ungültig"
3851
 
3852
  # @ woocommerce-germanized
3853
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:769
3854
  msgid "Processing direct debit"
3855
  msgstr "Lastschriftverfahren vorbereiten"
3856
 
3910
  # @ woocommerce-germanized
3911
  # @ woocommerce
3912
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:50
3913
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/woocommerce-germanized.php:557
3914
  msgid "Settings"
3915
  msgstr "Einstellungen"
3916
 
4487
  # @ woocommerce-germanized
4488
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-reviews.php:21
4489
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-reviews.php:25
4490
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-reviews.php:45
4491
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-rich-snippets.php:45
4492
  msgctxt "trusted-shops"
4493
  msgid "Trusted Shops Reviews"
4531
  # @ woocommerce-germanized
4532
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-core-functions.php:86
4533
  msgid ""
4534
+ "Because of the small business owner state according to &#167; 19 UStG the "
4535
+ "seller does not levy nor state the German value added tax."
4536
  msgstr "Kein Mehrwertsteuerausweis, da Kleinunternehmer nach §19 (1) UStG."
4537
 
4538
  # @ woocommerce-germanized
4551
  msgid "Choose a Payment Gateway"
4552
  msgstr "Zahlungsart auswählen"
4553
 
4554
+ # @ woocommerce-germanized
4555
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-template-functions.php:272
4556
+ msgid "Please accept our parcel delivery agreement"
4557
+ msgstr "Bitte akzeptiere die Datenweitergabe an unsere Paketdienstleister"
4558
+
4559
  # @ woocommerce
4560
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-template-functions.php:400
4561
  msgid "Place order"
4562
  msgstr "Jetzt kaufen"
4563
 
4564
  # @ woocommerce-germanized
4565
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-template-functions.php:471
4566
  msgid "Please accept the creation of a new customer account"
4567
  msgstr "Bitte akzeptiere die Erstellung eines neuen Kundenkontos"
4568
 
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: 2016-09-01 13:32+0100\n"
6
- "PO-Revision-Date: 2016-09-01 13:32+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "Language: de_DE\n"
@@ -92,7 +92,7 @@ msgstr "l"
92
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:172
93
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php:72
94
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:269
95
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/woocommerce-germanized.php:780
96
  msgid "incl. VAT"
97
  msgstr "inkl. MwSt."
98
 
@@ -105,7 +105,7 @@ msgstr "exkl. MwSt."
105
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:174
106
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php:72
107
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:269
108
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/woocommerce-germanized.php:780
109
  #, php-format
110
  msgid "incl. %s%% VAT"
111
  msgstr "inkl. %s%% MwSt."
@@ -147,39 +147,40 @@ msgstr "So geht das leider nicht.."
147
 
148
  # @ woocommerce-germanized
149
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:42
150
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:207
151
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-core-functions.php:49
152
  msgid "Terms & Conditions"
153
  msgstr "AGB"
154
 
155
  # @ woocommerce-germanized
156
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:43
157
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:218
158
  msgid "Power of Revocation"
159
  msgstr "Widerrufsbelehrung"
160
 
161
  # @ woocommerce-germanized
162
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:44
163
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:229
164
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-core-functions.php:55
165
  msgid "Imprint"
166
  msgstr "Impressum"
167
 
168
  # @ woocommerce-germanized
169
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:45
170
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:240
171
  msgid "Data Security Statement"
172
  msgstr "Datenschutzbelehrung"
173
 
174
  # @ woocommerce-germanized
175
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:46
176
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:251
177
  msgid "Payment Methods"
178
  msgstr "Zahlungarten"
179
 
180
  # @ woocommerce-germanized
181
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:47
182
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:262
 
183
  msgid "Shipping Methods"
184
  msgstr "Versandarten"
185
 
@@ -199,37 +200,49 @@ msgstr "Willkommen bei WooCommerce Germanized"
199
  msgid "Go to WooCommerce Germanized Settings"
200
  msgstr "zu den WooCommerce Germanized Einstellungen"
201
 
 
 
 
 
 
 
 
 
 
 
 
 
202
  # @ woocommerce-germanized
203
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:90
204
  msgid "WooCommerce Status"
205
  msgstr "WooCommerce Status"
206
 
207
  # @ woocommerce-germanized
208
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:90
209
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-page-status.php:16
210
  msgid "System Status"
211
  msgstr "Systemstatus"
212
 
213
  # @ woocommerce-germanized
214
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:147
215
  msgid "Optional Email Content"
216
  msgstr "Optionaler E-Mail Inhalt"
217
 
218
  # @ woocommerce-germanized
219
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:156
220
  msgid "Add content which will be replacing default page content within emails."
221
  msgstr ""
222
  "Fülle dieses Feld aus um einen abweichenden E-Mail Anhangstext für diese "
223
  "Seite zu bestimmen."
224
 
225
  # @ woocommerce-germanized
226
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:166
227
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:137
228
  msgid "Optional Mini Description"
229
  msgstr "Warenkorb Kurzbeschreibung"
230
 
231
  # @ woocommerce-germanized
232
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:183
233
  msgid ""
234
  "This content will be shown as short product description within checkout and "
235
  "emails."
@@ -238,22 +251,22 @@ msgstr ""
238
  "Produkt Kurzbeschreibung angezeigt."
239
 
240
  # @ woocommerce-germanized
241
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:300
242
  msgid "Complaints Procedure"
243
  msgstr "Beschwerdeverfahren"
244
 
245
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:46
246
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:42
247
  msgid "Service"
248
  msgstr "Dienstleistung"
249
 
250
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:46
251
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:43
252
  msgid "Service products do not sell physical products."
253
  msgstr "Dienstleistungen werden nicht in physikalischer Form verkauft."
254
 
255
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:86
256
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:56
257
  msgid "Sale Label"
258
  msgstr "Regulärer Preishinweis"
259
 
@@ -264,20 +277,20 @@ msgid "Same as Parent"
264
  msgstr "Gleiche wie übergeordnet"
265
 
266
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:96
267
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:57
268
  msgid "Sale Regular Label"
269
  msgstr "Neuer Preis Hinweis"
270
 
271
  # @ woocommerce-germanized
272
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:109
273
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:72
274
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:691
275
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:740
276
  msgid "Product Units"
277
  msgstr "Produkteinheiten"
278
 
279
  # @ woocommerce-germanized
280
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:109
281
  msgid ""
282
  "Number of units included per default product price. Example: 1000 ml. Leave "
283
  "blank to use parent value."
@@ -286,46 +299,46 @@ msgstr ""
286
  "Frei lassen um den Wert des Eltern-Produkts zu verwenden."
287
 
288
  # @ woocommerce-germanized
289
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:113
290
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:91
291
  msgid "Calculation"
292
  msgstr "Berechnung"
293
 
294
  # @ woocommerce-germanized
295
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:116
296
  msgid "Calculate unit prices automatically"
297
  msgstr "Grundpreis automatisch berechnen."
298
 
299
  # @ woocommerce-germanized
300
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:121
301
  msgid "Regular Unit Price"
302
  msgstr "Einheitspreis"
303
 
304
  # @ woocommerce-germanized
305
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:125
306
  msgid "Sale Unit Price"
307
  msgstr "Angebots-Einheitspreis"
308
 
309
  # @ woocommerce-germanized
310
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:131
311
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:112
312
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:28
313
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:181
314
  msgid "Delivery Time"
315
  msgstr "Lieferzeit"
316
 
317
  # @ woocommerce-germanized
318
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:132
319
  msgid "Same as parent"
320
  msgstr "Gleiche wie übergeordnet"
321
 
322
  # @ woocommerce-germanized
323
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:56
324
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:57
325
  msgid "Select Price Label"
326
  msgstr "Preishinweis auswählen"
327
 
328
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:56
329
  msgid ""
330
  "If the product is on sale you may want to show a price label right before "
331
  "outputting the old price to inform the customer."
@@ -335,7 +348,7 @@ msgstr ""
335
  "Preis). Mit diesem Hinweis kannst du genau festlegen, um welchen Preis es "
336
  "sich dabei handelte (z.B. UVP)."
337
 
338
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:57
339
  msgid ""
340
  "If the product is on sale you may want to show a price label right before "
341
  "outputting the new price to inform the customer."
@@ -345,35 +358,35 @@ msgstr ""
345
  "neuer Preis)."
346
 
347
  # @ woocommerce-germanized
348
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:71
349
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:103
350
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:66
351
  msgid "Unit"
352
  msgstr "Einheit"
353
 
354
  # @ woocommerce-germanized
355
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:71
356
  msgid "Select unit"
357
  msgstr "Einheit auswählen"
358
 
359
  # @ woocommerce-germanized
360
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:71
361
  msgid "Needed if selling on a per unit basis"
362
  msgstr "Notwendig falls auf pro-Einheit-Basis verkauft werden soll"
363
 
364
  # @ woocommerce-germanized
365
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:72
366
  msgid "Number of units included per default product price. Example: 1000 ml."
367
  msgstr ""
368
  "Anzahl der Produkteinheiten auf Basis des Produktpreises. Beispiel: 1000 ml."
369
 
370
  # @ woocommerce-germanized
371
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:73
372
  msgid "Base Price Units"
373
  msgstr "Grundpreiseinheiten"
374
 
375
  # @ woocommerce-germanized
376
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:73
377
  msgid ""
378
  "Base price units. Example base price: 0,99 € / 100 ml. Insert 100 as base "
379
  "price unit amount."
@@ -382,32 +395,32 @@ msgstr ""
382
  "hier 100 als Grundpreiseinheiten ein."
383
 
384
  # @ woocommerce-germanized
385
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:91
386
  msgid "Calculate base prices automatically."
387
  msgstr "Grundpreis automatisch berechnen."
388
 
389
  # @ woocommerce-germanized
390
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:93
391
  msgid "Regular Base Price"
392
  msgstr "Regulärer Grundpreis"
393
 
394
  # @ woocommerce-germanized
395
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:94
396
  msgid "Sale Base Price"
397
  msgstr "Angebotsgrundpreis"
398
 
399
  # @ woocommerce-germanized
400
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:113
401
  msgid "Search for a delivery time&hellip;"
402
  msgstr "Lieferzeit suchen&hellip;"
403
 
404
  # @ woocommerce-germanized
405
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:119
406
  msgid "Free shipping?"
407
  msgstr "Versand kostenlos?"
408
 
409
  # @ woocommerce-germanized
410
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:119
411
  msgid "This option disables the \"plus shipping costs\" notice on product page"
412
  msgstr ""
413
  "Deaktiviert den Hinweis \"zzgl. Versandkosten\". Ohne Auswirkungen auf die "
@@ -473,7 +486,7 @@ msgstr "Keine"
473
 
474
  # @ woocommerce-germanized
475
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:136
476
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:606
477
  msgid "General"
478
  msgstr "Allgemein"
479
 
@@ -567,15 +580,43 @@ msgstr ""
567
  "Kunden den Abbrechen-Link verwendet. Diese Option verhindert den manuellen "
568
  "Abbruch einer Bestellung durch den Kunden."
569
 
 
 
 
 
570
  # @ woocommerce-germanized
571
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:192
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
572
  msgid "Contract"
573
  msgstr "Kaufvertrag"
574
 
575
  # @ woocommerce-germanized
576
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:192
577
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:499
578
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:511
579
  #, php-format
580
  msgid "%sUpgrade to %spro%s%s to unlock this feature and get premium support."
581
  msgstr ""
@@ -583,24 +624,24 @@ msgstr ""
583
  "erhalte professionellen Support."
584
 
585
  # @ woocommerce-germanized
586
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:204
587
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:141
588
  msgid "Legal Pages"
589
  msgstr "Rechtlich relevante Seiten"
590
 
591
  # @ woocommerce-germanized
592
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:208
593
  msgid "This page should contain your terms & conditions."
594
  msgstr "Diese Seite sollte deine Allgemeinen Geschäftsbedingungen enthalten."
595
 
596
  # @ woocommerce-germanized
597
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:214
598
  #, php-format
599
  msgid "Don't have terms & conditions yet? <a href=\"%s\">Generate now</a>!"
600
  msgstr "Du hast noch keine AGB? <a href=\"%s\">Jetzt generieren</a>!"
601
 
602
  # @ woocommerce-germanized
603
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:219
604
  msgid ""
605
  "This page should contain information regarding your customer's Right of "
606
  "Revocation."
@@ -610,27 +651,27 @@ msgstr ""
610
  "[revocation_form]"
611
 
612
  # @ woocommerce-germanized
613
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:225
614
  #, php-format
615
  msgid "Don't have a revocation page yet? <a href=\"%s\">Generate now</a>!"
616
  msgstr ""
617
  "Du hast noch keine Widerrufsbelehrung? <a href=\"%s\">Jetzt generieren</a>!"
618
 
619
  # @ woocommerce-germanized
620
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:230
621
  msgid "This page should contain an imprint with your company's information."
622
  msgstr ""
623
  "Diese Seite sollte das Impressum d.h. die Informationen (gemäß TMG) zu "
624
  "deinem Unternehmen enthalten."
625
 
626
  # @ woocommerce-germanized
627
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:241
628
  msgid ""
629
  "This page should contain information regarding your data security policy."
630
  msgstr "Diese Seite sollte deine Datenschutzbelehrung enthalten."
631
 
632
  # @ woocommerce-germanized
633
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:252
634
  msgid ""
635
  "This page should contain information regarding the Payment Methods that are "
636
  "chooseable during checkout."
@@ -640,7 +681,7 @@ msgstr ""
640
  "[payment_methods_info]"
641
 
642
  # @ woocommerce-germanized
643
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:263
644
  msgid ""
645
  "This page should contain information regarding shipping methods that are "
646
  "chooseable during checkout."
@@ -649,12 +690,12 @@ msgstr ""
649
  "Versandarten bereitstellen."
650
 
651
  # @ woocommerce-germanized
652
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:274
653
  msgid "Complaints"
654
  msgstr "Beschwerden"
655
 
656
  # @ woocommerce-germanized
657
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:274
658
  #, php-format
659
  msgid ""
660
  "Options regarding new EU online dispute resolution platform (OS). Read more "
@@ -665,12 +706,12 @@ msgstr ""
665
  "Pflichten."
666
 
667
  # @ woocommerce-germanized
668
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:277
669
  msgid "Complaints Procedure Text"
670
  msgstr "Hinweistext"
671
 
672
  # @ woocommerce-germanized
673
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:278
674
  msgid ""
675
  "Customize the text produced by the shortcode [gzd_complaints] to your needs. "
676
  "This text is to be meant to inform your customer about the existance of a "
@@ -682,7 +723,7 @@ msgstr ""
682
  "informieren. Du solltest diesen Shortcode z.B. in deinem Impressum einbinden."
683
 
684
  # @ woocommerce-germanized
685
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:280
686
  msgid ""
687
  "Online dispute resolution in accordance with Art. 14 (1) ODR-VO: The "
688
  "european commission provides a platform for online dispute resolution (OS) "
@@ -693,43 +734,43 @@ msgstr ""
693
  "Sie unter http://ec.europa.eu/consumers/odr/ finden."
694
 
695
  # @ woocommerce-germanized
696
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:287
697
  msgid "Shortcode Status"
698
  msgstr "Shortcode Status"
699
 
700
  # @ woocommerce-germanized
701
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:290
702
  msgid "Please choose a page as your imprint first."
703
  msgstr "Bitte hinterlege zuerst eine Seite als dein Impressum."
704
 
705
  # @ woocommerce-germanized
706
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:290
707
  msgid "Found"
708
  msgstr "Eingebunden"
709
 
710
  # @ woocommerce-germanized
711
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:290
712
  msgid "Not found within your imprint"
713
  msgstr "Nicht in deinem Impressum gefunden"
714
 
715
  # @ woocommerce-germanized
716
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:290
717
  msgid "Append it now"
718
  msgstr "Jetzt hinzufügen"
719
 
720
  # @ woocommerce-germanized
721
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:295
722
  msgid "Delivery Times"
723
  msgstr "Lieferzeiten"
724
 
725
  # @ woocommerce-germanized
726
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:298
727
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:42
728
  msgid "Default Delivery Time"
729
  msgstr "Standard-Lieferzeit"
730
 
731
  # @ woocommerce-germanized
732
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:299
733
  msgid ""
734
  "This delivery time will be added to every product if no delivery time has "
735
  "been chosen individually"
@@ -738,17 +779,17 @@ msgstr ""
738
  "zugeordnet wurde"
739
 
740
  # @ woocommerce-germanized
741
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:306
742
  msgid "Manage Delivery Times"
743
  msgstr "Lieferzeiten verwalten"
744
 
745
  # @ woocommerce-germanized
746
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:310
747
  msgid "Delivery Time Text"
748
  msgstr "Lieferzeit Text"
749
 
750
  # @ woocommerce-germanized
751
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:311
752
  msgid ""
753
  "This text will be used to indicate delivery time for products. Use "
754
  "{delivery_time} as placeholder."
@@ -757,21 +798,21 @@ msgstr ""
757
  "{delivery_time} als Platzhalter verwenden."
758
 
759
  # @ woocommerce-germanized
760
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:316
761
  msgid "Delivery time: {delivery_time}"
762
  msgstr "Lieferzeit: {delivery_time}"
763
 
764
  # @ woocommerce-germanized
765
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:321
766
  msgid "Sale Price Labels"
767
  msgstr "Preishinweise"
768
 
769
  # @ woocommerce-germanized
770
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:324
771
  msgid "Default Sale Label"
772
  msgstr "Standard-Streichpreis-Hinweis"
773
 
774
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:325
775
  msgid ""
776
  "Choose whether you would like to have a default sale price label to inform "
777
  "the customer about the regular price (e.g. Recommended Retail Price)."
@@ -780,16 +821,16 @@ msgstr ""
780
  "Kunden auf den alten Preis (bei reduzierten Produkten, sog. Streichpreis) "
781
  "hinweist (z.B. UVP)."
782
 
783
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:332
784
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:344
785
  msgid "Manage Price Labels"
786
  msgstr "Preishinweise verwalten"
787
 
788
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:336
789
  msgid "Default Sale Regular Label"
790
  msgstr "Standard-Angebotspreis-Hinweis"
791
 
792
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:337
793
  msgid ""
794
  "Choose whether you would like to have a default sale price regular label to "
795
  "inform the customer about the sale price (e.g. New Price)."
@@ -799,17 +840,17 @@ msgstr ""
799
  "hinweist (z.B. Unser neuer Preis)."
800
 
801
  # @ woocommerce-germanized
802
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:350
803
  msgid "Shipping Costs"
804
  msgstr "Versandkosten"
805
 
806
  # @ woocommerce-germanized
807
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:353
808
  msgid "Shipping Costs Text"
809
  msgstr "Versandkosten Text"
810
 
811
  # @ woocommerce-germanized
812
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:354
813
  msgid ""
814
  "This text will be used to inform the customer about shipping costs. Use "
815
  "{link}{/link} to insert link to shipping costs page."
@@ -819,17 +860,17 @@ msgstr ""
819
  "zur Versandkosten-Seite einzufügen."
820
 
821
  # @ woocommerce-germanized
822
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:359
823
  msgid "plus {link}Shipping Costs{/link}"
824
  msgstr "zzgl. {link}Versandkosten{/link}"
825
 
826
  # @ woocommerce-germanized
827
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:363
828
  msgid "Free Shipping Text"
829
  msgstr "Kostenloser Versand Text"
830
 
831
  # @ woocommerce-germanized
832
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:364
833
  msgid ""
834
  "This text will be used to inform the customer about free shipping. Leave "
835
  "empty to disable notice. Use {link}{/link} to insert link to shipping costs "
@@ -840,17 +881,17 @@ msgstr ""
840
  "Versandkosten-Seite einzufügen."
841
 
842
  # @ woocommerce-germanized
843
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:373
844
  msgid "Shipping Costs Tax"
845
  msgstr "Steuerberechnung"
846
 
847
  # @ woocommerce-germanized
848
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:374
849
  msgid "Enable better taxation for shpping costs?"
850
  msgstr "Genauere Steuerberechnung für Versandkosten aktivieren?"
851
 
852
  # @ woocommerce-germanized
853
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:378
854
  #, php-format
855
  msgid ""
856
  "By choosing this option shipping cost taxation will be calculated based on "
@@ -864,18 +905,18 @@ msgstr ""
864
  "Bruttobeträge. Hier ein kleines Beispiel: %s"
865
 
866
  # @ woocommerce-germanized
867
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:382
868
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:404
869
  msgid "Force Tax Calculation"
870
  msgstr "Steuerberechnung erzwingen"
871
 
872
  # @ woocommerce-germanized
873
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:383
874
  msgid "Force shipping costs tax calculation for every method?"
875
  msgstr "Erzwinge die Besteuerung für Versandkosten für jede Versandart?"
876
 
877
  # @ woocommerce-germanized
878
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:387
879
  msgid ""
880
  "This option will overwrite settings for each individual shipping method to "
881
  "force tax calculation (instead of only calculating tax for those methods "
@@ -885,22 +926,22 @@ msgstr ""
885
  "Versandarten und erzwingt die Steuerberechnung."
886
 
887
  # @ woocommerce-germanized
888
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:392
889
  msgid "Fees"
890
  msgstr "Gebühren"
891
 
892
  # @ woocommerce-germanized
893
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:395
894
  msgid "Fee Tax"
895
  msgstr "Steuerberechnung"
896
 
897
  # @ woocommerce-germanized
898
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:396
899
  msgid "Enable better taxation for fees?"
900
  msgstr "Genauere Steuerberechnung für Gebühren aktivieren?"
901
 
902
  # @ woocommerce-germanized
903
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:400
904
  msgid ""
905
  "By choosing this option fee taxation will be calculated based on tax rates "
906
  "within cart. See shipping costs taxation for more information."
@@ -911,12 +952,12 @@ msgstr ""
911
  "Nettobeträge in Bruttobeträge an."
912
 
913
  # @ woocommerce-germanized
914
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:405
915
  msgid "Force fee tax calculation for every fee?"
916
  msgstr "Berechnung der Steuern für Gebühren erzwingen?"
917
 
918
  # @ woocommerce-germanized
919
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:409
920
  msgid ""
921
  "This option will overwrite settings for each individual fee to force tax "
922
  "calculation (instead of only calculating tax for those fees which are "
@@ -926,28 +967,28 @@ msgstr ""
926
  "Steuerberechnung."
927
 
928
  # @ woocommerce-germanized
929
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:414
930
  msgid "Customers"
931
  msgstr "Kunden"
932
 
933
  # @ woocommerce-germanized
934
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:417
935
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:546
936
  msgid "Checkbox"
937
  msgstr "Checkbox"
938
 
939
  # @ woocommerce-germanized
940
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:418
941
  msgid "Add a checkbox to customer registration form."
942
  msgstr "Füge eine Checkbox zum Formular für die Kundenregistrierung hinzu."
943
 
944
  # @ woocommerce-germanized
945
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:425
946
  msgid "Checkbox text"
947
  msgstr "Checkbox Text"
948
 
949
  # @ woocommerce-germanized
950
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:426
951
  msgid ""
952
  "Choose a Plain Text which will be shown as checkbox text for customer "
953
  "account creation. Use {term_link}{/term_link}, {data_security_link}{/"
@@ -961,7 +1002,7 @@ msgstr ""
961
  "Hinweisseiten."
962
 
963
  # @ woocommerce-germanized
964
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:428
965
  msgid ""
966
  "Yes, I’d like create a new account and have read and understood the "
967
  "{data_security_link}data privacy statement{/data_security_link}."
@@ -970,19 +1011,19 @@ msgstr ""
970
  "{data_security_link}Datenschutzerklärung{/data_security_link}."
971
 
972
  # @ woocommerce-germanized
973
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:435
974
  msgid "Checkout"
975
  msgstr "Kasse"
976
 
977
  # @ woocommerce-germanized
978
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:436
979
  msgid ""
980
  "Replace default WooCommerce text regarding account creation during checkout."
981
  msgstr ""
982
  "Ersetze den WooCommerce Text (Kundenkonto erstellen?) durch den o.g. Hinweis."
983
 
984
  # @ woocommerce-germanized
985
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:437
986
  msgid ""
987
  "Use the text from above instead of the default WooCommerce text regarding "
988
  "account creation during checkout. This checkbox is only show if you have "
@@ -994,17 +1035,17 @@ msgstr ""
994
  "zulässt."
995
 
996
  # @ woocommerce-germanized
997
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:444
998
  msgid "Customer Double Opt In"
999
  msgstr "Double Opt-In"
1000
 
1001
  # @ woocommerce-germanized
1002
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:445
1003
  msgid "Enable customer double opt in on registration?"
1004
  msgstr "Double Opt-In Verfahren für Kundenkonten aktivieren?"
1005
 
1006
  # @ woocommerce-germanized
1007
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:446
1008
  #, php-format
1009
  msgid ""
1010
  "If customer chooses to create a customer account an email with an activation "
@@ -1018,15 +1059,15 @@ msgstr ""
1018
  "Verfahren ist laut Amtsgericht Berlin Pankow/Weißensee notwendig. Mehr "
1019
  "Informationen findest du <a href=\"%s\" target=\"_blank\">hier</a>."
1020
 
1021
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:453
1022
  msgid "Disable Login and Checkout"
1023
  msgstr "Login und Checkout"
1024
 
1025
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:454
1026
  msgid "Disable login and checkout for unactivated customers."
1027
  msgstr "Deaktiviere den Login und Checkout für inaktive Kunden."
1028
 
1029
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:455
1030
  msgid ""
1031
  "Customers that did not click on the activation link will not be able to "
1032
  "complete checkout nor login to their account."
@@ -1036,12 +1077,12 @@ msgstr ""
1036
  "werden."
1037
 
1038
  # @ woocommerce-germanized
1039
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:462
1040
  msgid "Delete Unactivated After"
1041
  msgstr "Unaktivierte löschen nach"
1042
 
1043
  # @ woocommerce-germanized
1044
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:463
1045
  msgid ""
1046
  "This will make sure unactivated customer accounts will be deleted after X "
1047
  "days. Set to 0 if you don't want to automatically delete unactivated "
@@ -1052,23 +1093,23 @@ msgstr ""
1052
  "setze den Wert auf 0."
1053
 
1054
  # @ woocommerce-germanized
1055
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:464
1056
  msgid "days"
1057
  msgstr "Tagen"
1058
 
1059
  # @ woocommerce-germanized
1060
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:473
1061
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-core-functions.php:52
1062
  msgid "Right of Recission"
1063
  msgstr "Widerrufsrecht"
1064
 
1065
  # @ woocommerce-germanized
1066
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:476
1067
  msgid "Revocation Address"
1068
  msgstr "Widerruf richten an"
1069
 
1070
  # @ woocommerce-germanized
1071
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:477
1072
  msgid ""
1073
  "Type in an address, telephone/telefax number, email address which is to be "
1074
  "used as revocation address"
@@ -1077,18 +1118,18 @@ msgstr ""
1077
  "die deine Kunden ihren Widerruf richten sollen"
1078
 
1079
  # @ woocommerce-germanized
1080
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:486
1081
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:81
1082
  msgid "Virtual VAT"
1083
  msgstr "USt. Änderung 2015"
1084
 
1085
  # @ woocommerce-germanized
1086
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:489
1087
  msgid "Enable Virtual VAT"
1088
  msgstr "USt. Anpassung aktivieren"
1089
 
1090
  # @ woocommerce-germanized
1091
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:490
1092
  msgid ""
1093
  "Enable if you want to charge your customer's countries' VAT for virtual "
1094
  "products."
@@ -1096,7 +1137,7 @@ msgstr ""
1096
  "Für virtuelle Produkte den USt.-Satz des Dienstleistungsempfängers berechnen."
1097
 
1098
  # @ woocommerce-germanized
1099
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:494
1100
  #, php-format
1101
  msgid ""
1102
  "New EU VAT rule applies on 01.01.2015. Make sure that every digital or "
@@ -1119,35 +1160,35 @@ msgstr ""
1119
  "dazu findest du <a href=\"%s\" target=\"_blank\">hier</a>."
1120
 
1121
  # @ woocommerce-germanized
1122
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:499
1123
  msgctxt "invoices"
1124
  msgid "Invoices"
1125
  msgstr "Rechnungen"
1126
 
1127
  # @ woocommerce-germanized
1128
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:511
1129
  msgid "VAT"
1130
  msgstr "Umsatzsteuer"
1131
 
1132
  # @ woocommerce-germanized
1133
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:546
1134
  #, php-format
1135
  msgid "Attach %s"
1136
  msgstr "%s"
1137
 
1138
  # @ woocommerce-germanized
1139
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:547
1140
  #, php-format
1141
  msgid "Attach %s to the following email templates"
1142
  msgstr "%s an die folgenden E-Mail Templates anfügen"
1143
 
1144
  # @ woocommerce-germanized
1145
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:560
1146
  msgid "E-Mails"
1147
  msgstr "E-Mails"
1148
 
1149
  # @ woocommerce-germanized
1150
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:560
1151
  msgid ""
1152
  "Use drag & drop to customize attachment order. Don't forget to save your "
1153
  "changes."
@@ -1156,12 +1197,12 @@ msgstr ""
1156
  "beeinflussen und speichere anschließend deine Änderungen."
1157
 
1158
  # @ woocommerce-germanized
1159
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:577
1160
  msgid "Email Attachment Options"
1161
  msgstr "PDF Anhang"
1162
 
1163
  # @ woocommerce-germanized
1164
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:577
1165
  #, php-format
1166
  msgid ""
1167
  "Want to attach automatically generated PDF files to emails instead of plain "
@@ -1171,27 +1212,27 @@ msgstr ""
1171
  "%sUpgrade zur %spro%s Version%s"
1172
 
1173
  # @ woocommerce-germanized
1174
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:600
1175
  msgid "Downloadable Product"
1176
  msgstr "Herunterladbares Produkt"
1177
 
1178
  # @ woocommerce-germanized
1179
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:601
1180
  msgid "Virtual Product"
1181
  msgstr "Virtuelles Produkt"
1182
 
1183
  # @ woocommerce-germanized
1184
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:609
1185
  msgid "Add to Cart"
1186
  msgstr "Zum Warenkorb Button"
1187
 
1188
  # @ woocommerce-germanized
1189
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:610
1190
  msgid "Show add to cart button on listings?"
1191
  msgstr "Den zum Warenkorb Button in Produktlisten darstellen?"
1192
 
1193
  # @ woocommerce-germanized
1194
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:614
1195
  msgid ""
1196
  "unset this option if you don't want to show the add to cart button within "
1197
  "the product listings"
@@ -1200,18 +1241,18 @@ msgstr ""
1200
  "von Produktauflistungen darstellen möchten"
1201
 
1202
  # @ woocommerce-germanized
1203
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:618
1204
  msgid "Link to Details"
1205
  msgstr "Verlinkung zu Produktdetails"
1206
 
1207
  # @ woocommerce-germanized
1208
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:619
1209
  msgid ""
1210
  "Want to link to product details page instead of add to cart within listings?"
1211
  msgstr "Zum Warenkorb Button mit Button zur Produktdetail-Seite ersetzen?"
1212
 
1213
  # @ woocommerce-germanized
1214
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:623
1215
  msgid ""
1216
  "Decide whether you like to link to your product's details page instead of "
1217
  "displaying an add to cart button within product listings."
@@ -1221,17 +1262,17 @@ msgstr ""
1221
  "diese Option."
1222
 
1223
  # @ woocommerce-germanized
1224
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:627
1225
  msgid "Product Details Text"
1226
  msgstr "Produktdetails Text"
1227
 
1228
  # @ woocommerce-germanized
1229
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:629
1230
  msgid "Details"
1231
  msgstr "Details"
1232
 
1233
  # @ woocommerce-germanized
1234
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:631
1235
  msgid ""
1236
  "If you have chosen to link to product details page instead of add to cart "
1237
  "URL you may want to change the button text."
@@ -1241,11 +1282,11 @@ msgstr ""
1241
  "einen Button-Text vergeben."
1242
 
1243
  # @ woocommerce-germanized
1244
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:636
1245
  msgid "Digital Delivery Time Text"
1246
  msgstr "Lieferzeit Digital"
1247
 
1248
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:640
1249
  msgid ""
1250
  "Enter a text which will be shown as digital delivery time text (replacement "
1251
  "for default digital time on digital products)."
@@ -1255,76 +1296,76 @@ msgstr ""
1255
  "lassen."
1256
 
1257
  # @ woocommerce-germanized
1258
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:645
1259
  msgid "Notice Footer"
1260
  msgstr "Hinweise im Footer"
1261
 
1262
  # @ woocommerce-germanized
1263
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:646
1264
  msgid "Show a global VAT notice within footer"
1265
  msgstr "Einen seitenübergreifenden Hinweis bzgl. der MwSt. im Footer einfügen."
1266
 
1267
  # @ woocommerce-germanized
1268
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:654
1269
  msgid "Show a global sale price notice within footer"
1270
  msgstr ""
1271
  "Einen seitenübergreifenden Hinweis bzgl. reduzierter Preise im Footer "
1272
  "einfügen."
1273
 
1274
  # @ woocommerce-germanized
1275
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:663
1276
  msgid "Products"
1277
  msgstr "Produkt"
1278
 
1279
  # @ woocommerce-germanized
1280
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:666
1281
  msgid "Show within Product Listings"
1282
  msgstr "In Produktlisten"
1283
 
1284
  # @ woocommerce-germanized
1285
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:667
1286
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:716
1287
  msgid "Shipping Costs notice"
1288
  msgstr "Versandkosten-Hinweis"
1289
 
1290
  # @ woocommerce-germanized
1291
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:675
1292
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:724
1293
  msgid "Tax Info"
1294
  msgstr "MwSt. Hinweis"
1295
 
1296
  # @ woocommerce-germanized
1297
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:683
1298
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:732
1299
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:787
1300
  msgid "Base Price"
1301
  msgstr "Grundpreis"
1302
 
1303
  # @ woocommerce-germanized
1304
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:699
1305
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:748
1306
  msgid "Delivery Time Notice"
1307
  msgstr "Lieferzeiten-Hinweis"
1308
 
1309
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:707
1310
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:756
1311
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:93
1312
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:95
1313
  msgid "Price Labels"
1314
  msgstr "Preishinweise"
1315
 
1316
  # @ woocommerce-germanized
1317
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:715
1318
  msgid "Show on Product Detail Page"
1319
  msgstr "Auf der Produktseite"
1320
 
1321
  # @ woocommerce-germanized
1322
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:764
1323
  msgid "Hide Shipping Costs Notice"
1324
  msgstr "Versandkosten ausblenden"
1325
 
1326
  # @ woocommerce-germanized
1327
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:765
1328
  msgid ""
1329
  "Select product types for which you might want to disable the shipping costs "
1330
  "notice."
@@ -1333,11 +1374,11 @@ msgstr ""
1333
  "möchtest."
1334
 
1335
  # @ woocommerce-germanized
1336
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:775
1337
  msgid "Hide Delivery Time Notice"
1338
  msgstr "Lieferzeiten ausblenden"
1339
 
1340
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:776
1341
  msgid ""
1342
  "Select product types for which you might want to disable the delivery time "
1343
  "notice."
@@ -1346,12 +1387,12 @@ msgstr ""
1346
  "möchtest."
1347
 
1348
  # @ woocommerce-germanized
1349
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:790
1350
  msgid "Base Price Text"
1351
  msgstr "Grundpreis Text"
1352
 
1353
  # @ woocommerce-germanized
1354
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:791
1355
  msgid ""
1356
  "This text will be used to display the base price. Use {price} to insert the "
1357
  "price. If you want to specifically format base price output use {base}, "
@@ -1363,26 +1404,26 @@ msgstr ""
1363
  "{base_price} für die einzelnen Elemente."
1364
 
1365
  # @ woocommerce-germanized
1366
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:796
1367
  msgid "{price}"
1368
  msgstr "{price}"
1369
 
1370
  # @ woocommerce-germanized
1371
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:800
1372
  msgid "Variable Base Price"
1373
  msgstr "Variabler Grundpreis"
1374
 
1375
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:801
1376
  msgid "Enable price range base prices for variable products."
1377
  msgstr "Aktiviere von-bis-Grundpreise für variable Produkte."
1378
 
1379
  # @ woocommerce-germanized
1380
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:808
1381
  msgid "Product Units Text"
1382
  msgstr "Produkteinheiten Text"
1383
 
1384
  # @ woocommerce-germanized
1385
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:809
1386
  msgid ""
1387
  "This text will be used to display the product units. Use {product_units} to "
1388
  "insert the amount of product units. Use {unit} to insert the unit. "
@@ -1394,23 +1435,23 @@ msgstr ""
1394
  "Grundpreis."
1395
 
1396
  # @ woocommerce-germanized
1397
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:814
1398
  msgid "Product contains: {product_units} {unit}"
1399
  msgstr "Produkt enthält: {product_units} {unit}"
1400
 
1401
  # @ woocommerce-germanized
1402
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:819
1403
  msgid "Checkout & Cart"
1404
  msgstr "Checkout & Warenkorb"
1405
 
1406
  # @ woocommerce-germanized
1407
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:822
1408
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:55
1409
  msgid "Fallback Mode"
1410
  msgstr "Fallback Modus"
1411
 
1412
  # @ woocommerce-germanized
1413
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:823
1414
  msgid ""
1415
  "Enable to make sure default checkout template is not being overriden by "
1416
  "theme."
@@ -1418,7 +1459,7 @@ msgstr ""
1418
  "Überschreiben relevanter Templates im Checkout durch dein Theme verhindern."
1419
 
1420
  # @ woocommerce-germanized
1421
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:827
1422
  msgid ""
1423
  "If you are facing problems within your checkout e.g. legally relevant data "
1424
  "is not showing (terms, delivery time, unit price etc.) your theme seems to "
@@ -1432,17 +1473,17 @@ msgstr ""
1432
  "Checkout (review-order.php und form-checkout.php) zu überschreiben. "
1433
 
1434
  # @ woocommerce-germanized
1435
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:831
1436
  msgid "Force free shipping"
1437
  msgstr "Versandmethode erzwingen"
1438
 
1439
  # @ woocommerce-germanized
1440
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:832
1441
  msgid "Force free shipping method if available?"
1442
  msgstr "Kostenlosen Versand erzwingen wenn die Methode zur Verfügung steht?"
1443
 
1444
  # @ woocommerce-germanized
1445
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:836
1446
  msgid ""
1447
  "By default WooCommerce will let customers choose other shipping methods than "
1448
  "free shipping (if available). This option will force free shipping if "
@@ -1453,18 +1494,18 @@ msgstr ""
1453
  "Versand, sobald dieser verfügbar ist."
1454
 
1455
  # @ woocommerce-germanized
1456
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:840
1457
  msgid "Hide taxes estimated"
1458
  msgstr "Hinweis \"Steuern geschätzt\""
1459
 
1460
  # @ woocommerce-germanized
1461
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:841
1462
  msgid ""
1463
  "Do you want to hide the \"taxes and shipping estimated\" text from your cart?"
1464
  msgstr "Den Hinweis \"Versandkosten und Steuern werden geschätzt\" entfernen?"
1465
 
1466
  # @ woocommerce-germanized
1467
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:845
1468
  msgid ""
1469
  "By default WooCommerce adds a \"taxes and shipping estimated\" text to your "
1470
  "cart. This might puzzle your customers and may not meet german law."
@@ -1474,17 +1515,17 @@ msgstr ""
1474
  "Markt geeignet."
1475
 
1476
  # @ woocommerce-germanized
1477
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:849
1478
  msgid "Show Thumbnails"
1479
  msgstr "Thumbnails anzeigen"
1480
 
1481
  # @ woocommerce-germanized
1482
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:850
1483
  msgid "Show product thumbnails on checkout page?"
1484
  msgstr "Produktbilder im Checkout darstellen?"
1485
 
1486
  # @ woocommerce-germanized
1487
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:854
1488
  msgid ""
1489
  "Uncheck if you don't want to show your product thumbnails within checkout "
1490
  "table."
@@ -1493,17 +1534,17 @@ msgstr ""
1493
  "bekommen möchtest."
1494
 
1495
  # @ woocommerce-germanized
1496
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:858
1497
  msgid "Hide Shipping Select"
1498
  msgstr "Versandarten Auswahl"
1499
 
1500
  # @ woocommerce-germanized
1501
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:859
1502
  msgid "Hide shipping rate selection from checkout?"
1503
  msgstr "Die Auswahl von Versandarten im Checkout deaktivieren?"
1504
 
1505
  # @ woocommerce-germanized
1506
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:863
1507
  msgid ""
1508
  "This option will hide shipping rate selection from checkout. By then "
1509
  "customers will only be able to change their shipping rate on cart page."
@@ -1513,18 +1554,18 @@ msgstr ""
1513
  "Versandmethode ändern."
1514
 
1515
  # @ woocommerce-germanized
1516
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:867
1517
  msgid "Show back to cart button"
1518
  msgstr "Bestellung bearbeiten"
1519
 
1520
  # @ woocommerce-germanized
1521
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:868
1522
  msgid "Show back to cart button within your checkout table?"
1523
  msgstr ""
1524
  "Einen \"Bestellung bearbeiten\" Button in der Bestellübersicht anzeigen?"
1525
 
1526
  # @ woocommerce-germanized
1527
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:872
1528
  msgid ""
1529
  "This button may let your customer edit their order before submitting. Some "
1530
  "people state that this button should be hidden to avoid legal problems."
@@ -1536,28 +1577,28 @@ msgstr ""
1536
  "keine weitere Informationen abgedruckt werden sollten."
1537
 
1538
  # @ woocommerce-germanized
1539
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:876
1540
  msgid "Show edit data notice"
1541
  msgstr "Bestellung prüfen Hinweis"
1542
 
1543
  # @ woocommerce-germanized
1544
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:877
1545
  msgid "Show a \"check-your-entries\" notice to the user?"
1546
  msgstr "Einen \"Bestellung prüfen\" Hinweis anzeigen?"
1547
 
1548
  # @ woocommerce-germanized
1549
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:881
1550
  msgid "This notice will be added right before the order comments field."
1551
  msgstr ""
1552
  "Dieser Hinweis wird direkt oberhalb des Bestellhinweise-Feldes eingefügt."
1553
 
1554
  # @ woocommerce-germanized
1555
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:885
1556
  msgid "Checkout Table Color"
1557
  msgstr "Hintergrundfarbe der Tabelle"
1558
 
1559
  # @ woocommerce-germanized
1560
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:887
1561
  msgid ""
1562
  "Choose the color of your checkout product table. This table should be "
1563
  "highlighted within your checkout page."
@@ -1566,17 +1607,17 @@ msgstr ""
1566
  "Tabelle sollte sich farblich vom Rest des Inhalts abheben."
1567
 
1568
  # @ woocommerce-germanized
1569
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:893
1570
  msgid "Checkout Legal Display"
1571
  msgstr "Checkbox oder Text"
1572
 
1573
  # @ woocommerce-germanized
1574
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:894
1575
  msgid "Use Text without Checkbox"
1576
  msgstr "Rechtshinweis ohne Checkbox."
1577
 
1578
  # @ woocommerce-germanized
1579
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:896
1580
  msgid ""
1581
  "This version will remove checkboxes from Checkout and display a text "
1582
  "instead. This seems to be legally compliant (Zalando & Co are using this "
@@ -1587,12 +1628,12 @@ msgstr ""
1587
  "diese Form)"
1588
 
1589
  # @ woocommerce-germanized
1590
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:902
1591
  msgid "Legal Text"
1592
  msgstr "Rechtlicher Hinweistext"
1593
 
1594
  # @ woocommerce-germanized
1595
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:903
1596
  msgid ""
1597
  "Choose a Plain Text which will be shown right above checkout submit button. "
1598
  "Use {term_link}{/term_link}, {data_security_link}{/data_security_link}, "
@@ -1605,7 +1646,7 @@ msgstr ""
1605
  "revocation_link} um die jeweiligen Links zu den Seiten einzufügen."
1606
 
1607
  # @ woocommerce-germanized
1608
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:905
1609
  msgid ""
1610
  "With your order, you agree to have read and understood our {term_link}Terms "
1611
  "and Conditions{/term_link} and your {revocation_link}Right of Recission{/"
@@ -1616,12 +1657,12 @@ msgstr ""
1616
  "revocation_link} einverstanden."
1617
 
1618
  # @ woocommerce-germanized
1619
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:912
1620
  msgid "Legal Text Error"
1621
  msgstr "Fehlermeldung der Checkbox"
1622
 
1623
  # @ woocommerce-germanized
1624
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:913
1625
  msgid ""
1626
  "If you have chosen to use checkbox validation please choose a error message "
1627
  "which will be shown if the user doesn't check checkbox. Use {term_link}{/"
@@ -1636,7 +1677,7 @@ msgstr ""
1636
  "revocation_link}"
1637
 
1638
  # @ woocommerce-germanized
1639
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:915
1640
  msgid ""
1641
  "To finish the order you have to accept to our {term_link}Terms and "
1642
  "Conditions{/term_link} and {revocation_link}Right of Recission{/"
@@ -1646,17 +1687,17 @@ msgstr ""
1646
  "term_link} und {revocation_link}Widerrufsbestimmungen{/revocation_link}."
1647
 
1648
  # @ woocommerce-germanized
1649
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:922
1650
  msgid "Show digital notice"
1651
  msgstr "Checkbox digitale Produkte"
1652
 
1653
  # @ woocommerce-germanized
1654
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:923
1655
  msgid "Show checkbox for digital products."
1656
  msgstr "Checkbox bei digitalen Produkten anzeigen."
1657
 
1658
  # @ woocommerce-germanized
1659
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:924
1660
  msgid ""
1661
  "Disable this option if you want your customers to obtain their right of "
1662
  "recission even if digital products are being bought."
@@ -1666,12 +1707,12 @@ msgstr ""
1666
  "werden, dass im Falle von digitalen Produkten das Widerrufsrecht erlischt."
1667
 
1668
  # @ woocommerce-germanized
1669
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:931
1670
  msgid "Digital Product types"
1671
  msgstr "Digitale Produkttypen"
1672
 
1673
  # @ woocommerce-germanized
1674
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:932
1675
  msgid ""
1676
  "Select product types for which the loss of recission notice is shown. "
1677
  "Product types like \"simple product\" may be redudant because they include "
@@ -1683,12 +1724,12 @@ msgstr ""
1683
  "einschließen."
1684
 
1685
  # @ woocommerce-germanized
1686
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:942
1687
  msgid "Legal Digital Text"
1688
  msgstr "Hinweis Digital"
1689
 
1690
  # @ woocommerce-germanized
1691
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:943
1692
  msgid ""
1693
  "Choose a Plain Text which will be shown right above checkout submit button "
1694
  "if a user has picked a digital product. See legal text option for possible "
@@ -1699,7 +1740,7 @@ msgstr ""
1699
  "Platzhalter verwenden wie beim Rechtlichen Hinweistext"
1700
 
1701
  # @ woocommerce-germanized
1702
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:945
1703
  msgid ""
1704
  "For digital products: I strongly agree that the execution of the agreement "
1705
  "starts before the revocation period has expired. I am aware that my right of "
@@ -1710,13 +1751,13 @@ msgstr ""
1710
  "bekannt, dass mit Beginn der Ausführung mein Widerrufsrecht erlischt."
1711
 
1712
  # @ woocommerce-germanized
1713
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:952
1714
  msgid "Legal Digital Error"
1715
  msgstr "Fehlermeldung Digital"
1716
 
1717
  # @ woocommerce-germanized
1718
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:953
1719
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:992
1720
  msgid ""
1721
  "This text will be shown as error message if customer has not checked the "
1722
  "corresponding checkbox. See legal text option for possible placeholders."
@@ -1726,7 +1767,7 @@ msgstr ""
1726
  "Hinweistext für eine Liste der Platzhalter."
1727
 
1728
  # @ woocommerce-germanized
1729
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:955
1730
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:317
1731
  msgid ""
1732
  "To retrieve direct access to digital content you have to agree to the loss "
@@ -1736,12 +1777,12 @@ msgstr ""
1736
  "Widerrufsrecht verzichten."
1737
 
1738
  # @ woocommerce-germanized
1739
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:962
1740
  msgid "Digital Confirmation Notice"
1741
  msgstr "Digitale Bestätigung"
1742
 
1743
  # @ woocommerce-germanized
1744
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:963
1745
  msgid ""
1746
  "This text will be appended to your order processing email if the order "
1747
  "contains digital products. Use placeholders {link}{/link} to insert link to "
@@ -1752,7 +1793,7 @@ msgstr ""
1752
  "Platzhalter {link}{/link} um einen Link zur Widerrufsbelehrung einzufügen."
1753
 
1754
  # @ woocommerce-germanized
1755
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:966
1756
  msgid ""
1757
  "Furthermore you have expressly agreed to start the performance of the "
1758
  "contract for digital items (e.g. downloads) before expiry of the withdrawal "
@@ -1766,17 +1807,17 @@ msgstr ""
1766
  "verlieren."
1767
 
1768
  # @ woocommerce-germanized
1769
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:972
1770
  msgid "Show service notice"
1771
  msgstr "Checkbox Dienstleistungen"
1772
 
1773
  # @ woocommerce-germanized
1774
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:973
1775
  msgid "Show checkbox for service products."
1776
  msgstr "Checkbox bei Dienstleistungen anzeigen."
1777
 
1778
  # @ woocommerce-germanized
1779
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:974
1780
  msgid ""
1781
  "Disable this option if you want your customers to obtain their right of "
1782
  "recission even if service products are being bought."
@@ -1787,12 +1828,12 @@ msgstr ""
1787
  "Widerrufsfrist mit der Dienstleistung begonnen wird."
1788
 
1789
  # @ woocommerce-germanized
1790
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:981
1791
  msgid "Legal Service Text"
1792
  msgstr "Hinweis Dienstleistungen"
1793
 
1794
  # @ woocommerce-germanized
1795
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:982
1796
  msgid ""
1797
  "Choose a Plain Text which will be shown right above checkout submit button "
1798
  "if a user has picked a service product. See legal text option for possible "
@@ -1803,7 +1844,7 @@ msgstr ""
1803
  "Platzhalter verwenden wie beim Rechtlichen Hinweistext."
1804
 
1805
  # @ woocommerce-germanized
1806
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:984
1807
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:339
1808
  msgid ""
1809
  "For services: I demand and acknowledge the immediate performance of the "
@@ -1816,12 +1857,12 @@ msgstr ""
1816
  "vollständiger Erfüllung des Vertrages erlischt."
1817
 
1818
  # @ woocommerce-germanized
1819
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:991
1820
  msgid "Legal Service Error"
1821
- msgstr "Fehlermeldung Dienstleistung"
1822
 
1823
  # @ woocommerce-germanized
1824
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:994
1825
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:348
1826
  msgid ""
1827
  "To allow the immediate performance of the services you have to agree to the "
@@ -1831,12 +1872,12 @@ msgstr ""
1831
  "Widerrufsfrist zu."
1832
 
1833
  # @ woocommerce-germanized
1834
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1001
1835
  msgid "Service Confirmation Notice"
1836
  msgstr "Dienstleistung Bestätigung"
1837
 
1838
  # @ woocommerce-germanized
1839
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1002
1840
  msgid ""
1841
  "This text will be appended to your order processing email if the order "
1842
  "contains service products. Use placeholders {link}{/link} to insert link to "
@@ -1847,7 +1888,7 @@ msgstr ""
1847
  "Platzhalter {link}{/link} um einen Link zur Widerrufsbelehrung einzufügen."
1848
 
1849
  # @ woocommerce-germanized
1850
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1005
1851
  msgid ""
1852
  "Furthermore you have expressly agreed to start the performance of the "
1853
  "contract for services before expiry of the withdrawal period. I have noted "
@@ -1861,19 +1902,97 @@ msgstr ""
1861
  "erlischt."
1862
 
1863
  # @ woocommerce-germanized
1864
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1011
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1865
  msgid "Pay now Button"
1866
  msgstr "Jetzt bezahlen Button"
1867
 
1868
  # @ woocommerce-germanized
1869
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1012
1870
  msgid "Add a pay now button to emails and order success page."
1871
  msgstr ""
1872
  "Füge einen jetzt bezahlen - Button zur E-Mail und der Bestätigungs-Seite "
1873
  "hinzu."
1874
 
1875
  # @ woocommerce-germanized
1876
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1013
1877
  msgid ""
1878
  "Add a pay now button to order confirmation email and order success page if "
1879
  "the order awaits payment (PayPal etc)."
@@ -1883,30 +2002,30 @@ msgstr ""
1883
  "benötigt (z.B. per PayPal)."
1884
 
1885
  # @ woocommerce-germanized
1886
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1020
1887
  msgid "Order Success Text"
1888
  msgstr "Bestellung eingegangen"
1889
 
1890
  # @ woocommerce-germanized
1891
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1021
1892
  msgid "Choose a custom text to display on order success page."
1893
  msgstr ""
1894
  "Hier kannst du einen individuellen kurzen Text eingeben, der nach der "
1895
  "Bestellung ausgegeben wird."
1896
 
1897
  # @ woocommerce-germanized
1898
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1029
1899
  msgid "Order Success Data"
1900
  msgstr "Bestellbestätigungs-Daten"
1901
 
1902
  # @ woocommerce-germanized
1903
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1030
1904
  msgid "Hide product table and customer data on order success page"
1905
  msgstr ""
1906
  "Produktdetails (Tabelle, Kundeninfos) von der Bestätigungsseite entfernen."
1907
 
1908
  # @ woocommerce-germanized
1909
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1138
1910
  msgid ""
1911
  "Sorry, but the new Virtual VAT rules cannot be applied to small business."
1912
  msgstr ""
@@ -2479,10 +2598,10 @@ msgstr "jetzt upgraden"
2479
  # @ woocommerce
2480
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:87
2481
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:93
2482
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:88
2483
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:94
2484
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:195
2485
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:206
2486
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:74
2487
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:81
2488
  msgid "Title"
@@ -2490,47 +2609,51 @@ msgstr "Anrede"
2490
 
2491
  # @ woocommerce-germanized
2492
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:113
2493
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:114
2494
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:26
2495
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:471
2496
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/views/html-export.php:27
2497
  msgid "Direct Debit"
2498
  msgstr "Lastschrift"
2499
 
2500
  # @ woocommerce-germanized
2501
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:118
2502
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:119
2503
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:273
2504
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:292
2505
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:497
2506
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:619
2507
  msgid "Account Holder"
2508
  msgstr "Kontoinhaber"
2509
 
2510
  # @ woocommerce-germanized
2511
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:123
2512
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:124
2513
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:274
2514
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:299
2515
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:505
2516
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:623
2517
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:715
2518
  msgid "IBAN"
2519
  msgstr "IBAN"
2520
 
2521
  # @ woocommerce-germanized
2522
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:128
2523
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:129
2524
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:275
2525
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:306
2526
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:627
2527
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:716
2528
  msgid "BIC/SWIFT"
2529
  msgstr "BIC/SWIFT"
2530
 
 
 
 
 
2531
  # @ woocommerce-germanized
2532
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:134
2533
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:313
2534
  msgid "Mandate Reference ID"
2535
  msgstr "Mandat-Referenznummer"
2536
 
@@ -2726,9 +2849,9 @@ msgstr ""
2726
  "Mail mit Ihren Daten als Bestätigung."
2727
 
2728
  # @ woocommerce-germanized
2729
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:196
2730
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:204
2731
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:336
2732
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:76
2733
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:83
2734
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:41
@@ -2736,9 +2859,9 @@ msgid "Mr."
2736
  msgstr "Herr"
2737
 
2738
  # @ woocommerce-germanized
2739
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:196
2740
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:204
2741
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:336
2742
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:76
2743
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:83
2744
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:42
@@ -2746,7 +2869,7 @@ msgid "Ms."
2746
  msgstr "Frau"
2747
 
2748
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:150
2749
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:195
2750
  msgid ""
2751
  "Please activate your account through clicking on the activation link "
2752
  "received via email."
@@ -2754,24 +2877,24 @@ msgstr ""
2754
  "Bitte aktivieren Sie Ihr Kundenkonto indem Sie auf den Link in der E-Mail "
2755
  "klicken."
2756
 
2757
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:158
2758
  #, php-format
2759
  msgid "Continue without creating an account? <a href=\"%s\">Click here</a>"
2760
  msgstr "Weiter zur Kasse ohne Kundenkonto? <a href=\"%s\">Hier klicken</a>"
2761
 
2762
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:160
2763
  msgid "Please create an account or login before continuing to checkout"
2764
  msgstr ""
2765
  "Bitte erstellen Sie ein Kundenkonto oder loggen Sie sich ein, bevor Sie zur "
2766
  "Kasse gehen"
2767
 
2768
  # @ woocommerce-germanized
2769
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:216
2770
  msgid "Thank you. You have successfully activated your account."
2771
  msgstr "Vielen Dank. Ihr Benutzerkonto wurde erfolgreich aktiviert."
2772
 
2773
  # @ woocommerce-germanized
2774
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:222
2775
  msgid "Sorry, but this activation code cannot be found."
2776
  msgstr "Sorry, dieser Aktivierungscode ist uns leider nicht bekannt."
2777
 
@@ -2878,7 +3001,7 @@ msgid "eKomi Options"
2878
  msgstr "eKomi"
2879
 
2880
  # @ woocommerce-germanized
2881
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-emails.php:296
2882
  msgctxt "revocation-form"
2883
  msgid "Forward your Revocation online"
2884
  msgstr "Widerruf online erklären"
@@ -2894,73 +3017,73 @@ msgstr ""
2894
  "WooCommerce Germanized installierst. Vielen Dank!"
2895
 
2896
  # @ woocommerce-germanized
2897
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:461
2898
  msgctxt "Page slug"
2899
  msgid "data-security"
2900
  msgstr "datenschutzbelehrung"
2901
 
2902
  # @ woocommerce-germanized
2903
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:462
2904
  msgctxt "Page title"
2905
  msgid "Data Security Statement"
2906
  msgstr "Datenschutzbelehrung"
2907
 
2908
  # @ woocommerce-germanized
2909
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:466
2910
  msgctxt "Page slug"
2911
  msgid "imprint"
2912
  msgstr "impressum"
2913
 
2914
  # @ woocommerce-germanized
2915
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:467
2916
  msgctxt "Page title"
2917
  msgid "Imprint"
2918
  msgstr "Impressum"
2919
 
2920
  # @ woocommerce-germanized
2921
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:471
2922
  msgctxt "Page slug"
2923
  msgid "terms"
2924
  msgstr "agb"
2925
 
2926
  # @ woocommerce-germanized
2927
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:472
2928
  msgctxt "Page title"
2929
  msgid "Terms & Conditions"
2930
  msgstr "AGB"
2931
 
2932
  # @ woocommerce-germanized
2933
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:476
2934
  msgctxt "Page slug"
2935
  msgid "revocation"
2936
  msgstr "widerrufsbelehrung"
2937
 
2938
  # @ woocommerce-germanized
2939
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:477
2940
  msgctxt "Page title"
2941
  msgid "Power of Revocation"
2942
  msgstr "Widerrufsbelehrung"
2943
 
2944
  # @ woocommerce-germanized
2945
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:481
2946
  msgctxt "Page slug"
2947
  msgid "shipping-methods"
2948
  msgstr "versandarten"
2949
 
2950
  # @ woocommerce-germanized
2951
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:482
2952
  msgctxt "Page title"
2953
  msgid "Shipping Methods"
2954
  msgstr "Versandarten"
2955
 
2956
  # @ woocommerce-germanized
2957
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:486
2958
  msgctxt "Page slug"
2959
  msgid "payment-methods"
2960
  msgstr "bezahlmoeglichkeiten"
2961
 
2962
  # @ woocommerce-germanized
2963
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:487
2964
  msgctxt "Page title"
2965
  msgid "Payment Methods"
2966
  msgstr "Zahlungsarten"
@@ -2974,8 +3097,8 @@ msgstr "%s Zahlungsgebühr"
2974
 
2975
  # @ woocommerce-germanized
2976
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:54
2977
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-order-functions.php:21
2978
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-template-functions.php:468
2979
  #, php-format
2980
  msgid "Plus %s forwarding fee (charged by the transport agent)"
2981
  msgstr "zzgl. %s Übermittlungsentgelt (direkt an den Zusteller)"
@@ -3389,7 +3512,7 @@ msgid "SEPA XML Bulk Export"
3389
  msgstr "SEPA XML Export"
3390
 
3391
  # @ woocommerce-germanized
3392
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:49
3393
  msgid ""
3394
  "[company_info]\n"
3395
  "debtee identification number: [company_identification_number]\n"
@@ -3457,119 +3580,119 @@ msgstr ""
3457
  "Bitte beachten Sie: Die Frist für die Vorabinformation der SEPA-Lastschrift "
3458
  "wird auf einen Tag verkürzt. "
3459
 
3460
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:135
3461
  msgid "SEPA XML Export"
3462
  msgstr "SEPA XML Export"
3463
 
3464
  # @ woocommerce-germanized
3465
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:229
3466
  #, php-format
3467
  msgid "Order %s"
3468
  msgstr "Bestellung %s"
3469
 
3470
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:254
3471
  msgid "Will be notified separately"
3472
  msgstr "Wird separat mitgeteilt"
3473
 
3474
  # @ woocommerce-germanized
3475
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:462
3476
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:79
3477
  msgid "Enable/Disable"
3478
  msgstr "Aktivieren/Deaktivieren"
3479
 
3480
  # @ woocommerce-germanized
3481
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:464
3482
  msgid "Enable Direct Debit Payment"
3483
  msgstr "Bezahlung per Lastschrift aktivieren"
3484
 
3485
  # @ woocommerce-germanized
3486
  # @ woocommerce
3487
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:468
3488
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:85
3489
  msgctxt "gateway"
3490
  msgid "Title"
3491
  msgstr "Bezeichnung"
3492
 
3493
  # @ woocommerce-germanized
3494
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:470
3495
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:87
3496
  msgid "This controls the title which the user sees during checkout."
3497
  msgstr ""
3498
  "Beschreibungstext, den Benutzer bei der Auswahl dieser Zahlungsart sehen."
3499
 
3500
  # @ woocommerce-germanized
3501
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:475
3502
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:92
3503
  msgid "Description"
3504
  msgstr "Beschreibung"
3505
 
3506
  # @ woocommerce-germanized
3507
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:477
3508
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:94
3509
  msgid "Payment method description that the customer will see on your checkout."
3510
  msgstr "Beschreibung der Zahlungsart, die Kunden auf deiner Website sehen."
3511
 
3512
  # @ woocommerce-germanized
3513
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:478
3514
  msgid "The order amount will be debited directly from your bank account."
3515
  msgstr ""
3516
  "Der Gesamtbestellbetrag wird per SEPA-Lastschrift direkt von Ihrem Konto "
3517
  "abgebucht."
3518
 
3519
  # @ woocommerce-germanized
3520
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:482
3521
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:99
3522
  msgid "Instructions"
3523
  msgstr "Anweisungen"
3524
 
3525
  # @ woocommerce-germanized
3526
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:484
3527
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:101
3528
  msgid "Instructions that will be added to the thank you page and emails."
3529
  msgstr "Anweisung, die zur „Danke“-Seite und zu E-Mails hinzugefügt werden."
3530
 
3531
  # @ woocommerce-germanized
3532
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:489
3533
  msgid "Debtee"
3534
  msgstr "Gläubiger Informationen"
3535
 
3536
  # @ woocommerce-germanized
3537
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:491
3538
  msgid "Insert your company information."
3539
  msgstr "Füge hier die Informationen zu deinem Unternehmen ein."
3540
 
3541
  # @ woocommerce-germanized
3542
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:493
3543
  msgid "Company Inc, John Doe Street, New York"
3544
  msgstr "Musterfirma GmbH, Musterstraße 12, 12203 Musterstadt"
3545
 
3546
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:499
3547
  msgid "Insert the bank account holder name."
3548
  msgstr "Füge hier den Namen des Kontoinhabers ein."
3549
 
3550
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:501
3551
  msgid "Company Inc"
3552
  msgstr "Muster GmbH"
3553
 
3554
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:507
3555
  msgid "Insert the bank account IBAN."
3556
  msgstr "Füge hier den IBAN deines Kontos ein."
3557
 
3558
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:512
3559
  msgid "BIC"
3560
  msgstr "BIC"
3561
 
3562
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:514
3563
  msgid "Insert the bank account BIC."
3564
  msgstr "Füge hier den BIC deines Kontos ein."
3565
 
3566
  # @ woocommerce-germanized
3567
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:519
3568
  msgid "Debtee identification number"
3569
  msgstr "Identifikationsnummer"
3570
 
3571
  # @ woocommerce-germanized
3572
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:521
3573
  #, php-format
3574
  msgid ""
3575
  "Insert your debtee indentification number. More information can be found <a "
@@ -3579,16 +3702,16 @@ msgstr ""
3579
  "Weitere Informationen zu dieser Nummer erhältst du <a href=\"%s\">hier</a>."
3580
 
3581
  # @ woocommerce-germanized
3582
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:525
3583
  msgid "Generate Mandate ID"
3584
  msgstr "Mandat-Referenz generieren"
3585
 
3586
  # @ woocommerce-germanized
3587
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:527
3588
  msgid "Automatically generate Mandate ID."
3589
  msgstr "Mandat-Referenznummer automatisch generieren."
3590
 
3591
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:528
3592
  msgid ""
3593
  "Automatically generate Mandate ID after order completion (based on Order ID)."
3594
  msgstr ""
@@ -3596,11 +3719,24 @@ msgstr ""
3596
  "basierend auf der Bestellnummer."
3597
 
3598
  # @ woocommerce-germanized
3599
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:532
 
 
 
 
 
 
 
 
 
 
 
 
 
3600
  msgid "Mandate ID Format"
3601
  msgstr "Mandat-Referenz Format"
3602
 
3603
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:534
3604
  msgid ""
3605
  "You may extend the Mandate ID format by adding a prefix and/or suffix. Use "
3606
  "{id} as placeholder to insert the automatically generated ID."
@@ -3609,12 +3745,12 @@ msgstr ""
3609
  "{id} als Platzhalter um die automatisch generierte Referenznummer einzufügen."
3610
 
3611
  # @ woocommerce-germanized
3612
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:538
3613
  msgid "Mandate Text"
3614
  msgstr "Lastschriftmandat"
3615
 
3616
  # @ woocommerce-germanized
3617
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:540
3618
  msgid ""
3619
  "This text will be populated with live order/checkout data. Will be used as "
3620
  "preview direct debit mandate and as email template text."
@@ -3625,23 +3761,23 @@ msgstr ""
3625
  "Verfügung gestellt."
3626
 
3627
  # @ woocommerce-germanized
3628
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:547
3629
  msgid "Enable \"agree to SEPA mandate\" checkbox"
3630
  msgstr "Aktiviere die Checkbox zur Bestätigung des Lastschriftmandates."
3631
 
3632
  # @ woocommerce-germanized
3633
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:549
3634
  msgid "Enable a checkbox linking to a SEPA direct debit mandate preview."
3635
  msgstr ""
3636
  "Aktiviere eine Checkbox, die zu einer Vorschau des Lastschrift-Mandats führt."
3637
 
3638
  # @ woocommerce-germanized
3639
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:553
3640
  msgid "Checkbox label"
3641
  msgstr "Checkbox Text"
3642
 
3643
  # @ woocommerce-germanized
3644
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:555
3645
  msgid ""
3646
  "Customize the checkbox label. Use {link}link name{/link} to insert the "
3647
  "preview link."
@@ -3650,20 +3786,20 @@ msgstr ""
3650
  "auf die Vorschau zu verlinken."
3651
 
3652
  # @ woocommerce-germanized
3653
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:556
3654
  msgid "I hereby agree to the {link}direct debit mandate{/link}."
3655
  msgstr "Hiermit erteile ich das {link}SEPA Lastschriftmandat{/link}."
3656
 
3657
  # @ woocommerce-germanized
3658
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:560
3659
  msgid "Mask IBAN"
3660
  msgstr "IBAN maskieren"
3661
 
3662
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:561
3663
  msgid "Mask the IBAN within emails."
3664
  msgstr "IBAN in E-Mails maskieren."
3665
 
3666
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:563
3667
  msgid ""
3668
  "This will lead to masked IBANs within emails (replaced by *). All but last 4 "
3669
  "digits will be masked."
@@ -3671,15 +3807,15 @@ msgstr ""
3671
  "Der IBAN wird in E-Mails (abgesehen von den letzten 4 Stellen) mit * "
3672
  "maskiert."
3673
 
3674
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:572
3675
  msgid "Remember"
3676
  msgstr "Bankdaten merken\t"
3677
 
3678
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:573
3679
  msgid "Remember account data for returning customers."
3680
  msgstr "Bankverbindung für registrierte Kunden speichern."
3681
 
3682
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:575
3683
  msgid "Save account data as user meta if user has/creates a customer account."
3684
  msgstr ""
3685
  "Speichert die Bankverbindung für registrierte Kunden in der user_meta "
@@ -3687,37 +3823,37 @@ msgstr ""
3687
  "eigenständig aus."
3688
 
3689
  # @ woocommerce-germanized
3690
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:658
3691
  msgid "Please insert your SEPA account data."
3692
  msgstr "Bitte fügen Sie Ihre SEPA Kontoinformationen ein."
3693
 
3694
  # @ woocommerce-germanized
3695
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:668
3696
  msgid "Your IBAN seems to be invalid."
3697
  msgstr "Ihr IBAN scheint nicht gültig zu sein."
3698
 
3699
  # @ woocommerce-germanized
3700
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:670
3701
  msgid "Your IBAN's country code doesn’t match with your billing country."
3702
  msgstr "Der Ländercode des IBANs stimmt nicht mit dem Rechnungsland überein."
3703
 
3704
  # @ woocommerce-germanized
3705
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:674
3706
  msgid "Your BIC seems to be invalid."
3707
  msgstr "Ihr BIC/SWIFT scheint nicht gültig zu sein."
3708
 
3709
  # @ woocommerce-germanized
3710
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:686
3711
  msgid "Please accept the direct debit mandate."
3712
  msgstr "Bitte erteilen Sie das SEPA Lastschriftmandat."
3713
 
3714
  # @ woocommerce-germanized
3715
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:717
3716
  msgid "is invalid"
3717
  msgstr "ist ungültig"
3718
 
3719
  # @ woocommerce-germanized
3720
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:755
3721
  msgid "Processing direct debit"
3722
  msgstr "Lastschriftverfahren vorbereiten"
3723
 
@@ -3777,7 +3913,7 @@ msgstr ""
3777
  # @ woocommerce-germanized
3778
  # @ woocommerce
3779
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:50
3780
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/woocommerce-germanized.php:549
3781
  msgid "Settings"
3782
  msgstr "Einstellungen"
3783
 
@@ -4355,7 +4491,7 @@ msgstr "Zeigt deine Trusted Shops Bewertungen als Grafik an."
4355
  # @ woocommerce-germanized
4356
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-reviews.php:21
4357
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-reviews.php:25
4358
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-reviews.php:47
4359
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-rich-snippets.php:45
4360
  msgctxt "trusted-shops"
4361
  msgid "Trusted Shops Reviews"
@@ -4399,8 +4535,8 @@ msgstr "Datenschutzbelehrung"
4399
  # @ woocommerce-germanized
4400
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-core-functions.php:86
4401
  msgid ""
4402
- "Because of the small business owner state according to &#167;19 UStG the "
4403
- "seller charge no sales tax, and therefore do not show it."
4404
  msgstr "Kein Mehrwertsteuerausweis, da Kleinunternehmer nach §19 (1) UStG."
4405
 
4406
  # @ woocommerce-germanized
@@ -4419,13 +4555,18 @@ msgstr "Bestellung bearbeiten"
4419
  msgid "Choose a Payment Gateway"
4420
  msgstr "Zahlungsart auswählen"
4421
 
 
 
 
 
 
4422
  # @ woocommerce
4423
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-template-functions.php:378
4424
  msgid "Place order"
4425
  msgstr "Jetzt kaufen"
4426
 
4427
  # @ woocommerce-germanized
4428
- #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-template-functions.php:449
4429
  msgid "Please accept the creation of a new customer account"
4430
  msgstr "Bitte akzeptieren Sie die Erstellung eines neuen Kundenkontos"
4431
 
2
  msgstr ""
3
  "Project-Id-Version: WooCommerce Germanized v1.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-11-11 15:47+0100\n"
6
+ "PO-Revision-Date: 2016-11-11 15:49+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "Language: de_DE\n"
92
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:172
93
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php:72
94
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:269
95
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/woocommerce-germanized.php:791
96
  msgid "incl. VAT"
97
  msgstr "inkl. MwSt."
98
 
105
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:174
106
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php:72
107
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:269
108
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/woocommerce-germanized.php:791
109
  #, php-format
110
  msgid "incl. %s%% VAT"
111
  msgstr "inkl. %s%% MwSt."
147
 
148
  # @ woocommerce-germanized
149
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:42
150
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:216
151
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-core-functions.php:49
152
  msgid "Terms & Conditions"
153
  msgstr "AGB"
154
 
155
  # @ woocommerce-germanized
156
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:43
157
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:227
158
  msgid "Power of Revocation"
159
  msgstr "Widerrufsbelehrung"
160
 
161
  # @ woocommerce-germanized
162
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:44
163
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:238
164
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-core-functions.php:55
165
  msgid "Imprint"
166
  msgstr "Impressum"
167
 
168
  # @ woocommerce-germanized
169
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:45
170
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:249
171
  msgid "Data Security Statement"
172
  msgstr "Datenschutzbelehrung"
173
 
174
  # @ woocommerce-germanized
175
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:46
176
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:260
177
  msgid "Payment Methods"
178
  msgstr "Zahlungarten"
179
 
180
  # @ woocommerce-germanized
181
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin-status.php:47
182
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:271
183
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1056
184
  msgid "Shipping Methods"
185
  msgstr "Versandarten"
186
 
200
  msgid "Go to WooCommerce Germanized Settings"
201
  msgstr "zu den WooCommerce Germanized Einstellungen"
202
 
203
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:64
204
+ msgid "Parcel Delivery Data Transfer:"
205
+ msgstr "Paketdienstleister Datenweitergabe:"
206
+
207
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:65
208
+ msgid "allowed"
209
+ msgstr "akzeptiert"
210
+
211
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:65
212
+ msgid "not allowed"
213
+ msgstr "akzeptiert"
214
+
215
  # @ woocommerce-germanized
216
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:106
217
  msgid "WooCommerce Status"
218
  msgstr "WooCommerce Status"
219
 
220
  # @ woocommerce-germanized
221
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:106
222
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-page-status.php:16
223
  msgid "System Status"
224
  msgstr "Systemstatus"
225
 
226
  # @ woocommerce-germanized
227
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:163
228
  msgid "Optional Email Content"
229
  msgstr "Optionaler E-Mail Inhalt"
230
 
231
  # @ woocommerce-germanized
232
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:172
233
  msgid "Add content which will be replacing default page content within emails."
234
  msgstr ""
235
  "Fülle dieses Feld aus um einen abweichenden E-Mail Anhangstext für diese "
236
  "Seite zu bestimmen."
237
 
238
  # @ woocommerce-germanized
239
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:182
240
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:142
241
  msgid "Optional Mini Description"
242
  msgstr "Warenkorb Kurzbeschreibung"
243
 
244
  # @ woocommerce-germanized
245
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:199
246
  msgid ""
247
  "This content will be shown as short product description within checkout and "
248
  "emails."
251
  "Produkt Kurzbeschreibung angezeigt."
252
 
253
  # @ woocommerce-germanized
254
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/class-wc-gzd-admin.php:316
255
  msgid "Complaints Procedure"
256
  msgstr "Beschwerdeverfahren"
257
 
258
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:46
259
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:44
260
  msgid "Service"
261
  msgstr "Dienstleistung"
262
 
263
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:46
264
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:45
265
  msgid "Service products do not sell physical products."
266
  msgstr "Dienstleistungen werden nicht in physikalischer Form verkauft."
267
 
268
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:86
269
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:58
270
  msgid "Sale Label"
271
  msgstr "Regulärer Preishinweis"
272
 
277
  msgstr "Gleiche wie übergeordnet"
278
 
279
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:96
280
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:59
281
  msgid "Sale Regular Label"
282
  msgstr "Neuer Preis Hinweis"
283
 
284
  # @ woocommerce-germanized
285
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:114
286
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:74
287
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:708
288
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:757
289
  msgid "Product Units"
290
  msgstr "Produkteinheiten"
291
 
292
  # @ woocommerce-germanized
293
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:114
294
  msgid ""
295
  "Number of units included per default product price. Example: 1000 ml. Leave "
296
  "blank to use parent value."
299
  "Frei lassen um den Wert des Eltern-Produkts zu verwenden."
300
 
301
  # @ woocommerce-germanized
302
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:118
303
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:93
304
  msgid "Calculation"
305
  msgstr "Berechnung"
306
 
307
  # @ woocommerce-germanized
308
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:121
309
  msgid "Calculate unit prices automatically"
310
  msgstr "Grundpreis automatisch berechnen."
311
 
312
  # @ woocommerce-germanized
313
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:126
314
  msgid "Regular Unit Price"
315
  msgstr "Einheitspreis"
316
 
317
  # @ woocommerce-germanized
318
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:130
319
  msgid "Sale Unit Price"
320
  msgstr "Angebots-Einheitspreis"
321
 
322
  # @ woocommerce-germanized
323
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:136
324
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:114
325
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:28
326
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:181
327
  msgid "Delivery Time"
328
  msgstr "Lieferzeit"
329
 
330
  # @ woocommerce-germanized
331
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:137
332
  msgid "Same as parent"
333
  msgstr "Gleiche wie übergeordnet"
334
 
335
  # @ woocommerce-germanized
336
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:58
337
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:59
338
  msgid "Select Price Label"
339
  msgstr "Preishinweis auswählen"
340
 
341
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:58
342
  msgid ""
343
  "If the product is on sale you may want to show a price label right before "
344
  "outputting the old price to inform the customer."
348
  "Preis). Mit diesem Hinweis kannst du genau festlegen, um welchen Preis es "
349
  "sich dabei handelte (z.B. UVP)."
350
 
351
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:59
352
  msgid ""
353
  "If the product is on sale you may want to show a price label right before "
354
  "outputting the new price to inform the customer."
358
  "neuer Preis)."
359
 
360
  # @ woocommerce-germanized
361
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:73
362
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-products-controller.php:103
363
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:66
364
  msgid "Unit"
365
  msgstr "Einheit"
366
 
367
  # @ woocommerce-germanized
368
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:73
369
  msgid "Select unit"
370
  msgstr "Einheit auswählen"
371
 
372
  # @ woocommerce-germanized
373
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:73
374
  msgid "Needed if selling on a per unit basis"
375
  msgstr "Notwendig falls auf pro-Einheit-Basis verkauft werden soll"
376
 
377
  # @ woocommerce-germanized
378
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:74
379
  msgid "Number of units included per default product price. Example: 1000 ml."
380
  msgstr ""
381
  "Anzahl der Produkteinheiten auf Basis des Produktpreises. Beispiel: 1000 ml."
382
 
383
  # @ woocommerce-germanized
384
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:75
385
  msgid "Base Price Units"
386
  msgstr "Grundpreiseinheiten"
387
 
388
  # @ woocommerce-germanized
389
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:75
390
  msgid ""
391
  "Base price units. Example base price: 0,99 € / 100 ml. Insert 100 as base "
392
  "price unit amount."
395
  "hier 100 als Grundpreiseinheiten ein."
396
 
397
  # @ woocommerce-germanized
398
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:93
399
  msgid "Calculate base prices automatically."
400
  msgstr "Grundpreis automatisch berechnen."
401
 
402
  # @ woocommerce-germanized
403
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:95
404
  msgid "Regular Base Price"
405
  msgstr "Regulärer Grundpreis"
406
 
407
  # @ woocommerce-germanized
408
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:96
409
  msgid "Sale Base Price"
410
  msgstr "Angebotsgrundpreis"
411
 
412
  # @ woocommerce-germanized
413
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:115
414
  msgid "Search for a delivery time&hellip;"
415
  msgstr "Lieferzeit suchen&hellip;"
416
 
417
  # @ woocommerce-germanized
418
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:121
419
  msgid "Free shipping?"
420
  msgstr "Versand kostenlos?"
421
 
422
  # @ woocommerce-germanized
423
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:121
424
  msgid "This option disables the \"plus shipping costs\" notice on product page"
425
  msgstr ""
426
  "Deaktiviert den Hinweis \"zzgl. Versandkosten\". Ohne Auswirkungen auf die "
486
 
487
  # @ woocommerce-germanized
488
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:136
489
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:623
490
  msgid "General"
491
  msgstr "Allgemein"
492
 
580
  "Kunden den Abbrechen-Link verwendet. Diese Option verhindert den manuellen "
581
  "Abbruch einer Bestellung durch den Kunden."
582
 
583
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:191
584
+ msgid "Disallow gateway choosing"
585
+ msgstr "Wechsel der Zahlungsart"
586
+
587
  # @ woocommerce-germanized
588
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:192
589
+ msgid "Don’t allow customers to change the payment gateway after ordering."
590
+ msgstr ""
591
+ "Wechsel der Zahlungsart nach der Bestellung durch den Kunden verhindern."
592
+
593
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:193
594
+ msgid ""
595
+ "Customers paying through a gateway which allows later payment (e.g. PayPal) "
596
+ "will find a link within their customer account which redirects them to a pay "
597
+ "page. This page offers the possibility to choose another gateway than before "
598
+ "which may lead to further problems e.g. additional gateway costs etc. which "
599
+ "would require a new order submittal. This option makes sure the customer "
600
+ "gets redirected directly to the gateways payment page, e.g. to PayPal."
601
+ msgstr ""
602
+ "Kunden die eine Zahlungsart auswählen bei der man später bezahlen kann (z.B. "
603
+ "PayPal) finden im Kundenbereich einen Link \"bezahlen\" der sie auf eine "
604
+ "Seite weiterleitet, auf der man nachträglich die Zahlungsart für die "
605
+ "Bestellung ändern kann. Diese Auswahl führt u.U. zu Problemen wie dem "
606
+ "Hinzufügen von Zahlungsgebühren, was im Grunde eher eine Neubestellung "
607
+ "bedeuten würde. Diese Option verhindert die nachträgliche Änderung der "
608
+ "Zahlungsart und leitet den Kunden direkt auf die Bezahlseite, d.h. z.B. zu "
609
+ "PayPal weiter."
610
+
611
+ # @ woocommerce-germanized
612
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:201
613
  msgid "Contract"
614
  msgstr "Kaufvertrag"
615
 
616
  # @ woocommerce-germanized
617
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:201
618
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:508
619
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:520
620
  #, php-format
621
  msgid "%sUpgrade to %spro%s%s to unlock this feature and get premium support."
622
  msgstr ""
624
  "erhalte professionellen Support."
625
 
626
  # @ woocommerce-germanized
627
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:213
628
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:141
629
  msgid "Legal Pages"
630
  msgstr "Rechtlich relevante Seiten"
631
 
632
  # @ woocommerce-germanized
633
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:217
634
  msgid "This page should contain your terms & conditions."
635
  msgstr "Diese Seite sollte deine Allgemeinen Geschäftsbedingungen enthalten."
636
 
637
  # @ woocommerce-germanized
638
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:223
639
  #, php-format
640
  msgid "Don't have terms & conditions yet? <a href=\"%s\">Generate now</a>!"
641
  msgstr "Du hast noch keine AGB? <a href=\"%s\">Jetzt generieren</a>!"
642
 
643
  # @ woocommerce-germanized
644
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:228
645
  msgid ""
646
  "This page should contain information regarding your customer's Right of "
647
  "Revocation."
651
  "[revocation_form]"
652
 
653
  # @ woocommerce-germanized
654
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:234
655
  #, php-format
656
  msgid "Don't have a revocation page yet? <a href=\"%s\">Generate now</a>!"
657
  msgstr ""
658
  "Du hast noch keine Widerrufsbelehrung? <a href=\"%s\">Jetzt generieren</a>!"
659
 
660
  # @ woocommerce-germanized
661
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:239
662
  msgid "This page should contain an imprint with your company's information."
663
  msgstr ""
664
  "Diese Seite sollte das Impressum d.h. die Informationen (gemäß TMG) zu "
665
  "deinem Unternehmen enthalten."
666
 
667
  # @ woocommerce-germanized
668
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:250
669
  msgid ""
670
  "This page should contain information regarding your data security policy."
671
  msgstr "Diese Seite sollte deine Datenschutzbelehrung enthalten."
672
 
673
  # @ woocommerce-germanized
674
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:261
675
  msgid ""
676
  "This page should contain information regarding the Payment Methods that are "
677
  "chooseable during checkout."
681
  "[payment_methods_info]"
682
 
683
  # @ woocommerce-germanized
684
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:272
685
  msgid ""
686
  "This page should contain information regarding shipping methods that are "
687
  "chooseable during checkout."
690
  "Versandarten bereitstellen."
691
 
692
  # @ woocommerce-germanized
693
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:283
694
  msgid "Complaints"
695
  msgstr "Beschwerden"
696
 
697
  # @ woocommerce-germanized
698
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:283
699
  #, php-format
700
  msgid ""
701
  "Options regarding new EU online dispute resolution platform (OS). Read more "
706
  "Pflichten."
707
 
708
  # @ woocommerce-germanized
709
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:286
710
  msgid "Complaints Procedure Text"
711
  msgstr "Hinweistext"
712
 
713
  # @ woocommerce-germanized
714
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:287
715
  msgid ""
716
  "Customize the text produced by the shortcode [gzd_complaints] to your needs. "
717
  "This text is to be meant to inform your customer about the existance of a "
723
  "informieren. Du solltest diesen Shortcode z.B. in deinem Impressum einbinden."
724
 
725
  # @ woocommerce-germanized
726
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:289
727
  msgid ""
728
  "Online dispute resolution in accordance with Art. 14 (1) ODR-VO: The "
729
  "european commission provides a platform for online dispute resolution (OS) "
734
  "Sie unter http://ec.europa.eu/consumers/odr/ finden."
735
 
736
  # @ woocommerce-germanized
737
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:296
738
  msgid "Shortcode Status"
739
  msgstr "Shortcode Status"
740
 
741
  # @ woocommerce-germanized
742
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:299
743
  msgid "Please choose a page as your imprint first."
744
  msgstr "Bitte hinterlege zuerst eine Seite als dein Impressum."
745
 
746
  # @ woocommerce-germanized
747
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:299
748
  msgid "Found"
749
  msgstr "Eingebunden"
750
 
751
  # @ woocommerce-germanized
752
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:299
753
  msgid "Not found within your imprint"
754
  msgstr "Nicht in deinem Impressum gefunden"
755
 
756
  # @ woocommerce-germanized
757
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:299
758
  msgid "Append it now"
759
  msgstr "Jetzt hinzufügen"
760
 
761
  # @ woocommerce-germanized
762
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:304
763
  msgid "Delivery Times"
764
  msgstr "Lieferzeiten"
765
 
766
  # @ woocommerce-germanized
767
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:307
768
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:42
769
  msgid "Default Delivery Time"
770
  msgstr "Standard-Lieferzeit"
771
 
772
  # @ woocommerce-germanized
773
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:308
774
  msgid ""
775
  "This delivery time will be added to every product if no delivery time has "
776
  "been chosen individually"
779
  "zugeordnet wurde"
780
 
781
  # @ woocommerce-germanized
782
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:315
783
  msgid "Manage Delivery Times"
784
  msgstr "Lieferzeiten verwalten"
785
 
786
  # @ woocommerce-germanized
787
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:319
788
  msgid "Delivery Time Text"
789
  msgstr "Lieferzeit Text"
790
 
791
  # @ woocommerce-germanized
792
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:320
793
  msgid ""
794
  "This text will be used to indicate delivery time for products. Use "
795
  "{delivery_time} as placeholder."
798
  "{delivery_time} als Platzhalter verwenden."
799
 
800
  # @ woocommerce-germanized
801
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:325
802
  msgid "Delivery time: {delivery_time}"
803
  msgstr "Lieferzeit: {delivery_time}"
804
 
805
  # @ woocommerce-germanized
806
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:330
807
  msgid "Sale Price Labels"
808
  msgstr "Preishinweise"
809
 
810
  # @ woocommerce-germanized
811
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:333
812
  msgid "Default Sale Label"
813
  msgstr "Standard-Streichpreis-Hinweis"
814
 
815
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:334
816
  msgid ""
817
  "Choose whether you would like to have a default sale price label to inform "
818
  "the customer about the regular price (e.g. Recommended Retail Price)."
821
  "Kunden auf den alten Preis (bei reduzierten Produkten, sog. Streichpreis) "
822
  "hinweist (z.B. UVP)."
823
 
824
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:341
825
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:353
826
  msgid "Manage Price Labels"
827
  msgstr "Preishinweise verwalten"
828
 
829
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:345
830
  msgid "Default Sale Regular Label"
831
  msgstr "Standard-Angebotspreis-Hinweis"
832
 
833
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:346
834
  msgid ""
835
  "Choose whether you would like to have a default sale price regular label to "
836
  "inform the customer about the sale price (e.g. New Price)."
840
  "hinweist (z.B. Unser neuer Preis)."
841
 
842
  # @ woocommerce-germanized
843
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:359
844
  msgid "Shipping Costs"
845
  msgstr "Versandkosten"
846
 
847
  # @ woocommerce-germanized
848
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:362
849
  msgid "Shipping Costs Text"
850
  msgstr "Versandkosten Text"
851
 
852
  # @ woocommerce-germanized
853
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:363
854
  msgid ""
855
  "This text will be used to inform the customer about shipping costs. Use "
856
  "{link}{/link} to insert link to shipping costs page."
860
  "zur Versandkosten-Seite einzufügen."
861
 
862
  # @ woocommerce-germanized
863
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:368
864
  msgid "plus {link}Shipping Costs{/link}"
865
  msgstr "zzgl. {link}Versandkosten{/link}"
866
 
867
  # @ woocommerce-germanized
868
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:372
869
  msgid "Free Shipping Text"
870
  msgstr "Kostenloser Versand Text"
871
 
872
  # @ woocommerce-germanized
873
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:373
874
  msgid ""
875
  "This text will be used to inform the customer about free shipping. Leave "
876
  "empty to disable notice. Use {link}{/link} to insert link to shipping costs "
881
  "Versandkosten-Seite einzufügen."
882
 
883
  # @ woocommerce-germanized
884
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:382
885
  msgid "Shipping Costs Tax"
886
  msgstr "Steuerberechnung"
887
 
888
  # @ woocommerce-germanized
889
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:383
890
  msgid "Enable better taxation for shpping costs?"
891
  msgstr "Genauere Steuerberechnung für Versandkosten aktivieren?"
892
 
893
  # @ woocommerce-germanized
894
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:387
895
  #, php-format
896
  msgid ""
897
  "By choosing this option shipping cost taxation will be calculated based on "
905
  "Bruttobeträge. Hier ein kleines Beispiel: %s"
906
 
907
  # @ woocommerce-germanized
908
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:391
909
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:413
910
  msgid "Force Tax Calculation"
911
  msgstr "Steuerberechnung erzwingen"
912
 
913
  # @ woocommerce-germanized
914
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:392
915
  msgid "Force shipping costs tax calculation for every method?"
916
  msgstr "Erzwinge die Besteuerung für Versandkosten für jede Versandart?"
917
 
918
  # @ woocommerce-germanized
919
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:396
920
  msgid ""
921
  "This option will overwrite settings for each individual shipping method to "
922
  "force tax calculation (instead of only calculating tax for those methods "
926
  "Versandarten und erzwingt die Steuerberechnung."
927
 
928
  # @ woocommerce-germanized
929
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:401
930
  msgid "Fees"
931
  msgstr "Gebühren"
932
 
933
  # @ woocommerce-germanized
934
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:404
935
  msgid "Fee Tax"
936
  msgstr "Steuerberechnung"
937
 
938
  # @ woocommerce-germanized
939
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:405
940
  msgid "Enable better taxation for fees?"
941
  msgstr "Genauere Steuerberechnung für Gebühren aktivieren?"
942
 
943
  # @ woocommerce-germanized
944
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:409
945
  msgid ""
946
  "By choosing this option fee taxation will be calculated based on tax rates "
947
  "within cart. See shipping costs taxation for more information."
952
  "Nettobeträge in Bruttobeträge an."
953
 
954
  # @ woocommerce-germanized
955
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:414
956
  msgid "Force fee tax calculation for every fee?"
957
  msgstr "Berechnung der Steuern für Gebühren erzwingen?"
958
 
959
  # @ woocommerce-germanized
960
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:418
961
  msgid ""
962
  "This option will overwrite settings for each individual fee to force tax "
963
  "calculation (instead of only calculating tax for those fees which are "
967
  "Steuerberechnung."
968
 
969
  # @ woocommerce-germanized
970
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:423
971
  msgid "Customers"
972
  msgstr "Kunden"
973
 
974
  # @ woocommerce-germanized
975
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:426
976
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:560
977
  msgid "Checkbox"
978
  msgstr "Checkbox"
979
 
980
  # @ woocommerce-germanized
981
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:427
982
  msgid "Add a checkbox to customer registration form."
983
  msgstr "Füge eine Checkbox zum Formular für die Kundenregistrierung hinzu."
984
 
985
  # @ woocommerce-germanized
986
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:434
987
  msgid "Checkbox text"
988
  msgstr "Checkbox Text"
989
 
990
  # @ woocommerce-germanized
991
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:435
992
  msgid ""
993
  "Choose a Plain Text which will be shown as checkbox text for customer "
994
  "account creation. Use {term_link}{/term_link}, {data_security_link}{/"
1002
  "Hinweisseiten."
1003
 
1004
  # @ woocommerce-germanized
1005
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:437
1006
  msgid ""
1007
  "Yes, I’d like create a new account and have read and understood the "
1008
  "{data_security_link}data privacy statement{/data_security_link}."
1011
  "{data_security_link}Datenschutzerklärung{/data_security_link}."
1012
 
1013
  # @ woocommerce-germanized
1014
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:444
1015
  msgid "Checkout"
1016
  msgstr "Kasse"
1017
 
1018
  # @ woocommerce-germanized
1019
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:445
1020
  msgid ""
1021
  "Replace default WooCommerce text regarding account creation during checkout."
1022
  msgstr ""
1023
  "Ersetze den WooCommerce Text (Kundenkonto erstellen?) durch den o.g. Hinweis."
1024
 
1025
  # @ woocommerce-germanized
1026
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:446
1027
  msgid ""
1028
  "Use the text from above instead of the default WooCommerce text regarding "
1029
  "account creation during checkout. This checkbox is only show if you have "
1035
  "zulässt."
1036
 
1037
  # @ woocommerce-germanized
1038
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:453
1039
  msgid "Customer Double Opt In"
1040
  msgstr "Double Opt-In"
1041
 
1042
  # @ woocommerce-germanized
1043
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:454
1044
  msgid "Enable customer double opt in on registration?"
1045
  msgstr "Double Opt-In Verfahren für Kundenkonten aktivieren?"
1046
 
1047
  # @ woocommerce-germanized
1048
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:455
1049
  #, php-format
1050
  msgid ""
1051
  "If customer chooses to create a customer account an email with an activation "
1059
  "Verfahren ist laut Amtsgericht Berlin Pankow/Weißensee notwendig. Mehr "
1060
  "Informationen findest du <a href=\"%s\" target=\"_blank\">hier</a>."
1061
 
1062
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:462
1063
  msgid "Disable Login and Checkout"
1064
  msgstr "Login und Checkout"
1065
 
1066
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:463
1067
  msgid "Disable login and checkout for unactivated customers."
1068
  msgstr "Deaktiviere den Login und Checkout für inaktive Kunden."
1069
 
1070
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:464
1071
  msgid ""
1072
  "Customers that did not click on the activation link will not be able to "
1073
  "complete checkout nor login to their account."
1077
  "werden."
1078
 
1079
  # @ woocommerce-germanized
1080
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:471
1081
  msgid "Delete Unactivated After"
1082
  msgstr "Unaktivierte löschen nach"
1083
 
1084
  # @ woocommerce-germanized
1085
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:472
1086
  msgid ""
1087
  "This will make sure unactivated customer accounts will be deleted after X "
1088
  "days. Set to 0 if you don't want to automatically delete unactivated "
1093
  "setze den Wert auf 0."
1094
 
1095
  # @ woocommerce-germanized
1096
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:473
1097
  msgid "days"
1098
  msgstr "Tagen"
1099
 
1100
  # @ woocommerce-germanized
1101
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:482
1102
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-core-functions.php:52
1103
  msgid "Right of Recission"
1104
  msgstr "Widerrufsrecht"
1105
 
1106
  # @ woocommerce-germanized
1107
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:485
1108
  msgid "Revocation Address"
1109
  msgstr "Widerruf richten an"
1110
 
1111
  # @ woocommerce-germanized
1112
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:486
1113
  msgid ""
1114
  "Type in an address, telephone/telefax number, email address which is to be "
1115
  "used as revocation address"
1118
  "die deine Kunden ihren Widerruf richten sollen"
1119
 
1120
  # @ woocommerce-germanized
1121
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:495
1122
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:81
1123
  msgid "Virtual VAT"
1124
  msgstr "USt. Änderung 2015"
1125
 
1126
  # @ woocommerce-germanized
1127
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:498
1128
  msgid "Enable Virtual VAT"
1129
  msgstr "USt. Anpassung aktivieren"
1130
 
1131
  # @ woocommerce-germanized
1132
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:499
1133
  msgid ""
1134
  "Enable if you want to charge your customer's countries' VAT for virtual "
1135
  "products."
1137
  "Für virtuelle Produkte den USt.-Satz des Dienstleistungsempfängers berechnen."
1138
 
1139
  # @ woocommerce-germanized
1140
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:503
1141
  #, php-format
1142
  msgid ""
1143
  "New EU VAT rule applies on 01.01.2015. Make sure that every digital or "
1160
  "dazu findest du <a href=\"%s\" target=\"_blank\">hier</a>."
1161
 
1162
  # @ woocommerce-germanized
1163
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:508
1164
  msgctxt "invoices"
1165
  msgid "Invoices"
1166
  msgstr "Rechnungen"
1167
 
1168
  # @ woocommerce-germanized
1169
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:520
1170
  msgid "VAT"
1171
  msgstr "Umsatzsteuer"
1172
 
1173
  # @ woocommerce-germanized
1174
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:555
1175
  #, php-format
1176
  msgid "Attach %s"
1177
  msgstr "%s"
1178
 
1179
  # @ woocommerce-germanized
1180
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:556
1181
  #, php-format
1182
  msgid "Attach %s to the following email templates"
1183
  msgstr "%s an die folgenden E-Mail Templates anfügen"
1184
 
1185
  # @ woocommerce-germanized
1186
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:569
1187
  msgid "E-Mails"
1188
  msgstr "E-Mails"
1189
 
1190
  # @ woocommerce-germanized
1191
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:569
1192
  msgid ""
1193
  "Use drag & drop to customize attachment order. Don't forget to save your "
1194
  "changes."
1197
  "beeinflussen und speichere anschließend deine Änderungen."
1198
 
1199
  # @ woocommerce-germanized
1200
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:586
1201
  msgid "Email Attachment Options"
1202
  msgstr "PDF Anhang"
1203
 
1204
  # @ woocommerce-germanized
1205
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:586
1206
  #, php-format
1207
  msgid ""
1208
  "Want to attach automatically generated PDF files to emails instead of plain "
1212
  "%sUpgrade zur %spro%s Version%s"
1213
 
1214
  # @ woocommerce-germanized
1215
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:609
1216
  msgid "Downloadable Product"
1217
  msgstr "Herunterladbares Produkt"
1218
 
1219
  # @ woocommerce-germanized
1220
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:610
1221
  msgid "Virtual Product"
1222
  msgstr "Virtuelles Produkt"
1223
 
1224
  # @ woocommerce-germanized
1225
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:626
1226
  msgid "Add to Cart"
1227
  msgstr "Zum Warenkorb Button"
1228
 
1229
  # @ woocommerce-germanized
1230
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:627
1231
  msgid "Show add to cart button on listings?"
1232
  msgstr "Den zum Warenkorb Button in Produktlisten darstellen?"
1233
 
1234
  # @ woocommerce-germanized
1235
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:631
1236
  msgid ""
1237
  "unset this option if you don't want to show the add to cart button within "
1238
  "the product listings"
1241
  "von Produktauflistungen darstellen möchten"
1242
 
1243
  # @ woocommerce-germanized
1244
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:635
1245
  msgid "Link to Details"
1246
  msgstr "Verlinkung zu Produktdetails"
1247
 
1248
  # @ woocommerce-germanized
1249
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:636
1250
  msgid ""
1251
  "Want to link to product details page instead of add to cart within listings?"
1252
  msgstr "Zum Warenkorb Button mit Button zur Produktdetail-Seite ersetzen?"
1253
 
1254
  # @ woocommerce-germanized
1255
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:640
1256
  msgid ""
1257
  "Decide whether you like to link to your product's details page instead of "
1258
  "displaying an add to cart button within product listings."
1262
  "diese Option."
1263
 
1264
  # @ woocommerce-germanized
1265
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:644
1266
  msgid "Product Details Text"
1267
  msgstr "Produktdetails Text"
1268
 
1269
  # @ woocommerce-germanized
1270
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:646
1271
  msgid "Details"
1272
  msgstr "Details"
1273
 
1274
  # @ woocommerce-germanized
1275
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:648
1276
  msgid ""
1277
  "If you have chosen to link to product details page instead of add to cart "
1278
  "URL you may want to change the button text."
1282
  "einen Button-Text vergeben."
1283
 
1284
  # @ woocommerce-germanized
1285
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:653
1286
  msgid "Digital Delivery Time Text"
1287
  msgstr "Lieferzeit Digital"
1288
 
1289
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:657
1290
  msgid ""
1291
  "Enter a text which will be shown as digital delivery time text (replacement "
1292
  "for default digital time on digital products)."
1296
  "lassen."
1297
 
1298
  # @ woocommerce-germanized
1299
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:662
1300
  msgid "Notice Footer"
1301
  msgstr "Hinweise im Footer"
1302
 
1303
  # @ woocommerce-germanized
1304
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:663
1305
  msgid "Show a global VAT notice within footer"
1306
  msgstr "Einen seitenübergreifenden Hinweis bzgl. der MwSt. im Footer einfügen."
1307
 
1308
  # @ woocommerce-germanized
1309
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:671
1310
  msgid "Show a global sale price notice within footer"
1311
  msgstr ""
1312
  "Einen seitenübergreifenden Hinweis bzgl. reduzierter Preise im Footer "
1313
  "einfügen."
1314
 
1315
  # @ woocommerce-germanized
1316
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:680
1317
  msgid "Products"
1318
  msgstr "Produkt"
1319
 
1320
  # @ woocommerce-germanized
1321
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:683
1322
  msgid "Show within Product Listings"
1323
  msgstr "In Produktlisten"
1324
 
1325
  # @ woocommerce-germanized
1326
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:684
1327
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:733
1328
  msgid "Shipping Costs notice"
1329
  msgstr "Versandkosten-Hinweis"
1330
 
1331
  # @ woocommerce-germanized
1332
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:692
1333
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:741
1334
  msgid "Tax Info"
1335
  msgstr "MwSt. Hinweis"
1336
 
1337
  # @ woocommerce-germanized
1338
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:700
1339
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:749
1340
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:804
1341
  msgid "Base Price"
1342
  msgstr "Grundpreis"
1343
 
1344
  # @ woocommerce-germanized
1345
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:716
1346
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:765
1347
  msgid "Delivery Time Notice"
1348
  msgstr "Lieferzeiten-Hinweis"
1349
 
1350
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:724
1351
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:773
1352
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:93
1353
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-post-types.php:95
1354
  msgid "Price Labels"
1355
  msgstr "Preishinweise"
1356
 
1357
  # @ woocommerce-germanized
1358
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:732
1359
  msgid "Show on Product Detail Page"
1360
  msgstr "Auf der Produktseite"
1361
 
1362
  # @ woocommerce-germanized
1363
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:781
1364
  msgid "Hide Shipping Costs Notice"
1365
  msgstr "Versandkosten ausblenden"
1366
 
1367
  # @ woocommerce-germanized
1368
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:782
1369
  msgid ""
1370
  "Select product types for which you might want to disable the shipping costs "
1371
  "notice."
1374
  "möchtest."
1375
 
1376
  # @ woocommerce-germanized
1377
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:792
1378
  msgid "Hide Delivery Time Notice"
1379
  msgstr "Lieferzeiten ausblenden"
1380
 
1381
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:793
1382
  msgid ""
1383
  "Select product types for which you might want to disable the delivery time "
1384
  "notice."
1387
  "möchtest."
1388
 
1389
  # @ woocommerce-germanized
1390
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:807
1391
  msgid "Base Price Text"
1392
  msgstr "Grundpreis Text"
1393
 
1394
  # @ woocommerce-germanized
1395
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:808
1396
  msgid ""
1397
  "This text will be used to display the base price. Use {price} to insert the "
1398
  "price. If you want to specifically format base price output use {base}, "
1404
  "{base_price} für die einzelnen Elemente."
1405
 
1406
  # @ woocommerce-germanized
1407
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:813
1408
  msgid "{price}"
1409
  msgstr "{price}"
1410
 
1411
  # @ woocommerce-germanized
1412
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:817
1413
  msgid "Variable Base Price"
1414
  msgstr "Variabler Grundpreis"
1415
 
1416
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:818
1417
  msgid "Enable price range base prices for variable products."
1418
  msgstr "Aktiviere von-bis-Grundpreise für variable Produkte."
1419
 
1420
  # @ woocommerce-germanized
1421
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:825
1422
  msgid "Product Units Text"
1423
  msgstr "Produkteinheiten Text"
1424
 
1425
  # @ woocommerce-germanized
1426
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:826
1427
  msgid ""
1428
  "This text will be used to display the product units. Use {product_units} to "
1429
  "insert the amount of product units. Use {unit} to insert the unit. "
1435
  "Grundpreis."
1436
 
1437
  # @ woocommerce-germanized
1438
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:831
1439
  msgid "Product contains: {product_units} {unit}"
1440
  msgstr "Produkt enthält: {product_units} {unit}"
1441
 
1442
  # @ woocommerce-germanized
1443
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:836
1444
  msgid "Checkout & Cart"
1445
  msgstr "Checkout & Warenkorb"
1446
 
1447
  # @ woocommerce-germanized
1448
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:839
1449
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:55
1450
  msgid "Fallback Mode"
1451
  msgstr "Fallback Modus"
1452
 
1453
  # @ woocommerce-germanized
1454
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:840
1455
  msgid ""
1456
  "Enable to make sure default checkout template is not being overriden by "
1457
  "theme."
1459
  "Überschreiben relevanter Templates im Checkout durch dein Theme verhindern."
1460
 
1461
  # @ woocommerce-germanized
1462
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:844
1463
  msgid ""
1464
  "If you are facing problems within your checkout e.g. legally relevant data "
1465
  "is not showing (terms, delivery time, unit price etc.) your theme seems to "
1473
  "Checkout (review-order.php und form-checkout.php) zu überschreiben. "
1474
 
1475
  # @ woocommerce-germanized
1476
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:848
1477
  msgid "Force free shipping"
1478
  msgstr "Versandmethode erzwingen"
1479
 
1480
  # @ woocommerce-germanized
1481
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:849
1482
  msgid "Force free shipping method if available?"
1483
  msgstr "Kostenlosen Versand erzwingen wenn die Methode zur Verfügung steht?"
1484
 
1485
  # @ woocommerce-germanized
1486
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:853
1487
  msgid ""
1488
  "By default WooCommerce will let customers choose other shipping methods than "
1489
  "free shipping (if available). This option will force free shipping if "
1494
  "Versand, sobald dieser verfügbar ist."
1495
 
1496
  # @ woocommerce-germanized
1497
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:857
1498
  msgid "Hide taxes estimated"
1499
  msgstr "Hinweis \"Steuern geschätzt\""
1500
 
1501
  # @ woocommerce-germanized
1502
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:858
1503
  msgid ""
1504
  "Do you want to hide the \"taxes and shipping estimated\" text from your cart?"
1505
  msgstr "Den Hinweis \"Versandkosten und Steuern werden geschätzt\" entfernen?"
1506
 
1507
  # @ woocommerce-germanized
1508
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:862
1509
  msgid ""
1510
  "By default WooCommerce adds a \"taxes and shipping estimated\" text to your "
1511
  "cart. This might puzzle your customers and may not meet german law."
1515
  "Markt geeignet."
1516
 
1517
  # @ woocommerce-germanized
1518
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:866
1519
  msgid "Show Thumbnails"
1520
  msgstr "Thumbnails anzeigen"
1521
 
1522
  # @ woocommerce-germanized
1523
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:867
1524
  msgid "Show product thumbnails on checkout page?"
1525
  msgstr "Produktbilder im Checkout darstellen?"
1526
 
1527
  # @ woocommerce-germanized
1528
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:871
1529
  msgid ""
1530
  "Uncheck if you don't want to show your product thumbnails within checkout "
1531
  "table."
1534
  "bekommen möchtest."
1535
 
1536
  # @ woocommerce-germanized
1537
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:875
1538
  msgid "Hide Shipping Select"
1539
  msgstr "Versandarten Auswahl"
1540
 
1541
  # @ woocommerce-germanized
1542
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:876
1543
  msgid "Hide shipping rate selection from checkout?"
1544
  msgstr "Die Auswahl von Versandarten im Checkout deaktivieren?"
1545
 
1546
  # @ woocommerce-germanized
1547
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:880
1548
  msgid ""
1549
  "This option will hide shipping rate selection from checkout. By then "
1550
  "customers will only be able to change their shipping rate on cart page."
1554
  "Versandmethode ändern."
1555
 
1556
  # @ woocommerce-germanized
1557
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:884
1558
  msgid "Show back to cart button"
1559
  msgstr "Bestellung bearbeiten"
1560
 
1561
  # @ woocommerce-germanized
1562
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:885
1563
  msgid "Show back to cart button within your checkout table?"
1564
  msgstr ""
1565
  "Einen \"Bestellung bearbeiten\" Button in der Bestellübersicht anzeigen?"
1566
 
1567
  # @ woocommerce-germanized
1568
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:889
1569
  msgid ""
1570
  "This button may let your customer edit their order before submitting. Some "
1571
  "people state that this button should be hidden to avoid legal problems."
1577
  "keine weitere Informationen abgedruckt werden sollten."
1578
 
1579
  # @ woocommerce-germanized
1580
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:893
1581
  msgid "Show edit data notice"
1582
  msgstr "Bestellung prüfen Hinweis"
1583
 
1584
  # @ woocommerce-germanized
1585
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:894
1586
  msgid "Show a \"check-your-entries\" notice to the user?"
1587
  msgstr "Einen \"Bestellung prüfen\" Hinweis anzeigen?"
1588
 
1589
  # @ woocommerce-germanized
1590
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:898
1591
  msgid "This notice will be added right before the order comments field."
1592
  msgstr ""
1593
  "Dieser Hinweis wird direkt oberhalb des Bestellhinweise-Feldes eingefügt."
1594
 
1595
  # @ woocommerce-germanized
1596
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:902
1597
  msgid "Checkout Table Color"
1598
  msgstr "Hintergrundfarbe der Tabelle"
1599
 
1600
  # @ woocommerce-germanized
1601
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:904
1602
  msgid ""
1603
  "Choose the color of your checkout product table. This table should be "
1604
  "highlighted within your checkout page."
1607
  "Tabelle sollte sich farblich vom Rest des Inhalts abheben."
1608
 
1609
  # @ woocommerce-germanized
1610
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:910
1611
  msgid "Checkout Legal Display"
1612
  msgstr "Checkbox oder Text"
1613
 
1614
  # @ woocommerce-germanized
1615
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:911
1616
  msgid "Use Text without Checkbox"
1617
  msgstr "Rechtshinweis ohne Checkbox."
1618
 
1619
  # @ woocommerce-germanized
1620
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:913
1621
  msgid ""
1622
  "This version will remove checkboxes from Checkout and display a text "
1623
  "instead. This seems to be legally compliant (Zalando & Co are using this "
1628
  "diese Form)"
1629
 
1630
  # @ woocommerce-germanized
1631
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:919
1632
  msgid "Legal Text"
1633
  msgstr "Rechtlicher Hinweistext"
1634
 
1635
  # @ woocommerce-germanized
1636
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:920
1637
  msgid ""
1638
  "Choose a Plain Text which will be shown right above checkout submit button. "
1639
  "Use {term_link}{/term_link}, {data_security_link}{/data_security_link}, "
1646
  "revocation_link} um die jeweiligen Links zu den Seiten einzufügen."
1647
 
1648
  # @ woocommerce-germanized
1649
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:922
1650
  msgid ""
1651
  "With your order, you agree to have read and understood our {term_link}Terms "
1652
  "and Conditions{/term_link} and your {revocation_link}Right of Recission{/"
1657
  "revocation_link} einverstanden."
1658
 
1659
  # @ woocommerce-germanized
1660
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:929
1661
  msgid "Legal Text Error"
1662
  msgstr "Fehlermeldung der Checkbox"
1663
 
1664
  # @ woocommerce-germanized
1665
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:930
1666
  msgid ""
1667
  "If you have chosen to use checkbox validation please choose a error message "
1668
  "which will be shown if the user doesn't check checkbox. Use {term_link}{/"
1677
  "revocation_link}"
1678
 
1679
  # @ woocommerce-germanized
1680
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:932
1681
  msgid ""
1682
  "To finish the order you have to accept to our {term_link}Terms and "
1683
  "Conditions{/term_link} and {revocation_link}Right of Recission{/"
1687
  "term_link} und {revocation_link}Widerrufsbestimmungen{/revocation_link}."
1688
 
1689
  # @ woocommerce-germanized
1690
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:939
1691
  msgid "Show digital notice"
1692
  msgstr "Checkbox digitale Produkte"
1693
 
1694
  # @ woocommerce-germanized
1695
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:940
1696
  msgid "Show checkbox for digital products."
1697
  msgstr "Checkbox bei digitalen Produkten anzeigen."
1698
 
1699
  # @ woocommerce-germanized
1700
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:941
1701
  msgid ""
1702
  "Disable this option if you want your customers to obtain their right of "
1703
  "recission even if digital products are being bought."
1707
  "werden, dass im Falle von digitalen Produkten das Widerrufsrecht erlischt."
1708
 
1709
  # @ woocommerce-germanized
1710
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:948
1711
  msgid "Digital Product types"
1712
  msgstr "Digitale Produkttypen"
1713
 
1714
  # @ woocommerce-germanized
1715
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:949
1716
  msgid ""
1717
  "Select product types for which the loss of recission notice is shown. "
1718
  "Product types like \"simple product\" may be redudant because they include "
1724
  "einschließen."
1725
 
1726
  # @ woocommerce-germanized
1727
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:959
1728
  msgid "Legal Digital Text"
1729
  msgstr "Hinweis Digital"
1730
 
1731
  # @ woocommerce-germanized
1732
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:960
1733
  msgid ""
1734
  "Choose a Plain Text which will be shown right above checkout submit button "
1735
  "if a user has picked a digital product. See legal text option for possible "
1740
  "Platzhalter verwenden wie beim Rechtlichen Hinweistext"
1741
 
1742
  # @ woocommerce-germanized
1743
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:962
1744
  msgid ""
1745
  "For digital products: I strongly agree that the execution of the agreement "
1746
  "starts before the revocation period has expired. I am aware that my right of "
1751
  "bekannt, dass mit Beginn der Ausführung mein Widerrufsrecht erlischt."
1752
 
1753
  # @ woocommerce-germanized
1754
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:969
1755
  msgid "Legal Digital Error"
1756
  msgstr "Fehlermeldung Digital"
1757
 
1758
  # @ woocommerce-germanized
1759
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:970
1760
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1009
1761
  msgid ""
1762
  "This text will be shown as error message if customer has not checked the "
1763
  "corresponding checkbox. See legal text option for possible placeholders."
1767
  "Hinweistext für eine Liste der Platzhalter."
1768
 
1769
  # @ woocommerce-germanized
1770
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:972
1771
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:317
1772
  msgid ""
1773
  "To retrieve direct access to digital content you have to agree to the loss "
1777
  "Widerrufsrecht verzichten."
1778
 
1779
  # @ woocommerce-germanized
1780
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:979
1781
  msgid "Digital Confirmation Notice"
1782
  msgstr "Digitale Bestätigung"
1783
 
1784
  # @ woocommerce-germanized
1785
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:980
1786
  msgid ""
1787
  "This text will be appended to your order processing email if the order "
1788
  "contains digital products. Use placeholders {link}{/link} to insert link to "
1793
  "Platzhalter {link}{/link} um einen Link zur Widerrufsbelehrung einzufügen."
1794
 
1795
  # @ woocommerce-germanized
1796
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:983
1797
  msgid ""
1798
  "Furthermore you have expressly agreed to start the performance of the "
1799
  "contract for digital items (e.g. downloads) before expiry of the withdrawal "
1807
  "verlieren."
1808
 
1809
  # @ woocommerce-germanized
1810
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:989
1811
  msgid "Show service notice"
1812
  msgstr "Checkbox Dienstleistungen"
1813
 
1814
  # @ woocommerce-germanized
1815
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:990
1816
  msgid "Show checkbox for service products."
1817
  msgstr "Checkbox bei Dienstleistungen anzeigen."
1818
 
1819
  # @ woocommerce-germanized
1820
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:991
1821
  msgid ""
1822
  "Disable this option if you want your customers to obtain their right of "
1823
  "recission even if service products are being bought."
1828
  "Widerrufsfrist mit der Dienstleistung begonnen wird."
1829
 
1830
  # @ woocommerce-germanized
1831
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:998
1832
  msgid "Legal Service Text"
1833
  msgstr "Hinweis Dienstleistungen"
1834
 
1835
  # @ woocommerce-germanized
1836
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:999
1837
  msgid ""
1838
  "Choose a Plain Text which will be shown right above checkout submit button "
1839
  "if a user has picked a service product. See legal text option for possible "
1844
  "Platzhalter verwenden wie beim Rechtlichen Hinweistext."
1845
 
1846
  # @ woocommerce-germanized
1847
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1001
1848
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:339
1849
  msgid ""
1850
  "For services: I demand and acknowledge the immediate performance of the "
1857
  "vollständiger Erfüllung des Vertrages erlischt."
1858
 
1859
  # @ woocommerce-germanized
1860
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1008
1861
  msgid "Legal Service Error"
1862
+ msgstr "Fehlermeldung"
1863
 
1864
  # @ woocommerce-germanized
1865
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1011
1866
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:348
1867
  msgid ""
1868
  "To allow the immediate performance of the services you have to agree to the "
1872
  "Widerrufsfrist zu."
1873
 
1874
  # @ woocommerce-germanized
1875
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1018
1876
  msgid "Service Confirmation Notice"
1877
  msgstr "Dienstleistung Bestätigung"
1878
 
1879
  # @ woocommerce-germanized
1880
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1019
1881
  msgid ""
1882
  "This text will be appended to your order processing email if the order "
1883
  "contains service products. Use placeholders {link}{/link} to insert link to "
1888
  "Platzhalter {link}{/link} um einen Link zur Widerrufsbelehrung einzufügen."
1889
 
1890
  # @ woocommerce-germanized
1891
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1022
1892
  msgid ""
1893
  "Furthermore you have expressly agreed to start the performance of the "
1894
  "contract for services before expiry of the withdrawal period. I have noted "
1902
  "erlischt."
1903
 
1904
  # @ woocommerce-germanized
1905
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1028
1906
+ msgid "Parcel Delivery Checkbox"
1907
+ msgstr "Paketdienstleister Checkbox"
1908
+
1909
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1029
1910
+ msgid ""
1911
+ "Show checkbox for data transmission to third party parcel service providers."
1912
+ msgstr ""
1913
+ "Checkbox zur Erlaubnis der Datenweitergabe an den Paketdienstleister "
1914
+ "einfügen."
1915
+
1916
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1030
1917
+ msgid ""
1918
+ "You may optionally choose to show a checkbox which lets the customer accept "
1919
+ "data transmission to a third party parcel service provider to receive parcel "
1920
+ "delivery reminders."
1921
+ msgstr ""
1922
+ "Du kannst optional eine Checkbox einfügen, in der dein Kunde die "
1923
+ "Datenweitergabe an den Paketdienstleister akzeptieren kann (z.B. um eine "
1924
+ "Paketbenachrichtigung per E-Mail zu erhalten). Falls dein Kunde die Checkbox "
1925
+ "nicht setzt, siehst du das in der Bestellübersicht. Du musst dich selbst "
1926
+ "darum kümmern, dass die Daten dann nicht an den Paketdienstleister "
1927
+ "weitergeleitet werden. "
1928
+
1929
+ # @ woocommerce-germanized
1930
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1037
1931
+ msgid "Checkbox required"
1932
+ msgstr "Checkbox verpflichtend"
1933
+
1934
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1038
1935
+ msgid "Make the parcel delivery checkbox a required field."
1936
+ msgstr "Paketdienstleister Checkbox zum Pflichtfeld machen?"
1937
+
1938
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1039
1939
+ msgid ""
1940
+ "For some reason you may want to force your customers to Opt-In to the data "
1941
+ "transmission to a third party parcel service provider."
1942
+ msgstr ""
1943
+ "Unter Umständen möchtest du die Checkbox für die Datenweitergabe an den "
1944
+ "Paketdienstleister verpflichtend für den Kunden machen - wähle in diesem "
1945
+ "Fall diese Option aus."
1946
+
1947
+ # @ woocommerce-germanized
1948
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1046
1949
+ msgid "Parcel Delivery Text"
1950
+ msgstr "Paketdienstleister Text"
1951
+
1952
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1047
1953
+ msgid ""
1954
+ "Choose a Plain Text which will be shown right next to the corresponding "
1955
+ "checkbox to inform the customer about the data being transfered to the third "
1956
+ "party shipping supplier. Use {shipping_method_title} to insert the shipping "
1957
+ "method title."
1958
+ msgstr ""
1959
+ "Passe hier optional den Hinweistext an der neben der entsprechenden Checkbox "
1960
+ "angezeigt wird. Informiere deine Kunden über eine etwaige Datenweitergabe an "
1961
+ "den Paketdienstleister. Verwende den Platzhalter {shipping_method_title} um "
1962
+ "den Titel der Versandmethoden einzubetten."
1963
+
1964
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1049
1965
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-cart-functions.php:388
1966
+ msgid ""
1967
+ "Yes, I would like to be reminded via E-mail about parcel delivery "
1968
+ "({shipping_method_title}). Your E-mail Address will only be transferred to "
1969
+ "our parcel service provider for that particular reason."
1970
+ msgstr ""
1971
+ "Ja, ich möchte per E-Mail für diese Bestellung eine Paketankündigung vom "
1972
+ "Paketdienstleister ({shipping_method_title}) erhalten. Deine E-Mail Adresse "
1973
+ "wird nur für diesen einmaligen Zweck an unseren Paketdienstleister "
1974
+ "weitergegeben."
1975
+
1976
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1057
1977
+ msgid "Select shipping methods which are applicable for the Opt-In Checkbox."
1978
+ msgstr ""
1979
+ "Wähle Versandmethoden aus für die die Paketdienstleister Checkbox angezeigt "
1980
+ "werden soll."
1981
+
1982
+ # @ woocommerce-germanized
1983
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1067
1984
  msgid "Pay now Button"
1985
  msgstr "Jetzt bezahlen Button"
1986
 
1987
  # @ woocommerce-germanized
1988
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1068
1989
  msgid "Add a pay now button to emails and order success page."
1990
  msgstr ""
1991
  "Füge einen jetzt bezahlen - Button zur E-Mail und der Bestätigungs-Seite "
1992
  "hinzu."
1993
 
1994
  # @ woocommerce-germanized
1995
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1069
1996
  msgid ""
1997
  "Add a pay now button to order confirmation email and order success page if "
1998
  "the order awaits payment (PayPal etc)."
2002
  "benötigt (z.B. per PayPal)."
2003
 
2004
  # @ woocommerce-germanized
2005
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1076
2006
  msgid "Order Success Text"
2007
  msgstr "Bestellung eingegangen"
2008
 
2009
  # @ woocommerce-germanized
2010
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1077
2011
  msgid "Choose a custom text to display on order success page."
2012
  msgstr ""
2013
  "Hier kannst du einen individuellen kurzen Text eingeben, der nach der "
2014
  "Bestellung ausgegeben wird."
2015
 
2016
  # @ woocommerce-germanized
2017
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1085
2018
  msgid "Order Success Data"
2019
  msgstr "Bestellbestätigungs-Daten"
2020
 
2021
  # @ woocommerce-germanized
2022
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1086
2023
  msgid "Hide product table and customer data on order success page"
2024
  msgstr ""
2025
  "Produktdetails (Tabelle, Kundeninfos) von der Bestätigungsseite entfernen."
2026
 
2027
  # @ woocommerce-germanized
2028
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-germanized.php:1194
2029
  msgid ""
2030
  "Sorry, but the new Virtual VAT rules cannot be applied to small business."
2031
  msgstr ""
2598
  # @ woocommerce
2599
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:87
2600
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:93
2601
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:87
2602
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:93
2603
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:238
2604
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:249
2605
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:74
2606
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:81
2607
  msgid "Title"
2609
 
2610
  # @ woocommerce-germanized
2611
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:113
2612
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:120
2613
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:26
2614
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:479
2615
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/views/html-export.php:27
2616
  msgid "Direct Debit"
2617
  msgstr "Lastschrift"
2618
 
2619
  # @ woocommerce-germanized
2620
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:118
2621
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:125
2622
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:281
2623
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:300
2624
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:505
2625
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:633
2626
  msgid "Account Holder"
2627
  msgstr "Kontoinhaber"
2628
 
2629
  # @ woocommerce-germanized
2630
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:123
2631
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:130
2632
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:282
2633
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:307
2634
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:513
2635
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:637
2636
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:729
2637
  msgid "IBAN"
2638
  msgstr "IBAN"
2639
 
2640
  # @ woocommerce-germanized
2641
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:128
2642
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:135
2643
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:283
2644
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:314
2645
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:641
2646
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:730
2647
  msgid "BIC/SWIFT"
2648
  msgstr "BIC/SWIFT"
2649
 
2650
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:99
2651
+ msgid "Parcel Delivery Data Transfer"
2652
+ msgstr "Paketdienstleister Datenweitergabe"
2653
+
2654
  # @ woocommerce-germanized
2655
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:140
2656
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:321
2657
  msgid "Mandate Reference ID"
2658
  msgstr "Mandat-Referenznummer"
2659
 
2849
  "Mail mit Ihren Daten als Bestätigung."
2850
 
2851
  # @ woocommerce-germanized
2852
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:239
2853
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:247
2854
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:383
2855
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:76
2856
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:83
2857
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:41
2859
  msgstr "Herr"
2860
 
2861
  # @ woocommerce-germanized
2862
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:239
2863
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:247
2864
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-checkout.php:383
2865
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:76
2866
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:83
2867
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-revocation.php:42
2869
  msgstr "Frau"
2870
 
2871
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:150
2872
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:196
2873
  msgid ""
2874
  "Please activate your account through clicking on the activation link "
2875
  "received via email."
2877
  "Bitte aktivieren Sie Ihr Kundenkonto indem Sie auf den Link in der E-Mail "
2878
  "klicken."
2879
 
2880
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:159
2881
  #, php-format
2882
  msgid "Continue without creating an account? <a href=\"%s\">Click here</a>"
2883
  msgstr "Weiter zur Kasse ohne Kundenkonto? <a href=\"%s\">Hier klicken</a>"
2884
 
2885
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:161
2886
  msgid "Please create an account or login before continuing to checkout"
2887
  msgstr ""
2888
  "Bitte erstellen Sie ein Kundenkonto oder loggen Sie sich ein, bevor Sie zur "
2889
  "Kasse gehen"
2890
 
2891
  # @ woocommerce-germanized
2892
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:217
2893
  msgid "Thank you. You have successfully activated your account."
2894
  msgstr "Vielen Dank. Ihr Benutzerkonto wurde erfolgreich aktiviert."
2895
 
2896
  # @ woocommerce-germanized
2897
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:223
2898
  msgid "Sorry, but this activation code cannot be found."
2899
  msgstr "Sorry, dieser Aktivierungscode ist uns leider nicht bekannt."
2900
 
3001
  msgstr "eKomi"
3002
 
3003
  # @ woocommerce-germanized
3004
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-emails.php:291
3005
  msgctxt "revocation-form"
3006
  msgid "Forward your Revocation online"
3007
  msgstr "Widerruf online erklären"
3017
  "WooCommerce Germanized installierst. Vielen Dank!"
3018
 
3019
  # @ woocommerce-germanized
3020
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:464
3021
  msgctxt "Page slug"
3022
  msgid "data-security"
3023
  msgstr "datenschutzbelehrung"
3024
 
3025
  # @ woocommerce-germanized
3026
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:465
3027
  msgctxt "Page title"
3028
  msgid "Data Security Statement"
3029
  msgstr "Datenschutzbelehrung"
3030
 
3031
  # @ woocommerce-germanized
3032
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:469
3033
  msgctxt "Page slug"
3034
  msgid "imprint"
3035
  msgstr "impressum"
3036
 
3037
  # @ woocommerce-germanized
3038
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:470
3039
  msgctxt "Page title"
3040
  msgid "Imprint"
3041
  msgstr "Impressum"
3042
 
3043
  # @ woocommerce-germanized
3044
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:474
3045
  msgctxt "Page slug"
3046
  msgid "terms"
3047
  msgstr "agb"
3048
 
3049
  # @ woocommerce-germanized
3050
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:475
3051
  msgctxt "Page title"
3052
  msgid "Terms & Conditions"
3053
  msgstr "AGB"
3054
 
3055
  # @ woocommerce-germanized
3056
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:479
3057
  msgctxt "Page slug"
3058
  msgid "revocation"
3059
  msgstr "widerrufsbelehrung"
3060
 
3061
  # @ woocommerce-germanized
3062
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:480
3063
  msgctxt "Page title"
3064
  msgid "Power of Revocation"
3065
  msgstr "Widerrufsbelehrung"
3066
 
3067
  # @ woocommerce-germanized
3068
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:484
3069
  msgctxt "Page slug"
3070
  msgid "shipping-methods"
3071
  msgstr "versandarten"
3072
 
3073
  # @ woocommerce-germanized
3074
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:485
3075
  msgctxt "Page title"
3076
  msgid "Shipping Methods"
3077
  msgstr "Versandarten"
3078
 
3079
  # @ woocommerce-germanized
3080
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:489
3081
  msgctxt "Page slug"
3082
  msgid "payment-methods"
3083
  msgstr "bezahlmoeglichkeiten"
3084
 
3085
  # @ woocommerce-germanized
3086
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-install.php:490
3087
  msgctxt "Page title"
3088
  msgid "Payment Methods"
3089
  msgstr "Zahlungsarten"
3097
 
3098
  # @ woocommerce-germanized
3099
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:54
3100
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-order-functions.php:20
3101
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-template-functions.php:490
3102
  #, php-format
3103
  msgid "Plus %s forwarding fee (charged by the transport agent)"
3104
  msgstr "zzgl. %s Übermittlungsentgelt (direkt an den Zusteller)"
3512
  msgstr "SEPA XML Export"
3513
 
3514
  # @ woocommerce-germanized
3515
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:50
3516
  msgid ""
3517
  "[company_info]\n"
3518
  "debtee identification number: [company_identification_number]\n"
3580
  "Bitte beachten Sie: Die Frist für die Vorabinformation der SEPA-Lastschrift "
3581
  "wird auf einen Tag verkürzt. "
3582
 
3583
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:136
3584
  msgid "SEPA XML Export"
3585
  msgstr "SEPA XML Export"
3586
 
3587
  # @ woocommerce-germanized
3588
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:241
3589
  #, php-format
3590
  msgid "Order %s"
3591
  msgstr "Bestellung %s"
3592
 
3593
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:262
3594
  msgid "Will be notified separately"
3595
  msgstr "Wird separat mitgeteilt"
3596
 
3597
  # @ woocommerce-germanized
3598
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:470
3599
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:79
3600
  msgid "Enable/Disable"
3601
  msgstr "Aktivieren/Deaktivieren"
3602
 
3603
  # @ woocommerce-germanized
3604
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:472
3605
  msgid "Enable Direct Debit Payment"
3606
  msgstr "Bezahlung per Lastschrift aktivieren"
3607
 
3608
  # @ woocommerce-germanized
3609
  # @ woocommerce
3610
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:476
3611
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:85
3612
  msgctxt "gateway"
3613
  msgid "Title"
3614
  msgstr "Bezeichnung"
3615
 
3616
  # @ woocommerce-germanized
3617
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:478
3618
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:87
3619
  msgid "This controls the title which the user sees during checkout."
3620
  msgstr ""
3621
  "Beschreibungstext, den Benutzer bei der Auswahl dieser Zahlungsart sehen."
3622
 
3623
  # @ woocommerce-germanized
3624
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:483
3625
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:92
3626
  msgid "Description"
3627
  msgstr "Beschreibung"
3628
 
3629
  # @ woocommerce-germanized
3630
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:485
3631
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:94
3632
  msgid "Payment method description that the customer will see on your checkout."
3633
  msgstr "Beschreibung der Zahlungsart, die Kunden auf deiner Website sehen."
3634
 
3635
  # @ woocommerce-germanized
3636
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:486
3637
  msgid "The order amount will be debited directly from your bank account."
3638
  msgstr ""
3639
  "Der Gesamtbestellbetrag wird per SEPA-Lastschrift direkt von Ihrem Konto "
3640
  "abgebucht."
3641
 
3642
  # @ woocommerce-germanized
3643
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:490
3644
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:99
3645
  msgid "Instructions"
3646
  msgstr "Anweisungen"
3647
 
3648
  # @ woocommerce-germanized
3649
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:492
3650
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:101
3651
  msgid "Instructions that will be added to the thank you page and emails."
3652
  msgstr "Anweisung, die zur „Danke“-Seite und zu E-Mails hinzugefügt werden."
3653
 
3654
  # @ woocommerce-germanized
3655
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:497
3656
  msgid "Debtee"
3657
  msgstr "Gläubiger Informationen"
3658
 
3659
  # @ woocommerce-germanized
3660
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:499
3661
  msgid "Insert your company information."
3662
  msgstr "Füge hier die Informationen zu deinem Unternehmen ein."
3663
 
3664
  # @ woocommerce-germanized
3665
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:501
3666
  msgid "Company Inc, John Doe Street, New York"
3667
  msgstr "Musterfirma GmbH, Musterstraße 12, 12203 Musterstadt"
3668
 
3669
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:507
3670
  msgid "Insert the bank account holder name."
3671
  msgstr "Füge hier den Namen des Kontoinhabers ein."
3672
 
3673
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:509
3674
  msgid "Company Inc"
3675
  msgstr "Muster GmbH"
3676
 
3677
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:515
3678
  msgid "Insert the bank account IBAN."
3679
  msgstr "Füge hier den IBAN deines Kontos ein."
3680
 
3681
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:520
3682
  msgid "BIC"
3683
  msgstr "BIC"
3684
 
3685
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:522
3686
  msgid "Insert the bank account BIC."
3687
  msgstr "Füge hier den BIC deines Kontos ein."
3688
 
3689
  # @ woocommerce-germanized
3690
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:527
3691
  msgid "Debtee identification number"
3692
  msgstr "Identifikationsnummer"
3693
 
3694
  # @ woocommerce-germanized
3695
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:529
3696
  #, php-format
3697
  msgid ""
3698
  "Insert your debtee indentification number. More information can be found <a "
3702
  "Weitere Informationen zu dieser Nummer erhältst du <a href=\"%s\">hier</a>."
3703
 
3704
  # @ woocommerce-germanized
3705
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:533
3706
  msgid "Generate Mandate ID"
3707
  msgstr "Mandat-Referenz generieren"
3708
 
3709
  # @ woocommerce-germanized
3710
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:535
3711
  msgid "Automatically generate Mandate ID."
3712
  msgstr "Mandat-Referenznummer automatisch generieren."
3713
 
3714
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:536
3715
  msgid ""
3716
  "Automatically generate Mandate ID after order completion (based on Order ID)."
3717
  msgstr ""
3719
  "basierend auf der Bestellnummer."
3720
 
3721
  # @ woocommerce-germanized
3722
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:540
3723
+ msgid "XML Pain Format"
3724
+ msgstr "XML Pain Format"
3725
+
3726
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:542
3727
+ msgid ""
3728
+ "You may adjust the XML Export Pain Schema to your banks needs. Some banks "
3729
+ "may require pain.001.003.03."
3730
+ msgstr ""
3731
+ "Passe hier das SEPA XML Schema an die Anforderungen deiner Bank an. Einige "
3732
+ "Banken benötigen z.B. pain.001.003.03."
3733
+
3734
+ # @ woocommerce-germanized
3735
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:546
3736
  msgid "Mandate ID Format"
3737
  msgstr "Mandat-Referenz Format"
3738
 
3739
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:548
3740
  msgid ""
3741
  "You may extend the Mandate ID format by adding a prefix and/or suffix. Use "
3742
  "{id} as placeholder to insert the automatically generated ID."
3745
  "{id} als Platzhalter um die automatisch generierte Referenznummer einzufügen."
3746
 
3747
  # @ woocommerce-germanized
3748
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:552
3749
  msgid "Mandate Text"
3750
  msgstr "Lastschriftmandat"
3751
 
3752
  # @ woocommerce-germanized
3753
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:554
3754
  msgid ""
3755
  "This text will be populated with live order/checkout data. Will be used as "
3756
  "preview direct debit mandate and as email template text."
3761
  "Verfügung gestellt."
3762
 
3763
  # @ woocommerce-germanized
3764
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:561
3765
  msgid "Enable \"agree to SEPA mandate\" checkbox"
3766
  msgstr "Aktiviere die Checkbox zur Bestätigung des Lastschriftmandates."
3767
 
3768
  # @ woocommerce-germanized
3769
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:563
3770
  msgid "Enable a checkbox linking to a SEPA direct debit mandate preview."
3771
  msgstr ""
3772
  "Aktiviere eine Checkbox, die zu einer Vorschau des Lastschrift-Mandats führt."
3773
 
3774
  # @ woocommerce-germanized
3775
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:567
3776
  msgid "Checkbox label"
3777
  msgstr "Checkbox Text"
3778
 
3779
  # @ woocommerce-germanized
3780
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:569
3781
  msgid ""
3782
  "Customize the checkbox label. Use {link}link name{/link} to insert the "
3783
  "preview link."
3786
  "auf die Vorschau zu verlinken."
3787
 
3788
  # @ woocommerce-germanized
3789
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:570
3790
  msgid "I hereby agree to the {link}direct debit mandate{/link}."
3791
  msgstr "Hiermit erteile ich das {link}SEPA Lastschriftmandat{/link}."
3792
 
3793
  # @ woocommerce-germanized
3794
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:574
3795
  msgid "Mask IBAN"
3796
  msgstr "IBAN maskieren"
3797
 
3798
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:575
3799
  msgid "Mask the IBAN within emails."
3800
  msgstr "IBAN in E-Mails maskieren."
3801
 
3802
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:577
3803
  msgid ""
3804
  "This will lead to masked IBANs within emails (replaced by *). All but last 4 "
3805
  "digits will be masked."
3807
  "Der IBAN wird in E-Mails (abgesehen von den letzten 4 Stellen) mit * "
3808
  "maskiert."
3809
 
3810
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:586
3811
  msgid "Remember"
3812
  msgstr "Bankdaten merken\t"
3813
 
3814
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:587
3815
  msgid "Remember account data for returning customers."
3816
  msgstr "Bankverbindung für registrierte Kunden speichern."
3817
 
3818
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:589
3819
  msgid "Save account data as user meta if user has/creates a customer account."
3820
  msgstr ""
3821
  "Speichert die Bankverbindung für registrierte Kunden in der user_meta "
3823
  "eigenständig aus."
3824
 
3825
  # @ woocommerce-germanized
3826
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:672
3827
  msgid "Please insert your SEPA account data."
3828
  msgstr "Bitte fügen Sie Ihre SEPA Kontoinformationen ein."
3829
 
3830
  # @ woocommerce-germanized
3831
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:682
3832
  msgid "Your IBAN seems to be invalid."
3833
  msgstr "Ihr IBAN scheint nicht gültig zu sein."
3834
 
3835
  # @ woocommerce-germanized
3836
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:684
3837
  msgid "Your IBAN's country code doesn’t match with your billing country."
3838
  msgstr "Der Ländercode des IBANs stimmt nicht mit dem Rechnungsland überein."
3839
 
3840
  # @ woocommerce-germanized
3841
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:688
3842
  msgid "Your BIC seems to be invalid."
3843
  msgstr "Ihr BIC/SWIFT scheint nicht gültig zu sein."
3844
 
3845
  # @ woocommerce-germanized
3846
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:700
3847
  msgid "Please accept the direct debit mandate."
3848
  msgstr "Bitte erteilen Sie das SEPA Lastschriftmandat."
3849
 
3850
  # @ woocommerce-germanized
3851
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:731
3852
  msgid "is invalid"
3853
  msgstr "ist ungültig"
3854
 
3855
  # @ woocommerce-germanized
3856
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:769
3857
  msgid "Processing direct debit"
3858
  msgstr "Lastschriftverfahren vorbereiten"
3859
 
3913
  # @ woocommerce-germanized
3914
  # @ woocommerce
3915
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:50
3916
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/woocommerce-germanized.php:557
3917
  msgid "Settings"
3918
  msgstr "Einstellungen"
3919
 
4491
  # @ woocommerce-germanized
4492
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-reviews.php:21
4493
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-reviews.php:25
4494
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-reviews.php:45
4495
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-rich-snippets.php:45
4496
  msgctxt "trusted-shops"
4497
  msgid "Trusted Shops Reviews"
4535
  # @ woocommerce-germanized
4536
  #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-core-functions.php:86
4537
  msgid ""
4538
+ "Because of the small business owner state according to &#167; 19 UStG the "
4539
+ "seller does not levy nor state the German value added tax."
4540
  msgstr "Kein Mehrwertsteuerausweis, da Kleinunternehmer nach §19 (1) UStG."
4541
 
4542
  # @ woocommerce-germanized
4555
  msgid "Choose a Payment Gateway"
4556
  msgstr "Zahlungsart auswählen"
4557
 
4558
+ # @ woocommerce-germanized
4559
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-template-functions.php:272
4560
+ msgid "Please accept our parcel delivery agreement"
4561
+ msgstr "Bitte akzeptiere die Datenweitergabe an unsere Paketdienstleister"
4562
+
4563
  # @ woocommerce
4564
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-template-functions.php:400
4565
  msgid "Place order"
4566
  msgstr "Jetzt kaufen"
4567
 
4568
  # @ woocommerce-germanized
4569
+ #: /Users/dennis/Documents/localhost/vendidero/wp-content/plugins/woocommerce-germanized/includes/wc-gzd-template-functions.php:471
4570
  msgid "Please accept the creation of a new customer account"
4571
  msgstr "Bitte akzeptieren Sie die Erstellung eines neuen Kundenkontos"
4572
 
includes/admin/class-wc-gzd-admin-notices.php CHANGED
@@ -166,6 +166,7 @@ class WC_GZD_Admin_Notices {
166
  );
167
 
168
  $current = wp_get_theme();
 
169
  if ( in_array( $current->get_template(), $supporting ) )
170
  return true;
171
 
166
  );
167
 
168
  $current = wp_get_theme();
169
+
170
  if ( in_array( $current->get_template(), $supporting ) )
171
  return true;
172
 
includes/admin/class-wc-gzd-admin.php CHANGED
@@ -40,15 +40,31 @@ class WC_GZD_Admin {
40
  public function __construct() {
41
  add_action( 'add_meta_boxes', array( $this, 'add_legal_page_metabox' ) );
42
  add_action( 'add_meta_boxes', array( $this, 'add_product_mini_desc' ) );
 
43
  add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts' ) );
44
  add_action( 'save_post', array( $this, 'save_legal_page_content' ), 10, 3 );
 
45
  add_action( 'admin_menu', array( $this, 'remove_status_page_hooks' ), 0 );
46
  add_action( 'admin_menu', array( $this, 'set_status_page' ), 1 );
47
  add_action( 'admin_init', array( $this, 'check_tour_hide' ) );
48
  add_action( 'admin_init', array( $this, 'check_language_install' ) );
49
  add_action( 'admin_init', array( $this, 'check_text_options_deletion' ) );
50
  add_action( 'admin_init', array( $this, 'check_complaints_shortcode_append' ) );
 
51
  add_filter( 'woocommerce_addons_section_data', array( $this, 'set_addon' ), 10, 2 );
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  }
53
 
54
  public function set_addon( $products, $section_id ) {
40
  public function __construct() {
41
  add_action( 'add_meta_boxes', array( $this, 'add_legal_page_metabox' ) );
42
  add_action( 'add_meta_boxes', array( $this, 'add_product_mini_desc' ) );
43
+
44
  add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts' ) );
45
  add_action( 'save_post', array( $this, 'save_legal_page_content' ), 10, 3 );
46
+
47
  add_action( 'admin_menu', array( $this, 'remove_status_page_hooks' ), 0 );
48
  add_action( 'admin_menu', array( $this, 'set_status_page' ), 1 );
49
  add_action( 'admin_init', array( $this, 'check_tour_hide' ) );
50
  add_action( 'admin_init', array( $this, 'check_language_install' ) );
51
  add_action( 'admin_init', array( $this, 'check_text_options_deletion' ) );
52
  add_action( 'admin_init', array( $this, 'check_complaints_shortcode_append' ) );
53
+
54
  add_filter( 'woocommerce_addons_section_data', array( $this, 'set_addon' ), 10, 2 );
55
+ add_action( 'woocommerce_admin_order_data_after_shipping_address', array( $this, 'set_order_parcel_delivery_opted_in' ), 10, 1 );
56
+ }
57
+
58
+ public function set_order_parcel_delivery_opted_in( $order ) {
59
+
60
+ if ( ! $order->parcel_delivery_opted_in )
61
+ return;
62
+
63
+ ?>
64
+ <p><strong style="display: block;"><?php _e( 'Parcel Delivery Data Transfer:', 'woocommerce-germanized' ) ?></strong>
65
+ <span><?php echo ( wc_gzd_order_supports_parcel_delivery_reminder( $order->id ) ? __( 'allowed', 'woocommerce-germanized' ) : __( 'not allowed', 'woocommerce-germanized' ) ); ?></span>
66
+ </p>
67
+ <?php
68
  }
69
 
70
  public function set_addon( $products, $section_id ) {
includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php CHANGED
@@ -106,6 +106,11 @@ class WC_Germanized_Meta_Box_Product_Data_Variable {
106
 
107
  <div class="variable_pricing_unit">
108
  <p class="form-row form-row-first">
 
 
 
 
 
109
  <label for="variable_unit_product"><?php echo __( 'Product Units', 'woocommerce-germanized' );?> <?php echo wc_gzd_help_tip( __( 'Number of units included per default product price. Example: 1000 ml. Leave blank to use parent value.', 'woocommerce-germanized' ) ); ?></label>
110
  <input class="input-text wc_input_decimal" size="6" type="text" name="variable_unit_product[<?php echo $loop; ?>]" value="<?php echo ( ! empty( $variation_data[ '_unit_product' ] ) ? esc_attr( wc_format_localized_decimal( $variation_data[ '_unit_product' ] ) ) : '' );?>" placeholder="<?php echo esc_attr( wc_format_localized_decimal( wc_gzd_get_gzd_product( $_parent )->unit_product ) ); ?>" />
111
  </p>
@@ -151,6 +156,9 @@ class WC_Germanized_Meta_Box_Product_Data_Variable {
151
  '_sale_price_label' => '',
152
  '_sale_price_regular_label' => '',
153
  '_unit_price_sale' => '',
 
 
 
154
  '_mini_desc' => '',
155
  '_service' => '',
156
  'delivery_time' => '',
@@ -167,14 +175,15 @@ class WC_Germanized_Meta_Box_Product_Data_Variable {
167
  $parent = wc_gzd_get_gzd_product( $product->parent );
168
 
169
  // Check if parent has unit_base + unit otherwise ignore data
170
- if ( empty( $parent->unit ) || empty( $parent->unit_base ) ) {
 
171
  $data[ '_unit_price_auto' ] = '';
172
  $data[ '_unit_price_regular' ] = '';
173
  $data[ '_unit_price_sale' ] = '';
174
  }
175
 
176
  // If parent has no unit, delete unit_product as well
177
- if ( empty( $parent->unit ) ) {
178
  $data[ '_unit_product' ] = '';
179
  }
180
 
106
 
107
  <div class="variable_pricing_unit">
108
  <p class="form-row form-row-first">
109
+
110
+ <input type="hidden" name="variable_parent_unit_product[<?php echo $loop; ?>]" class="wc-gzd-parent-unit_product" value="" />
111
+ <input type="hidden" name="variable_parent_unit[<?php echo $loop; ?>]" class="wc-gzd-parent-unit" value="" />
112
+ <input type="hidden" name="variable_parent_unit_base[<?php echo $loop; ?>]" class="wc-gzd-parent-unit_base" value="" />
113
+
114
  <label for="variable_unit_product"><?php echo __( 'Product Units', 'woocommerce-germanized' );?> <?php echo wc_gzd_help_tip( __( 'Number of units included per default product price. Example: 1000 ml. Leave blank to use parent value.', 'woocommerce-germanized' ) ); ?></label>
115
  <input class="input-text wc_input_decimal" size="6" type="text" name="variable_unit_product[<?php echo $loop; ?>]" value="<?php echo ( ! empty( $variation_data[ '_unit_product' ] ) ? esc_attr( wc_format_localized_decimal( $variation_data[ '_unit_product' ] ) ) : '' );?>" placeholder="<?php echo esc_attr( wc_format_localized_decimal( wc_gzd_get_gzd_product( $_parent )->unit_product ) ); ?>" />
116
  </p>
156
  '_sale_price_label' => '',
157
  '_sale_price_regular_label' => '',
158
  '_unit_price_sale' => '',
159
+ '_parent_unit_product' => '',
160
+ '_parent_unit' => '',
161
+ '_parent_unit_base' => '',
162
  '_mini_desc' => '',
163
  '_service' => '',
164
  'delivery_time' => '',
175
  $parent = wc_gzd_get_gzd_product( $product->parent );
176
 
177
  // Check if parent has unit_base + unit otherwise ignore data
178
+ if ( empty( $data[ '_parent_unit' ] ) || empty( $data[ '_parent_unit_base' ] ) ) {
179
+
180
  $data[ '_unit_price_auto' ] = '';
181
  $data[ '_unit_price_regular' ] = '';
182
  $data[ '_unit_price_sale' ] = '';
183
  }
184
 
185
  // If parent has no unit, delete unit_product as well
186
+ if ( empty( $data[ '_parent_unit' ] ) ) {
187
  $data[ '_unit_product' ] = '';
188
  }
189
 
includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php CHANGED
@@ -18,8 +18,10 @@ class WC_Germanized_Meta_Box_Product_Data {
18
  protected static $_instance = null;
19
 
20
  public static function instance() {
 
21
  if ( is_null( self::$_instance ) )
22
  self::$_instance = new self();
 
23
  return self::$_instance;
24
  }
25
 
@@ -155,9 +157,7 @@ class WC_Germanized_Meta_Box_Product_Data {
155
 
156
  }
157
 
158
- public static function save_product_data( $post_id, $data, $is_variation = false ) {
159
-
160
- $data = apply_filters( 'woocommerce_gzd_product_saveable_data', $data, $post_id );
161
 
162
  $product_type = ( ! isset( $data['product-type'] ) || empty( $data['product-type'] ) ) ? 'simple' : sanitize_title( stripslashes( $data['product-type'] ) );
163
 
@@ -170,21 +170,6 @@ class WC_Germanized_Meta_Box_Product_Data {
170
 
171
  }
172
 
173
- $sale_price_labels = array( '_sale_price_label', '_sale_price_regular_label' );
174
-
175
- foreach ( $sale_price_labels as $label ) {
176
-
177
- if ( isset( $data[$label] ) ) {
178
-
179
- if ( empty( $data[$label] ) || in_array( $data[$label], array( 'none', '-1' ) ) )
180
- delete_post_meta( $post_id, $label );
181
- else
182
- update_post_meta( $post_id, $label, sanitize_text_field( $data[$label] ) );
183
-
184
- }
185
-
186
- }
187
-
188
  if ( isset( $data['_unit_base'] ) ) {
189
  update_post_meta( $post_id, '_unit_base', ( $data['_unit_base'] === '' ) ? '' : wc_format_decimal( $data['_unit_base'] ) );
190
  }
@@ -208,25 +193,6 @@ class WC_Germanized_Meta_Box_Product_Data {
208
 
209
  update_post_meta( $post_id, '_unit_price_sale', ( $data['_unit_price_sale'] === '' ) ? '' : wc_format_decimal( $data['_unit_price_sale'] ) );
210
  }
211
-
212
- if ( isset( $data[ '_mini_desc' ] ) ) {
213
- update_post_meta( $post_id, '_mini_desc', ( $data[ '_mini_desc' ] === '' ? '' : esc_html( $data[ '_mini_desc' ] ) ) );
214
- }
215
-
216
- if ( isset( $data[ 'delivery_time' ] ) && ! empty( $data[ 'delivery_time' ] ) ) {
217
- if ( ! is_numeric( $data[ 'delivery_time' ] ) )
218
- wp_set_object_terms( $post_id, sanitize_text_field( $data[ 'delivery_time' ] ), 'product_delivery_time' );
219
- else
220
- wp_set_object_terms( $post_id, absint( $data[ 'delivery_time' ] ) , 'product_delivery_time' );
221
- } else {
222
- wp_delete_object_term_relationships( $post_id, 'product_delivery_time' );
223
- }
224
-
225
- // Free shipping
226
- update_post_meta( $post_id, '_free_shipping', ( isset( $data['_free_shipping'] ) ) ? 'yes' : '' );
227
-
228
- // Free shipping
229
- update_post_meta( $post_id, '_service', ( isset( $data['_service'] ) ) ? 'yes' : '' );
230
 
231
  // Ignore variable data
232
  if ( in_array( $product_type, array( 'variable', 'grouped' ) ) && ! $is_variation ) {
@@ -235,7 +201,6 @@ class WC_Germanized_Meta_Box_Product_Data {
235
  update_post_meta( $post_id, '_unit_price_sale', '' );
236
  update_post_meta( $post_id, '_unit_price', '' );
237
  update_post_meta( $post_id, '_unit_price_auto', '' );
238
- update_post_meta( $post_id, '_mini_desc', '' );
239
 
240
  } else {
241
 
@@ -264,6 +229,55 @@ class WC_Germanized_Meta_Box_Product_Data {
264
 
265
  }
266
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
267
  }
268
 
269
  WC_Germanized_Meta_Box_Product_Data::instance();
18
  protected static $_instance = null;
19
 
20
  public static function instance() {
21
+
22
  if ( is_null( self::$_instance ) )
23
  self::$_instance = new self();
24
+
25
  return self::$_instance;
26
  }
27
 
157
 
158
  }
159
 
160
+ public static function save_unit_price( $post_id, $data, $is_variation = false ) {
 
 
161
 
162
  $product_type = ( ! isset( $data['product-type'] ) || empty( $data['product-type'] ) ) ? 'simple' : sanitize_title( stripslashes( $data['product-type'] ) );
163
 
170
 
171
  }
172
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
173
  if ( isset( $data['_unit_base'] ) ) {
174
  update_post_meta( $post_id, '_unit_base', ( $data['_unit_base'] === '' ) ? '' : wc_format_decimal( $data['_unit_base'] ) );
175
  }
193
 
194
  update_post_meta( $post_id, '_unit_price_sale', ( $data['_unit_price_sale'] === '' ) ? '' : wc_format_decimal( $data['_unit_price_sale'] ) );
195
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
196
 
197
  // Ignore variable data
198
  if ( in_array( $product_type, array( 'variable', 'grouped' ) ) && ! $is_variation ) {
201
  update_post_meta( $post_id, '_unit_price_sale', '' );
202
  update_post_meta( $post_id, '_unit_price', '' );
203
  update_post_meta( $post_id, '_unit_price_auto', '' );
 
204
 
205
  } else {
206
 
229
 
230
  }
231
 
232
+ public static function save_product_data( $post_id, $data, $is_variation = false ) {
233
+
234
+ $data = apply_filters( 'woocommerce_gzd_product_saveable_data', $data, $post_id );
235
+
236
+ self::save_unit_price( $post_id, $data, $is_variation );
237
+
238
+ $product_type = ( ! isset( $data['product-type'] ) || empty( $data['product-type'] ) ) ? 'simple' : sanitize_title( stripslashes( $data['product-type'] ) );
239
+
240
+ $sale_price_labels = array( '_sale_price_label', '_sale_price_regular_label' );
241
+
242
+ foreach ( $sale_price_labels as $label ) {
243
+
244
+ if ( isset( $data[$label] ) ) {
245
+
246
+ if ( empty( $data[$label] ) || in_array( $data[$label], array( 'none', '-1' ) ) )
247
+ delete_post_meta( $post_id, $label );
248
+ else
249
+ update_post_meta( $post_id, $label, sanitize_text_field( $data[$label] ) );
250
+
251
+ }
252
+
253
+ }
254
+
255
+ if ( isset( $data[ '_mini_desc' ] ) ) {
256
+ update_post_meta( $post_id, '_mini_desc', ( $data[ '_mini_desc' ] === '' ? '' : esc_html( $data[ '_mini_desc' ] ) ) );
257
+ }
258
+
259
+ if ( isset( $data[ 'delivery_time' ] ) && ! empty( $data[ 'delivery_time' ] ) ) {
260
+ if ( ! is_numeric( $data[ 'delivery_time' ] ) )
261
+ wp_set_object_terms( $post_id, sanitize_text_field( $data[ 'delivery_time' ] ), 'product_delivery_time' );
262
+ else
263
+ wp_set_object_terms( $post_id, absint( $data[ 'delivery_time' ] ) , 'product_delivery_time' );
264
+ } else {
265
+ wp_delete_object_term_relationships( $post_id, 'product_delivery_time' );
266
+ }
267
+
268
+ // Free shipping
269
+ update_post_meta( $post_id, '_free_shipping', ( isset( $data['_free_shipping'] ) ) ? 'yes' : '' );
270
+
271
+ // Free shipping
272
+ update_post_meta( $post_id, '_service', ( isset( $data['_service'] ) ) ? 'yes' : '' );
273
+
274
+ // Ignore variable data
275
+ if ( in_array( $product_type, array( 'variable', 'grouped' ) ) && ! $is_variation ) {
276
+ update_post_meta( $post_id, '_mini_desc', '' );
277
+ }
278
+
279
+ }
280
+
281
  }
282
 
283
  WC_Germanized_Meta_Box_Product_Data::instance();
includes/admin/settings/class-wc-gzd-settings-germanized.php CHANGED
@@ -187,6 +187,15 @@ class WC_GZD_Settings_Germanized extends WC_Settings_Page {
187
  'default' => 'yes',
188
  ),
189
 
 
 
 
 
 
 
 
 
 
190
  array( 'type' => 'sectionend', 'id' => 'general_options' ),
191
 
192
  array( 'title' => __( 'Contract', 'woocommerce-germanized' ), 'type' => 'title', 'id' => 'contract_options', 'desc' => '<div class="notice inline notice-warning"><p>' . sprintf( __( '%sUpgrade to %spro%s%s to unlock this feature and get premium support.', 'woocommerce-germanized' ), '<a href="https://vendidero.de/woocommerce-germanized" class="button">', '<span class="wc-gzd-pro">', '</span>', '</a>' ) . '</p></div>' ),
@@ -601,6 +610,14 @@ class WC_GZD_Settings_Germanized extends WC_Settings_Page {
601
  'virtual' => __( 'Virtual Product', 'woocommerce-germanized' ),
602
  ), $product_types );
603
 
 
 
 
 
 
 
 
 
604
  $settings = array(
605
 
606
  array( 'title' => __( 'General', 'woocommerce-germanized' ), 'type' => 'title', 'id' => 'general_options' ),
@@ -1007,6 +1024,45 @@ class WC_GZD_Settings_Germanized extends WC_Settings_Page {
1007
  'css' => 'width:100%; height: 65px;',
1008
  ),
1009
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1010
  array(
1011
  'title' => __( 'Pay now Button', 'woocommerce-germanized' ),
1012
  'desc' => __( 'Add a pay now button to emails and order success page.', 'woocommerce-germanized' ),
187
  'default' => 'yes',
188
  ),
189
 
190
+ array(
191
+ 'title' => __( 'Disallow gateway choosing', 'woocommerce-germanized' ),
192
+ 'desc' => __( 'Don’t allow customers to change the payment gateway after ordering.', 'woocommerce-germanized' ),
193
+ 'desc_tip' => __( 'Customers paying through a gateway which allows later payment (e.g. PayPal) will find a link within their customer account which redirects them to a pay page. This page offers the possibility to choose another gateway than before which may lead to further problems e.g. additional gateway costs etc. which would require a new order submittal. This option makes sure the customer gets redirected directly to the gateways payment page, e.g. to PayPal.', 'woocommerce-germanized' ),
194
+ 'id' => 'woocommerce_gzd_checkout_disallow_belated_payment_method_selection',
195
+ 'type' => 'checkbox',
196
+ 'default' => 'yes',
197
+ ),
198
+
199
  array( 'type' => 'sectionend', 'id' => 'general_options' ),
200
 
201
  array( 'title' => __( 'Contract', 'woocommerce-germanized' ), 'type' => 'title', 'id' => 'contract_options', 'desc' => '<div class="notice inline notice-warning"><p>' . sprintf( __( '%sUpgrade to %spro%s%s to unlock this feature and get premium support.', 'woocommerce-germanized' ), '<a href="https://vendidero.de/woocommerce-germanized" class="button">', '<span class="wc-gzd-pro">', '</span>', '</a>' ) . '</p></div>' ),
610
  'virtual' => __( 'Virtual Product', 'woocommerce-germanized' ),
611
  ), $product_types );
612
 
613
+ $shipping_methods = WC()->shipping->get_shipping_methods();
614
+ $shipping_methods_options = array();
615
+
616
+ foreach ( $shipping_methods as $key => $method ) {
617
+ $title = $method->get_title();
618
+ $shipping_methods_options[ $key ] = ( empty( $title ) ? $method->get_method_title() : $title );
619
+ }
620
+
621
  $settings = array(
622
 
623
  array( 'title' => __( 'General', 'woocommerce-germanized' ), 'type' => 'title', 'id' => 'general_options' ),
1024
  'css' => 'width:100%; height: 65px;',
1025
  ),
1026
 
1027
+ array(
1028
+ 'title' => __( 'Parcel Delivery Checkbox', 'woocommerce-germanized' ),
1029
+ 'desc' => __( 'Show checkbox for data transmission to third party parcel service providers.', 'woocommerce-germanized' ),
1030
+ 'desc_tip' => __( 'You may optionally choose to show a checkbox which lets the customer accept data transmission to a third party parcel service provider to receive parcel delivery reminders.', 'woocommerce-germanized' ),
1031
+ 'id' => 'woocommerce_gzd_checkout_legal_parcel_delivery_checkbox',
1032
+ 'default' => 'no',
1033
+ 'type' => 'checkbox',
1034
+ ),
1035
+
1036
+ array(
1037
+ 'title' => __( 'Checkbox required', 'woocommerce-germanized' ),
1038
+ 'desc' => __( 'Make the parcel delivery checkbox a required field.', 'woocommerce-germanized' ),
1039
+ 'desc_tip' => __( 'For some reason you may want to force your customers to Opt-In to the data transmission to a third party parcel service provider.', 'woocommerce-germanized' ),
1040
+ 'id' => 'woocommerce_gzd_checkout_legal_parcel_delivery_checkbox_required',
1041
+ 'default' => 'no',
1042
+ 'type' => 'checkbox',
1043
+ ),
1044
+
1045
+ array(
1046
+ 'title' => __( 'Parcel Delivery Text', 'woocommerce-germanized' ),
1047
+ 'desc' => __( 'Choose a Plain Text which will be shown right next to the corresponding checkbox to inform the customer about the data being transfered to the third party shipping supplier. Use {shipping_method_title} to insert the shipping method title.', 'woocommerce-germanized' ),
1048
+ 'desc_tip' => true,
1049
+ 'default' => __( 'Yes, I would like to be reminded via E-mail about parcel delivery ({shipping_method_title}). Your E-mail Address will only be transferred to our parcel service provider for that particular reason.', 'woocommerce-germanized' ),
1050
+ 'css' => 'width:100%; height: 65px;',
1051
+ 'id' => 'woocommerce_gzd_checkout_legal_text_parcel_delivery',
1052
+ 'type' => 'textarea',
1053
+ ),
1054
+
1055
+ array(
1056
+ 'title' => __( 'Shipping Methods', 'woocommerce-germanized' ),
1057
+ 'desc' => __( 'Select shipping methods which are applicable for the Opt-In Checkbox.', 'woocommerce-germanized' ),
1058
+ 'desc_tip' => true,
1059
+ 'id' => 'woocommerce_gzd_checkout_legal_parcel_delivery_checkbox_methods',
1060
+ 'default' => array( 'downloadable' ),
1061
+ 'class' => 'chosen_select',
1062
+ 'options' => $shipping_methods_options,
1063
+ 'type' => 'multiselect',
1064
+ ),
1065
+
1066
  array(
1067
  'title' => __( 'Pay now Button', 'woocommerce-germanized' ),
1068
  'desc' => __( 'Add a pay now button to emails and order success page.', 'woocommerce-germanized' ),
includes/api/class-wc-gzd-rest-orders-controller.php CHANGED
@@ -14,8 +14,6 @@ class WC_GZD_REST_Orders_Controller {
14
 
15
  /**
16
  * ExtendOrdersController constructor.
17
- *
18
- * @param WC_Payment_Gateways $payment_gateways
19
  */
20
  public function __construct() {
21
  $this->direct_debit_gateway = new WC_GZD_Gateway_Direct_Debit();
@@ -26,24 +24,25 @@ class WC_GZD_REST_Orders_Controller {
26
  }
27
 
28
  /**
29
- * Filter customer data returned from the REST API.
30
  *
31
  * @since 1.0.0
32
  * @wp-hook woocommerce_rest_prepare_order
33
  *
34
  * @param \WP_REST_Response $response The response object.
35
- * @param \WP_User $customer User object used to create response.
36
  * @param \WP_REST_Request $request Request object.
37
  *
38
  * @return \WP_REST_Response
39
  */
40
- public function prepare( $response, $order, $request ) {
41
 
42
- $order = wc_get_order( $order->id );
43
  $response_order_data = $response->get_data();
44
 
45
  $response_order_data['billing']['title'] = $order->billing_title;
46
  $response_order_data['shipping']['title'] = $order->shipping_title;
 
47
 
48
  $response->set_data( $response_order_data );
49
 
@@ -51,12 +50,12 @@ class WC_GZD_REST_Orders_Controller {
51
  }
52
 
53
  /**
54
- * Prepare a single customer for create or update.
55
  *
56
  * @since 1.0.0
57
  * @wp-hook woocommerce_rest_insert_customer
58
  *
59
- * @param \WP_User $customer Data used to create the customer.
60
  * @param \WP_REST_Request $request Request object.
61
  * @param bool $creating True when creating item, false when updating.
62
  */
@@ -76,9 +75,9 @@ class WC_GZD_REST_Orders_Controller {
76
  * Extend schema.
77
  *
78
  * @since 1.0.0
79
- * @wp-hook woocommerce_rest_customer_schema
80
  *
81
- * @param array $schema_properties Data used to create the customer.
82
  *
83
  * @return array
84
  */
@@ -96,6 +95,13 @@ class WC_GZD_REST_Orders_Controller {
96
  'context' => array( 'view', 'edit' )
97
  );
98
 
 
 
 
 
 
 
 
99
  return $schema_properties;
100
  }
101
 
14
 
15
  /**
16
  * ExtendOrdersController constructor.
 
 
17
  */
18
  public function __construct() {
19
  $this->direct_debit_gateway = new WC_GZD_Gateway_Direct_Debit();
24
  }
25
 
26
  /**
27
+ * Filter order data returned from the REST API.
28
  *
29
  * @since 1.0.0
30
  * @wp-hook woocommerce_rest_prepare_order
31
  *
32
  * @param \WP_REST_Response $response The response object.
33
+ * @param \WP_Post $post object used to create response.
34
  * @param \WP_REST_Request $request Request object.
35
  *
36
  * @return \WP_REST_Response
37
  */
38
+ public function prepare( $response, $post, $request ) {
39
 
40
+ $order = wc_get_order( $post );
41
  $response_order_data = $response->get_data();
42
 
43
  $response_order_data['billing']['title'] = $order->billing_title;
44
  $response_order_data['shipping']['title'] = $order->shipping_title;
45
+ $response_order_data['parcel_delivery_opted_in'] = $order->parcel_delivery_opted_in;
46
 
47
  $response->set_data( $response_order_data );
48
 
50
  }
51
 
52
  /**
53
+ * Prepare a single order for create or update.
54
  *
55
  * @since 1.0.0
56
  * @wp-hook woocommerce_rest_insert_customer
57
  *
58
+ * @param \WP_Post $post Data used to create the customer.
59
  * @param \WP_REST_Request $request Request object.
60
  * @param bool $creating True when creating item, false when updating.
61
  */
75
  * Extend schema.
76
  *
77
  * @since 1.0.0
78
+ * @wp-hook woocommerce_rest_order_schema
79
  *
80
+ * @param array $schema_properties Data used to create the order.
81
  *
82
  * @return array
83
  */
95
  'context' => array( 'view', 'edit' )
96
  );
97
 
98
+ $schema_properties['parcel_delivery_opted_in'] = array(
99
+ 'description' => __( 'Parcel Delivery Data Transfer', 'woocommerce-germanized' ),
100
+ 'type' => 'string',
101
+ 'context' => array( 'view', 'edit' ),
102
+ 'readonly' => true,
103
+ );
104
+
105
  return $schema_properties;
106
  }
107
 
includes/api/class-wc-gzd-rest-products-controller.php CHANGED
@@ -397,7 +397,7 @@ class WC_GZD_REST_Products_Controller {
397
  if ( ! empty( $request['free_shipping'] ) )
398
  $data[ '_free_shipping' ] = true;
399
  } else {
400
- $data[ '_free_shipping' ] = get_post_meta( $real_product_id, '_free_shipping', true );
401
  }
402
 
403
  WC_Germanized_Meta_Box_Product_Data::save_product_data( $real_product_id, $data );
397
  if ( ! empty( $request['free_shipping'] ) )
398
  $data[ '_free_shipping' ] = true;
399
  } else {
400
+ $data[ '_free_shipping' ] = get_post_meta( $real_product_id, '_free_shipping', false );
401
  }
402
 
403
  WC_Germanized_Meta_Box_Product_Data::save_product_data( $real_product_id, $data );
includes/class-wc-gzd-checkout.php CHANGED
@@ -32,44 +32,77 @@ class WC_GZD_Checkout {
32
  }
33
 
34
  public function __construct() {
 
35
  add_action( 'init', array( $this, 'init_fields' ) );
36
  add_filter( 'woocommerce_billing_fields', array( $this, 'set_custom_fields' ), 0, 1 );
37
  add_filter( 'woocommerce_shipping_fields', array( $this, 'set_custom_fields_shipping' ), 0, 1 );
 
38
  // Add Fields to Order Edit Page
39
  add_filter( 'woocommerce_admin_billing_fields', array( $this, 'set_custom_fields_admin' ), 0, 1 );
40
  add_filter( 'woocommerce_admin_shipping_fields', array( $this, 'set_custom_fields_admin' ), 0, 1 );
 
41
  // Save Fields on order
42
  add_action( 'woocommerce_checkout_update_order_meta', array( $this, 'save_fields' ) );
 
43
  // Add Title to billing address format
44
  add_filter( 'woocommerce_order_formatted_billing_address', array( $this, 'set_formatted_billing_address' ), 0, 2 );
45
  add_filter( 'woocommerce_order_formatted_shipping_address', array( $this, 'set_formatted_shipping_address' ), 0, 2 );
46
  add_filter( 'woocommerce_formatted_address_replacements', array( $this, 'set_formatted_address' ), 0, 2 );
 
47
  // Add item desc to order
48
  add_action( 'woocommerce_order_add_product', array( $this, 'set_order_meta' ), 0, 5 );
49
  add_filter( 'woocommerce_hidden_order_itemmeta', array( $this, 'set_order_meta_hidden' ), 0 );
 
50
  // Deactivate checkout shipping selection
51
  add_action( 'woocommerce_review_order_before_shipping', array( $this, 'remove_shipping_rates' ), 0 );
 
52
  // Add better fee taxation
53
  add_action( 'woocommerce_cart_calculate_fees', array( $this, 'do_fee_tax_calculation' ), PHP_INT_MAX, 1 );
 
54
  // Disallow user order cancellation
55
  if ( get_option( 'woocommerce_gzd_checkout_stop_order_cancellation' ) == 'yes' ) {
56
  add_filter( 'woocommerce_get_cancel_order_url', array( $this, 'cancel_order_url' ), PHP_INT_MAX, 1 );
57
  add_filter( 'woocommerce_get_cancel_order_url_raw', array( $this, 'cancel_order_url' ), PHP_INT_MAX, 1 );
58
  add_filter( 'user_has_cap', array( $this, 'disallow_user_order_cancellation' ), 15, 3 );
 
59
  }
 
60
  // Free Shipping auto select
61
  if ( get_option( 'woocommerce_gzd_display_checkout_free_shipping_select' ) == 'yes' )
62
  add_filter( 'woocommerce_package_rates', array( $this, 'free_shipping_auto_select' ) );
63
 
64
  // Pay for order
65
  add_action( 'wp', array( $this, 'force_pay_order_redirect' ), 15 );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  }
67
 
68
  public function force_pay_order_redirect() {
69
 
70
  global $wp;
71
 
72
- if ( is_wc_endpoint_url( 'order-pay' ) && isset( $_GET['force_pay_order'] ) ) {
73
 
74
  // Manipulate $_POST
75
  $order_key = $_GET['key'];
@@ -158,6 +191,16 @@ class WC_GZD_Checkout {
158
  wc_get_template( 'order/order-pay-now-button.php', array( 'url' => add_query_arg( array( 'force_pay_order' => true ), $order->get_checkout_payment_url() ), 'order_id' => $order_id ) );
159
  }
160
 
 
 
 
 
 
 
 
 
 
 
161
  public function disallow_user_order_cancellation( $allcaps, $caps, $args ) {
162
  if ( isset( $caps[0] ) ) {
163
  switch ( $caps[0] ) {
@@ -271,9 +314,13 @@ class WC_GZD_Checkout {
271
  public function remove_shipping_rates() {
272
  if ( get_option( 'woocommerce_gzd_display_checkout_shipping_rate_select' ) == 'no' )
273
  return;
 
274
  $packages = WC()->shipping->get_packages();
 
275
  foreach ( $packages as $i => $package ) {
 
276
  $chosen_method = isset( WC()->session->chosen_shipping_methods[ $i ] ) ? WC()->session->chosen_shipping_methods[ $i ] : '';
 
277
  if ( ! empty( $package[ 'rates' ] ) ) {
278
  foreach ( $package[ 'rates' ] as $key => $rate ) {
279
  if ( $key != $chosen_method )
32
  }
33
 
34
  public function __construct() {
35
+
36
  add_action( 'init', array( $this, 'init_fields' ) );
37
  add_filter( 'woocommerce_billing_fields', array( $this, 'set_custom_fields' ), 0, 1 );
38
  add_filter( 'woocommerce_shipping_fields', array( $this, 'set_custom_fields_shipping' ), 0, 1 );
39
+
40
  // Add Fields to Order Edit Page
41
  add_filter( 'woocommerce_admin_billing_fields', array( $this, 'set_custom_fields_admin' ), 0, 1 );
42
  add_filter( 'woocommerce_admin_shipping_fields', array( $this, 'set_custom_fields_admin' ), 0, 1 );
43
+
44
  // Save Fields on order
45
  add_action( 'woocommerce_checkout_update_order_meta', array( $this, 'save_fields' ) );
46
+
47
  // Add Title to billing address format
48
  add_filter( 'woocommerce_order_formatted_billing_address', array( $this, 'set_formatted_billing_address' ), 0, 2 );
49
  add_filter( 'woocommerce_order_formatted_shipping_address', array( $this, 'set_formatted_shipping_address' ), 0, 2 );
50
  add_filter( 'woocommerce_formatted_address_replacements', array( $this, 'set_formatted_address' ), 0, 2 );
51
+
52
  // Add item desc to order
53
  add_action( 'woocommerce_order_add_product', array( $this, 'set_order_meta' ), 0, 5 );
54
  add_filter( 'woocommerce_hidden_order_itemmeta', array( $this, 'set_order_meta_hidden' ), 0 );
55
+
56
  // Deactivate checkout shipping selection
57
  add_action( 'woocommerce_review_order_before_shipping', array( $this, 'remove_shipping_rates' ), 0 );
58
+
59
  // Add better fee taxation
60
  add_action( 'woocommerce_cart_calculate_fees', array( $this, 'do_fee_tax_calculation' ), PHP_INT_MAX, 1 );
61
+
62
  // Disallow user order cancellation
63
  if ( get_option( 'woocommerce_gzd_checkout_stop_order_cancellation' ) == 'yes' ) {
64
  add_filter( 'woocommerce_get_cancel_order_url', array( $this, 'cancel_order_url' ), PHP_INT_MAX, 1 );
65
  add_filter( 'woocommerce_get_cancel_order_url_raw', array( $this, 'cancel_order_url' ), PHP_INT_MAX, 1 );
66
  add_filter( 'user_has_cap', array( $this, 'disallow_user_order_cancellation' ), 15, 3 );
67
+ add_action( 'woocommerce_germanized_order_confirmation_sent', array( $this, 'maybe_reduce_order_stock' ), 5, 1 );
68
  }
69
+
70
  // Free Shipping auto select
71
  if ( get_option( 'woocommerce_gzd_display_checkout_free_shipping_select' ) == 'yes' )
72
  add_filter( 'woocommerce_package_rates', array( $this, 'free_shipping_auto_select' ) );
73
 
74
  // Pay for order
75
  add_action( 'wp', array( $this, 'force_pay_order_redirect' ), 15 );
76
+
77
+ if ( get_option( 'woocommerce_gzd_checkout_disallow_belated_payment_method_selection' ) === 'yes' ) {
78
+ add_filter( 'woocommerce_get_checkout_payment_url', array( $this, 'set_payment_url_to_force_payment' ), 10, 2 );
79
+ }
80
+
81
+ if ( wc_gzd_is_parcel_delivery_data_transfer_checkbox_enabled() )
82
+ add_action( 'woocommerce_checkout_update_order_meta', array( $this, 'order_parcel_delivery_data_transfer' ), 10, 2 );
83
+ }
84
+
85
+ public function order_parcel_delivery_data_transfer( $order_id, $posted ) {
86
+ if ( isset( $_POST[ 'parcel-delivery' ] ) ) {
87
+ update_post_meta( $order_id, '_parcel_delivery_opted_in', 'yes' );
88
+ } else {
89
+ update_post_meta( $order_id, '_parcel_delivery_opted_in', 'no' );
90
+ }
91
+ }
92
+
93
+ public function set_payment_url_to_force_payment( $url, $order ) {
94
+ if ( strpos( $url, 'pay_for_order' ) !== false ) {
95
+ $url = add_query_arg( array( 'force_pay_order' => true ), $url );
96
+ }
97
+
98
+ return $url;
99
  }
100
 
101
  public function force_pay_order_redirect() {
102
 
103
  global $wp;
104
 
105
+ if ( is_wc_endpoint_url( 'order-pay' ) && isset( $_GET[ 'force_pay_order' ] ) ) {
106
 
107
  // Manipulate $_POST
108
  $order_key = $_GET['key'];
191
  wc_get_template( 'order/order-pay-now-button.php', array( 'url' => add_query_arg( array( 'force_pay_order' => true ), $order->get_checkout_payment_url() ), 'order_id' => $order_id ) );
192
  }
193
 
194
+ public function maybe_reduce_order_stock( $order_id ) {
195
+ $order = wc_get_order( $order_id );
196
+ if ( $order ) {
197
+ // Reduce order stock for non-cancellable orders
198
+ if ( apply_filters( 'woocommerce_payment_complete_reduce_order_stock', ! get_post_meta( $order->id, '_order_stock_reduced', true ), $order->id ) ) {
199
+ $order->reduce_order_stock();
200
+ }
201
+ }
202
+ }
203
+
204
  public function disallow_user_order_cancellation( $allcaps, $caps, $args ) {
205
  if ( isset( $caps[0] ) ) {
206
  switch ( $caps[0] ) {
314
  public function remove_shipping_rates() {
315
  if ( get_option( 'woocommerce_gzd_display_checkout_shipping_rate_select' ) == 'no' )
316
  return;
317
+
318
  $packages = WC()->shipping->get_packages();
319
+
320
  foreach ( $packages as $i => $package ) {
321
+
322
  $chosen_method = isset( WC()->session->chosen_shipping_methods[ $i ] ) ? WC()->session->chosen_shipping_methods[ $i ] : '';
323
+
324
  if ( ! empty( $package[ 'rates' ] ) ) {
325
  foreach ( $package[ 'rates' ] as $key => $rate ) {
326
  if ( $key != $chosen_method )
includes/class-wc-gzd-customer-helper.php CHANGED
@@ -148,6 +148,7 @@ class WC_GZD_Customer_Helper {
148
 
149
  if ( ! is_user_logged_in() && isset( $_GET[ 'account' ] ) && 'activate' === $_GET[ 'account' ] ) {
150
  wc_add_notice( __( 'Please activate your account through clicking on the activation link received via email.', 'woocommerce-germanized' ), 'notice' );
 
151
  }
152
 
153
  if ( is_account_page() && WC()->session->get( 'login_redirect' ) ) {
148
 
149
  if ( ! is_user_logged_in() && isset( $_GET[ 'account' ] ) && 'activate' === $_GET[ 'account' ] ) {
150
  wc_add_notice( __( 'Please activate your account through clicking on the activation link received via email.', 'woocommerce-germanized' ), 'notice' );
151
+ return;
152
  }
153
 
154
  if ( is_account_page() && WC()->session->get( 'login_redirect' ) ) {
includes/class-wc-gzd-emails.php CHANGED
@@ -172,11 +172,6 @@ class WC_GZD_Emails {
172
 
173
  public function remove_order_email_filters() {
174
 
175
- $current = $this->get_current_email_object();
176
-
177
- if ( ! $current || empty( $current ) )
178
- return;
179
-
180
  // Add order item name actions
181
  remove_action( 'woocommerce_order_item_name', 'wc_gzd_cart_product_units', wc_gzd_get_hook_priority( 'email_product_units' ) );
182
  remove_action( 'woocommerce_order_item_name', 'wc_gzd_cart_product_delivery_time', wc_gzd_get_hook_priority( 'email_product_delivery_time' ) );
@@ -293,7 +288,7 @@ class WC_GZD_Emails {
293
  * @return string
294
  */
295
  public function revocation_form_replacement( $atts ) {
296
- return '<a href="' . esc_url( get_permalink( wc_get_page_id( 'revocation' ) ) ) . '">' . _x( 'Forward your Revocation online', 'revocation-form', 'woocommerce-germanized' ) . '</a>';
297
  }
298
 
299
  }
172
 
173
  public function remove_order_email_filters() {
174
 
 
 
 
 
 
175
  // Add order item name actions
176
  remove_action( 'woocommerce_order_item_name', 'wc_gzd_cart_product_units', wc_gzd_get_hook_priority( 'email_product_units' ) );
177
  remove_action( 'woocommerce_order_item_name', 'wc_gzd_cart_product_delivery_time', wc_gzd_get_hook_priority( 'email_product_delivery_time' ) );
288
  * @return string
289
  */
290
  public function revocation_form_replacement( $atts ) {
291
+ return '<a href="' . esc_url( wc_gzd_get_page_permalink( 'revocation' ) ) . '">' . _x( 'Forward your Revocation online', 'revocation-form', 'woocommerce-germanized' ) . '</a>';
292
  }
293
 
294
  }
includes/class-wc-gzd-shortcodes.php CHANGED
@@ -14,6 +14,9 @@ class WC_GZD_Shortcodes {
14
  * Initializes Shortcodes
15
  */
16
  public static function init() {
 
 
 
17
 
18
  // Define shortcodes
19
  $shortcodes = array(
@@ -21,6 +24,7 @@ class WC_GZD_Shortcodes {
21
  'payment_methods_info' => __CLASS__ . '::payment_methods_info',
22
  'ekomi_badge' => __CLASS__ . '::ekomi_badge',
23
  'ekomi_widget' => __CLASS__ . '::ekomi_widget',
 
24
  'gzd_feature' => __CLASS__ . '::gzd_feature',
25
  'gzd_vat_info' => __CLASS__ . '::gzd_vat_info',
26
  'gzd_sale_info' => __CLASS__ . '::gzd_sale_info',
@@ -28,11 +32,37 @@ class WC_GZD_Shortcodes {
28
  );
29
 
30
  foreach ( $shortcodes as $shortcode => $function ) {
31
- add_shortcode( apply_filters( "{$shortcode}_shortcode_tag", $shortcode ), $function );
32
  }
33
 
34
  }
35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  public static function gzd_complaints( $atts ) {
37
  return wpautop( str_replace( 'http://ec.europa.eu/consumers/odr/', '<a href="http://ec.europa.eu/consumers/odr/" target="_blank">http://ec.europa.eu/consumers/odr/</a>', get_option( 'woocommerce_gzd_complaints_procedure_text' ) ) );
38
  }
14
  * Initializes Shortcodes
15
  */
16
  public static function init() {
17
+
18
+ // Rename the original WooCommerce Shortcode tag so that we can add our custom function to it
19
+ add_filter( 'add_to_cart_shortcode_tag', __CLASS__ . '::replace_add_to_cart_shortcode', 10 );
20
 
21
  // Define shortcodes
22
  $shortcodes = array(
24
  'payment_methods_info' => __CLASS__ . '::payment_methods_info',
25
  'ekomi_badge' => __CLASS__ . '::ekomi_badge',
26
  'ekomi_widget' => __CLASS__ . '::ekomi_widget',
27
+ 'add_to_cart' => __CLASS__ . '::gzd_add_to_cart',
28
  'gzd_feature' => __CLASS__ . '::gzd_feature',
29
  'gzd_vat_info' => __CLASS__ . '::gzd_vat_info',
30
  'gzd_sale_info' => __CLASS__ . '::gzd_sale_info',
32
  );
33
 
34
  foreach ( $shortcodes as $shortcode => $function ) {
35
+ add_shortcode( apply_filters( "gzd_{$shortcode}_shortcode_tag", $shortcode ), $function );
36
  }
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();
45
+ $legal = ob_get_clean();
46
+
47
+ ob_start();
48
+ woocommerce_gzd_template_single_price_unit();
49
+ $unit = ob_get_clean();
50
+
51
+ return $price . strip_tags( $unit . $legal, '<span><a>' );
52
+ }
53
+
54
+ public static function gzd_add_to_cart( $atts ) {
55
+ add_filter( 'woocommerce_get_price_html', __CLASS__ . '::gzd_add_price_suffixes', 10, 2 );
56
+
57
+ echo WC_Shortcodes::product_add_to_cart( $atts );
58
+
59
+ remove_filter( 'woocommerce_get_price_html', __CLASS__ . '::gzd_add_price_features', 10 );
60
+ }
61
+
62
+ public static function replace_add_to_cart_shortcode( $shortcode ) {
63
+ return 'add_to_cart_legacy';
64
+ }
65
+
66
  public static function gzd_complaints( $atts ) {
67
  return wpautop( str_replace( 'http://ec.europa.eu/consumers/odr/', '<a href="http://ec.europa.eu/consumers/odr/" target="_blank">http://ec.europa.eu/consumers/odr/</a>', get_option( 'woocommerce_gzd_complaints_procedure_text' ) ) );
68
  }
includes/compatibility/class-wc-gzd-compatibility-woocommerce-subscriptions.php CHANGED
@@ -28,10 +28,10 @@ class WC_GZD_Compatibility_Woocommerce_Subscriptions extends WC_GZD_Compatibilit
28
  }
29
 
30
  public function set_tax_notice( $price, $cart ) {
31
- ob_start();
32
-
33
  // Tax for inclusive prices
34
  if ( 'yes' == get_option( 'woocommerce_calc_taxes' ) && 'incl' == $cart->tax_display_cart ) {
 
 
35
 
36
  $tax_array = array();
37
 
@@ -83,8 +83,12 @@ class WC_GZD_Compatibility_Woocommerce_Subscriptions extends WC_GZD_Compatibilit
83
  <?php
84
  }
85
  }
 
 
 
 
 
86
  }
87
- return ob_get_clean();
88
  }
89
 
90
  }
28
  }
29
 
30
  public function set_tax_notice( $price, $cart ) {
 
 
31
  // Tax for inclusive prices
32
  if ( 'yes' == get_option( 'woocommerce_calc_taxes' ) && 'incl' == $cart->tax_display_cart ) {
33
+
34
+ ob_start();
35
 
36
  $tax_array = array();
37
 
83
  <?php
84
  }
85
  }
86
+
87
+ return ob_get_clean();
88
+
89
+ } else {
90
+ return $price;
91
  }
 
92
  }
93
 
94
  }
includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php CHANGED
@@ -43,6 +43,7 @@ class WC_GZD_Gateway_Direct_Debit extends WC_Payment_Gateway {
43
  $this->company_account_holder = $this->get_option( 'company_account_holder' );
44
  $this->company_account_iban = $this->get_option( 'company_account_iban' );
45
  $this->company_account_bic = $this->get_option( 'company_account_bic' );
 
46
  $this->checkbox_label = $this->get_option( 'checkbox_label' );
47
  $this->remember = $this->get_option( 'remember', 'no' );
48
  $this->mask = $this->get_option( 'mask', 'yes' );
@@ -209,31 +210,38 @@ Please notice: Period for pre-information of the SEPA direct debit is shortened
209
 
210
  if ( $order_query->have_posts() ) {
211
 
212
- include_once( 'libraries/sepa-xml-creator/SepaXmlCreator.php' );
213
- $creator = new SepaXmlCreator();
214
-
215
- $creator->setAccountValues( $this->company_account_holder, $this->company_account_iban, $this->company_account_bic );
216
- $creator->setGlaeubigerId( $this->company_identification_number );
 
 
 
 
 
 
 
 
 
217
 
218
  while ( $order_query->have_posts() ) {
219
 
220
  $order_query->next_post();
221
  $order = wc_get_order( $order_query->post->ID );
222
-
223
- $book = new SepaBuchung();
224
- $book->setBetrag( $order->get_total() );
225
- $book->setBic( $this->maybe_decrypt( $order->direct_debit_bic ) );
226
- $book->setName( $order->direct_debit_holder );
227
- $book->setIban( $this->maybe_decrypt( $order->direct_debit_iban ) );
228
- $book->setName( $order->direct_debit_holder );
229
- $book->setVerwendungszweck( apply_filters( 'woocommerce_germanized_direct_debit_purpose', sprintf( __( 'Order %s', 'woocommerce-germanized' ), $order->get_order_number() ) ), $order );
230
- $book->setMandat( $this->get_mandate_id( $order->id ), date_i18n( "Y-m-d", strtotime( $order->order_date ) ), false );
231
- $creator->addBuchung( $book );
232
-
233
  }
234
 
235
- $sepaxml = $creator->generateBasislastschriftXml();
236
-
237
  header( 'Content-Description: File Transfer' );
238
  header( 'Content-Disposition: attachment; filename=' . $filename );
239
  header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ), true );
@@ -241,7 +249,7 @@ Please notice: Period for pre-information of the SEPA direct debit is shortened
241
  header( 'Pragma: no-cache' );
242
  header( 'Expires: 0' );
243
 
244
- echo $sepaxml;
245
  exit();
246
 
247
  }
@@ -528,6 +536,12 @@ Please notice: Period for pre-information of the SEPA direct debit is shortened
528
  'description' => __( 'Automatically generate Mandate ID after order completion (based on Order ID).', 'woocommerce-germanized' ),
529
  'default' => 'yes',
530
  ),
 
 
 
 
 
 
531
  'mandate_id_format' => array(
532
  'title' => __( 'Mandate ID Format', 'woocommerce-germanized' ),
533
  'type' => 'text',
43
  $this->company_account_holder = $this->get_option( 'company_account_holder' );
44
  $this->company_account_iban = $this->get_option( 'company_account_iban' );
45
  $this->company_account_bic = $this->get_option( 'company_account_bic' );
46
+ $this->pain_format = $this->get_option( 'pain_format', 'pain.008.002.02' );
47
  $this->checkbox_label = $this->get_option( 'checkbox_label' );
48
  $this->remember = $this->get_option( 'remember', 'no' );
49
  $this->mask = $this->get_option( 'mask', 'yes' );
210
 
211
  if ( $order_query->have_posts() ) {
212
 
213
+ $msg_id = apply_filters( 'woocommerce_gzd_direct_debit_sepa_xml_msg_id', $this->company_account_bic . '00' . date( 'YmdHis', time() ) );
214
+ $payment_id = 'PMT-ID-' . date( 'YmdHis', time() );
215
+
216
+ $directDebit = Digitick\Sepa\TransferFile\Factory\TransferFileFacadeFactory::createDirectDebit( $msg_id, $this->company_account_holder, $this->pain_format );
217
+ $directDebit = apply_filters( 'woocommerce_gzd_direct_debit_sepa_xml_exporter', $directDebit );
218
+
219
+ $directDebit->addPaymentInfo( $payment_id, array(
220
+ 'id' => $payment_id,
221
+ 'creditorName' => $this->company_account_holder,
222
+ 'creditorAccountIBAN' => $this->company_account_iban,
223
+ 'creditorAgentBIC' => $this->company_account_bic,
224
+ 'seqType' => Digitick\Sepa\PaymentInformation::S_ONEOFF,
225
+ 'creditorId' => $this->company_identification_number,
226
+ ));
227
 
228
  while ( $order_query->have_posts() ) {
229
 
230
  $order_query->next_post();
231
  $order = wc_get_order( $order_query->post->ID );
232
+
233
+ // Add a Single Transaction to the named payment
234
+ $directDebit->addTransfer( $payment_id, apply_filters( 'woocommerce_gzd_direct_debit_sepa_xml_exporter_transfer_args', array(
235
+ 'amount' => $order->get_total(),
236
+ 'debtorIban' => $this->maybe_decrypt( $order->direct_debit_iban ),
237
+ 'debtorBic' => $this->maybe_decrypt( $order->direct_debit_bic ),
238
+ 'debtorName' => $order->direct_debit_holder,
239
+ 'debtorMandate' => $this->get_mandate_id( $order->id ), date_i18n( "Y-m-d", strtotime( $order->order_date ) ),
240
+ 'debtorMandateSignDate' => date_i18n( 'd.m.Y', strtotime( $order->order_date ) ),
241
+ 'remittanceInformation' => apply_filters( 'woocommerce_germanized_direct_debit_purpose', sprintf( __( 'Order %s', 'woocommerce-germanized' ), $order->get_order_number() ), $order ),
242
+ ) ), $this, $order );
243
  }
244
 
 
 
245
  header( 'Content-Description: File Transfer' );
246
  header( 'Content-Disposition: attachment; filename=' . $filename );
247
  header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ), true );
249
  header( 'Pragma: no-cache' );
250
  header( 'Expires: 0' );
251
 
252
+ echo $directDebit->asXML();
253
  exit();
254
 
255
  }
536
  'description' => __( 'Automatically generate Mandate ID after order completion (based on Order ID).', 'woocommerce-germanized' ),
537
  'default' => 'yes',
538
  ),
539
+ 'pain_format' => array(
540
+ 'title' => __( 'XML Pain Format', 'woocommerce-germanized' ),
541
+ 'type' => 'text',
542
+ 'description' => __( 'You may adjust the XML Export Pain Schema to your banks needs. Some banks may require pain.001.003.03.', 'woocommerce-germanized' ),
543
+ 'default' => 'pain.008.002.02',
544
+ ),
545
  'mandate_id_format' => array(
546
  'title' => __( 'Mandate ID Format', 'woocommerce-germanized' ),
547
  'type' => 'text',
includes/gateways/direct-debit/libraries/php-sepa-xml/.travis.yml ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ language: php
2
+
3
+ php:
4
+ - 5.3
5
+ - 5.4
6
+ - 5.5
7
+ - 5.6
8
+ - 7.0
9
+
10
+ before_script:
11
+ - composer install
12
+
13
+ script:
14
+ - ./bin/phpunit
includes/gateways/direct-debit/libraries/php-sepa-xml/DomBuilder/BaseDomBuilder.php ADDED
@@ -0,0 +1,179 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * SEPA file generator.
4
+ *
5
+ * @copyright © Digitick <www.digitick.net> 2012-2013
6
+ * @copyright © Blage <www.blage.net> 2013
7
+ * @license GNU Lesser General Public License v3.0
8
+ *
9
+ * This program is free software: you can redistribute it and/or modify
10
+ * it under the terms of the GNU General Lesser Public License as
11
+ * published by the Free Software Foundation, either version 3 of the
12
+ * License, or (at your option) any later version.
13
+ *
14
+ * This program is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ * GNU General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public License
20
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+ */
22
+
23
+ namespace Digitick\Sepa\DomBuilder;
24
+
25
+ use Digitick\Sepa\GroupHeader;
26
+
27
+ abstract class BaseDomBuilder implements DomBuilderInterface
28
+ {
29
+ /**
30
+ * @var \DOMDocument
31
+ */
32
+ protected $doc;
33
+
34
+ protected $root;
35
+
36
+ /**
37
+ * @var \DOMElement
38
+ */
39
+ protected $currentTransfer = null;
40
+
41
+ /**
42
+ * @var \DOMELement
43
+ */
44
+ protected $currentPayment = null;
45
+
46
+ /**
47
+ * @var string
48
+ */
49
+ protected $painFormat;
50
+
51
+ /**
52
+ * @param string $painFormat Supported format: 'pain.001.002.03', 'pain.001.001.03', 'pain.008.002.02', 'pain.008.001.02'
53
+ * @param boolean $withSchemaLocation define if xsi:schemaLocation tag is added to root
54
+ */
55
+ public function __construct($painFormat, $withSchemaLocation = true)
56
+ {
57
+ $this->painFormat = $painFormat;
58
+ $this->doc = new \DOMDocument('1.0', 'UTF-8');
59
+ $this->doc->formatOutput = true;
60
+ $this->root = $this->doc->createElement('Document');
61
+ $this->root->setAttribute('xmlns', sprintf('urn:iso:std:iso:20022:tech:xsd:%s', $painFormat));
62
+ $this->root->setAttribute('xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance');
63
+
64
+ if ($withSchemaLocation) {
65
+ $this->root->setAttribute('xsi:schemaLocation', "urn:iso:std:iso:20022:tech:xsd:$painFormat $painFormat.xsd");
66
+ }
67
+
68
+ $this->doc->appendChild($this->root);
69
+ }
70
+
71
+ /**
72
+ * @param $name
73
+ * @param null $value
74
+ * @return \DOMElement
75
+ */
76
+ protected function createElement($name, $value = null)
77
+ {
78
+ if ($value) {
79
+ $elm = $this->doc->createElement($name);
80
+ $elm->appendChild($this->doc->createTextNode($value));
81
+
82
+ return $elm;
83
+ } else {
84
+ return $this->doc->createElement($name);
85
+ }
86
+ }
87
+
88
+ /**
89
+ * @return string
90
+ */
91
+ public function asXml()
92
+ {
93
+ return $this->doc->saveXML();
94
+ }
95
+
96
+ /**
97
+ * Format an integer as a monetary value.
98
+ */
99
+ protected function intToCurrency($amount)
100
+ {
101
+ return sprintf('%01.2F', ($amount / 100));
102
+ }
103
+
104
+ /**
105
+ * Add GroupHeader Information to the document
106
+ *
107
+ * @param GroupHeader $groupHeader
108
+ * @return mixed
109
+ */
110
+ public function visitGroupHeader(GroupHeader $groupHeader)
111
+ {
112
+ $groupHeaderTag = $this->doc->createElement('GrpHdr');
113
+ $messageId = $this->createElement('MsgId', $groupHeader->getMessageIdentification());
114
+ $groupHeaderTag->appendChild($messageId);
115
+ $creationDateTime = $this->createElement(
116
+ 'CreDtTm',
117
+ $groupHeader->getCreationDateTime()->format($groupHeader->getCreationDateTimeFormat())
118
+ );
119
+ $groupHeaderTag->appendChild($creationDateTime);
120
+ $groupHeaderTag->appendChild($this->createElement('NbOfTxs', $groupHeader->getNumberOfTransactions()));
121
+ $groupHeaderTag->appendChild(
122
+ $this->createElement('CtrlSum', $this->intToCurrency($groupHeader->getControlSumCents()))
123
+ );
124
+
125
+ $initiatingParty = $this->createElement('InitgPty');
126
+ $initiatingPartyName = $this->createElement('Nm', $groupHeader->getInitiatingPartyName());
127
+ $initiatingParty->appendChild($initiatingPartyName);
128
+ if ($groupHeader->getInitiatingPartyId() !== null) {
129
+ $id = $this->createElement('Id', $groupHeader->getInitiatingPartyId());
130
+ $initiatingParty->appendChild($id);
131
+ }
132
+ $groupHeaderTag->appendChild($initiatingParty);
133
+ $this->currentTransfer->appendChild($groupHeaderTag);
134
+ }
135
+
136
+ /**
137
+ * @param string $bic
138
+ * @return \DOMElement
139
+ */
140
+ protected function getFinancialInstitutionElement($bic)
141
+ {
142
+ $finInstitution = $this->createElement('FinInstnId');
143
+
144
+ if (!$bic) {
145
+ $other = $this->createElement('Othr');
146
+ $id = $this->createElement('Id', 'NOTPROVIDED');
147
+ $other->appendChild($id);
148
+ $finInstitution->appendChild($other);
149
+ } else {
150
+ $finInstitution->appendChild($this->createElement('BIC', $bic));
151
+ }
152
+
153
+ return $finInstitution;
154
+ }
155
+
156
+ /**
157
+ * @param string $iban
158
+ * @return \DOMElement
159
+ */
160
+ public function getIbanElement($iban)
161
+ {
162
+ $id = $this->createElement('Id');
163
+ $id->appendChild($this->createElement('IBAN', $iban));
164
+
165
+ return $id;
166
+ }
167
+
168
+ /**
169
+ * @param string $remittenceInformation
170
+ * @return \DOMElement
171
+ */
172
+ public function getRemittenceElement($remittenceInformation)
173
+ {
174
+ $remittanceInformation = $this->createElement('RmtInf');
175
+ $remittanceInformation->appendChild($this->createElement('Ustrd', $remittenceInformation));
176
+
177
+ return $remittanceInformation;
178
+ }
179
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/DomBuilder/CustomerCreditTransferDomBuilder.php ADDED
@@ -0,0 +1,211 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * SEPA file generator.
4
+ *
5
+ * @copyright © Digitick <www.digitick.net> 2012-2013
6
+ * @copyright © Blage <www.blage.net> 2013
7
+ * @license GNU Lesser General Public License v3.0
8
+ *
9
+ * This program is free software: you can redistribute it and/or modify
10
+ * it under the terms of the GNU General Lesser Public License as
11
+ * published by the Free Software Foundation, either version 3 of the
12
+ * License, or (at your option) any later version.
13
+ *
14
+ * This program is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ * GNU General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public License
20
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+ */
22
+
23
+ namespace Digitick\Sepa\DomBuilder;
24
+
25
+ use Digitick\Sepa\PaymentInformation;
26
+ use Digitick\Sepa\TransferFile\TransferFileInterface;
27
+ use Digitick\Sepa\GroupHeader;
28
+ use Digitick\Sepa\TransferInformation\CustomerCreditTransferInformation;
29
+ use Digitick\Sepa\TransferInformation\TransferInformationInterface;
30
+
31
+ /**
32
+ * Class CustomerCreditTransferDomBuilder
33
+ */
34
+ class CustomerCreditTransferDomBuilder extends BaseDomBuilder
35
+ {
36
+
37
+ /**
38
+ * CustomerCreditTransferDomBuilder constructor
39
+ *
40
+ * @param string $painFormat
41
+ */
42
+ function __construct($painFormat = 'pain.001.002.03')
43
+ {
44
+ parent::__construct($painFormat);
45
+ }
46
+
47
+ /**
48
+ * Build the root of the document
49
+ *
50
+ * @param TransferFileInterface $transferFile
51
+ * @return mixed
52
+ */
53
+ public function visitTransferFile(TransferFileInterface $transferFile)
54
+ {
55
+ $this->currentTransfer = $this->doc->createElement('CstmrCdtTrfInitn');
56
+ $this->root->appendChild($this->currentTransfer);
57
+ }
58
+
59
+ /**
60
+ * Crawl PaymentInformation containing the Transactions
61
+ *
62
+ * @param PaymentInformation $paymentInformation
63
+ * @return mixed
64
+ */
65
+ public function visitPaymentInformation(PaymentInformation $paymentInformation)
66
+ {
67
+ $this->currentPayment = $this->createElement('PmtInf');
68
+ $this->currentPayment->appendChild($this->createElement('PmtInfId', $paymentInformation->getId()));
69
+ $this->currentPayment->appendChild($this->createElement('PmtMtd', $paymentInformation->getPaymentMethod()));
70
+
71
+ if ($paymentInformation->getBatchBooking() !== null) {
72
+ $this->currentPayment->appendChild($this->createElement('BtchBookg', $paymentInformation->getBatchBooking()));
73
+ }
74
+
75
+ $this->currentPayment->appendChild(
76
+ $this->createElement('NbOfTxs', $paymentInformation->getNumberOfTransactions())
77
+ );
78
+
79
+ $this->currentPayment->appendChild(
80
+ $this->createElement('CtrlSum', $this->intToCurrency($paymentInformation->getControlSumCents()))
81
+ );
82
+
83
+ $paymentTypeInformation = $this->createElement('PmtTpInf');
84
+ $serviceLevel = $this->createElement('SvcLvl');
85
+ $serviceLevel->appendChild($this->createElement('Cd', 'SEPA'));
86
+ $paymentTypeInformation->appendChild($serviceLevel);
87
+ if ($paymentInformation->getCategoryPurposeCode()) {
88
+ $categoryPurpose = $this->createElement('CtgyPurp');
89
+ $categoryPurpose->appendChild($this->createElement('Cd', $paymentInformation->getCategoryPurposeCode()));
90
+ $paymentTypeInformation->appendChild($categoryPurpose);
91
+ }
92
+ $this->currentPayment->appendChild($paymentTypeInformation);
93
+
94
+ if ($paymentInformation->getLocalInstrumentCode()) {
95
+ $localInstrument = $this->createElement('LclInstr');
96
+ $localInstrument->appendChild($this->createElement('Cd', $paymentInformation->getLocalInstrumentCode()));
97
+ $this->currentPayment->appendChild($localInstrument);
98
+ }
99
+
100
+ $this->currentPayment->appendChild($this->createElement('ReqdExctnDt', $paymentInformation->getDueDate()));
101
+ $debtor = $this->createElement('Dbtr');
102
+ $debtor->appendChild($this->createElement('Nm', $paymentInformation->getOriginName()));
103
+ $this->currentPayment->appendChild($debtor);
104
+
105
+ $debtorAccount = $this->createElement('DbtrAcct');
106
+ $id = $this->createElement('Id');
107
+ $id->appendChild($this->createElement('IBAN', $paymentInformation->getOriginAccountIBAN()));
108
+ $debtorAccount->appendChild($id);
109
+ if ($paymentInformation->getOriginAccountCurrency()) {
110
+ $debtorAccount->appendChild($this->createElement('Ccy', $paymentInformation->getOriginAccountCurrency()));
111
+ }
112
+ $this->currentPayment->appendChild($debtorAccount);
113
+
114
+ $debtorAgent = $this->createElement('DbtrAgt');
115
+ $financialInstitutionId = $this->createElement('FinInstnId');
116
+ $financialInstitutionId->appendChild($this->createElement('BIC', $paymentInformation->getOriginAgentBIC()));
117
+ $debtorAgent->appendChild($financialInstitutionId);
118
+ $this->currentPayment->appendChild($debtorAgent);
119
+
120
+ $this->currentPayment->appendChild($this->createElement('ChrgBr', 'SLEV'));
121
+ $this->currentTransfer->appendChild($this->currentPayment);
122
+ }
123
+
124
+ /**
125
+ * Crawl Transactions
126
+ *
127
+ * @param TransferInformationInterface $transactionInformation
128
+ * @return mixed
129
+ */
130
+ public function visitTransferInformation(TransferInformationInterface $transactionInformation)
131
+ {
132
+ /** @var $transactionInformation CustomerCreditTransferInformation */
133
+ $CdtTrfTxInf = $this->createElement('CdtTrfTxInf');
134
+
135
+ // Payment ID 2.28
136
+ $PmtId = $this->createElement('PmtId');
137
+ if ($transactionInformation->getInstructionId()) {
138
+ $PmtId->appendChild($this->createElement('InstrId', $transactionInformation->getInstructionId()));
139
+ }
140
+ $PmtId->appendChild($this->createElement('EndToEndId', $transactionInformation->getEndToEndIdentification()));
141
+ $CdtTrfTxInf->appendChild($PmtId);
142
+
143
+ // Amount 2.42
144
+ $amount = $this->createElement('Amt');
145
+ $instructedAmount = $this->createElement(
146
+ 'InstdAmt',
147
+ $this->intToCurrency($transactionInformation->getTransferAmount())
148
+ );
149
+ $instructedAmount->setAttribute('Ccy', $transactionInformation->getCurrency());
150
+ $amount->appendChild($instructedAmount);
151
+ $CdtTrfTxInf->appendChild($amount);
152
+
153
+ //Creditor Agent 2.77
154
+ if ($transactionInformation->getBic()) {
155
+ $creditorAgent = $this->createElement('CdtrAgt');
156
+ $financialInstitution = $this->createElement('FinInstnId');
157
+ $financialInstitution->appendChild($this->createElement('BIC', $transactionInformation->getBic()));
158
+ $creditorAgent->appendChild($financialInstitution);
159
+ $CdtTrfTxInf->appendChild($creditorAgent);
160
+ }
161
+
162
+ // Creditor 2.79
163
+ $creditor = $this->createElement('Cdtr');
164
+ $creditor->appendChild($this->createElement('Nm', $transactionInformation->getCreditorName()));
165
+ $CdtTrfTxInf->appendChild($creditor);
166
+
167
+ // CreditorAccount 2.80
168
+ $creditorAccount = $this->createElement('CdtrAcct');
169
+ $id = $this->createElement('Id');
170
+ $id->appendChild($this->createElement('IBAN', $transactionInformation->getIban()));
171
+ $creditorAccount->appendChild($id);
172
+ $CdtTrfTxInf->appendChild($creditorAccount);
173
+
174
+ // remittance 2.98 2.99
175
+ $remittanceInformation = $this->getRemittenceElement($transactionInformation->getRemittanceInformation());
176
+ $CdtTrfTxInf->appendChild($remittanceInformation);
177
+
178
+ $this->currentPayment->appendChild($CdtTrfTxInf);
179
+ }
180
+
181
+ /**
182
+ * Add the specific OrgId element for the format 'pain.001.001.03'
183
+ *
184
+ * @param GroupHeader $groupHeader
185
+ * @return mixed
186
+ */
187
+ public function visitGroupHeader(GroupHeader $groupHeader)
188
+ {
189
+ parent::visitGroupHeader($groupHeader);
190
+
191
+ if ($groupHeader->getInitiatingPartyId() !== null && $this->painFormat === 'pain.001.001.03') {
192
+ $newId = $this->createElement('Id');
193
+ $orgId = $this->createElement('OrgId');
194
+ $othr = $this->createElement('Othr');
195
+ $othr->appendChild($this->createElement('Id', $groupHeader->getInitiatingPartyId()));
196
+
197
+ if ($groupHeader->getIssuer()) {
198
+ $othr->appendChild($this->createElement('Issr', $groupHeader->getIssuer()));
199
+ }
200
+
201
+ $orgId->appendChild($othr);
202
+ $newId->appendChild($orgId);
203
+
204
+ $xpath = new \DOMXpath($this->doc);
205
+ $items = $xpath->query('GrpHdr/InitgPty/Id', $this->currentTransfer);
206
+ $oldId = $items->item(0);
207
+
208
+ $oldId->parentNode->replaceChild($newId, $oldId);
209
+ }
210
+ }
211
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/DomBuilder/CustomerDirectDebitTransferDomBuilder.php ADDED
@@ -0,0 +1,243 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * SEPA file generator.
4
+ *
5
+ * @copyright © Digitick <www.digitick.net> 2012-2013
6
+ * @copyright © Blage <www.blage.net> 2013
7
+ * @license GNU Lesser General Public License v3.0
8
+ *
9
+ * This program is free software: you can redistribute it and/or modify
10
+ * it under the terms of the GNU General Lesser Public License as
11
+ * published by the Free Software Foundation, either version 3 of the
12
+ * License, or (at your option) any later version.
13
+ *
14
+ * This program is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ * GNU General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public License
20
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+ */
22
+
23
+ namespace Digitick\Sepa\DomBuilder;
24
+
25
+ use Digitick\Sepa\TransferFile\CustomerCreditTransferFile;
26
+ use Digitick\Sepa\TransferFile\CustomerDirectDebitTransferFile;
27
+ use Digitick\Sepa\TransferInformation\CustomerDirectDebitTransferInformation;
28
+ use Digitick\Sepa\TransferInformation\TransferInformationInterface;
29
+ use Digitick\Sepa\PaymentInformation;
30
+ use Digitick\Sepa\TransferFile\TransferFileInterface;
31
+ use Digitick\Sepa\GroupHeader;
32
+
33
+ class CustomerDirectDebitTransferDomBuilder extends BaseDomBuilder
34
+ {
35
+
36
+ public function __construct($painFormat = 'pain.008.002.02')
37
+ {
38
+ parent::__construct($painFormat);
39
+ }
40
+
41
+ /**
42
+ * Build the root of the document
43
+ *
44
+ * @param TransferFileInterface $transferFile
45
+ * @return mixed
46
+ */
47
+ public function visitTransferFile(TransferFileInterface $transferFile)
48
+ {
49
+ $this->currentTransfer = $this->doc->createElement('CstmrDrctDbtInitn');
50
+ $this->root->appendChild($this->currentTransfer);
51
+ }
52
+
53
+ /**
54
+ * Crawl PaymentInformation containing the Transactions
55
+ *
56
+ * @param PaymentInformation $paymentInformation
57
+ * @return mixed
58
+ */
59
+ public function visitPaymentInformation(PaymentInformation $paymentInformation)
60
+ {
61
+ $this->currentPayment = $this->createElement('PmtInf');
62
+ $this->currentPayment->appendChild($this->createElement('PmtInfId', $paymentInformation->getId()));
63
+ $this->currentPayment->appendChild($this->createElement('PmtMtd', $paymentInformation->getPaymentMethod()));
64
+
65
+ if ($paymentInformation->getBatchBooking() !== null) {
66
+ $this->currentPayment->appendChild($this->createElement('BtchBookg', $paymentInformation->getBatchBooking()));
67
+ }
68
+
69
+ $this->currentPayment->appendChild(
70
+ $this->createElement('NbOfTxs', $paymentInformation->getNumberOfTransactions())
71
+ );
72
+
73
+ $this->currentPayment->appendChild(
74
+ $this->createElement('CtrlSum', $this->intToCurrency($paymentInformation->getControlSumCents()))
75
+ );
76
+
77
+ $paymentTypeInformation = $this->createElement('PmtTpInf');
78
+ $serviceLevel = $this->createElement('SvcLvl');
79
+ $serviceLevel->appendChild($this->createElement('Cd', 'SEPA'));
80
+ $paymentTypeInformation->appendChild($serviceLevel);
81
+ $this->currentPayment->appendChild($paymentTypeInformation);
82
+ $localInstrument = $this->createElement('LclInstrm');
83
+ if ($paymentInformation->getLocalInstrumentCode()) {
84
+ $localInstrument->appendChild($this->createElement('Cd', $paymentInformation->getLocalInstrumentCode()));
85
+ } else {
86
+ $localInstrument->appendChild($this->createElement('Cd', 'CORE'));
87
+ }
88
+ $paymentTypeInformation->appendChild($localInstrument);
89
+
90
+ $paymentTypeInformation->appendChild($this->createElement('SeqTp', $paymentInformation->getSequenceType()));
91
+
92
+ $this->currentPayment->appendChild($this->createElement('ReqdColltnDt', $paymentInformation->getDueDate()));
93
+ $creditor = $this->createElement('Cdtr');
94
+ $creditor->appendChild($this->createElement('Nm', $paymentInformation->getOriginName()));
95
+ $this->currentPayment->appendChild($creditor);
96
+
97
+ // <CdtrAcct>
98
+ $creditorAccount = $this->createElement('CdtrAcct');
99
+ $id = $this->getIbanElement($paymentInformation->getOriginAccountIBAN());
100
+ $creditorAccount->appendChild($id);
101
+ $this->currentPayment->appendChild($creditorAccount);
102
+
103
+ // <CdtrAgt>
104
+ if ($paymentInformation->getOriginAgentBIC()) {
105
+ $creditorAgent = $this->createElement('CdtrAgt');
106
+ $creditorAgent->appendChild($this->getFinancialInstitutionElement($paymentInformation->getOriginAgentBIC()));
107
+ $this->currentPayment->appendChild($creditorAgent);
108
+ }
109
+
110
+ $this->currentPayment->appendChild($this->createElement('ChrgBr', 'SLEV'));
111
+
112
+ $creditorSchemeId = $this->createElement('CdtrSchmeId');
113
+ $id = $this->createElement('Id');
114
+ $privateId = $this->createElement('PrvtId');
115
+ $other = $this->createElement('Othr');
116
+ $other->appendChild($this->createElement('Id', $paymentInformation->getCreditorId()));
117
+ $schemeName = $this->createElement('SchmeNm');
118
+ $schemeName->appendChild($this->createElement('Prtry', 'SEPA'));
119
+ $other->appendChild($schemeName);
120
+ $privateId->appendChild($other);
121
+ $id->appendChild($privateId);
122
+ $creditorSchemeId->appendChild($id);
123
+ $this->currentPayment->appendChild($creditorSchemeId);
124
+
125
+ $this->currentTransfer->appendChild($this->currentPayment);
126
+ }
127
+
128
+ /**
129
+ * Crawl Transactions
130
+ *
131
+ * @param TransferInformationInterface $transactionInformation
132
+ * @return mixed
133
+ */
134
+ public function visitTransferInformation(TransferInformationInterface $transactionInformation)
135
+ {
136
+ /** @var $transactionInformation CustomerDirectDebitTransferInformation */
137
+ $directDebitTransactionInformation = $this->createElement('DrctDbtTxInf');
138
+
139
+ $paymentId = $this->createElement('PmtId');
140
+ $paymentId->appendChild(
141
+ $this->createElement('EndToEndId', $transactionInformation->getEndToEndIdentification())
142
+ );
143
+ $directDebitTransactionInformation->appendChild($paymentId);
144
+
145
+ $instructedAmount = $this->createElement(
146
+ 'InstdAmt',
147
+ $this->intToCurrency($transactionInformation->getTransferAmount())
148
+ );
149
+ $instructedAmount->setAttribute('Ccy', $transactionInformation->getCurrency());
150
+ $directDebitTransactionInformation->appendChild($instructedAmount);
151
+
152
+ $directDebitTransaction = $this->createElement('DrctDbtTx');
153
+ $mandateRelatedInformation = $this->createElement('MndtRltdInf');
154
+ $directDebitTransaction->appendChild($mandateRelatedInformation);
155
+ $mandateRelatedInformation->appendChild(
156
+ $this->createElement('MndtId', $transactionInformation->getMandateId())
157
+ );
158
+ $mandateRelatedInformation->appendChild(
159
+ $this->createElement('DtOfSgntr', $transactionInformation->getMandateSignDate()->format('Y-m-d'))
160
+ );
161
+ $directDebitTransactionInformation->appendChild($directDebitTransaction);
162
+
163
+ // TODO add the possibility to add CreditorSchemeId on transfer level
164
+
165
+ $debtorAgent = $this->createElement('DbtrAgt');
166
+ $debtorAgent->appendChild($this->getFinancialInstitutionElement($transactionInformation->getBic()));
167
+ $directDebitTransactionInformation->appendChild($debtorAgent);
168
+
169
+ $debtor = $this->createElement('Dbtr');
170
+ $debtor->appendChild($this->createElement('Nm', $transactionInformation->getDebitorName()));
171
+ $directDebitTransactionInformation->appendChild($debtor);
172
+
173
+ $debtorAccount = $this->createElement('DbtrAcct');
174
+ $debtorAccount->appendChild($this->getIbanElement($transactionInformation->getIban()));
175
+ $directDebitTransactionInformation->appendChild($debtorAccount);
176
+
177
+ $directDebitTransactionInformation->appendChild(
178
+ $this->getRemittenceElement($transactionInformation->getRemittanceInformation())
179
+ );
180
+
181
+ if ($transactionInformation->hasAmendments()) {
182
+ $amendmentIndicator = $this->createElement('AmdmntInd', 'true');
183
+ $mandateRelatedInformation->appendChild($amendmentIndicator);
184
+
185
+ $amendmentInformationDetails = $this->createElement('AmdmntInfDtls');
186
+
187
+ if ($transactionInformation->hasAmendedDebtorAgent()) {
188
+ $originalDebtorAgent = $this->createElement('OrgnlDbtrAgt');
189
+ $financialInstitutionIdentification = $this->createElement('FinInstnId');
190
+ $other = $this->createElement('Othr');
191
+ // Same Mandate New Debtor Agent
192
+ $id = $this->createElement('Id', 'SMNDA');
193
+
194
+ $other->appendChild($id);
195
+ $financialInstitutionIdentification->appendChild($other);
196
+ $originalDebtorAgent->appendChild($financialInstitutionIdentification);
197
+ $amendmentInformationDetails->appendChild($originalDebtorAgent);
198
+ }
199
+
200
+ if ($transactionInformation->getOriginalDebtorIban() !== null) {
201
+ $originalDebtorAccount = $this->createElement('OrgnlDbtrAcct');
202
+ $originalDebtorAccount->appendChild($this->getIbanElement($transactionInformation->getOriginalDebtorIban()));
203
+ $amendmentInformationDetails->appendChild($originalDebtorAccount);
204
+ }
205
+
206
+ if ($transactionInformation->getOriginalMandateId() !== null) {
207
+ $originalMandateId = $this->createElement('OrgnlMndtId', $transactionInformation->getOriginalMandateId());
208
+ $amendmentInformationDetails->appendChild($originalMandateId);
209
+ }
210
+
211
+ $mandateRelatedInformation->appendChild($amendmentInformationDetails);
212
+ }
213
+
214
+ $this->currentPayment->appendChild($directDebitTransactionInformation);
215
+ }
216
+
217
+
218
+ /**
219
+ * Add the specific OrgId element for the format 'pain.008.001.02'
220
+ *
221
+ * @param GroupHeader $groupHeader
222
+ * @return mixed
223
+ */
224
+ public function visitGroupHeader(GroupHeader $groupHeader)
225
+ {
226
+ parent::visitGroupHeader($groupHeader);
227
+
228
+ if ($groupHeader->getInitiatingPartyId() !== null && $this->painFormat === 'pain.008.001.02') {
229
+ $newId = $this->createElement('Id');
230
+ $orgId = $this->createElement('OrgId');
231
+ $othr = $this->createElement('Othr');
232
+ $othr->appendChild($this->createElement('Id', $groupHeader->getInitiatingPartyId()));
233
+ $orgId->appendChild($othr);
234
+ $newId->appendChild($orgId);
235
+
236
+ $xpath = new \DOMXpath($this->doc);
237
+ $items = $xpath->query('GrpHdr/InitgPty/Id', $this->currentTransfer);
238
+ $oldId = $items->item(0);
239
+
240
+ $oldId->parentNode->replaceChild($newId, $oldId);
241
+ }
242
+ }
243
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/DomBuilder/DomBuilderFactory.php ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * SEPA file generator.
4
+ *
5
+ * @copyright © Digitick <www.digitick.net> 2012-2013
6
+ * @copyright © Blage <www.blage.net> 2013
7
+ * @license GNU Lesser General Public License v3.0
8
+ *
9
+ * This program is free software: you can redistribute it and/or modify
10
+ * it under the terms of the GNU General Lesser Public License as
11
+ * published by the Free Software Foundation, either version 3 of the
12
+ * License, or (at your option) any later version.
13
+ *
14
+ * This program is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ * GNU General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public License
20
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+ */
22
+
23
+ namespace Digitick\Sepa\DomBuilder;
24
+
25
+ use Digitick\Sepa\Exception\InvalidArgumentException;
26
+ use Digitick\Sepa\TransferFile\TransferFileInterface;
27
+
28
+ class DomBuilderFactory
29
+ {
30
+ public static function createDomBuilder(TransferFileInterface $transferFile, $painFormat = '')
31
+ {
32
+ $transferFileClass = get_class($transferFile);
33
+ switch ($transferFileClass) {
34
+ case 'Digitick\Sepa\TransferFile\CustomerCreditTransferFile':
35
+ $domBuilder = $painFormat ? new CustomerCreditTransferDomBuilder($painFormat) : new CustomerCreditTransferDomBuilder();
36
+ $transferFile->accept($domBuilder);
37
+ break;
38
+ case 'Digitick\Sepa\TransferFile\CustomerDirectDebitTransferFile':
39
+ $domBuilder = $painFormat ? new CustomerDirectDebitTransferDomBuilder($painFormat) : new CustomerDirectDebitTransferDomBuilder();
40
+ $transferFile->accept($domBuilder);
41
+ break;
42
+ default:
43
+ throw new InvalidArgumentException('The given object is not a valid Transferfile: ' . $transferFileClass);
44
+ }
45
+
46
+ return $domBuilder;
47
+ }
48
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/DomBuilder/DomBuilderInterface.php ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * SEPA file generator.
4
+ *
5
+ * @copyright © Digitick <www.digitick.net> 2012-2013
6
+ * @copyright © Blage <www.blage.net> 2013
7
+ * @license GNU Lesser General Public License v3.0
8
+ *
9
+ * This program is free software: you can redistribute it and/or modify
10
+ * it under the terms of the GNU General Lesser Public License as
11
+ * published by the Free Software Foundation, either version 3 of the
12
+ * License, or (at your option) any later version.
13
+ *
14
+ * This program is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ * GNU General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public License
20
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+ */
22
+
23
+ namespace Digitick\Sepa\DomBuilder;
24
+
25
+ use Digitick\Sepa\GroupHeader;
26
+ use Digitick\Sepa\PaymentInformation;
27
+ use Digitick\Sepa\TransferFile\TransferFileInterface;
28
+ use Digitick\Sepa\TransferInformation\TransferInformationInterface;
29
+
30
+ /**
31
+ * Used to build the Dom-structure for the different types of SEPA files
32
+ *
33
+ * Class DomBuilderInterface
34
+ * @package Digitick\Sepa\DomBuilder
35
+ */
36
+ interface DomBuilderInterface
37
+ {
38
+ /**
39
+ * Build the root of the document
40
+ *
41
+ * @param TransferFileInterface $transferFile
42
+ * @return mixed
43
+ */
44
+ public function visitTransferFile(TransferFileInterface $transferFile);
45
+
46
+ /**
47
+ * Add GroupHeader Information to the document
48
+ *
49
+ * @param GroupHeader $groupHeader
50
+ * @return mixed
51
+ */
52
+ public function visitGroupHeader(GroupHeader $groupHeader);
53
+
54
+ /**
55
+ * Crawl PaymentInformation containing the Transactions
56
+ *
57
+ * @param PaymentInformation $paymentInformation
58
+ * @return mixed
59
+ */
60
+ public function visitPaymentInformation(PaymentInformation $paymentInformation);
61
+
62
+ /**
63
+ * Crawl Transactions
64
+ *
65
+ * @param TransferInformationInterface $transactionInformation
66
+ * @return mixed
67
+ */
68
+ public function visitTransferInformation(TransferInformationInterface $transactionInformation);
69
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/Exception/Exception.php ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Digitick\Sepa\Exception;
4
+
5
+ /**
6
+ * SEPA file generator.
7
+ *
8
+ * @copyright © Blage <www.blage.net> 2013
9
+ * @license GNU Lesser General Public License v3.0
10
+ *
11
+ * This program is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU General Lesser Public License as
13
+ * published by the Free Software Foundation, either version 3 of the
14
+ * License, or (at your option) any later version.
15
+ *
16
+ * This program is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+
25
+ class Exception extends \Exception
26
+ {
27
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/Exception/InvalidArgumentException.php ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Digitick\Sepa\Exception;
4
+
5
+ /**
6
+ * SEPA file generator.
7
+ *
8
+ * @copyright © Blage <www.blage.net> 2013
9
+ * @license GNU Lesser General Public License v3.0
10
+ *
11
+ * This program is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU General Lesser Public License as
13
+ * published by the Free Software Foundation, either version 3 of the
14
+ * License, or (at your option) any later version.
15
+ *
16
+ * This program is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+
25
+ class InvalidArgumentException extends Exception
26
+ {
27
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/Exception/InvalidPaymentMethodException.php ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Digitick\Sepa\Exception;
4
+
5
+ /**
6
+ * SEPA file generator.
7
+ *
8
+ * @copyright © Blage <www.blage.net> 2013
9
+ * @license GNU Lesser General Public License v3.0
10
+ *
11
+ * This program is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU General Lesser Public License as
13
+ * published by the Free Software Foundation, either version 3 of the
14
+ * License, or (at your option) any later version.
15
+ *
16
+ * This program is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+
25
+ class InvalidPaymentMethodException extends Exception
26
+ {
27
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/Exception/InvalidTransferFileConfiguration.php ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Digitick\Sepa\Exception;
4
+
5
+ /**
6
+ * SEPA file generator.
7
+ *
8
+ * @copyright © Blage <www.blage.net> 2013
9
+ * @license GNU Lesser General Public License v3.0
10
+ *
11
+ * This program is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU General Lesser Public License as
13
+ * published by the Free Software Foundation, either version 3 of the
14
+ * License, or (at your option) any later version.
15
+ *
16
+ * This program is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+
25
+ class InvalidTransferFileConfiguration extends Exception
26
+ {
27
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/Exception/InvalidTransferTypeException.php ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Digitick\Sepa\Exception;
4
+
5
+ /**
6
+ * SEPA file generator.
7
+ *
8
+ * @copyright © Blage <www.blage.net> 2013
9
+ * @license GNU Lesser General Public License v3.0
10
+ *
11
+ * This program is free software: you can redistribute it and/or modify
12
+ * it under the terms of the GNU General Lesser Public License as
13
+ * published by the Free Software Foundation, either version 3 of the
14
+ * License, or (at your option) any later version.
15
+ *
16
+ * This program is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
23
+ */
24
+
25
+ class InvalidTransferTypeException extends Exception
26
+ {
27
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/GroupHeader.php ADDED
@@ -0,0 +1,237 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * SEPA file generator.
4
+ *
5
+ * @copyright © Digitick <www.digitick.net> 2012-2013
6
+ * @copyright © Blage <www.blage.net> 2013
7
+ * @license GNU Lesser General Public License v3.0
8
+ *
9
+ * This program is free software: you can redistribute it and/or modify
10
+ * it under the terms of the GNU General Lesser Public License as
11
+ * published by the Free Software Foundation, either version 3 of the
12
+ * License, or (at your option) any later version.
13
+ *
14
+ * This program is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ * GNU General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public License
20
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+ */
22
+
23
+ namespace Digitick\Sepa;
24
+
25
+ use Digitick\Sepa\DomBuilder\DomBuilderInterface;
26
+ use Digitick\Sepa\Util\StringHelper;
27
+
28
+ class GroupHeader
29
+ {
30
+ /**
31
+ * Whether this is a test Transaction
32
+ *
33
+ * @var boolean
34
+ */
35
+ protected $isTest;
36
+
37
+ /**
38
+ * @var string Unambiguously identify the message.
39
+ */
40
+ protected $messageIdentification;
41
+
42
+ /**
43
+ * The initiating Party for this payment
44
+ *
45
+ * @var string
46
+ */
47
+ protected $initiatingPartyId;
48
+
49
+ /**
50
+ * The Issuer.
51
+ *
52
+ * @var string
53
+ */
54
+ protected $issuer;
55
+
56
+ /**
57
+ * @var int
58
+ */
59
+ protected $numberOfTransactions = 0;
60
+
61
+ /**
62
+ * @var int
63
+ */
64
+ protected $controlSumCents = 0;
65
+
66
+ /**
67
+ * @var string
68
+ */
69
+ protected $initiatingPartyName;
70
+
71
+ /**
72
+ * @var \DateTime
73
+ */
74
+ protected $creationDateTime;
75
+
76
+ /**
77
+ * @var string
78
+ */
79
+ protected $creationDateTimeFormat = 'Y-m-d\TH:i:s\Z';
80
+
81
+ /**
82
+ * @param string $messageIdentification Maximum length: 35. Reference Number of the bulk.
83
+ * Part of the duplication check (unique daily reference).
84
+ * The first 8 or 11 characters of <Msgld> must match the BIC of the
85
+ * Instructing Agent. The rest of the field can be freely defined.
86
+ * @param string $initiatingPartyName
87
+ * @param boolean $isTest
88
+ */
89
+ public function __construct($messageIdentification, $initiatingPartyName, $isTest = false)
90
+ {
91
+ $this->messageIdentification = $messageIdentification;
92
+ $this->isTest = $isTest;
93
+ $this->initiatingPartyName = StringHelper::sanitizeString($initiatingPartyName);
94
+ $this->creationDateTime = new \DateTime();
95
+ }
96
+
97
+ public function accept(DomBuilderInterface $domBuilder)
98
+ {
99
+ $domBuilder->visitGroupHeader($this);
100
+ }
101
+
102
+ /**
103
+ * @param int $controlSumCents
104
+ */
105
+ public function setControlSumCents($controlSumCents)
106
+ {
107
+ $this->controlSumCents = $controlSumCents;
108
+ }
109
+
110
+ /**
111
+ * @return int
112
+ */
113
+ public function getControlSumCents()
114
+ {
115
+ return $this->controlSumCents;
116
+ }
117
+
118
+ /**
119
+ * @param string $initiatingPartyId
120
+ */
121
+ public function setInitiatingPartyId($initiatingPartyId)
122
+ {
123
+ $this->initiatingPartyId = $initiatingPartyId;
124
+ }
125
+
126
+ /**
127
+ * @return string
128
+ */
129
+ public function getInitiatingPartyId()
130
+ {
131
+ return $this->initiatingPartyId;
132
+ }
133
+
134
+ /**
135
+ * @return string
136
+ */
137
+ public function getIssuer()
138
+ {
139
+ return $this->issuer;
140
+ }
141
+
142
+ /**
143
+ * @param string $issuer
144
+ */
145
+ public function setIssuer($issuer)
146
+ {
147
+ $this->issuer = $issuer;
148
+ }
149
+
150
+ /**
151
+ * @param string $initiatingPartyName
152
+ */
153
+ public function setInitiatingPartyName($initiatingPartyName)
154
+ {
155
+ $this->initiatingPartyName = StringHelper::sanitizeString($initiatingPartyName);
156
+ }
157
+
158
+ /**
159
+ * @return string
160
+ */
161
+ public function getInitiatingPartyName()
162
+ {
163
+ return $this->initiatingPartyName;
164
+ }
165
+
166
+ /**
167
+ * @param boolean $isTest
168
+ */
169
+ public function setIsTest($isTest)
170
+ {
171
+ $this->isTest = $isTest;
172
+ }
173
+
174
+ /**
175
+ * @return boolean
176
+ */
177
+ public function getIsTest()
178
+ {
179
+ return $this->isTest;
180
+ }
181
+
182
+ /**
183
+ * @param string $messageIdentification
184
+ */
185
+ public function setMessageIdentification($messageIdentification)
186
+ {
187
+ $this->messageIdentification = $messageIdentification;
188
+ }
189
+
190
+ /**
191
+ * @return string
192
+ */
193
+ public function getMessageIdentification()
194
+ {
195
+ return $this->messageIdentification;
196
+ }
197
+
198
+ /**
199
+ * @param int $numberOfTransactions
200
+ */
201
+ public function setNumberOfTransactions($numberOfTransactions)
202
+ {
203
+ $this->numberOfTransactions = $numberOfTransactions;
204
+ }
205
+
206
+ /**
207
+ * @return int
208
+ */
209
+ public function getNumberOfTransactions()
210
+ {
211
+ return $this->numberOfTransactions;
212
+ }
213
+
214
+ /**
215
+ * @return \DateTime
216
+ */
217
+ public function getCreationDateTime()
218
+ {
219
+ return $this->creationDateTime;
220
+ }
221
+
222
+ /**
223
+ * @param string $creationDateTimeFormat
224
+ */
225
+ public function setCreationDateTimeFormat($creationDateTimeFormat)
226
+ {
227
+ $this->creationDateTimeFormat = $creationDateTimeFormat;
228
+ }
229
+
230
+ /**
231
+ * @return string
232
+ */
233
+ public function getCreationDateTimeFormat()
234
+ {
235
+ return $this->creationDateTimeFormat;
236
+ }
237
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/PaymentInformation.php ADDED
@@ -0,0 +1,438 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * SEPA file generator.
4
+ *
5
+ * @copyright © Digitick <www.digitick.net> 2012-2013
6
+ * @copyright © Blage <www.blage.net> 2013
7
+ * @license GNU Lesser General Public License v3.0
8
+ *
9
+ * This program is free software: you can redistribute it and/or modify
10
+ * it under the terms of the GNU General Lesser Public License as
11
+ * published by the Free Software Foundation, either version 3 of the
12
+ * License, or (at your option) any later version.
13
+ *
14
+ * This program is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ * GNU General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public License
20
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+ */
22
+
23
+ namespace Digitick\Sepa;
24
+
25
+ use Digitick\Sepa\DomBuilder\DomBuilderInterface;
26
+ use Digitick\Sepa\Exception\InvalidArgumentException;
27
+ use Digitick\Sepa\TransferInformation\TransferInformationInterface;
28
+ use Digitick\Sepa\Util\StringHelper;
29
+
30
+ class PaymentInformation
31
+ {
32
+ /**
33
+ * The first drawn from several recurring debits
34
+ */
35
+ const S_FIRST = 'FRST';
36
+
37
+ /**
38
+ * A recurring direct debit in a number of direct debits
39
+ */
40
+ const S_RECURRING = 'RCUR';
41
+
42
+ /**
43
+ * A one time non-recurring debit
44
+ */
45
+ const S_ONEOFF = 'OOFF';
46
+
47
+ /**
48
+ * The last direct debit in a series of recurring debits
49
+ */
50
+ const S_FINAL = 'FNAL';
51
+
52
+ /**
53
+ * @var string Unambiguously identify the payment.
54
+ */
55
+ public $id;
56
+
57
+ /**
58
+ * @var string Purpose of the transaction(s).
59
+ */
60
+ public $categoryPurposeCode;
61
+
62
+ /**
63
+ * @var string Debtor's name.
64
+ */
65
+ public $originName;
66
+
67
+ /**
68
+ * @var string Debtor's account IBAN.
69
+ */
70
+ public $originAccountIBAN;
71
+
72
+ /**
73
+ * @var string Debtor's account bank BIC code.
74
+ */
75
+ public $originAgentBIC;
76
+
77
+ /**
78
+ * @var string Debtor's account ISO currency code.
79
+ */
80
+ protected $originAccountCurrency;
81
+
82
+ /**
83
+ * @var string Payment method.
84
+ */
85
+ protected $paymentMethod;
86
+
87
+ /**
88
+ * @var string Local service instrument code.
89
+ */
90
+ protected $localInstrumentCode;
91
+
92
+ /**
93
+ * Date of payment execution
94
+ *
95
+ * @var \DateTime
96
+ */
97
+ protected $dueDate;
98
+
99
+ /**
100
+ * @var integer
101
+ */
102
+ protected $controlSumCents = 0;
103
+
104
+ /**
105
+ * @var integer Number of payment transactions.
106
+ */
107
+ protected $numberOfTransactions = 0;
108
+
109
+ /**
110
+ * @var array<TransferInformationInterface>
111
+ */
112
+ protected $transfers;
113
+
114
+ /**
115
+ * Valid Payment Methods set by the TransferFile
116
+ *
117
+ * @var
118
+ */
119
+ protected $validPaymentMethods;
120
+
121
+ /**
122
+ * @var string
123
+ */
124
+ protected $creditorId;
125
+
126
+ /**
127
+ * @var
128
+ */
129
+ protected $sequenceType;
130
+
131
+ /**
132
+ * Should the bank book multiple transaction as a batch
133
+ *
134
+ * @var int
135
+ */
136
+ protected $batchBooking = null;
137
+
138
+ /**
139
+ * @var \DateTime
140
+ */
141
+ protected $mandateSignDate;
142
+
143
+ /**
144
+ * @param string $id
145
+ * @param string $originAccountIBAN This is your IBAN
146
+ * @param string $originAgentBIC This is your BIC
147
+ * @param string $originName This is your Name
148
+ * @param string $originAccountCurrency
149
+ */
150
+ public function __construct($id, $originAccountIBAN, $originAgentBIC, $originName, $originAccountCurrency = 'EUR')
151
+ {
152
+ $this->id = $id;
153
+ $this->originAccountIBAN = $originAccountIBAN;
154
+ $this->originAgentBIC = $originAgentBIC;
155
+ $this->originName = StringHelper::sanitizeString($originName);
156
+ $this->originAccountCurrency = $originAccountCurrency;
157
+ $this->dueDate = new \DateTime();
158
+ }
159
+
160
+
161
+ /**
162
+ * @param TransferInformationInterface $transfer
163
+ */
164
+ public function addTransfer(TransferInformationInterface $transfer)
165
+ {
166
+ $this->transfers[] = $transfer;
167
+ $this->numberOfTransactions++;
168
+ $this->controlSumCents += $transfer->getTransferAmount();
169
+ }
170
+
171
+ /**
172
+ * @return array
173
+ */
174
+ public function getTransfers()
175
+ {
176
+ return $this->transfers;
177
+ }
178
+
179
+ /**
180
+ * The domBuilder accept this Object
181
+ *
182
+ * @param DomBuilderInterface $domBuilder
183
+ */
184
+ public function accept(DomBuilderInterface $domBuilder)
185
+ {
186
+ $domBuilder->visitPaymentInformation($this);
187
+ /** @var $transfer TransferInformationInterface */
188
+ foreach ($this->getTransfers() as $transfer) {
189
+ $transfer->accept($domBuilder);
190
+ }
191
+ }
192
+
193
+ /**
194
+ * Set the payment method.
195
+ * @param string $method
196
+ * @throws InvalidArgumentException
197
+ */
198
+ public function setPaymentMethod($method)
199
+ {
200
+ $method = strtoupper($method);
201
+ if (!in_array($method, $this->validPaymentMethods)) {
202
+ throw new InvalidArgumentException("Invalid Payment Method: $method, must be one of " . implode(
203
+ ',',
204
+ $this->validPaymentMethods
205
+ ));
206
+ }
207
+ $this->paymentMethod = $method;
208
+ }
209
+
210
+ /**
211
+ * @param string $localInstrumentCode
212
+ * @throws InvalidArgumentException
213
+ */
214
+ public function setLocalInstrumentCode($localInstrumentCode)
215
+ {
216
+ $localInstrumentCode = strtoupper($localInstrumentCode);
217
+ if (!in_array($localInstrumentCode, array('B2B', 'CORE', 'COR1'))) {
218
+ throw new InvalidArgumentException("Invalid Local Instrument Code: $localInstrumentCode");
219
+ }
220
+ $this->localInstrumentCode = $localInstrumentCode;
221
+ }
222
+
223
+ /**
224
+ * @param mixed $validPaymentMethods
225
+ */
226
+ public function setValidPaymentMethods($validPaymentMethods)
227
+ {
228
+ $this->validPaymentMethods = $validPaymentMethods;
229
+ }
230
+
231
+ /**
232
+ * @param string $categoryPurposeCode
233
+ */
234
+ public function setCategoryPurposeCode($categoryPurposeCode)
235
+ {
236
+ $this->categoryPurposeCode = $categoryPurposeCode;
237
+ }
238
+
239
+ /**
240
+ * @return string
241
+ */
242
+ public function getCategoryPurposeCode()
243
+ {
244
+ return $this->categoryPurposeCode;
245
+ }
246
+
247
+ /**
248
+ * @param \DateTime $dueDate
249
+ */
250
+ public function setDueDate($dueDate)
251
+ {
252
+ $this->dueDate = $dueDate;
253
+ }
254
+
255
+ /**
256
+ * @return \DateTime
257
+ */
258
+ public function getDueDate()
259
+ {
260
+ return $this->dueDate->format('Y-m-d');
261
+ }
262
+
263
+ /**
264
+ * @param \DateTime $mandateSignDate
265
+ */
266
+ public function setMandateSignDate($mandateSignDate)
267
+ {
268
+ $this->mandateSignDate = $mandateSignDate;
269
+ }
270
+
271
+ /**
272
+ * @return \DateTime
273
+ */
274
+ public function getMandateSignDate()
275
+ {
276
+ return $this->mandateSignDate;
277
+ }
278
+
279
+ /**
280
+ * @param string $originName
281
+ */
282
+ public function setOriginName($originName)
283
+ {
284
+ $this->originName = StringHelper::sanitizeString($originName);
285
+ }
286
+
287
+ /**
288
+ * @return string
289
+ */
290
+ public function getOriginName()
291
+ {
292
+ return $this->originName;
293
+ }
294
+
295
+ /**
296
+ * @param string $originAgentBIC
297
+ */
298
+ public function setOriginAgentBIC($originAgentBIC)
299
+ {
300
+ $this->originAgentBIC = $originAgentBIC;
301
+ }
302
+
303
+ /**
304
+ * @return string
305
+ */
306
+ public function getOriginAgentBIC()
307
+ {
308
+ return $this->originAgentBIC;
309
+ }
310
+
311
+ /**
312
+ * @param string $originAccountIBAN
313
+ */
314
+ public function setOriginAccountIBAN($originAccountIBAN)
315
+ {
316
+ $this->originAccountIBAN = $originAccountIBAN;
317
+ }
318
+
319
+ /**
320
+ * @return string
321
+ */
322
+ public function getOriginAccountIBAN()
323
+ {
324
+ return $this->originAccountIBAN;
325
+ }
326
+
327
+ /**
328
+ * @param string $originAccountCurrency
329
+ */
330
+ public function setOriginAccountCurrency($originAccountCurrency)
331
+ {
332
+ $this->originAccountCurrency = $originAccountCurrency;
333
+ }
334
+
335
+ /**
336
+ * @return string
337
+ */
338
+ public function getOriginAccountCurrency()
339
+ {
340
+ return $this->originAccountCurrency;
341
+ }
342
+
343
+ /**
344
+ * @param string $id
345
+ */
346
+ public function setId($id)
347
+ {
348
+ $this->id = $id;
349
+ }
350
+
351
+ /**
352
+ * @return string
353
+ */
354
+ public function getId()
355
+ {
356
+ return $this->id;
357
+ }
358
+
359
+ /**
360
+ * @return int
361
+ */
362
+ public function getControlSumCents()
363
+ {
364
+ return $this->controlSumCents;
365
+ }
366
+
367
+ /**
368
+ * @return string
369
+ */
370
+ public function getLocalInstrumentCode()
371
+ {
372
+ return $this->localInstrumentCode;
373
+ }
374
+
375
+ /**
376
+ * @return int
377
+ */
378
+ public function getNumberOfTransactions()
379
+ {
380
+ return $this->numberOfTransactions;
381
+ }
382
+
383
+ /**
384
+ * @return string
385
+ */
386
+ public function getPaymentMethod()
387
+ {
388
+ return $this->paymentMethod;
389
+ }
390
+
391
+ /**
392
+ * @param string $creditorSchemeId
393
+ */
394
+ public function setCreditorId($creditorSchemeId)
395
+ {
396
+ $this->creditorId = StringHelper::sanitizeString($creditorSchemeId);
397
+ }
398
+
399
+ /**
400
+ * @return string
401
+ */
402
+ public function getCreditorId()
403
+ {
404
+ return $this->creditorId;
405
+ }
406
+
407
+ /**
408
+ * @param mixed $sequenceType
409
+ */
410
+ public function setSequenceType($sequenceType)
411
+ {
412
+ $this->sequenceType = $sequenceType;
413
+ }
414
+
415
+ /**
416
+ * @return mixed
417
+ */
418
+ public function getSequenceType()
419
+ {
420
+ return $this->sequenceType;
421
+ }
422
+
423
+ /**
424
+ * @param boolean $batchBooking
425
+ */
426
+ public function setBatchBooking($batchBooking)
427
+ {
428
+ $this->batchBooking = $batchBooking;
429
+ }
430
+
431
+ /**
432
+ * @return int|null
433
+ */
434
+ public function getBatchBooking()
435
+ {
436
+ return $this->batchBooking;
437
+ }
438
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/TransferFile/BaseTransferFile.php ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * SEPA file generator.
4
+ *
5
+ * @copyright © Digitick <www.digitick.net> 2012-2013
6
+ * @copyright © Blage <www.blage.net> 2013
7
+ * @license GNU Lesser General Public License v3.0
8
+ *
9
+ * This program is free software: you can redistribute it and/or modify
10
+ * it under the terms of the GNU General Lesser Public License as
11
+ * published by the Free Software Foundation, either version 3 of the
12
+ * License, or (at your option) any later version.
13
+ *
14
+ * This program is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ * GNU General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public License
20
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+ */
22
+
23
+ namespace Digitick\Sepa\TransferFile;
24
+
25
+ use Digitick\Sepa\DomBuilder\DomBuilderInterface;
26
+ use Digitick\Sepa\Exception\InvalidTransferFileConfiguration;
27
+ use Digitick\Sepa\GroupHeader;
28
+ use Digitick\Sepa\PaymentInformation;
29
+
30
+ abstract class BaseTransferFile implements TransferFileInterface
31
+ {
32
+ /**
33
+ * @var GroupHeader
34
+ */
35
+ protected $groupHeader;
36
+
37
+ /**
38
+ * @var array<PaymentInformation>
39
+ */
40
+ protected $paymentInformations;
41
+
42
+ /**
43
+ * @param GroupHeader $groupHeader
44
+ */
45
+ public function __construct(GroupHeader $groupHeader)
46
+ {
47
+ $this->groupHeader = $groupHeader;
48
+ }
49
+
50
+ /**
51
+ * @return GroupHeader
52
+ */
53
+ public function getGroupHeader()
54
+ {
55
+ return $this->groupHeader;
56
+ }
57
+
58
+ /**
59
+ * @param PaymentInformation $paymentInformation
60
+ */
61
+ public function addPaymentInformation(PaymentInformation $paymentInformation)
62
+ {
63
+ $numberOfTransactions = $this->getGroupHeader()->getNumberOfTransactions(
64
+ ) + $paymentInformation->getNumberOfTransactions();
65
+ $transactionTotal = $this->getGroupHeader()->getControlSumCents() + $paymentInformation->getControlSumCents();
66
+ $this->groupHeader->setNumberOfTransactions($numberOfTransactions);
67
+ $this->groupHeader->setControlSumCents($transactionTotal);
68
+ $this->paymentInformations[] = $paymentInformation;
69
+ }
70
+
71
+ /**
72
+ * @param DomBuilderInterface $domBuilder
73
+ */
74
+ public function accept(DomBuilderInterface $domBuilder)
75
+ {
76
+ $this->validate();
77
+ $domBuilder->visitTransferFile($this);
78
+ $this->groupHeader->accept($domBuilder);
79
+ /** @var $paymentInformation PaymentInformation */
80
+ foreach ($this->paymentInformations as $paymentInformation) {
81
+ $paymentInformation->accept($domBuilder);
82
+ }
83
+ }
84
+
85
+ /**
86
+ * update the group header with transaction informations collected
87
+ * by paymentinformation
88
+ */
89
+ public function validate()
90
+ {
91
+ if (count($this->paymentInformations) === 0) {
92
+ throw new InvalidTransferFileConfiguration('No paymentinformations available, add paymentInformation via addPaymentInformation()');
93
+ }
94
+ }
95
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/TransferFile/CustomerCreditTransferFile.php ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * SEPA file generator.
4
+ *
5
+ * @copyright © Digitick <www.digitick.net> 2012-2013
6
+ * @copyright © Blage <www.blage.net> 2013
7
+ * @license GNU Lesser General Public License v3.0
8
+ *
9
+ * This program is free software: you can redistribute it and/or modify
10
+ * it under the terms of the GNU General Lesser Public License as
11
+ * published by the Free Software Foundation, either version 3 of the
12
+ * License, or (at your option) any later version.
13
+ *
14
+ * This program is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ * GNU General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public License
20
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+ */
22
+
23
+ namespace Digitick\Sepa\TransferFile;
24
+
25
+ use Digitick\Sepa\Exception\InvalidTransferFileConfiguration;
26
+ use Digitick\Sepa\Exception\InvalidTransferTypeException;
27
+ use Digitick\Sepa\PaymentInformation;
28
+ use Digitick\Sepa\TransferInformation\CustomerCreditTransferInformation;
29
+
30
+ class CustomerCreditTransferFile extends BaseTransferFile
31
+ {
32
+ /**
33
+ * @param PaymentInformation $paymentInformation
34
+ */
35
+ public function addPaymentInformation(PaymentInformation $paymentInformation)
36
+ {
37
+ $paymentInformation->setValidPaymentMethods(array('TRF'));
38
+ $paymentInformation->setPaymentMethod('TRF');
39
+ parent::addPaymentInformation($paymentInformation);
40
+ }
41
+
42
+ /**
43
+ * validate the transferfile
44
+ *
45
+ * @throws \Digitick\Sepa\Exception\InvalidTransferTypeException
46
+ */
47
+ public function validate()
48
+ {
49
+ parent::validate();
50
+ /** @var $payment PaymentInformation */
51
+ foreach ($this->paymentInformations as $payment) {
52
+ if (count($payment->getTransfers()) === 0) {
53
+ throw new InvalidTransferFileConfiguration('PaymentInformation must at least contain one payment');
54
+ }
55
+ foreach ($payment->getTransfers() as $transfer) {
56
+ if (!$transfer instanceof CustomerCreditTransferInformation) {
57
+ throw new InvalidTransferTypeException('Transfers must be of type CustomerCreditTransferInformation instead of: ' . get_class(
58
+ $transfer
59
+ ));
60
+ }
61
+ }
62
+ }
63
+ }
64
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/TransferFile/CustomerDirectDebitTransferFile.php ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * SEPA file generator.
4
+ *
5
+ * @copyright © Digitick <www.digitick.net> 2012-2013
6
+ * @copyright © Blage <www.blage.net> 2013
7
+ * @license GNU Lesser General Public License v3.0
8
+ *
9
+ * This program is free software: you can redistribute it and/or modify
10
+ * it under the terms of the GNU General Lesser Public License as
11
+ * published by the Free Software Foundation, either version 3 of the
12
+ * License, or (at your option) any later version.
13
+ *
14
+ * This program is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ * GNU General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public License
20
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+ */
22
+
23
+ namespace Digitick\Sepa\TransferFile;
24
+
25
+ use Digitick\Sepa\Exception\InvalidTransferFileConfiguration;
26
+ use Digitick\Sepa\Exception\InvalidTransferTypeException;
27
+ use Digitick\Sepa\PaymentInformation;
28
+ use Digitick\Sepa\TransferInformation\CustomerDirectDebitTransferInformation;
29
+
30
+ class CustomerDirectDebitTransferFile extends BaseTransferFile
31
+ {
32
+ /**
33
+ * @param PaymentInformation $paymentInformation
34
+ */
35
+ public function addPaymentInformation(PaymentInformation $paymentInformation)
36
+ {
37
+ $paymentInformation->setValidPaymentMethods(array('DD'));
38
+ $paymentInformation->setPaymentMethod('DD');
39
+ parent::addPaymentInformation($paymentInformation);
40
+ }
41
+
42
+ /**
43
+ * validate the transferfile
44
+ *
45
+ * @throws \Digitick\Sepa\Exception\InvalidTransferTypeException
46
+ */
47
+ public function validate()
48
+ {
49
+ parent::validate();
50
+ /** @var $payment PaymentInformation */
51
+ foreach ($this->paymentInformations as $payment) {
52
+ if ((string)$payment->getSequenceType() === '') {
53
+ throw new InvalidTransferFileConfiguration('Payment must contain a SequenceType');
54
+ }
55
+ if ((string)$payment->getCreditorId() === '') {
56
+ throw new InvalidTransferFileConfiguration('Payment must contain a CreditorSchemeId');
57
+ }
58
+ foreach ($payment->getTransfers() as $transfer) {
59
+ if (!$transfer instanceof CustomerDirectDebitTransferInformation) {
60
+ throw new InvalidTransferTypeException('Transfers must be of type \Digitick\Sepa\TransferInformation\CustomerDirectDebitTransferInformation instead of: ' . get_class(
61
+ $transfer
62
+ ));
63
+ }
64
+ }
65
+ }
66
+ }
67
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/TransferFile/Facade/BaseCustomerTransferFileFacade.php ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * SEPA file generator.
4
+ *
5
+ * @copyright © Digitick <www.digitick.net> 2012-2013
6
+ * @copyright © Blage <www.blage.net> 2013
7
+ * @license GNU Lesser General Public License v3.0
8
+ *
9
+ * This program is free software: you can redistribute it and/or modify
10
+ * it under the terms of the GNU General Lesser Public License as
11
+ * published by the Free Software Foundation, either version 3 of the
12
+ * License, or (at your option) any later version.
13
+ *
14
+ * This program is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ * GNU General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public License
20
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+ */
22
+
23
+ namespace Digitick\Sepa\TransferFile\Facade;
24
+
25
+ use Digitick\Sepa\DomBuilder\BaseDomBuilder;
26
+ use Digitick\Sepa\TransferFile\TransferFileInterface;
27
+
28
+ abstract class BaseCustomerTransferFileFacade implements CustomerTransferFileFacadeInterface
29
+ {
30
+ /**
31
+ * @var TransferFileInterface
32
+ */
33
+ protected $transferFile;
34
+
35
+ /**
36
+ * @var \Digitick\Sepa\DomBuilder\BaseDomBuilder
37
+ */
38
+ protected $domBuilder;
39
+
40
+ /**
41
+ * @var array
42
+ */
43
+ protected $payments = array();
44
+
45
+ /**
46
+ * @param TransferFileInterface $transferFile
47
+ * @param BaseDomBuilder $domBuilder
48
+ */
49
+ public function __construct(TransferFileInterface $transferFile, BaseDomBuilder $domBuilder)
50
+ {
51
+ $this->transferFile = $transferFile;
52
+ $this->domBuilder = $domBuilder;
53
+ }
54
+
55
+ /**
56
+ * @return string
57
+ */
58
+ public function asXML()
59
+ {
60
+ foreach ($this->payments as $payment) {
61
+ $this->transferFile->addPaymentInformation($payment);
62
+ }
63
+ $this->transferFile->accept($this->domBuilder);
64
+
65
+ return $this->domBuilder->asXml();
66
+ }
67
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/TransferFile/Facade/CustomerCreditFacade.php ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace Digitick\Sepa\TransferFile\Facade;
4
+
5
+ use Digitick\Sepa\Exception\InvalidArgumentException;
6
+ use Digitick\Sepa\PaymentInformation;
7
+ use Digitick\Sepa\TransferInformation\CustomerCreditTransferInformation;
8
+
9
+ /**
10
+ * Class CustomerCreditFacade
11
+ */
12
+ class CustomerCreditFacade extends BaseCustomerTransferFileFacade
13
+ {
14
+
15
+ /**
16
+ * @param string $paymentName
17
+ * @param array $paymentInformation
18
+ *
19
+ * @throws InvalidArgumentException
20
+ *
21
+ * @return PaymentInformation
22
+ */
23
+ public function addPaymentInfo($paymentName, array $paymentInformation)
24
+ {
25
+ if (isset($this->payments[$paymentName])) {
26
+ throw new InvalidArgumentException(sprintf('Payment with the name %s already exists', $paymentName));
27
+ }
28
+
29
+ $payment = new PaymentInformation(
30
+ $paymentInformation['id'],
31
+ $paymentInformation['debtorAccountIBAN'],
32
+ $paymentInformation['debtorAgentBIC'],
33
+ $paymentInformation['debtorName']
34
+ );
35
+
36
+ $this->payments[$paymentName] = $payment;
37
+
38
+ return $payment;
39
+ }
40
+
41
+ /**
42
+ * @param string $paymentName
43
+ * @param array $transferInformation
44
+ *
45
+ * @throws InvalidArgumentException
46
+ *
47
+ * @return CustomerCreditTransferInformation
48
+ */
49
+ public function addTransfer($paymentName, array $transferInformation)
50
+ {
51
+ if (!isset($this->payments[$paymentName])) {
52
+ throw new InvalidArgumentException(sprintf(
53
+ 'Payment with the name %s does not exists, create one first with addPaymentInfo',
54
+ $paymentName
55
+ ));
56
+ }
57
+
58
+ $transfer = new CustomerCreditTransferInformation(
59
+ $transferInformation['amount'],
60
+ $transferInformation['creditorIban'],
61
+ $transferInformation['creditorName']
62
+ );
63
+ $transfer->setBic($transferInformation['creditorBic']);
64
+ $transfer->setRemittanceInformation($transferInformation['remittanceInformation']);
65
+
66
+ if (isset($transferInformation['endToEndId'])) {
67
+ $transfer->setEndToEndIdentification($transferInformation['endToEndId']);
68
+ } else {
69
+ $transfer->setEndToEndIdentification(
70
+ $this->payments[$paymentName]->getId() . count($this->payments[$paymentName]->getTransfers())
71
+ );
72
+ }
73
+
74
+ $this->payments[$paymentName]->addTransfer($transfer);
75
+
76
+ return $transfer;
77
+ }
78
+
79
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/TransferFile/Facade/CustomerDirectDebitFacade.php ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * SEPA file generator.
4
+ *
5
+ * @copyright © Digitick <www.digitick.net> 2012-2013
6
+ * @copyright © Blage <www.blage.net> 2013
7
+ * @license GNU Lesser General Public License v3.0
8
+ *
9
+ * This program is free software: you can redistribute it and/or modify
10
+ * it under the terms of the GNU General Lesser Public License as
11
+ * published by the Free Software Foundation, either version 3 of the
12
+ * License, or (at your option) any later version.
13
+ *
14
+ * This program is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ * GNU General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public License
20
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+ */
22
+
23
+ namespace Digitick\Sepa\TransferFile\Facade;
24
+
25
+ use Digitick\Sepa\Exception\InvalidArgumentException;
26
+ use Digitick\Sepa\PaymentInformation;
27
+ use Digitick\Sepa\TransferInformation\CustomerDirectDebitTransferInformation;
28
+ use Digitick\Sepa\TransferInformation\TransferInformationInterface;
29
+
30
+ class CustomerDirectDebitFacade extends BaseCustomerTransferFileFacade
31
+ {
32
+ /**
33
+ * @param $paymentName
34
+ * @param array $paymentInformation
35
+ * - id
36
+ * - creditorName
37
+ * - creditorAccountIBAN
38
+ * - creditorAgentBIC
39
+ * - seqType
40
+ * - creditorId
41
+ * - [dueDate] if not set: now + 5 days
42
+ *
43
+ * @throws \Digitick\Sepa\Exception\InvalidArgumentException
44
+ *
45
+ * @return PaymentInformation
46
+ */
47
+ public function addPaymentInfo($paymentName, array $paymentInformation)
48
+ {
49
+ if (isset($this->payments[$paymentName])) {
50
+ throw new InvalidArgumentException(sprintf('Payment with the name %s already exists', $paymentName));
51
+ }
52
+ $payment = new PaymentInformation(
53
+ $paymentInformation['id'],
54
+ $paymentInformation['creditorAccountIBAN'],
55
+ $paymentInformation['creditorAgentBIC'],
56
+ $paymentInformation['creditorName']
57
+ );
58
+ $payment->setSequenceType($paymentInformation['seqType']);
59
+ $payment->setCreditorId($paymentInformation['creditorId']);
60
+ if (isset($paymentInformation['localInstrumentCode'])) {
61
+ $payment->setLocalInstrumentCode($paymentInformation['localInstrumentCode']);
62
+ }
63
+ if (isset($paymentInformation['dueDate'])) {
64
+ if ($paymentInformation['dueDate'] instanceof \DateTime) {
65
+ $payment->setDueDate($paymentInformation['dueDate']);
66
+ } else {
67
+ $payment->setDueDate(new \DateTime($paymentInformation['dueDate']));
68
+ }
69
+ } else {
70
+ $payment->setDueDate(new \DateTime(date('Y-m-d', strtotime('now + 5 days'))));
71
+ }
72
+
73
+ $this->payments[$paymentName] = $payment;
74
+
75
+ return $payment;
76
+ }
77
+
78
+ /**
79
+ * @param $paymentName
80
+ * @param array $transferInformation
81
+ * - amount
82
+ * - debtorIban
83
+ * - debtorBic
84
+ * - debtorName
85
+ * - debtorMandate
86
+ * - debtorMandateSignDate
87
+ * - remittanceInformation
88
+ * - [endToEndId]
89
+ * - [amendments]
90
+ *
91
+ * @throws \Digitick\Sepa\Exception\InvalidArgumentException
92
+ *
93
+ * @return TransferInformationInterface
94
+ */
95
+ public function addTransfer($paymentName, array $transferInformation)
96
+ {
97
+ if (!isset($this->payments[$paymentName])) {
98
+ throw new InvalidArgumentException(sprintf(
99
+ 'Payment with the name %s does not exists, create one first with addPaymentInfo',
100
+ $paymentName
101
+ ));
102
+ }
103
+ $transfer = new CustomerDirectDebitTransferInformation(
104
+ $transferInformation['amount'],
105
+ $transferInformation['debtorIban'],
106
+ $transferInformation['debtorName']
107
+ );
108
+ $transfer->setBic($transferInformation['debtorBic']);
109
+ $transfer->setMandateId($transferInformation['debtorMandate']);
110
+ if ($transferInformation['debtorMandateSignDate'] instanceof \DateTime) {
111
+ $transfer->setMandateSignDate($transferInformation['debtorMandateSignDate']);
112
+ } else {
113
+ $transfer->setMandateSignDate(new \DateTime($transferInformation['debtorMandateSignDate']));
114
+ }
115
+ $transfer->setRemittanceInformation($transferInformation['remittanceInformation']);
116
+ if (isset($transferInformation['endToEndId'])) {
117
+ $transfer->setEndToEndIdentification($transferInformation['endToEndId']);
118
+ } else {
119
+ $transfer->setEndToEndIdentification(
120
+ $this->payments[$paymentName]->getId() . count($this->payments[$paymentName]->getTransfers())
121
+ );
122
+ }
123
+ if (isset($transferInformation['originalMandateId'])) {
124
+ $transfer->setOriginalMandateId($transferInformation['originalMandateId']);
125
+ }
126
+ if (isset($transferInformation['originalDebtorIban'])) {
127
+ $transfer->setOriginalDebtorIban($transferInformation['originalDebtorIban']);
128
+ }
129
+ if (isset($transferInformation['amendedDebtorAgent'])) {
130
+ $transfer->setAmendedDebtorAgent((bool)$transferInformation['amendedDebtorAgent']);
131
+ }
132
+
133
+ $this->payments[$paymentName]->addTransfer($transfer);
134
+
135
+ return $transfer;
136
+ }
137
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/TransferFile/Facade/CustomerTransferFileFacadeInterface.php ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * SEPA file generator.
4
+ *
5
+ * @copyright © Digitick <www.digitick.net> 2012-2013
6
+ * @copyright © Blage <www.blage.net> 2013
7
+ * @license GNU Lesser General Public License v3.0
8
+ *
9
+ * This program is free software: you can redistribute it and/or modify
10
+ * it under the terms of the GNU General Lesser Public License as
11
+ * published by the Free Software Foundation, either version 3 of the
12
+ * License, or (at your option) any later version.
13
+ *
14
+ * This program is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ * GNU General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public License
20
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+ */
22
+
23
+ namespace Digitick\Sepa\TransferFile\Facade;
24
+
25
+ use Digitick\Sepa\PaymentInformation;
26
+ use Digitick\Sepa\TransferInformation\TransferInformationInterface;
27
+
28
+ interface CustomerTransferFileFacadeInterface
29
+ {
30
+ /**
31
+ * @param $payment
32
+ * @param array $paymentInformation
33
+ *
34
+ * @return PaymentInformation
35
+ */
36
+ public function addPaymentInfo($payment, array $paymentInformation);
37
+
38
+ /**
39
+ * @param $payment
40
+ * @param array $transferInformation
41
+ *
42
+ * @return TransferInformationInterface
43
+ */
44
+ public function addTransfer($payment, array $transferInformation);
45
+
46
+ /**
47
+ * @return string
48
+ */
49
+ public function asXML();
50
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/TransferFile/Factory/TransferFileFacadeFactory.php ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * SEPA file generator.
4
+ *
5
+ * @copyright © Digitick <www.digitick.net> 2012-2013
6
+ * @copyright © Blage <www.blage.net> 2013
7
+ * @license GNU Lesser General Public License v3.0
8
+ *
9
+ * This program is free software: you can redistribute it and/or modify
10
+ * it under the terms of the GNU General Lesser Public License as
11
+ * published by the Free Software Foundation, either version 3 of the
12
+ * License, or (at your option) any later version.
13
+ *
14
+ * This program is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ * GNU General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public License
20
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+ */
22
+
23
+ namespace Digitick\Sepa\TransferFile\Factory;
24
+
25
+ use Digitick\Sepa\DomBuilder\CustomerCreditTransferDomBuilder;
26
+ use Digitick\Sepa\DomBuilder\CustomerDirectDebitTransferDomBuilder;
27
+ use Digitick\Sepa\GroupHeader;
28
+ use Digitick\Sepa\TransferFile\CustomerCreditTransferFile;
29
+ use Digitick\Sepa\TransferFile\Facade\CustomerCreditFacade;
30
+ use Digitick\Sepa\TransferFile\Facade\CustomerDirectDebitFacade;
31
+ use Digitick\Sepa\TransferFile\CustomerDirectDebitTransferFile;
32
+
33
+ class TransferFileFacadeFactory
34
+ {
35
+ /**
36
+ * @param string $uniqueMessageIdentification Maximum length: 35. Reference Number of the bulk.
37
+ * Part of the duplication check (unique daily reference).
38
+ * The first 8 or 11 characters of <Msgld> must match the BIC of the
39
+ * Instructing Agent. The rest of the field can be freely defined.
40
+ * @param string $initiatingPartyName
41
+ * @param string $painFormat
42
+ *
43
+ * @return CustomerDirectDebitFacade
44
+ */
45
+ public static function createDirectDebit($uniqueMessageIdentification, $initiatingPartyName, $painFormat = 'pain.008.002.02')
46
+ {
47
+ $groupHeader = new GroupHeader($uniqueMessageIdentification, $initiatingPartyName);
48
+
49
+ return new CustomerDirectDebitFacade(new CustomerDirectDebitTransferFile($groupHeader), new CustomerDirectDebitTransferDomBuilder($painFormat));
50
+ }
51
+
52
+ /**
53
+ * @param GroupHeader $groupHeader
54
+ * @param string $painFormat
55
+ *
56
+ * @return CustomerDirectDebitFacade
57
+ */
58
+ public static function createDirectDebitWithGroupHeader(GroupHeader $groupHeader, $painFormat = 'pain.008.002.02')
59
+ {
60
+ return new CustomerDirectDebitFacade(new CustomerDirectDebitTransferFile($groupHeader), new CustomerDirectDebitTransferDomBuilder($painFormat));
61
+ }
62
+
63
+ /**
64
+ * @param string $uniqueMessageIdentification
65
+ * @param string $initiatingPartyName
66
+ * @param string $painFormat
67
+ *
68
+ * @return CustomerCreditFacade
69
+ */
70
+ public static function createCustomerCredit($uniqueMessageIdentification, $initiatingPartyName, $painFormat = 'pain.001.002.03')
71
+ {
72
+ $groupHeader = new GroupHeader($uniqueMessageIdentification, $initiatingPartyName);
73
+
74
+ return new CustomerCreditFacade(new CustomerCreditTransferFile($groupHeader), new CustomerCreditTransferDomBuilder($painFormat));
75
+ }
76
+
77
+ /**
78
+ * @param GroupHeader $groupHeader
79
+ * @param string $painFormat
80
+ *
81
+ * @return CustomerCreditFacade
82
+ */
83
+ public static function createCustomerCreditWithGroupHeader(GroupHeader $groupHeader, $painFormat = 'pain.001.002.03')
84
+ {
85
+ return new CustomerCreditFacade(new CustomerCreditTransferFile($groupHeader), new CustomerCreditTransferDomBuilder($painFormat));
86
+ }
87
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/TransferFile/TransferFileInterface.php ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * SEPA file generator.
4
+ *
5
+ * @copyright © Digitick <www.digitick.net> 2012-2013
6
+ * @copyright © Blage <www.blage.net> 2013
7
+ * @license GNU Lesser General Public License v3.0
8
+ *
9
+ * This program is free software: you can redistribute it and/or modify
10
+ * it under the terms of the GNU General Lesser Public License as
11
+ * published by the Free Software Foundation, either version 3 of the
12
+ * License, or (at your option) any later version.
13
+ *
14
+ * This program is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ * GNU General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public License
20
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+ */
22
+ namespace Digitick\Sepa\TransferFile;
23
+
24
+ use Digitick\Sepa\DomBuilder\DomBuilderInterface;
25
+ use Digitick\Sepa\GroupHeader;
26
+
27
+ interface TransferFileInterface
28
+ {
29
+ public function __construct(GroupHeader $groupHeader);
30
+
31
+ /**
32
+ * @return GroupHeader
33
+ */
34
+ public function getGroupHeader();
35
+
36
+ /**
37
+ * Validate the transferfile
38
+ * @return mixed
39
+ */
40
+ public function validate();
41
+
42
+ public function accept(DomBuilderInterface $domBuilder);
43
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/TransferInformation/BaseTransferInformation.php ADDED
@@ -0,0 +1,214 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * SEPA file generator.
4
+ *
5
+ * @copyright © Digitick <www.digitick.net> 2012-2013
6
+ * @copyright © Blage <www.blage.net> 2013
7
+ * @license GNU Lesser General Public License v3.0
8
+ *
9
+ * This program is free software: you can redistribute it and/or modify
10
+ * it under the terms of the GNU General Lesser Public License as
11
+ * published by the Free Software Foundation, either version 3 of the
12
+ * License, or (at your option) any later version.
13
+ *
14
+ * This program is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ * GNU General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public License
20
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+ */
22
+
23
+ namespace Digitick\Sepa\TransferInformation;
24
+
25
+ use Digitick\Sepa\DomBuilder\DomBuilderInterface;
26
+ use Digitick\Sepa\Exception\InvalidArgumentException;
27
+ use Digitick\Sepa\Util\StringHelper;
28
+
29
+ class BaseTransferInformation implements TransferInformationInterface
30
+ {
31
+ /**
32
+ * Account Identifier
33
+ *
34
+ * @var string
35
+ */
36
+ protected $iban;
37
+
38
+ /**
39
+ * Financial Institution Identifier;
40
+ *
41
+ * @var string
42
+ */
43
+ protected $bic;
44
+
45
+ /**
46
+ * Must be between 0.01 and 999999999.99
47
+ *
48
+ * @var string
49
+ */
50
+ protected $transferAmount;
51
+
52
+ /**
53
+ * @var string
54
+ */
55
+ protected $name;
56
+
57
+ /**
58
+ * @var string
59
+ */
60
+ protected $instructionId;
61
+
62
+ /**
63
+ * @var string
64
+ */
65
+ protected $EndToEndIdentification;
66
+
67
+ /**
68
+ * @var string
69
+ */
70
+ protected $currency = 'EUR';
71
+
72
+ /**
73
+ * Purpose of this transaction
74
+ *
75
+ * @var string
76
+ */
77
+ protected $remittanceInformation;
78
+
79
+ /**
80
+ * @param string $amount
81
+ * @param string $iban
82
+ * @param string $name
83
+ *
84
+ * @throws InvalidArgumentException
85
+ */
86
+ public function __construct($amount, $iban, $name)
87
+ {
88
+ $amount += 0;
89
+ if (is_float($amount)) {
90
+ if (!function_exists('bcscale')) {
91
+ throw new InvalidArgumentException('Using floats for amount is only possible with bcmath enabled');
92
+ }
93
+ bcscale(2);
94
+ $amount = (integer)bcmul(sprintf('%01.4F', $amount), '100');
95
+ }
96
+ $this->transferAmount = $amount;
97
+ $this->iban = $iban;
98
+ $this->name = StringHelper::sanitizeString($name);
99
+ }
100
+
101
+ /**
102
+ * @param DomBuilderInterface $domBuilder
103
+ */
104
+ public function accept(DomBuilderInterface $domBuilder)
105
+ {
106
+ $domBuilder->visitTransferInformation($this);
107
+ }
108
+
109
+ /**
110
+ * @return mixed
111
+ */
112
+ public function getTransferAmount()
113
+ {
114
+ return $this->transferAmount;
115
+ }
116
+
117
+ /**
118
+ * @param mixed $currency
119
+ */
120
+ public function setCurrency($currency)
121
+ {
122
+ $this->currency = $currency;
123
+ }
124
+
125
+ /**
126
+ * @return mixed
127
+ */
128
+ public function getCurrency()
129
+ {
130
+ return $this->currency;
131
+ }
132
+
133
+ /**
134
+ * @param string $EndToEndIdentification
135
+ */
136
+ public function setEndToEndIdentification($EndToEndIdentification)
137
+ {
138
+ $this->EndToEndIdentification = StringHelper::sanitizeString($EndToEndIdentification);
139
+ }
140
+
141
+ /**
142
+ * @return string
143
+ */
144
+ public function getEndToEndIdentification()
145
+ {
146
+ return $this->EndToEndIdentification;
147
+ }
148
+
149
+ /**
150
+ * @param string $instructionId
151
+ */
152
+ public function setInstructionId($instructionId)
153
+ {
154
+ $this->instructionId = $instructionId;
155
+ }
156
+
157
+ /**
158
+ * @return string
159
+ */
160
+ public function getInstructionId()
161
+ {
162
+ return $this->instructionId;
163
+ }
164
+
165
+
166
+ /**
167
+ * @param string $iban
168
+ */
169
+ public function setIban($iban)
170
+ {
171
+ $this->iban = $iban;
172
+ }
173
+
174
+ /**
175
+ * @return string
176
+ */
177
+ public function getIban()
178
+ {
179
+ return $this->iban;
180
+ }
181
+
182
+ /**
183
+ * @param string $bic
184
+ */
185
+ public function setBic($bic)
186
+ {
187
+ $this->bic = $bic;
188
+ }
189
+
190
+ /**
191
+ * @return string
192
+ */
193
+ public function getBic()
194
+ {
195
+ return $this->bic;
196
+ }
197
+
198
+ /**
199
+ * @param string $remittanceInformation
200
+ */
201
+ public function setRemittanceInformation($remittanceInformation)
202
+ {
203
+ $this->remittanceInformation = StringHelper::sanitizeString($remittanceInformation);
204
+ }
205
+
206
+ /**
207
+ * @return string
208
+ */
209
+ public function getRemittanceInformation()
210
+ {
211
+ return $this->remittanceInformation;
212
+ }
213
+
214
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/TransferInformation/CustomerCreditTransferInformation.php ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * SEPA file generator.
4
+ *
5
+ * @copyright © Digitick <www.digitick.net> 2012-2013
6
+ * @copyright © Blage <www.blage.net> 2013
7
+ * @license GNU Lesser General Public License v3.0
8
+ *
9
+ * This program is free software: you can redistribute it and/or modify
10
+ * it under the terms of the GNU General Lesser Public License as
11
+ * published by the Free Software Foundation, either version 3 of the
12
+ * License, or (at your option) any later version.
13
+ *
14
+ * This program is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ * GNU General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public License
20
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+ */
22
+
23
+ namespace Digitick\Sepa\TransferInformation;
24
+
25
+ class CustomerCreditTransferInformation extends BaseTransferInformation
26
+ {
27
+ /**
28
+ * @param string $amount
29
+ * @param string $iban
30
+ * @param string $name
31
+ * @param string $identification
32
+ */
33
+ public function __construct($amount, $iban, $name, $identification = null)
34
+ {
35
+ parent::__construct($amount, $iban, $name);
36
+
37
+ if (null === $identification) {
38
+ $identification = $name;
39
+ }
40
+
41
+ $this->setEndToEndIdentification($identification);
42
+ }
43
+
44
+ /**
45
+ * @return string
46
+ */
47
+ public function getCreditorName()
48
+ {
49
+ return $this->name;
50
+ }
51
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/TransferInformation/CustomerDirectDebitTransferInformation.php ADDED
@@ -0,0 +1,189 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * SEPA file generator.
4
+ *
5
+ * @copyright © Digitick <www.digitick.net> 2012-2013
6
+ * @copyright © Blage <www.blage.net> 2013
7
+ * @license GNU Lesser General Public License v3.0
8
+ *
9
+ * This program is free software: you can redistribute it and/or modify
10
+ * it under the terms of the GNU General Lesser Public License as
11
+ * published by the Free Software Foundation, either version 3 of the
12
+ * License, or (at your option) any later version.
13
+ *
14
+ * This program is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ * GNU General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public License
20
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+ */
22
+
23
+ namespace Digitick\Sepa\TransferInformation;
24
+
25
+ use Digitick\Sepa\Util\StringHelper;
26
+
27
+ class CustomerDirectDebitTransferInformation extends BaseTransferInformation
28
+ {
29
+ /**
30
+ * @var string
31
+ */
32
+ protected $mandateId;
33
+
34
+ /**
35
+ * @var \DateTime
36
+ */
37
+ protected $mandateSignDate;
38
+
39
+ /**
40
+ * @var \DateTime
41
+ */
42
+ protected $finalCollectionDate;
43
+
44
+ /**
45
+ * @var bool
46
+ */
47
+ protected $amendedDebtorAgent = false;
48
+
49
+ /**
50
+ * @var string|null
51
+ */
52
+ protected $originalDebtorIban = null;
53
+
54
+ /**
55
+ * @var string|null
56
+ */
57
+ protected $originalMandateId = null;
58
+
59
+ /**
60
+ * @param string $amount
61
+ * @param string $iban
62
+ * @param string $name
63
+ * @param string $identification
64
+ */
65
+ public function __construct($amount, $iban, $name, $identification = null)
66
+ {
67
+ parent::__construct($amount, $iban, $name);
68
+
69
+ if (null === $identification) {
70
+ $identification = $name;
71
+ }
72
+
73
+ $this->setEndToEndIdentification($identification);
74
+ }
75
+
76
+ /**
77
+ * @return boolean
78
+ */
79
+ public function hasAmendments()
80
+ {
81
+ return $this->amendedDebtorAgent
82
+ || $this->originalDebtorIban !== null
83
+ || $this->originalMandateId !== null;
84
+ }
85
+
86
+ /**
87
+ * @return boolean
88
+ */
89
+ public function hasAmendedDebtorAgent()
90
+ {
91
+ return $this->amendedDebtorAgent;
92
+ }
93
+
94
+ /**
95
+ * @param bool $status
96
+ */
97
+ public function setAmendedDebtorAgent($status)
98
+ {
99
+ $this->amendedDebtorAgent = $status;
100
+ }
101
+
102
+ /**
103
+ * @param \DateTime $finalCollectionDate
104
+ */
105
+ public function setFinalCollectionDate($finalCollectionDate)
106
+ {
107
+ $this->finalCollectionDate = $finalCollectionDate;
108
+ }
109
+
110
+ /**
111
+ * @return \DateTime
112
+ */
113
+ public function getFinalCollectionDate()
114
+ {
115
+ return $this->finalCollectionDate;
116
+ }
117
+
118
+ /**
119
+ * @param string $originalDebtorIban
120
+ */
121
+ public function setOriginalDebtorIban($originalDebtorIban)
122
+ {
123
+ $this->originalDebtorIban = $originalDebtorIban;
124
+ }
125
+
126
+ /**
127
+ * @return string|null
128
+ */
129
+ public function getOriginalDebtorIban()
130
+ {
131
+ return $this->originalDebtorIban;
132
+ }
133
+
134
+ /**
135
+ * @param string $originalMandateId
136
+ */
137
+ public function setOriginalMandateId($originalMandateId)
138
+ {
139
+ $this->originalMandateId = StringHelper::sanitizeString($originalMandateId);
140
+ }
141
+
142
+ /**
143
+ * @return string|null
144
+ */
145
+ public function getOriginalMandateId()
146
+ {
147
+ return $this->originalMandateId;
148
+ }
149
+
150
+ /**
151
+ * @param string $mandateId
152
+ */
153
+ public function setMandateId($mandateId)
154
+ {
155
+ $this->mandateId = StringHelper::sanitizeString($mandateId);
156
+ }
157
+
158
+ /**
159
+ * @return string
160
+ */
161
+ public function getMandateId()
162
+ {
163
+ return $this->mandateId;
164
+ }
165
+
166
+ /**
167
+ * @param \DateTime $mandateSignDate
168
+ */
169
+ public function setMandateSignDate($mandateSignDate)
170
+ {
171
+ $this->mandateSignDate = $mandateSignDate;
172
+ }
173
+
174
+ /**
175
+ * @return \DateTime
176
+ */
177
+ public function getMandateSignDate()
178
+ {
179
+ return $this->mandateSignDate;
180
+ }
181
+
182
+ /**
183
+ * @return string
184
+ */
185
+ public function getDebitorName()
186
+ {
187
+ return $this->name;
188
+ }
189
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/TransferInformation/TransferInformationInterface.php ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * SEPA file generator.
4
+ *
5
+ * @copyright © Digitick <www.digitick.net> 2012-2013
6
+ * @copyright © Blage <www.blage.net> 2013
7
+ * @license GNU Lesser General Public License v3.0
8
+ *
9
+ * This program is free software: you can redistribute it and/or modify
10
+ * it under the terms of the GNU General Lesser Public License as
11
+ * published by the Free Software Foundation, either version 3 of the
12
+ * License, or (at your option) any later version.
13
+ *
14
+ * This program is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ * GNU General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public License
20
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+ */
22
+
23
+ namespace Digitick\Sepa\TransferInformation;
24
+
25
+ use Digitick\Sepa\DomBuilder\DomBuilderInterface;
26
+
27
+ interface TransferInformationInterface
28
+ {
29
+ public function accept(DomBuilderInterface $domBuilder);
30
+
31
+ public function getTransferAmount();
32
+
33
+ public function getEndToEndIdentification();
34
+
35
+ public function getInstructionId();
36
+ }
includes/gateways/direct-debit/libraries/php-sepa-xml/Util/StringHelper.php ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * SEPA file generator.
4
+ *
5
+ * @copyright © Digitick <www.digitick.net> 2012-2013
6
+ * @copyright © Blage <www.blage.net> 2013
7
+ * @license GNU Lesser General Public License v3.0
8
+ *
9
+ * This program is free software: you can redistribute it and/or modify
10
+ * it under the terms of the GNU General Lesser Public License as
11
+ * published by the Free Software Foundation, either version 3 of the
12
+ * License, or (at your option) any later version.
13
+ *
14
+ * This program is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ * GNU General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public License
20
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+ */
22
+
23
+ namespace Digitick\Sepa\Util;
24
+
25
+ class StringHelper
26
+ {
27
+ /**
28
+ * @param string $inputString
29
+ * @return string
30
+ */
31
+ public static function sanitizeString($inputString)
32
+ {
33
+ $map = array(
34
+ // German
35
+ 'Ä' => 'Ae', 'Ö' => 'Oe', 'Ü' => 'Ue', 'ä' => 'ae', 'ö' => 'oe', 'ü' => 'ue', 'ß' => 'ss',
36
+ // others
37
+ 'À' => 'A', 'Á' => 'A', 'Â' => 'A', 'Ã' => 'A', 'Å' => 'A', 'Ă' => 'A', 'Æ' => 'A',
38
+ 'Þ' => 'B', 'Ç' => 'C', 'È' => 'E', 'É' => 'E', 'Ê' => 'E', 'Ë' => 'E',
39
+ 'Ì' => 'I', 'Í' => 'I', 'Î' => 'I', 'Ï' => 'I',
40
+ 'Ñ' => 'N', 'Ń' => 'N', 'Ò' => 'O', 'Ó' => 'O', 'Ô' => 'O', 'Õ' => 'O', 'Ø' => 'O',
41
+ 'Š' => 'S', 'Ș' => 'S', 'Ț' => 'T',
42
+ 'Ù' => 'U', 'Ú' => 'U', 'Û' => 'U', 'Ý' => 'Y',
43
+ 'à' => 'a', 'á' => 'a', 'â' => 'a', 'ã' => 'a', 'å' => 'a', 'ă' => 'a', 'æ' => 'a',
44
+ 'þ' => 'b', 'ç' => 'c', 'è' => 'e', 'é' => 'e', 'ê' => 'e', 'ë' => 'e', 'ƒ' => 'f',
45
+ 'ì' => 'i', 'í' => 'i', 'î' => 'i', 'ï' => 'i',
46
+ 'ñ' => 'n', 'ń' => 'n', 'ò' => 'o', 'ó' => 'o', 'ô' => 'o', 'õ' => 'o', 'ø' => 'o', 'ð' => 'o',
47
+ 'ș' => 's', 'š' => 's', 'ț' => 't',
48
+ 'ù' => 'u', 'ú' => 'u', 'û' => 'u', 'ý' => 'y', 'ÿ' => 'y',
49
+ 'Ð' => 'Dj','Ž' => 'Z', 'ž' => 'z',
50
+ );
51
+
52
+ return strtr($inputString, $map);
53
+ }
54
+ }
includes/gateways/direct-debit/libraries/sepa-xml-creator/LICENSE DELETED
@@ -1,339 +0,0 @@
1
- GNU GENERAL PUBLIC LICENSE
2
- Version 2, June 1991
3
-
4
- Copyright (C) 1989, 1991 Free Software Foundation, Inc., <http://fsf.org/>
5
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
6
- Everyone is permitted to copy and distribute verbatim copies
7
- of this license document, but changing it is not allowed.
8
-
9
- Preamble
10
-
11
- The licenses for most software are designed to take away your
12
- freedom to share and change it. By contrast, the GNU General Public
13
- License is intended to guarantee your freedom to share and change free
14
- software--to make sure the software is free for all its users. This
15
- General Public License applies to most of the Free Software
16
- Foundation's software and to any other program whose authors commit to
17
- using it. (Some other Free Software Foundation software is covered by
18
- the GNU Lesser General Public License instead.) You can apply it to
19
- your programs, too.
20
-
21
- When we speak of free software, we are referring to freedom, not
22
- price. Our General Public Licenses are designed to make sure that you
23
- have the freedom to distribute copies of free software (and charge for
24
- this service if you wish), that you receive source code or can get it
25
- if you want it, that you can change the software or use pieces of it
26
- in new free programs; and that you know you can do these things.
27
-
28
- To protect your rights, we need to make restrictions that forbid
29
- anyone to deny you these rights or to ask you to surrender the rights.
30
- These restrictions translate to certain responsibilities for you if you
31
- distribute copies of the software, or if you modify it.
32
-
33
- For example, if you distribute copies of such a program, whether
34
- gratis or for a fee, you must give the recipients all the rights that
35
- you have. You must make sure that they, too, receive or can get the
36
- source code. And you must show them these terms so they know their
37
- rights.
38
-
39
- We protect your rights with two steps: (1) copyright the software, and
40
- (2) offer you this license which gives you legal permission to copy,
41
- distribute and/or modify the software.
42
-
43
- Also, for each author's protection and ours, we want to make certain
44
- that everyone understands that there is no warranty for this free
45
- software. If the software is modified by someone else and passed on, we
46
- want its recipients to know that what they have is not the original, so
47
- that any problems introduced by others will not reflect on the original
48
- authors' reputations.
49
-
50
- Finally, any free program is threatened constantly by software
51
- patents. We wish to avoid the danger that redistributors of a free
52
- program will individually obtain patent licenses, in effect making the
53
- program proprietary. To prevent this, we have made it clear that any
54
- patent must be licensed for everyone's free use or not licensed at all.
55
-
56
- The precise terms and conditions for copying, distribution and
57
- modification follow.
58
-
59
- GNU GENERAL PUBLIC LICENSE
60
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
61
-
62
- 0. This License applies to any program or other work which contains
63
- a notice placed by the copyright holder saying it may be distributed
64
- under the terms of this General Public License. The "Program", below,
65
- refers to any such program or work, and a "work based on the Program"
66
- means either the Program or any derivative work under copyright law:
67
- that is to say, a work containing the Program or a portion of it,
68
- either verbatim or with modifications and/or translated into another
69
- language. (Hereinafter, translation is included without limitation in
70
- the term "modification".) Each licensee is addressed as "you".
71
-
72
- Activities other than copying, distribution and modification are not
73
- covered by this License; they are outside its scope. The act of
74
- running the Program is not restricted, and the output from the Program
75
- is covered only if its contents constitute a work based on the
76
- Program (independent of having been made by running the Program).
77
- Whether that is true depends on what the Program does.
78
-
79
- 1. You may copy and distribute verbatim copies of the Program's
80
- source code as you receive it, in any medium, provided that you
81
- conspicuously and appropriately publish on each copy an appropriate
82
- copyright notice and disclaimer of warranty; keep intact all the
83
- notices that refer to this License and to the absence of any warranty;
84
- and give any other recipients of the Program a copy of this License
85
- along with the Program.
86
-
87
- You may charge a fee for the physical act of transferring a copy, and
88
- you may at your option offer warranty protection in exchange for a fee.
89
-
90
- 2. You may modify your copy or copies of the Program or any portion
91
- of it, thus forming a work based on the Program, and copy and
92
- distribute such modifications or work under the terms of Section 1
93
- above, provided that you also meet all of these conditions:
94
-
95
- a) You must cause the modified files to carry prominent notices
96
- stating that you changed the files and the date of any change.
97
-
98
- b) You must cause any work that you distribute or publish, that in
99
- whole or in part contains or is derived from the Program or any
100
- part thereof, to be licensed as a whole at no charge to all third
101
- parties under the terms of this License.
102
-
103
- c) If the modified program normally reads commands interactively
104
- when run, you must cause it, when started running for such
105
- interactive use in the most ordinary way, to print or display an
106
- announcement including an appropriate copyright notice and a
107
- notice that there is no warranty (or else, saying that you provide
108
- a warranty) and that users may redistribute the program under
109
- these conditions, and telling the user how to view a copy of this
110
- License. (Exception: if the Program itself is interactive but
111
- does not normally print such an announcement, your work based on
112
- the Program is not required to print an announcement.)
113
-
114
- These requirements apply to the modified work as a whole. If
115
- identifiable sections of that work are not derived from the Program,
116
- and can be reasonably considered independent and separate works in
117
- themselves, then this License, and its terms, do not apply to those
118
- sections when you distribute them as separate works. But when you
119
- distribute the same sections as part of a whole which is a work based
120
- on the Program, the distribution of the whole must be on the terms of
121
- this License, whose permissions for other licensees extend to the
122
- entire whole, and thus to each and every part regardless of who wrote it.
123
-
124
- Thus, it is not the intent of this section to claim rights or contest
125
- your rights to work written entirely by you; rather, the intent is to
126
- exercise the right to control the distribution of derivative or
127
- collective works based on the Program.
128
-
129
- In addition, mere aggregation of another work not based on the Program
130
- with the Program (or with a work based on the Program) on a volume of
131
- a storage or distribution medium does not bring the other work under
132
- the scope of this License.
133
-
134
- 3. You may copy and distribute the Program (or a work based on it,
135
- under Section 2) in object code or executable form under the terms of
136
- Sections 1 and 2 above provided that you also do one of the following:
137
-
138
- a) Accompany it with the complete corresponding machine-readable
139
- source code, which must be distributed under the terms of Sections
140
- 1 and 2 above on a medium customarily used for software interchange; or,
141
-
142
- b) Accompany it with a written offer, valid for at least three
143
- years, to give any third party, for a charge no more than your
144
- cost of physically performing source distribution, a complete
145
- machine-readable copy of the corresponding source code, to be
146
- distributed under the terms of Sections 1 and 2 above on a medium
147
- customarily used for software interchange; or,
148
-
149
- c) Accompany it with the information you received as to the offer
150
- to distribute corresponding source code. (This alternative is
151
- allowed only for noncommercial distribution and only if you
152
- received the program in object code or executable form with such
153
- an offer, in accord with Subsection b above.)
154
-
155
- The source code for a work means the preferred form of the work for
156
- making modifications to it. For an executable work, complete source
157
- code means all the source code for all modules it contains, plus any
158
- associated interface definition files, plus the scripts used to
159
- control compilation and installation of the executable. However, as a
160
- special exception, the source code distributed need not include
161
- anything that is normally distributed (in either source or binary
162
- form) with the major components (compiler, kernel, and so on) of the
163
- operating system on which the executable runs, unless that component
164
- itself accompanies the executable.
165
-
166
- If distribution of executable or object code is made by offering
167
- access to copy from a designated place, then offering equivalent
168
- access to copy the source code from the same place counts as
169
- distribution of the source code, even though third parties are not
170
- compelled to copy the source along with the object code.
171
-
172
- 4. You may not copy, modify, sublicense, or distribute the Program
173
- except as expressly provided under this License. Any attempt
174
- otherwise to copy, modify, sublicense or distribute the Program is
175
- void, and will automatically terminate your rights under this License.
176
- However, parties who have received copies, or rights, from you under
177
- this License will not have their licenses terminated so long as such
178
- parties remain in full compliance.
179
-
180
- 5. You are not required to accept this License, since you have not
181
- signed it. However, nothing else grants you permission to modify or
182
- distribute the Program or its derivative works. These actions are
183
- prohibited by law if you do not accept this License. Therefore, by
184
- modifying or distributing the Program (or any work based on the
185
- Program), you indicate your acceptance of this License to do so, and
186
- all its terms and conditions for copying, distributing or modifying
187
- the Program or works based on it.
188
-
189
- 6. Each time you redistribute the Program (or any work based on the
190
- Program), the recipient automatically receives a license from the
191
- original licensor to copy, distribute or modify the Program subject to
192
- these terms and conditions. You may not impose any further
193
- restrictions on the recipients' exercise of the rights granted herein.
194
- You are not responsible for enforcing compliance by third parties to
195
- this License.
196
-
197
- 7. If, as a consequence of a court judgment or allegation of patent
198
- infringement or for any other reason (not limited to patent issues),
199
- conditions are imposed on you (whether by court order, agreement or
200
- otherwise) that contradict the conditions of this License, they do not
201
- excuse you from the conditions of this License. If you cannot
202
- distribute so as to satisfy simultaneously your obligations under this
203
- License and any other pertinent obligations, then as a consequence you
204
- may not distribute the Program at all. For example, if a patent
205
- license would not permit royalty-free redistribution of the Program by
206
- all those who receive copies directly or indirectly through you, then
207
- the only way you could satisfy both it and this License would be to
208
- refrain entirely from distribution of the Program.
209
-
210
- If any portion of this section is held invalid or unenforceable under
211
- any particular circumstance, the balance of the section is intended to
212
- apply and the section as a whole is intended to apply in other
213
- circumstances.
214
-
215
- It is not the purpose of this section to induce you to infringe any
216
- patents or other property right claims or to contest validity of any
217
- such claims; this section has the sole purpose of protecting the
218
- integrity of the free software distribution system, which is
219
- implemented by public license practices. Many people have made
220
- generous contributions to the wide range of software distributed
221
- through that system in reliance on consistent application of that
222
- system; it is up to the author/donor to decide if he or she is willing
223
- to distribute software through any other system and a licensee cannot
224
- impose that choice.
225
-
226
- This section is intended to make thoroughly clear what is believed to
227
- be a consequence of the rest of this License.
228
-
229
- 8. If the distribution and/or use of the Program is restricted in
230
- certain countries either by patents or by copyrighted interfaces, the
231
- original copyright holder who places the Program under this License
232
- may add an explicit geographical distribution limitation excluding
233
- those countries, so that distribution is permitted only in or among
234
- countries not thus excluded. In such case, this License incorporates
235
- the limitation as if written in the body of this License.
236
-
237
- 9. The Free Software Foundation may publish revised and/or new versions
238
- of the General Public License from time to time. Such new versions will
239
- be similar in spirit to the present version, but may differ in detail to
240
- address new problems or concerns.
241
-
242
- Each version is given a distinguishing version number. If the Program
243
- specifies a version number of this License which applies to it and "any
244
- later version", you have the option of following the terms and conditions
245
- either of that version or of any later version published by the Free
246
- Software Foundation. If the Program does not specify a version number of
247
- this License, you may choose any version ever published by the Free Software
248
- Foundation.
249
-
250
- 10. If you wish to incorporate parts of the Program into other free
251
- programs whose distribution conditions are different, write to the author
252
- to ask for permission. For software which is copyrighted by the Free
253
- Software Foundation, write to the Free Software Foundation; we sometimes
254
- make exceptions for this. Our decision will be guided by the two goals
255
- of preserving the free status of all derivatives of our free software and
256
- of promoting the sharing and reuse of software generally.
257
-
258
- NO WARRANTY
259
-
260
- 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
261
- FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
262
- OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
263
- PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
264
- OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
265
- MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
266
- TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
267
- PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
268
- REPAIR OR CORRECTION.
269
-
270
- 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
271
- WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
272
- REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
273
- INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
274
- OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
275
- TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
276
- YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
277
- PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
278
- POSSIBILITY OF SUCH DAMAGES.
279
-
280
- END OF TERMS AND CONDITIONS
281
-
282
- How to Apply These Terms to Your New Programs
283
-
284
- If you develop a new program, and you want it to be of the greatest
285
- possible use to the public, the best way to achieve this is to make it
286
- free software which everyone can redistribute and change under these terms.
287
-
288
- To do so, attach the following notices to the program. It is safest
289
- to attach them to the start of each source file to most effectively
290
- convey the exclusion of warranty; and each file should have at least
291
- the "copyright" line and a pointer to where the full notice is found.
292
-
293
- {description}
294
- Copyright (C) {year} {fullname}
295
-
296
- This program is free software; you can redistribute it and/or modify
297
- it under the terms of the GNU General Public License as published by
298
- the Free Software Foundation; either version 2 of the License, or
299
- (at your option) any later version.
300
-
301
- This program is distributed in the hope that it will be useful,
302
- but WITHOUT ANY WARRANTY; without even the implied warranty of
303
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
304
- GNU General Public License for more details.
305
-
306
- You should have received a copy of the GNU General Public License along
307
- with this program; if not, write to the Free Software Foundation, Inc.,
308
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
309
-
310
- Also add information on how to contact you by electronic and paper mail.
311
-
312
- If the program is interactive, make it output a short notice like this
313
- when it starts in an interactive mode:
314
-
315
- Gnomovision version 69, Copyright (C) year name of author
316
- Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
317
- This is free software, and you are welcome to redistribute it
318
- under certain conditions; type `show c' for details.
319
-
320
- The hypothetical commands `show w' and `show c' should show the appropriate
321
- parts of the General Public License. Of course, the commands you use may
322
- be called something other than `show w' and `show c'; they could even be
323
- mouse-clicks or menu items--whatever suits your program.
324
-
325
- You should also get your employer (if you work as a programmer) or your
326
- school, if any, to sign a "copyright disclaimer" for the program, if
327
- necessary. Here is a sample; alter the names:
328
-
329
- Yoyodyne, Inc., hereby disclaims all copyright interest in the program
330
- `Gnomovision' (which makes passes at compilers) written by James Hacker.
331
-
332
- {signature of Ty Coon}, 1 April 1989
333
- Ty Coon, President of Vice
334
-
335
- This General Public License does not permit incorporating your program into
336
- proprietary programs. If your program is a subroutine library, you may
337
- consider it more useful to permit linking proprietary applications with the
338
- library. If this is what you want to do, use the GNU Lesser General
339
- Public License instead of this License.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/gateways/direct-debit/libraries/sepa-xml-creator/SepaXmlCreator.php DELETED
@@ -1,428 +0,0 @@
1
- <?php
2
- /*
3
- * SepaXmlCreator - by Thomas Schiffler.de
4
- * http://www.ThomasSchiffler.de/2013_09/code-schnipsel/sepa-sammeluberweisung-xml-datei-mit-php-erstellen
5
- *
6
- * Copyright (c) 2013 Thomas Schiffler (http://www.ThomasSchiffler.de
7
- * GPL (http://www.opensource.org/licenses/gpl-license.php) license.
8
- *
9
- */
10
-
11
- class SepaBuchung{
12
- var $end2end, $iban, $bic, $kontoinhaber, $verwendungszweck, $amount;
13
-
14
- // Mandatsinformationen für Lastschriften
15
- var $mandatId, $mandatDatum, $mandatAenderung;
16
-
17
- function __construct() {
18
- $this->end2end = "NOTPROVIDED";
19
- }
20
-
21
- function setEnd2End($end2end) {
22
- $this->end2end = $this->normalizeString($end2end);
23
- }
24
-
25
- function setIban($iban) {
26
- $this->iban = str_replace(' ','',$iban);
27
- }
28
-
29
- function setBic($bic) {
30
- $this->bic = $bic;
31
- }
32
-
33
- function setName($name) {
34
- $this->kontoinhaber = $this->normalizeString($name);
35
- }
36
-
37
- function setVerwendungszweck($verwendungszweck) {
38
- $this->verwendungszweck = $this->normalizeString($verwendungszweck);
39
- }
40
-
41
- function setBetrag($betrag) {
42
- $this->amount = $betrag;
43
- }
44
-
45
- /*
46
- * Methode zum Setzen des Mandates - notwendig beim Generieren von Lastschriften. Wenn gewünscht kann
47
- * nur die Mandats-ID gesetzt werden, hierbei wird das aktuelle Tagesdatum als Datum der Mandatserteilung
48
- * genommen. Das Datum ist im Format (YYYY-mm-dd - bsp. 2013-11-02 zu übergeben)
49
- *
50
- * @param String $id
51
- * @param String $mandatDatum
52
- * @param boolean $mandatAenderung - true wenn das Mandat seit letzer Erteilung geändert wurde
53
- */
54
- function setMandat($id, $mandatDatum = null, $mandatAenderung = true) {
55
- $this->mandatId = $id;
56
- $this->mandatAenderung = $mandatAenderung;
57
-
58
- if (!isset($mandatDatum)) {
59
- $this->mandatDatum = date('Y-m-d', time());
60
- } else {
61
- $this->mandatDatum = $mandatDatum;
62
- }
63
- }
64
-
65
- function normalizeString($input) {
66
- // Only below characters can be used within the XML tags according the guideline.
67
- // a b c d e f g h i j k l m n o p q r s t u v w x y z
68
- // A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
69
- // 0 1 2 3 4 5 6 7 8 9
70
- // / - ? : ( ) . , ‘ +
71
- // Space
72
- //
73
- // Create a normalized array and cleanup the string $XMLText for unexpected characters in names
74
- $normalizeChars = array(
75
- 'Á'=>'A', 'À'=>'A', 'Â'=>'A', 'Ã'=>'A', 'Å'=>'A', 'Ä'=>'Ae', 'Æ'=>'AE', 'Ç'=>'C',
76
- 'É'=>'E', 'È'=>'E', 'Ê'=>'E', 'Ë'=>'E', 'Í'=>'I', 'Ì'=>'I', 'Î'=>'I', 'Ï'=>'I', 'Ð'=>'Eth',
77
- 'Ñ'=>'N', 'Ó'=>'O', 'Ò'=>'O', 'Ô'=>'O', 'Õ'=>'O', 'Ö'=>'O', 'Ø'=>'O',
78
- 'Ú'=>'U', 'Ù'=>'U', 'Û'=>'U', 'Ü'=>'Ue', 'Ý'=>'Y',
79
-
80
- 'á'=>'a', 'à'=>'a', 'â'=>'a', 'ã'=>'a', 'å'=>'a', 'ä'=>'ae', 'æ'=>'ae', 'ç'=>'c',
81
- 'é'=>'e', 'è'=>'e', 'ê'=>'e', 'ë'=>'e', 'í'=>'i', 'ì'=>'i', 'î'=>'i', 'ï'=>'i', 'ð'=>'eth',
82
- 'ñ'=>'n', 'ó'=>'o', 'ò'=>'o', 'ô'=>'o', 'õ'=>'o', 'ö'=>'oe', 'ø'=>'o',
83
- 'ú'=>'u', 'ù'=>'u', 'û'=>'u', 'ü'=>'ue', 'ý'=>'y',
84
-
85
- 'ß'=>'ss', 'þ'=>'thorn', 'ÿ'=>'y',
86
-
87
- '&'=>'u.', '@'=>'at', '#'=>'h', '$'=>'s', '%'=>'perc', '^'=>'-','*'=>'-'
88
- );
89
-
90
- $output = strtr($input, $normalizeChars);
91
-
92
- return $output;
93
- }
94
- }
95
-
96
- class SepaXmlCreator {
97
- var $buchungssaetze = array();
98
-
99
- var $accountName, $accountIban, $accountBic;
100
- var $offset = 0, $fixedDate;
101
- var $waehrung = "EUR";
102
-
103
- // Mode = 1 -> Überweisung / Mode = 2 -> Basislastschrift
104
- var $mode = 1;
105
- var $isFirst = true;
106
-
107
- // Gläubiger-ID
108
- var $glaeubigerId;
109
-
110
- // XML-Errors
111
- private $xmlerrors;
112
-
113
- function setDebitorValues($name, $iban, $bic) {
114
- trigger_error('Use setAccountValues($name, $iban, $bic) instead', E_USER_DEPRECATED);
115
-
116
- $this->setAccountValues($name, $iban, $bic);
117
- }
118
-
119
- function setAccountValues($name, $iban, $bic) {
120
-
121
- $this->accountName = $name;
122
- $this->accountIban = $iban;
123
- $this->accountBic = $bic;
124
- }
125
-
126
- function setGlaeubigerId($glaeubigerId) {
127
- $this->glaeubigerId = $glaeubigerId;
128
- }
129
-
130
- function setCurrency($currency) {
131
- $this->waehrung = $currency;
132
- }
133
-
134
- function addBuchung($buchungssatz) {
135
- array_push($this->buchungssaetze, $buchungssatz);
136
- }
137
-
138
- function setAusfuehrungOffset($offset) {
139
- $this->offset = $offset;
140
- }
141
-
142
- function setAusfuehrungDatum($datum) {
143
- $this->fixedDate = $datum;
144
- }
145
-
146
- function generateSammelueberweisungXml() {
147
- // Set Mode = 1 -> Sammelüberweisung
148
- $this->mode = 1;
149
- return $this->getGeneratedXml();
150
- }
151
-
152
- function generateBasislastschriftXml() {
153
- // Set Mode = 2 -> Basislastschrift
154
- $this->mode = 2;
155
-
156
- return $this->getGeneratedXml();
157
- }
158
-
159
- function setIsFolgelastschrift() {
160
- $this->isFirst = false;
161
- }
162
-
163
- function getGeneratedXml() {
164
- $dom = new DOMDocument('1.0', 'utf-8');
165
-
166
- // Build Document-Root
167
- $document = $dom->createElement('Document');
168
- if ($this->mode == 2) {
169
- $document->setAttribute('xmlns', 'urn:iso:std:iso:20022:tech:xsd:pain.008.002.02');
170
- $document->setAttribute('xsi:schemaLocation', 'urn:iso:std:iso:20022:tech:xsd:pain.008.002.02 pain.008.002.02.xsd');
171
- } else {
172
- $document->setAttribute('xmlns', 'urn:iso:std:iso:20022:tech:xsd:pain.001.002.03');
173
- $document->setAttribute('xsi:schemaLocation', 'urn:iso:std:iso:20022:tech:xsd:pain.001.002.03 pain.001.002.03.xsd');
174
- }
175
- $document->setAttribute('xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance');
176
- $dom->appendChild($document);
177
-
178
- // Build Content-Root
179
- if ($this->mode == 2) {
180
- $content = $dom->createElement('CstmrDrctDbtInitn');
181
- } else {
182
- $content = $dom->createElement('CstmrCdtTrfInitn');
183
- }
184
-
185
- $document->appendChild($content);
186
-
187
- // Build Header
188
- $header = $dom->createElement('GrpHdr');
189
- $content->appendChild($header);
190
-
191
- $creationTime = time();
192
-
193
- // Msg-ID
194
- $header->appendChild($dom->createElement('MsgId', $this->accountBic . '00' . date('YmdHis', $creationTime)));
195
- $header->appendChild($dom->createElement('CreDtTm', date('Y-m-d', $creationTime) . 'T' . date('H:i:s', $creationTime) . '.000Z'));
196
- $header->appendChild($dom->createElement('NbOfTxs', count($this->buchungssaetze)));
197
- $header->appendChild($initatorName = $dom->createElement('InitgPty'));
198
- $initatorName->appendChild($dom->createElement('Nm', $this->accountName));
199
-
200
- // PaymentInfo
201
- $paymentInfo = $dom->createElement('PmtInf');
202
- $content->appendChild($paymentInfo);
203
-
204
- $paymentInfo->appendChild($dom->createElement('PmtInfId', 'PMT-ID0-' . date('YmdHis', $creationTime)));
205
- switch ($this->mode) {
206
- case 2:
207
- // 2 = Basislastschrift
208
- $paymentInfo->appendChild($dom->createElement('PmtMtd', 'DD'));
209
- break;
210
- default:
211
- // Default / 1 = Überweisung
212
- $paymentInfo->appendChild($dom->createElement('PmtMtd', 'TRF'));
213
- break;
214
- }
215
- $paymentInfo->appendChild($dom->createElement('BtchBookg', 'true'));
216
- $paymentInfo->appendChild($dom->createElement('NbOfTxs', count($this->buchungssaetze)));
217
- $paymentInfo->appendChild($dom->createElement('CtrlSum', number_format($this->getUmsatzsumme(), 2, '.', '')));
218
- $paymentInfo->appendChild($tmp1 = $dom->createElement('PmtTpInf'));
219
- $tmp1->appendChild($tmp2 = $dom->createElement('SvcLvl'));
220
- $tmp2->appendChild($dom->createElement('Cd', 'SEPA'));
221
-
222
- if ($this->mode == 2) {
223
- // zusätzliche Attribute für Lastschriften
224
- $tmp1->appendChild($tmp2 = $dom->createElement('LclInstrm'));
225
- $tmp2->appendChild($dom->createElement('Cd', 'CORE'));
226
- if ($this->isFirst) {
227
- $tmp1->appendChild($dom->createElement('SeqTp', 'FRST'));
228
- } else {
229
- $tmp1->appendChild($dom->createElement('SeqTp', 'RCUR'));
230
- }
231
- }
232
-
233
- // Ausführungsdatum berechnen
234
- if (isset($this->fixedDate)) {
235
- $ausfuehrungsdatum = $this->fixedDate;
236
- } else {
237
- $ausfuehrungszeit = $creationTime;
238
- if ($this->offset > 0) {
239
- $ausfuehrungszeit = $ausfuehrungszeit + (24 * 3600 * $this->offset);
240
- }
241
-
242
- $ausfuehrungsdatum = date('Y-m-d', $ausfuehrungszeit);
243
- }
244
-
245
- if ($this->mode == 2) {
246
- $paymentInfo->appendChild($dom->createElement('ReqdColltnDt', $ausfuehrungsdatum));
247
- } else {
248
- $paymentInfo->appendChild($dom->createElement('ReqdExctnDt', $ausfuehrungsdatum));
249
- }
250
-
251
- // eigene Account-Daten Daten
252
- if ($this->mode == 2) {
253
- $paymentInfo->appendChild($tmp1 = $dom->createElement('Cdtr'));
254
- } else {
255
- $paymentInfo->appendChild($tmp1 = $dom->createElement('Dbtr'));
256
- }
257
- $tmp1->appendChild($dom->createElement('Nm', $this->accountName));
258
-
259
- if ($this->mode == 2) {
260
- $paymentInfo->appendChild($tmp1 = $dom->createElement('CdtrAcct'));
261
- } else {
262
- $paymentInfo->appendChild($tmp1 = $dom->createElement('DbtrAcct'));
263
- }
264
-
265
- $tmp1->appendChild($tmp2 = $dom->createElement('Id'));
266
- $tmp2->appendChild($dom->createElement('IBAN', $this->accountIban));
267
-
268
- if ($this->mode == 2) {
269
- $paymentInfo->appendChild($tmp1 = $dom->createElement('CdtrAgt'));
270
- } else {
271
- $paymentInfo->appendChild($tmp1 = $dom->createElement('DbtrAgt'));
272
- }
273
-
274
- $tmp1->appendChild($tmp2 = $dom->createElement('FinInstnId'));
275
- $tmp2->appendChild($dom->createElement('BIC', $this->accountBic));
276
-
277
- $paymentInfo->appendChild($dom->createElement('ChrgBr', 'SLEV'));
278
-
279
- if ($this->mode == 2) {
280
- $paymentInfo->appendChild($tmp1 = $dom->createElement('CdtrSchmeId'));
281
- $tmp1->appendChild($tmp2 = $dom->createElement('Id'));
282
- $tmp2->appendChild($tmp3 = $dom->createElement('PrvtId'));
283
- $tmp3->appendChild($tmp4 = $dom->createElement('Othr'));
284
- $tmp4->appendChild($dom->createElement('Id', $this->glaeubigerId));
285
- $tmp4->appendChild($tmp5 = $dom->createElement('SchmeNm'));
286
- $tmp5->appendChild($dom->createElement('Prtry', 'SEPA'));
287
- }
288
-
289
- // Buchungssätze hinzufügen
290
- foreach ($this->buchungssaetze as $buchungssatz) {
291
- if ($this->mode == 2) {
292
- $paymentInfo->appendChild($buchung = $dom->createElement('DrctDbtTxInf'));
293
- } else {
294
- $paymentInfo->appendChild($buchung = $dom->createElement('CdtTrfTxInf'));
295
- }
296
-
297
- // End2End setzen
298
- if (isset($buchungssatz->end2end)) {
299
- $buchung->appendChild($tmp1 = $dom->createElement('PmtId'));
300
- $tmp1->appendChild($dom->createElement('EndToEndId', $buchungssatz->end2end));
301
- }
302
-
303
- // Betrag
304
- if ($this->mode == 2) {
305
- $buchung->appendChild($tmp2 = $dom->createElement('InstdAmt', number_format($buchungssatz->amount, 2, '.', '')));
306
- $tmp2->setAttribute('Ccy', $this->waehrung);
307
- } else {
308
- $buchung->appendChild($tmp1 = $dom->createElement('Amt'));
309
- $tmp1->appendChild($tmp2 = $dom->createElement('InstdAmt', number_format($buchungssatz->amount, 2, '.', '')));
310
- $tmp2->setAttribute('Ccy', $this->waehrung);
311
- }
312
-
313
- if ($this->mode == 2) {
314
- // Lastschrift -> Mandatsinformationen
315
- $buchung->appendChild($tmp1 = $dom->createElement('DrctDbtTx'));
316
- $tmp1->appendChild($tmp2 = $dom->createElement('MndtRltdInf'));
317
- $tmp2->appendChild($dom->createElement('MndtId', $buchungssatz->mandatId));
318
- $tmp2->appendChild($dom->createElement('DtOfSgntr', $buchungssatz->mandatDatum));
319
- if ($buchungssatz->mandatAenderung) {
320
- $tmp2->appendChild($dom->createElement('AmdmntInd', 'true'));
321
- } else {
322
- $tmp2->appendChild($dom->createElement('AmdmntInd', 'false'));
323
- }
324
- }
325
-
326
- // Institut
327
- if ($this->mode == 2) {
328
- $buchung->appendChild($tmp1 = $dom->createElement('DbtrAgt'));
329
- } else {
330
- $buchung->appendChild($tmp1 = $dom->createElement('CdtrAgt'));
331
- }
332
- $tmp1->appendChild($tmp2 = $dom->createElement('FinInstnId'));
333
- $tmp2->appendChild($dom->createElement('BIC', $buchungssatz->bic));
334
-
335
- // Inhaber
336
- if ($this->mode == 2) {
337
- $buchung->appendChild($tmp1 = $dom->createElement('Dbtr'));
338
- } else {
339
- $buchung->appendChild($tmp1 = $dom->createElement('Cdtr'));
340
- }
341
- $tmp1->appendChild($dom->createElement('Nm', $buchungssatz->kontoinhaber));
342
-
343
- // IBAN
344
- if ($this->mode == 2) {
345
- $buchung->appendChild($tmp1 = $dom->createElement('DbtrAcct'));
346
- } else {
347
- $buchung->appendChild($tmp1 = $dom->createElement('CdtrAcct'));
348
- }
349
- $tmp1->appendChild($tmp2 = $dom->createElement('Id'));
350
- $tmp2->appendChild($dom->createElement('IBAN', $buchungssatz->iban));
351
-
352
- if ($this->mode == 2) {
353
- $buchung->appendChild($tmp1 = $dom->createElement('UltmtDbtr'));
354
- $tmp1->appendChild($dom->createElement('Nm', $buchungssatz->kontoinhaber));
355
- }
356
-
357
- // Verwendungszweck
358
- if (strlen($buchungssatz->verwendungszweck) > 0) {
359
- $buchung->appendChild($tmp1 = $dom->createElement('RmtInf'));
360
- $tmp1->appendChild($dom->createElement('Ustrd', $buchungssatz->verwendungszweck));
361
- }
362
- }
363
-
364
- // XML exportieren
365
- return $dom->saveXML();
366
- }
367
-
368
- function getUmsatzsumme() {
369
- $betrag = 0;
370
-
371
- foreach ($this->buchungssaetze as $buchungssatz) {
372
- $betrag = $betrag + $buchungssatz->amount;
373
- }
374
-
375
- return $betrag;
376
- }
377
-
378
- public function validateBasislastschriftXml($xmlfile) {
379
- return $this->validateXML($xmlfile, 'pain.008.002.02.xsd');
380
- }
381
-
382
- public function validateUeberweisungXml($xmlfile) {
383
- return $this->validateXML($xmlfile, 'pain.001.002.03.xsd');
384
- }
385
-
386
- protected function validateXML($xmlfile, $xsdfile) {
387
- libxml_use_internal_errors(true);
388
-
389
- $feed = new DOMDocument();
390
-
391
- $result = $feed->load($xmlfile);
392
- if ($result === false) {
393
- $this->xmlerrors[] = "Document is not well formed\n";
394
- }
395
- if (@($feed->schemaValidate(dirname(__FILE__) . '/' . $xsdfile))) {
396
-
397
- return true;
398
- } else {
399
- $this->xmlerrors[] = "! Document is not valid:\n";
400
- $errors = libxml_get_errors();
401
-
402
- foreach ($errors as $error) {
403
- $this->xmlerrors[] = "---\n" . sprintf("file: %s, line: %s, column: %s, level: %s, code: %s\nError: %s",
404
- basename($error->file),
405
- $error->line,
406
- $error->column,
407
- $error->level,
408
- $error->code,
409
- $error->message
410
- );
411
- }
412
- }
413
- return false;
414
- }
415
-
416
- public function printXmlErrors() {
417
-
418
- if (!is_array($this->xmlerrors)) return;
419
- foreach ($this->xmlerrors as $error) {
420
- echo $error;
421
-
422
- }
423
- }
424
- }
425
-
426
-
427
-
428
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/gateways/direct-debit/libraries/sepa-xml-creator/pain.001.002.03.xsd DELETED
@@ -1,506 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Mit XMLSpy v2008 rel. 2 sp2 (http://www.altova.com) von benutzerservice
3
- benutzerservice (SIZ GmbH) bearbeitet -->
4
- <!--Generated by SWIFTStandards Workstation (build:R6.1.0.2) on 2009 Jan
5
- 08 17:30:53 -->
6
- <xs:schema xmlns="urn:iso:std:iso:20022:tech:xsd:pain.001.002.03"
7
- xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:iso:std:iso:20022:tech:xsd:pain.001.002.03"
8
- elementFormDefault="qualified">
9
- <xs:element name="Document" type="Document" />
10
- <xs:complexType name="AccountIdentificationSEPA">
11
- <xs:sequence>
12
- <xs:element name="IBAN" type="IBAN2007Identifier" />
13
- </xs:sequence>
14
- </xs:complexType>
15
- <xs:simpleType name="ActiveOrHistoricCurrencyAndAmount_SimpleTypeSEPA">
16
- <xs:restriction base="xs:decimal">
17
- <xs:minInclusive value="0.01" />
18
- <xs:maxInclusive value="999999999.99" />
19
- <xs:fractionDigits value="2" />
20
- <xs:totalDigits value="11" />
21
- </xs:restriction>
22
- </xs:simpleType>
23
- <xs:simpleType name="ActiveOrHistoricCurrencyCode">
24
- <xs:restriction base="xs:string">
25
- <xs:pattern value="[A-Z]{3,3}" />
26
- </xs:restriction>
27
- </xs:simpleType>
28
- <xs:complexType name="ActiveOrHistoricCurrencyAndAmountSEPA">
29
- <xs:simpleContent>
30
- <xs:extension base="ActiveOrHistoricCurrencyAndAmount_SimpleTypeSEPA">
31
- <xs:attribute name="Ccy" type="ActiveOrHistoricCurrencyCodeEUR"
32
- use="required" />
33
- </xs:extension>
34
- </xs:simpleContent>
35
- </xs:complexType>
36
- <xs:simpleType name="ActiveOrHistoricCurrencyCodeEUR">
37
- <xs:restriction base="xs:string">
38
- <xs:enumeration value="EUR" />
39
- </xs:restriction>
40
- </xs:simpleType>
41
- <xs:complexType name="AmountTypeSEPA">
42
- <xs:sequence>
43
- <xs:element name="InstdAmt" type="ActiveOrHistoricCurrencyAndAmountSEPA" />
44
- </xs:sequence>
45
- </xs:complexType>
46
- <xs:simpleType name="AnyBICIdentifier">
47
- <xs:restriction base="xs:string">
48
- <xs:pattern value="[A-Z]{6,6}[A-Z2-9][A-NP-Z0-9]([A-Z0-9]{3,3}){0,1}" />
49
- </xs:restriction>
50
- </xs:simpleType>
51
- <xs:simpleType name="BICIdentifier">
52
- <xs:restriction base="xs:string">
53
- <xs:pattern value="[A-Z]{6,6}[A-Z2-9][A-NP-Z0-9]([A-Z0-9]{3,3}){0,1}" />
54
- </xs:restriction>
55
- </xs:simpleType>
56
- <xs:simpleType name="BatchBookingIndicator">
57
- <xs:restriction base="xs:boolean" />
58
- </xs:simpleType>
59
- <xs:complexType name="BranchAndFinancialInstitutionIdentificationSEPA1">
60
- <xs:sequence>
61
- <xs:element name="FinInstnId" type="FinancialInstitutionIdentificationSEPA1" />
62
- </xs:sequence>
63
- </xs:complexType>
64
- <xs:complexType name="CashAccountSEPA1">
65
- <xs:sequence>
66
- <xs:element name="Id" type="AccountIdentificationSEPA" />
67
- <xs:element name="Ccy" type="ActiveOrHistoricCurrencyCode"
68
- minOccurs="0" />
69
- </xs:sequence>
70
- </xs:complexType>
71
- <xs:complexType name="CashAccountSEPA2">
72
- <xs:sequence>
73
- <xs:element name="Id" type="AccountIdentificationSEPA" />
74
- </xs:sequence>
75
- </xs:complexType>
76
- <xs:complexType name="CategoryPurposeSEPA">
77
- <xs:sequence>
78
- <xs:element name="Cd" type="ExternalCategoryPurpose1Code" />
79
- </xs:sequence>
80
- </xs:complexType>
81
- <xs:simpleType name="ChargeBearerTypeSEPACode">
82
- <xs:restriction base="xs:string">
83
- <xs:enumeration value="SLEV" />
84
- </xs:restriction>
85
- </xs:simpleType>
86
- <xs:simpleType name="CountryCode">
87
- <xs:restriction base="xs:string">
88
- <xs:pattern value="[A-Z]{2,2}" />
89
- </xs:restriction>
90
- </xs:simpleType>
91
- <xs:complexType name="CreditTransferTransactionInformationSCT">
92
- <xs:sequence>
93
- <xs:element name="PmtId" type="PaymentIdentificationSEPA" />
94
- <xs:element name="PmtTpInf" type="PaymentTypeInformationSCT2"
95
- minOccurs="0">
96
- <xs:annotation>
97
- <xs:documentation>If used, it is recommended to be used at ‘Payment
98
- Information’ level and not at ‘Credit Transfer Transaction
99
- Information’ level.</xs:documentation>
100
- </xs:annotation>
101
- </xs:element>
102
- <xs:element name="Amt" type="AmountTypeSEPA" />
103
- <xs:element name="ChrgBr" type="ChargeBearerTypeSEPACode"
104
- minOccurs="0">
105
- <xs:annotation>
106
- <xs:documentation>It is recommended that this element be specified
107
- at ‘Payment Information’ level.</xs:documentation>
108
- </xs:annotation>
109
- </xs:element>
110
- <xs:element name="UltmtDbtr" type="PartyIdentificationSEPA1"
111
- minOccurs="0">
112
- <xs:annotation>
113
- <xs:documentation>This data element may be present either at
114
- ‘Payment Information’ or at ‘Credit Transfer Transaction
115
- Information’ level.</xs:documentation>
116
- </xs:annotation>
117
- </xs:element>
118
- <xs:element name="CdtrAgt"
119
- type="BranchAndFinancialInstitutionIdentificationSEPA1" />
120
- <xs:element name="Cdtr" type="PartyIdentificationSEPA2" />
121
- <xs:element name="CdtrAcct" type="CashAccountSEPA2" />
122
- <xs:element name="UltmtCdtr" type="PartyIdentificationSEPA1"
123
- minOccurs="0" />
124
- <xs:element name="Purp" type="PurposeSEPA" minOccurs="0" />
125
- <xs:element name="RmtInf" type="RemittanceInformationSEPA1Choice"
126
- minOccurs="0" />
127
- </xs:sequence>
128
- </xs:complexType>
129
- <xs:complexType name="CreditorReferenceInformationSEPA1">
130
- <xs:sequence>
131
- <xs:element name="Tp" type="CreditorReferenceTypeSEPA" />
132
- <xs:element name="Ref" type="Max35Text">
133
- <xs:annotation>
134
- <xs:documentation>If a Creditor Reference contains a check digit,
135
- the receiving bank is not required to validate this.
136
- If the receiving bank validates the check digit and if this
137
- validation fails, the bank may continue its processing and send
138
- the transaction to the next party in the chain.
139
- RF Creditor Reference may be used (ISO 11649).</xs:documentation>
140
- </xs:annotation>
141
- </xs:element>
142
- </xs:sequence>
143
- </xs:complexType>
144
- <xs:complexType name="CreditorReferenceTypeSEPA">
145
- <xs:sequence>
146
- <xs:element name="CdOrPrtry" type="CreditorReferenceTypeCodeSEPA" />
147
- <xs:element name="Issr" type="Max35Text" minOccurs="0" />
148
- </xs:sequence>
149
- </xs:complexType>
150
- <xs:complexType name="CreditorReferenceTypeCodeSEPA">
151
- <xs:sequence>
152
- <xs:element name="Cd" type="DocumentType3CodeSEPA" />
153
- </xs:sequence>
154
- </xs:complexType>
155
- <xs:complexType name="CustomerCreditTransferInitiationV03">
156
- <xs:sequence>
157
- <xs:element name="GrpHdr" type="GroupHeaderSCT" />
158
- <xs:element name="PmtInf" type="PaymentInstructionInformationSCT"
159
- maxOccurs="unbounded" />
160
- </xs:sequence>
161
- </xs:complexType>
162
- <xs:complexType name="DateAndPlaceOfBirth">
163
- <xs:sequence>
164
- <xs:element name="BirthDt" type="ISODate" />
165
- <xs:element name="PrvcOfBirth" type="Max35Text" minOccurs="0" />
166
- <xs:element name="CityOfBirth" type="Max35Text" />
167
- <xs:element name="CtryOfBirth" type="CountryCode" />
168
- </xs:sequence>
169
- </xs:complexType>
170
- <xs:simpleType name="DecimalNumber">
171
- <xs:restriction base="xs:decimal">
172
- <xs:fractionDigits value="17" />
173
- <xs:totalDigits value="18" />
174
- </xs:restriction>
175
- </xs:simpleType>
176
- <xs:complexType name="Document">
177
- <xs:sequence>
178
- <xs:element name="CstmrCdtTrfInitn" type="CustomerCreditTransferInitiationV03" />
179
- </xs:sequence>
180
- </xs:complexType>
181
- <xs:simpleType name="DocumentType3CodeSEPA">
182
- <xs:restriction base="xs:string">
183
- <xs:enumeration value="SCOR" />
184
- </xs:restriction>
185
- </xs:simpleType>
186
- <xs:simpleType name="ExternalCategoryPurpose1Code">
187
- <xs:restriction base="xs:string">
188
- <xs:minLength value="1" />
189
- <xs:maxLength value="4" />
190
- </xs:restriction>
191
- </xs:simpleType>
192
- <xs:simpleType name="ExternalOrganisationIdentification1Code">
193
- <xs:restriction base="xs:string">
194
- <xs:minLength value="1" />
195
- <xs:maxLength value="4" />
196
- </xs:restriction>
197
- </xs:simpleType>
198
- <xs:simpleType name="ExternalPersonIdentification1Code">
199
- <xs:restriction base="xs:string">
200
- <xs:minLength value="1" />
201
- <xs:maxLength value="4" />
202
- </xs:restriction>
203
- </xs:simpleType>
204
- <xs:simpleType name="ExternalPurpose1Code">
205
- <xs:restriction base="xs:string">
206
- <xs:minLength value="1" />
207
- <xs:maxLength value="4" />
208
- </xs:restriction>
209
- </xs:simpleType>
210
- <xs:simpleType name="ServiceLevelSEPACode">
211
- <xs:restriction base="xs:string">
212
- <xs:enumeration value="SEPA" />
213
- </xs:restriction>
214
- </xs:simpleType>
215
- <xs:complexType name="FinancialInstitutionIdentificationSEPA1">
216
- <xs:sequence>
217
- <xs:element name="BIC" type="BICIdentifier" />
218
- </xs:sequence>
219
- </xs:complexType>
220
- <xs:complexType name="GenericOrganisationIdentification1">
221
- <xs:sequence>
222
- <xs:element name="Id" type="Max35Text" />
223
- <xs:element name="SchmeNm"
224
- type="OrganisationIdentificationSchemeName1Choice" minOccurs="0" />
225
- <xs:element name="Issr" type="Max35Text" minOccurs="0" />
226
- </xs:sequence>
227
- </xs:complexType>
228
- <xs:complexType name="GenericPersonIdentification1">
229
- <xs:sequence>
230
- <xs:element name="Id" type="Max35Text" />
231
- <xs:element name="SchmeNm" type="PersonIdentificationSchemeName1Choice"
232
- minOccurs="0" />
233
- <xs:element name="Issr" type="Max35Text" minOccurs="0" />
234
- </xs:sequence>
235
- </xs:complexType>
236
- <xs:complexType name="GroupHeaderSCT">
237
- <xs:sequence>
238
- <xs:element name="MsgId" type="RestrictedIdentificationSEPA1" />
239
- <xs:element name="CreDtTm" type="ISODateTime" />
240
- <xs:element name="NbOfTxs" type="Max15NumericText" />
241
- <xs:element name="CtrlSum" type="DecimalNumber" minOccurs="0" />
242
- <xs:element name="InitgPty" type="PartyIdentificationSEPA1" />
243
- </xs:sequence>
244
- </xs:complexType>
245
- <xs:simpleType name="IBAN2007Identifier">
246
- <xs:restriction base="xs:string">
247
- <xs:pattern value="[A-Z]{2,2}[0-9]{2,2}[a-zA-Z0-9]{1,30}" />
248
- </xs:restriction>
249
- </xs:simpleType>
250
- <xs:simpleType name="ISODate">
251
- <xs:restriction base="xs:date" />
252
- </xs:simpleType>
253
- <xs:simpleType name="ISODateTime">
254
- <xs:restriction base="xs:dateTime" />
255
- </xs:simpleType>
256
- <xs:simpleType name="Max140Text">
257
- <xs:restriction base="xs:string">
258
- <xs:minLength value="1" />
259
- <xs:maxLength value="140" />
260
- </xs:restriction>
261
- </xs:simpleType>
262
- <xs:simpleType name="Max15NumericText">
263
- <xs:restriction base="xs:string">
264
- <xs:pattern value="[0-9]{1,15}" />
265
- </xs:restriction>
266
- </xs:simpleType>
267
- <xs:simpleType name="Max35Text">
268
- <xs:restriction base="xs:string">
269
- <xs:minLength value="1" />
270
- <xs:maxLength value="35" />
271
- </xs:restriction>
272
- </xs:simpleType>
273
- <xs:simpleType name="Max70Text">
274
- <xs:restriction base="xs:string">
275
- <xs:minLength value="1" />
276
- <xs:maxLength value="70" />
277
- </xs:restriction>
278
- </xs:simpleType>
279
- <xs:complexType name="OrganisationIdentificationSEPAChoice">
280
- <xs:sequence>
281
- <xs:choice>
282
- <xs:element name="BICOrBEI" type="AnyBICIdentifier" />
283
- <xs:element name="Othr" type="GenericOrganisationIdentification1" />
284
- </xs:choice>
285
- </xs:sequence>
286
- </xs:complexType>
287
- <xs:complexType name="OrganisationIdentificationSchemeName1Choice">
288
- <xs:sequence>
289
- <xs:choice>
290
- <xs:element name="Cd"
291
- type="ExternalOrganisationIdentification1Code" />
292
- <xs:element name="Prtry" type="Max35Text" />
293
- </xs:choice>
294
- </xs:sequence>
295
- </xs:complexType>
296
- <xs:complexType name="PartySEPAChoice">
297
- <xs:sequence>
298
- <xs:choice>
299
- <xs:element name="OrgId" type="OrganisationIdentificationSEPAChoice">
300
- <xs:annotation>
301
- <xs:documentation>Either ‘BIC or BEI’ or one
302
- occurrence of ‘Other’ is allowed.</xs:documentation>
303
- </xs:annotation>
304
- </xs:element>
305
- <xs:element name="PrvtId" type="PersonIdentificationSEPA1Choice">
306
- <xs:annotation>
307
- <xs:documentation>Either ‘Date and Place of Birth’ or one
308
- occurrence of ‘Other’ is allowed.</xs:documentation>
309
- </xs:annotation>
310
- </xs:element>
311
- </xs:choice>
312
- </xs:sequence>
313
- </xs:complexType>
314
- <xs:complexType name="PartyIdentificationSEPA1">
315
- <xs:sequence>
316
- <xs:element name="Nm" type="Max70Text" minOccurs="0">
317
- <xs:annotation>
318
- <xs:documentation>‘Name’ is limited to 70 characters
319
- in length.</xs:documentation>
320
- </xs:annotation>
321
- </xs:element>
322
- <xs:element name="Id" type="PartySEPAChoice" minOccurs="0" />
323
- </xs:sequence>
324
- </xs:complexType>
325
- <xs:complexType name="PartyIdentificationSEPA2">
326
- <xs:sequence>
327
- <xs:element name="Nm" type="Max70Text">
328
- <xs:annotation>
329
- <xs:documentation>‘Name’ is limited to 70 characters
330
- in length.</xs:documentation>
331
- </xs:annotation>
332
- </xs:element>
333
- <xs:element name="PstlAdr" type="PostalAddressSEPA"
334
- minOccurs="0" />
335
- <xs:element name="Id" type="PartySEPAChoice" minOccurs="0" />
336
- </xs:sequence>
337
- </xs:complexType>
338
- <xs:complexType name="PaymentIdentificationSEPA">
339
- <xs:sequence>
340
- <xs:element name="InstrId" type="RestrictedIdentificationSEPA1"
341
- minOccurs="0" />
342
- <xs:element name="EndToEndId" type="RestrictedIdentificationSEPA1" />
343
- </xs:sequence>
344
- </xs:complexType>
345
- <xs:complexType name="PaymentInstructionInformationSCT">
346
- <xs:sequence>
347
- <xs:element name="PmtInfId" type="RestrictedIdentificationSEPA1" />
348
- <xs:element name="PmtMtd" type="PaymentMethodSCTCode">
349
- <xs:annotation>
350
- <xs:documentation>Only ‘TRF’ is allowed.</xs:documentation>
351
- </xs:annotation>
352
- </xs:element>
353
- <xs:element name="BtchBookg" type="BatchBookingIndicator"
354
- minOccurs="0">
355
- <xs:annotation>
356
- <xs:documentation>If present and contains ‘true’, batch booking is
357
- requested. If present and contains ‘false’, booking per
358
- transaction is requested. If element is not present, pre-agreed
359
- customer-to-bank conditions apply.</xs:documentation>
360
- </xs:annotation>
361
- </xs:element>
362
- <xs:element name="NbOfTxs" type="Max15NumericText"
363
- minOccurs="0" />
364
- <xs:element name="CtrlSum" type="DecimalNumber" minOccurs="0" />
365
- <xs:element name="PmtTpInf" type="PaymentTypeInformationSCT1"
366
- minOccurs="0">
367
- <xs:annotation>
368
- <xs:documentation>If used, it is recommended to be used only at
369
- ‘Payment Information’ level and not at Credit Transfer Transaction
370
- Information’ level.
371
- When Instruction Priority is to be used, ‘Payment Type Information’
372
- must be present at ‘Payment Information’ level.
373
- </xs:documentation>
374
- </xs:annotation>
375
- </xs:element>
376
- <xs:element name="ReqdExctnDt" type="ISODate" />
377
- <xs:element name="Dbtr" type="PartyIdentificationSEPA2" />
378
- <xs:element name="DbtrAcct" type="CashAccountSEPA1" />
379
- <xs:element name="DbtrAgt"
380
- type="BranchAndFinancialInstitutionIdentificationSEPA1" />
381
- <xs:element name="UltmtDbtr" type="PartyIdentificationSEPA1"
382
- minOccurs="0">
383
- <xs:annotation>
384
- <xs:documentation>This data element may be present either at
385
- ‘Payment Information’ or at ‘Credit Transfer Transaction
386
- Information’ level.</xs:documentation>
387
- </xs:annotation>
388
- </xs:element>
389
- <xs:element name="ChrgBr" type="ChargeBearerTypeSEPACode"
390
- minOccurs="0">
391
- <xs:annotation>
392
- <xs:documentation>It is recommended that this element be specified
393
- at ‘Payment Information’ level.</xs:documentation>
394
- </xs:annotation>
395
- </xs:element>
396
- <xs:element name="CdtTrfTxInf" type="CreditTransferTransactionInformationSCT"
397
- maxOccurs="unbounded" />
398
- </xs:sequence>
399
- </xs:complexType>
400
- <xs:simpleType name="PaymentMethodSCTCode">
401
- <xs:restriction base="xs:string">
402
- <xs:enumeration value="TRF" />
403
- </xs:restriction>
404
- </xs:simpleType>
405
- <xs:complexType name="PaymentTypeInformationSCT1">
406
- <xs:sequence>
407
- <xs:element name="InstrPrty" type="Priority2Code"
408
- minOccurs="0">
409
- <xs:annotation>
410
- <xs:documentation>If present, pre-agreed customer-to-bank
411
- conditions apply.</xs:documentation>
412
- </xs:annotation>
413
- </xs:element>
414
- <xs:element name="SvcLvl" type="ServiceLevelSEPA" />
415
- <xs:element name="CtgyPurp" type="CategoryPurposeSEPA"
416
- minOccurs="0">
417
- <xs:annotation>
418
- <xs:documentation>Depending on the agreement between the Originator
419
- and the Originator Bank, ‘Category Purpose’ may be forwarded to
420
- the Beneficiary Bank.</xs:documentation>
421
- </xs:annotation>
422
- </xs:element>
423
- </xs:sequence>
424
- </xs:complexType>
425
- <xs:complexType name="PaymentTypeInformationSCT2">
426
- <xs:sequence>
427
- <xs:element name="SvcLvl" type="ServiceLevelSEPA" />
428
- <xs:element name="CtgyPurp" type="CategoryPurposeSEPA"
429
- minOccurs="0">
430
- <xs:annotation>
431
- <xs:documentation>Depending on the agreement between the Originator
432
- and the Originator Bank, ‘Category Purpose’ may be forwarded to
433
- the Beneficiary Bank.</xs:documentation>
434
- </xs:annotation>
435
- </xs:element>
436
- </xs:sequence>
437
- </xs:complexType>
438
- <xs:complexType name="PersonIdentificationSEPA1Choice">
439
- <xs:sequence>
440
- <xs:choice>
441
- <xs:element name="DtAndPlcOfBirth" type="DateAndPlaceOfBirth" />
442
- <xs:element name="Othr" type="GenericPersonIdentification1" />
443
- </xs:choice>
444
- </xs:sequence>
445
- </xs:complexType>
446
- <xs:complexType name="PersonIdentificationSchemeName1Choice">
447
- <xs:sequence>
448
- <xs:choice>
449
- <xs:element name="Cd" type="ExternalPersonIdentification1Code" />
450
- <xs:element name="Prtry" type="Max35Text" />
451
- </xs:choice>
452
- </xs:sequence>
453
- </xs:complexType>
454
- <xs:complexType name="PostalAddressSEPA">
455
- <xs:sequence>
456
- <xs:element name="Ctry" type="CountryCode" minOccurs="0" />
457
- <xs:element name="AdrLine" type="Max70Text" minOccurs="0"
458
- maxOccurs="2" />
459
- </xs:sequence>
460
- </xs:complexType>
461
- <xs:simpleType name="Priority2Code">
462
- <xs:restriction base="xs:string">
463
- <xs:enumeration value="HIGH" />
464
- <xs:enumeration value="NORM" />
465
- </xs:restriction>
466
- </xs:simpleType>
467
- <xs:complexType name="PurposeSEPA">
468
- <xs:sequence>
469
- <xs:element name="Cd" type="ExternalPurpose1Code">
470
- <xs:annotation>
471
- <xs:documentation>Only codes from the ISO 20022 ExternalPurposeCode
472
- list are allowed.</xs:documentation>
473
- </xs:annotation>
474
- </xs:element>
475
- </xs:sequence>
476
- </xs:complexType>
477
- <xs:complexType name="RemittanceInformationSEPA1Choice">
478
- <xs:sequence>
479
- <xs:choice>
480
- <xs:element name="Ustrd" type="Max140Text" />
481
- <xs:element name="Strd" type="StructuredRemittanceInformationSEPA1" />
482
- </xs:choice>
483
- </xs:sequence>
484
- </xs:complexType>
485
- <xs:complexType name="ServiceLevelSEPA">
486
- <xs:sequence>
487
- <xs:element name="Cd" type="ServiceLevelSEPACode" />
488
- </xs:sequence>
489
- </xs:complexType>
490
- <xs:complexType name="StructuredRemittanceInformationSEPA1">
491
- <xs:sequence>
492
- <xs:element name="CdtrRefInf" type="CreditorReferenceInformationSEPA1"
493
- minOccurs="0">
494
- <xs:annotation>
495
- <xs:documentation>When present, the receiving bank is not obliged
496
- to validate the the reference information. </xs:documentation>
497
- </xs:annotation>
498
- </xs:element>
499
- </xs:sequence>
500
- </xs:complexType>
501
- <xs:simpleType name="RestrictedIdentificationSEPA1">
502
- <xs:restriction base="xs:string">
503
- <xs:pattern value="([A-Za-z0-9]|[\+|\?|/|\-|:|\(|\)|\.|,|'| ]){1,35}" />
504
- </xs:restriction>
505
- </xs:simpleType>
506
- </xs:schema>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/gateways/direct-debit/libraries/sepa-xml-creator/pain.008.002.02.xsd DELETED
@@ -1,676 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Mit XMLSpy v2008 rel. 2 sp2 (http://www.altova.com) von benutzerservice
3
- benutzerservice (SIZ GmbH) bearbeitet -->
4
- <!--Generated by SWIFTStandards Workstation (build:R6.1.0.2) on 2009 Jan
5
- 08 17:30:53 -->
6
- <xs:schema xmlns="urn:iso:std:iso:20022:tech:xsd:pain.008.002.02"
7
- xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:iso:std:iso:20022:tech:xsd:pain.008.002.02"
8
- elementFormDefault="qualified">
9
- <xs:element name="Document" type="Document" />
10
- <xs:complexType name="AccountIdentificationSEPA">
11
- <xs:sequence>
12
- <xs:element name="IBAN" type="IBAN2007Identifier" />
13
- </xs:sequence>
14
- </xs:complexType>
15
- <xs:simpleType name="ActiveOrHistoricCurrencyAndAmount_SimpleTypeSEPA">
16
- <xs:restriction base="xs:decimal">
17
- <xs:minInclusive value="0.01" />
18
- <xs:maxInclusive value="999999999.99" />
19
- <xs:fractionDigits value="2" />
20
- <xs:totalDigits value="11" />
21
- </xs:restriction>
22
- </xs:simpleType>
23
- <xs:complexType name="ActiveOrHistoricCurrencyAndAmountSEPA">
24
- <xs:simpleContent>
25
- <xs:extension base="ActiveOrHistoricCurrencyAndAmount_SimpleTypeSEPA">
26
- <xs:attribute name="Ccy" type="ActiveOrHistoricCurrencyCodeEUR"
27
- use="required" />
28
- </xs:extension>
29
- </xs:simpleContent>
30
- </xs:complexType>
31
- <xs:simpleType name="ActiveOrHistoricCurrencyCodeEUR">
32
- <xs:restriction base="xs:string">
33
- <xs:enumeration value="EUR" />
34
- </xs:restriction>
35
- </xs:simpleType>
36
- <xs:simpleType name="ActiveOrHistoricCurrencyCode">
37
- <xs:restriction base="xs:string">
38
- <xs:pattern value="[A-Z]{3,3}" />
39
- </xs:restriction>
40
- </xs:simpleType>
41
- <xs:complexType name="AmendmentInformationDetailsSDD">
42
- <xs:sequence>
43
- <xs:element name="OrgnlMndtId" type="RestrictedIdentificationSEPA2"
44
- minOccurs="0">
45
- <xs:annotation>
46
- <xs:documentation>Mandatory if changes occur in ‘Mandate
47
- Identification’, otherwise not to be used.</xs:documentation>
48
- </xs:annotation>
49
- </xs:element>
50
- <xs:element name="OrgnlCdtrSchmeId" type="PartyIdentificationSEPA4"
51
- minOccurs="0">
52
- <xs:annotation>
53
- <xs:documentation>Mandatory if changes occur in 'Creditor Scheme
54
- Identification', otherwise not to be used.</xs:documentation>
55
- </xs:annotation>
56
- </xs:element>
57
- <xs:element name="OrgnlDbtrAcct" type="CashAccountSEPA2"
58
- minOccurs="0">
59
- <xs:annotation>
60
- <xs:documentation>To be used only for changes of accounts within
61
- the same bank.</xs:documentation>
62
- </xs:annotation>
63
- </xs:element>
64
- <xs:element name="OrgnlDbtrAgt"
65
- type="BranchAndFinancialInstitutionIdentificationSEPA2" minOccurs="0">
66
- <xs:annotation>
67
- <xs:documentation>To use 'Identification’ under 'Other' under
68
- 'Financial Institution Identifier with code ‘SMNDA’ to indicate
69
- same mandate with new Debtor Agent. To be used with the ‘FRST’
70
- indicator in the ‘Sequence Type’.</xs:documentation>
71
- </xs:annotation>
72
- </xs:element>
73
- </xs:sequence>
74
- </xs:complexType>
75
- <xs:simpleType name="AnyBICIdentifier">
76
- <xs:restriction base="xs:string">
77
- <xs:pattern value="[A-Z]{6,6}[A-Z2-9][A-NP-Z0-9]([A-Z0-9]{3,3}){0,1}" />
78
- </xs:restriction>
79
- </xs:simpleType>
80
- <xs:simpleType name="BICIdentifier">
81
- <xs:restriction base="xs:string">
82
- <xs:pattern value="[A-Z]{6,6}[A-Z2-9][A-NP-Z0-9]([A-Z0-9]{3,3}){0,1}" />
83
- </xs:restriction>
84
- </xs:simpleType>
85
- <xs:simpleType name="BatchBookingIndicator">
86
- <xs:restriction base="xs:boolean" />
87
- </xs:simpleType>
88
- <xs:complexType name="BranchAndFinancialInstitutionIdentificationSEPA1">
89
- <xs:sequence>
90
- <xs:element name="FinInstnId" type="FinancialInstitutionIdentificationSEPA1" />
91
- </xs:sequence>
92
- </xs:complexType>
93
- <xs:complexType name="BranchAndFinancialInstitutionIdentificationSEPA2">
94
- <xs:sequence>
95
- <xs:element name="FinInstnId" type="FinancialInstitutionIdentificationSEPA2" />
96
- </xs:sequence>
97
- </xs:complexType>
98
- <xs:complexType name="CashAccountSEPA1">
99
- <xs:sequence>
100
- <xs:element name="Id" type="AccountIdentificationSEPA" />
101
- <xs:element name="Ccy" type="ActiveOrHistoricCurrencyCode"
102
- minOccurs="0" />
103
- </xs:sequence>
104
- </xs:complexType>
105
- <xs:complexType name="CashAccountSEPA2">
106
- <xs:sequence>
107
- <xs:element name="Id" type="AccountIdentificationSEPA" />
108
- </xs:sequence>
109
- </xs:complexType>
110
- <xs:complexType name="CategoryPurposeSEPA">
111
- <xs:sequence>
112
- <xs:element name="Cd" type="ExternalCategoryPurpose1Code" />
113
- </xs:sequence>
114
- </xs:complexType>
115
- <xs:simpleType name="ChargeBearerTypeSEPACode">
116
- <xs:restriction base="xs:string">
117
- <xs:enumeration value="SLEV" />
118
- </xs:restriction>
119
- </xs:simpleType>
120
- <xs:simpleType name="CountryCode">
121
- <xs:restriction base="xs:string">
122
- <xs:pattern value="[A-Z]{2,2}" />
123
- </xs:restriction>
124
- </xs:simpleType>
125
- <xs:complexType name="CreditorReferenceInformationSEPA1">
126
- <xs:sequence>
127
- <xs:element name="Tp" type="CreditorReferenceTypeSEPA" />
128
- <xs:element name="Ref" type="Max35Text">
129
- <xs:annotation>
130
- <xs:documentation>If a Creditor Reference contains a check digit,
131
- the receiving bank is not required to validate this.
132
- If the receiving bank validates the check digit and if this
133
- validation fails, the bank may continue its processing and send
134
- the transaction to the next party in the chain.</xs:documentation>
135
- </xs:annotation>
136
- </xs:element>
137
- </xs:sequence>
138
- </xs:complexType>
139
- <xs:complexType name="CreditorReferenceTypeSEPA">
140
- <xs:sequence>
141
- <xs:element name="CdOrPrtry" type="CreditorReferenceTypeCodeSEPA" />
142
- <xs:element name="Issr" type="Max35Text" minOccurs="0" />
143
- </xs:sequence>
144
- </xs:complexType>
145
- <xs:complexType name="CreditorReferenceTypeCodeSEPA">
146
- <xs:sequence>
147
- <xs:element name="Cd" type="DocumentType3CodeSEPA" />
148
- </xs:sequence>
149
- </xs:complexType>
150
- <xs:complexType name="CustomerDirectDebitInitiationV02">
151
- <xs:sequence>
152
- <xs:element name="GrpHdr" type="GroupHeaderSDD" />
153
- <xs:element name="PmtInf" type="PaymentInstructionInformationSDD"
154
- maxOccurs="unbounded" />
155
- </xs:sequence>
156
- </xs:complexType>
157
- <xs:complexType name="DateAndPlaceOfBirth">
158
- <xs:sequence>
159
- <xs:element name="BirthDt" type="ISODate" />
160
- <xs:element name="PrvcOfBirth" type="Max35Text" minOccurs="0" />
161
- <xs:element name="CityOfBirth" type="Max35Text" />
162
- <xs:element name="CtryOfBirth" type="CountryCode" />
163
- </xs:sequence>
164
- </xs:complexType>
165
- <xs:simpleType name="DecimalNumber">
166
- <xs:restriction base="xs:decimal">
167
- <xs:fractionDigits value="17" />
168
- <xs:totalDigits value="18" />
169
- </xs:restriction>
170
- </xs:simpleType>
171
- <xs:complexType name="DirectDebitTransactionSDD">
172
- <xs:sequence>
173
- <xs:element name="MndtRltdInf" type="MandateRelatedInformationSDD" />
174
- <xs:element name="CdtrSchmeId" type="PartyIdentificationSEPA3"
175
- minOccurs="0">
176
- <xs:annotation>
177
- <xs:documentation>It is recommended that all transactions within
178
- the same ‘Payment Information’ block have the same ‘Creditor
179
- Scheme Identification’.
180
- This data element must be present at either ‘Payment Information’ or
181
- ‘Direct Debit
182
- Transaction’ level.</xs:documentation>
183
- </xs:annotation>
184
- </xs:element>
185
- </xs:sequence>
186
- </xs:complexType>
187
- <xs:complexType name="DirectDebitTransactionInformationSDD">
188
- <xs:sequence>
189
- <xs:element name="PmtId" type="PaymentIdentificationSEPA" />
190
- <xs:element name="InstdAmt" type="ActiveOrHistoricCurrencyAndAmountSEPA" />
191
- <xs:element name="ChrgBr" type="ChargeBearerTypeSEPACode"
192
- minOccurs="0">
193
- <xs:annotation>
194
- <xs:documentation>It is recommended that this element be specified
195
- at ‘Payment Information’ level.</xs:documentation>
196
- </xs:annotation>
197
- </xs:element>
198
- <xs:element name="DrctDbtTx" type="DirectDebitTransactionSDD" />
199
- <xs:element name="UltmtCdtr" type="PartyIdentificationSEPA1"
200
- minOccurs="0">
201
- <xs:annotation>
202
- <xs:documentation>This data element may be present either at
203
- ‘Payment Information’ or at ‘Direct Debit Transaction Information’
204
- level.</xs:documentation>
205
- </xs:annotation>
206
- </xs:element>
207
- <xs:element name="DbtrAgt"
208
- type="BranchAndFinancialInstitutionIdentificationSEPA1" />
209
- <xs:element name="Dbtr" type="PartyIdentificationSEPA2" />
210
- <xs:element name="DbtrAcct" type="CashAccountSEPA2" />
211
- <xs:element name="UltmtDbtr" type="PartyIdentificationSEPA1"
212
- minOccurs="0">
213
- <xs:annotation>
214
- <xs:documentation>Mandatory if provided by the debtor in the
215
- mandate.</xs:documentation>
216
- </xs:annotation>
217
- </xs:element>
218
- <xs:element name="Purp" type="PurposeSEPA" minOccurs="0" />
219
- <xs:element name="RmtInf" type="RemittanceInformationSEPA1Choice"
220
- minOccurs="0" />
221
- </xs:sequence>
222
- </xs:complexType>
223
- <xs:complexType name="Document">
224
- <xs:sequence>
225
- <xs:element name="CstmrDrctDbtInitn" type="CustomerDirectDebitInitiationV02" />
226
- </xs:sequence>
227
- </xs:complexType>
228
- <xs:simpleType name="DocumentType3CodeSEPA">
229
- <xs:restriction base="xs:string">
230
- <xs:enumeration value="SCOR" />
231
- </xs:restriction>
232
- </xs:simpleType>
233
- <xs:simpleType name="ExternalCategoryPurpose1Code">
234
- <xs:restriction base="xs:string">
235
- <xs:minLength value="1" />
236
- <xs:maxLength value="4" />
237
- </xs:restriction>
238
- </xs:simpleType>
239
- <xs:simpleType name="LocalInstrumentSEPACode">
240
- <xs:restriction base="xs:string">
241
- <xs:enumeration value="CORE" />
242
- <xs:enumeration value="B2B" />
243
- </xs:restriction>
244
- </xs:simpleType>
245
- <xs:simpleType name="ExternalOrganisationIdentification1Code">
246
- <xs:restriction base="xs:string">
247
- <xs:minLength value="1" />
248
- <xs:maxLength value="4" />
249
- </xs:restriction>
250
- </xs:simpleType>
251
- <xs:simpleType name="ExternalPersonIdentification1Code">
252
- <xs:restriction base="xs:string">
253
- <xs:minLength value="1" />
254
- <xs:maxLength value="4" />
255
- </xs:restriction>
256
- </xs:simpleType>
257
- <xs:simpleType name="ExternalPurpose1Code">
258
- <xs:restriction base="xs:string">
259
- <xs:minLength value="1" />
260
- <xs:maxLength value="4" />
261
- </xs:restriction>
262
- </xs:simpleType>
263
- <xs:simpleType name="ServiceLevelSEPACode">
264
- <xs:restriction base="xs:string">
265
- <xs:enumeration value="SEPA" />
266
- </xs:restriction>
267
- </xs:simpleType>
268
- <xs:complexType name="FinancialInstitutionIdentificationSEPA1">
269
- <xs:sequence>
270
- <xs:element name="BIC" type="BICIdentifier" />
271
- </xs:sequence>
272
- </xs:complexType>
273
- <xs:complexType name="FinancialInstitutionIdentificationSEPA2">
274
- <xs:sequence>
275
- <xs:element name="Othr" type="RestrictedFinancialIdentificationSEPA" />
276
- </xs:sequence>
277
- </xs:complexType>
278
- <xs:complexType name="RestrictedFinancialIdentificationSEPA">
279
- <xs:sequence>
280
- <xs:element name="Id" type="RestrictedSMNDACode" />
281
- </xs:sequence>
282
- </xs:complexType>
283
- <xs:simpleType name="RestrictedSMNDACode">
284
- <xs:restriction base="xs:string">
285
- <xs:enumeration value="SMNDA" />
286
- </xs:restriction>
287
- </xs:simpleType>
288
- <xs:complexType name="GenericOrganisationIdentification1">
289
- <xs:sequence>
290
- <xs:element name="Id" type="Max35Text" />
291
- <xs:element name="SchmeNm"
292
- type="OrganisationIdentificationSchemeName1Choice" minOccurs="0" />
293
- <xs:element name="Issr" type="Max35Text" minOccurs="0" />
294
- </xs:sequence>
295
- </xs:complexType>
296
- <xs:complexType name="GenericPersonIdentification1">
297
- <xs:sequence>
298
- <xs:element name="Id" type="Max35Text" />
299
- <xs:element name="SchmeNm" type="PersonIdentificationSchemeName1Choice"
300
- minOccurs="0" />
301
- <xs:element name="Issr" type="Max35Text" minOccurs="0" />
302
- </xs:sequence>
303
- </xs:complexType>
304
- <xs:complexType name="RestrictedPersonIdentificationSEPA">
305
- <xs:sequence>
306
- <xs:element name="Id" type="RestrictedPersonIdentifierSEPA" />
307
- <xs:element name="SchmeNm"
308
- type="RestrictedPersonIdentificationSchemeNameSEPA" />
309
- </xs:sequence>
310
- </xs:complexType>
311
- <xs:simpleType name="RestrictedPersonIdentifierSEPA">
312
- <xs:restriction base="xs:string">
313
- <xs:pattern
314
- value="[a-zA-Z]{2,2}[0-9]{2,2}([A-Za-z0-9]|[\+|\?|/|\-|:|\(|\)|\.|,|']){3,3}([A-Za-z0-9]|[\+|\?|/|\-|:|\(|\)|\.|,|']){1,28}" />
315
- </xs:restriction>
316
- </xs:simpleType>
317
- <xs:complexType name="GroupHeaderSDD">
318
- <xs:sequence>
319
- <xs:element name="MsgId" type="RestrictedIdentificationSEPA1" />
320
- <xs:element name="CreDtTm" type="ISODateTime" />
321
- <xs:element name="NbOfTxs" type="Max15NumericText" />
322
- <xs:element name="CtrlSum" type="DecimalNumber" minOccurs="0" />
323
- <xs:element name="InitgPty" type="PartyIdentificationSEPA1" />
324
- </xs:sequence>
325
- </xs:complexType>
326
- <xs:simpleType name="IBAN2007Identifier">
327
- <xs:restriction base="xs:string">
328
- <xs:pattern value="[A-Z]{2,2}[0-9]{2,2}[a-zA-Z0-9]{1,30}" />
329
- </xs:restriction>
330
- </xs:simpleType>
331
- <xs:simpleType name="ISODate">
332
- <xs:restriction base="xs:date" />
333
- </xs:simpleType>
334
- <xs:simpleType name="ISODateTime">
335
- <xs:restriction base="xs:dateTime" />
336
- </xs:simpleType>
337
- <xs:complexType name="LocalInstrumentSEPA">
338
- <xs:sequence>
339
- <xs:element name="Cd" type="LocalInstrumentSEPACode" />
340
- </xs:sequence>
341
- </xs:complexType>
342
- <xs:complexType name="MandateRelatedInformationSDD">
343
- <xs:sequence>
344
- <xs:element name="MndtId" type="RestrictedIdentificationSEPA2" />
345
- <xs:element name="DtOfSgntr" type="ISODate" />
346
- <xs:element name="AmdmntInd" type="TrueFalseIndicator"
347
- minOccurs="0" />
348
- <xs:element name="AmdmntInfDtls" type="AmendmentInformationDetailsSDD"
349
- minOccurs="0">
350
- <xs:annotation>
351
- <xs:documentation>Mandatory if 'Amendment Indicator' is 'TRUE'
352
- The reason code from the Rulebook is indicated using one of the
353
- following message subelements.</xs:documentation>
354
- </xs:annotation>
355
- </xs:element>
356
- <xs:element name="ElctrncSgntr" type="Max1025Text"
357
- minOccurs="0" />
358
- </xs:sequence>
359
- </xs:complexType>
360
- <xs:simpleType name="Max1025Text">
361
- <xs:restriction base="xs:string">
362
- <xs:minLength value="1" />
363
- <xs:maxLength value="1025" />
364
- </xs:restriction>
365
- </xs:simpleType>
366
- <xs:simpleType name="Max140Text">
367
- <xs:restriction base="xs:string">
368
- <xs:minLength value="1" />
369
- <xs:maxLength value="140" />
370
- </xs:restriction>
371
- </xs:simpleType>
372
- <xs:simpleType name="Max15NumericText">
373
- <xs:restriction base="xs:string">
374
- <xs:pattern value="[0-9]{1,15}" />
375
- </xs:restriction>
376
- </xs:simpleType>
377
- <xs:simpleType name="Max35Text">
378
- <xs:restriction base="xs:string">
379
- <xs:minLength value="1" />
380
- <xs:maxLength value="35" />
381
- </xs:restriction>
382
- </xs:simpleType>
383
- <xs:simpleType name="Max70Text">
384
- <xs:restriction base="xs:string">
385
- <xs:minLength value="1" />
386
- <xs:maxLength value="70" />
387
- </xs:restriction>
388
- </xs:simpleType>
389
- <xs:complexType name="OrganisationIdentificationSEPAChoice">
390
- <xs:sequence>
391
- <xs:choice>
392
- <xs:element name="BICOrBEI" type="AnyBICIdentifier" />
393
- <xs:element name="Othr" type="GenericOrganisationIdentification1" />
394
- </xs:choice>
395
- </xs:sequence>
396
- </xs:complexType>
397
- <xs:complexType name="OrganisationIdentificationSchemeName1Choice">
398
- <xs:sequence>
399
- <xs:choice>
400
- <xs:element name="Cd"
401
- type="ExternalOrganisationIdentification1Code" />
402
- <xs:element name="Prtry" type="Max35Text" />
403
- </xs:choice>
404
- </xs:sequence>
405
- </xs:complexType>
406
- <xs:complexType name="PartySEPAChoice">
407
- <xs:sequence>
408
- <xs:choice>
409
- <xs:element name="OrgId" type="OrganisationIdentificationSEPAChoice">
410
- <xs:annotation>
411
- <xs:documentation>Either ‘BIC or BEI’ or one
412
- occurrence of ‘Other’ is allowed.</xs:documentation>
413
- </xs:annotation>
414
- </xs:element>
415
- <xs:element name="PrvtId" type="PersonIdentificationSEPA1Choice">
416
- <xs:annotation>
417
- <xs:documentation>Either ‘Date and Place of Birth’ or one
418
- occurrence of ‘Other’ is allowed</xs:documentation>
419
- </xs:annotation>
420
- </xs:element>
421
- </xs:choice>
422
- </xs:sequence>
423
- </xs:complexType>
424
- <xs:complexType name="PartySEPA2">
425
- <xs:sequence>
426
- <xs:element name="PrvtId" type="PersonIdentificationSEPA2">
427
- <xs:annotation>
428
- <xs:documentation>Private Identification is used to identify either
429
- an organisation or a private
430
- person.</xs:documentation>
431
- </xs:annotation>
432
- </xs:element>
433
- </xs:sequence>
434
- </xs:complexType>
435
- <xs:complexType name="PartyIdentificationSEPA1">
436
- <xs:sequence>
437
- <xs:element name="Nm" type="Max70Text" minOccurs="0">
438
- <xs:annotation>
439
- <xs:documentation>‘Name’ is limited to 70 characters in length.</xs:documentation>
440
- </xs:annotation>
441
- </xs:element>
442
- <xs:element name="Id" type="PartySEPAChoice" minOccurs="0" />
443
- </xs:sequence>
444
- </xs:complexType>
445
- <xs:complexType name="PartyIdentificationSEPA2">
446
- <xs:sequence>
447
- <xs:element name="Nm" type="Max70Text">
448
- <xs:annotation>
449
- <xs:documentation>‘Name’ is limited to 70 characters in length.</xs:documentation>
450
- </xs:annotation>
451
- </xs:element>
452
- <xs:element name="PstlAdr" type="PostalAddressSEPA"
453
- minOccurs="0" />
454
- <xs:element name="Id" type="PartySEPAChoice" minOccurs="0" />
455
- </xs:sequence>
456
- </xs:complexType>
457
- <xs:complexType name="PartyIdentificationSEPA3">
458
- <xs:sequence>
459
- <xs:element name="Id" type="PartySEPA2" />
460
- </xs:sequence>
461
- </xs:complexType>
462
- <xs:complexType name="PartyIdentificationSEPA4">
463
- <xs:sequence>
464
- <xs:element name="Nm" type="Max70Text" minOccurs="0">
465
- <xs:annotation>
466
- <xs:documentation>If present the new’ Name’ must be specified under
467
- ‘Creditor’. ‘Name’ is limited to 70 characters in length.</xs:documentation>
468
- </xs:annotation>
469
- </xs:element>
470
- <xs:element name="Id" type="PartySEPA2" minOccurs="0" />
471
- </xs:sequence>
472
- </xs:complexType>
473
- <xs:complexType name="PartyIdentificationSEPA5">
474
- <xs:sequence>
475
- <xs:element name="Nm" type="Max70Text">
476
- <xs:annotation>
477
- <xs:documentation>‘Name’ is limited to 70 characters in length.</xs:documentation>
478
- </xs:annotation>
479
- </xs:element>
480
- <xs:element name="PstlAdr" type="PostalAddressSEPA"
481
- minOccurs="0" />
482
- </xs:sequence>
483
- </xs:complexType>
484
- <xs:complexType name="PaymentIdentificationSEPA">
485
- <xs:sequence>
486
- <xs:element name="InstrId" type="RestrictedIdentificationSEPA1"
487
- minOccurs="0" />
488
- <xs:element name="EndToEndId" type="RestrictedIdentificationSEPA1" />
489
- </xs:sequence>
490
- </xs:complexType>
491
- <xs:complexType name="PaymentInstructionInformationSDD">
492
- <xs:sequence>
493
- <xs:element name="PmtInfId" type="RestrictedIdentificationSEPA1" />
494
- <xs:element name="PmtMtd" type="PaymentMethod2Code" />
495
- <xs:element name="BtchBookg" type="BatchBookingIndicator"
496
- minOccurs="0">
497
- <xs:annotation>
498
- <xs:documentation>If present and contains ‘true’, batch booking is
499
- requested. If present and contains ‘false’, booking per
500
- transaction is requested. If element is not present, pre-agreed
501
- customer-to-bank conditions apply.</xs:documentation>
502
- </xs:annotation>
503
- </xs:element>
504
- <xs:element name="NbOfTxs" type="Max15NumericText"
505
- minOccurs="0" />
506
- <xs:element name="CtrlSum" type="DecimalNumber" minOccurs="0" />
507
- <xs:element name="PmtTpInf" type="PaymentTypeInformationSDD" />
508
- <xs:element name="ReqdColltnDt" type="ISODate" />
509
- <xs:element name="Cdtr" type="PartyIdentificationSEPA5" />
510
- <xs:element name="CdtrAcct" type="CashAccountSEPA1" />
511
- <xs:element name="CdtrAgt"
512
- type="BranchAndFinancialInstitutionIdentificationSEPA1" />
513
- <xs:element name="UltmtCdtr" type="PartyIdentificationSEPA1"
514
- minOccurs="0">
515
- <xs:annotation>
516
- <xs:documentation>This data element may be present either at
517
- ‘Payment Information’ or at ‘Direct Debit Transaction Information’
518
- level.</xs:documentation>
519
- </xs:annotation>
520
- </xs:element>
521
- <xs:element name="ChrgBr" type="ChargeBearerTypeSEPACode"
522
- minOccurs="0">
523
- <xs:annotation>
524
- <xs:documentation>It is recommended that this element be specified
525
- at ‘Payment Information’ level.</xs:documentation>
526
- </xs:annotation>
527
- </xs:element>
528
- <xs:element name="CdtrSchmeId" type="PartyIdentificationSEPA3"
529
- minOccurs="0">
530
- <xs:annotation>
531
- <xs:documentation>It is recommended that all transactions within
532
- the same ‘Payment Information’ block have the same ‘Creditor
533
- Scheme Identification’.
534
- This data element must be present at either ‘Payment Information’ or
535
- ‘Direct Debit
536
- Transaction’ level.</xs:documentation>
537
- </xs:annotation>
538
- </xs:element>
539
- <xs:element name="DrctDbtTxInf" type="DirectDebitTransactionInformationSDD"
540
- maxOccurs="unbounded" />
541
- </xs:sequence>
542
- </xs:complexType>
543
- <xs:simpleType name="PaymentMethod2Code">
544
- <xs:restriction base="xs:string">
545
- <xs:enumeration value="DD" />
546
- </xs:restriction>
547
- </xs:simpleType>
548
- <xs:complexType name="PaymentTypeInformationSDD">
549
- <xs:sequence>
550
- <xs:element name="SvcLvl" type="ServiceLevelSEPA" />
551
- <xs:element name="LclInstrm" type="LocalInstrumentSEPA">
552
- <xs:annotation>
553
- <xs:documentation>Only ‘B2B’ or 'CORE' is allowed. The mixing of
554
- Core Direct Debits and B2B Direct Debits is not allowed in the
555
- same message.</xs:documentation>
556
- </xs:annotation>
557
- </xs:element>
558
- <xs:element name="SeqTp" type="SequenceType1Code">
559
- <xs:annotation>
560
- <xs:documentation>If 'Amendment Indicator' is 'true' and 'Original
561
- Debtor Agent' is set to 'SMNDA' this message element must indicate
562
- 'FRST'</xs:documentation>
563
- </xs:annotation>
564
- </xs:element>
565
- <xs:element name="CtgyPurp" type="CategoryPurposeSEPA"
566
- minOccurs="0">
567
- <xs:annotation>
568
- <xs:documentation>Depending on the agreement between the Creditor
569
- and the Creditor Bank, ‘Category Purpose’ may be forwarded to the
570
- Debtor Bank.</xs:documentation>
571
- </xs:annotation>
572
- </xs:element>
573
- </xs:sequence>
574
- </xs:complexType>
575
- <xs:complexType name="PersonIdentificationSEPA1Choice">
576
- <xs:sequence>
577
- <xs:choice>
578
- <xs:element name="DtAndPlcOfBirth" type="DateAndPlaceOfBirth" />
579
- <xs:element name="Othr" type="GenericPersonIdentification1" />
580
- </xs:choice>
581
- </xs:sequence>
582
- </xs:complexType>
583
- <xs:complexType name="PersonIdentificationSEPA2">
584
- <xs:sequence>
585
- <xs:element name="Othr" type="RestrictedPersonIdentificationSEPA">
586
- <xs:annotation>
587
- <xs:documentation>Only one occurrence of ‘Other’ is allowed, and no
588
- other sub-elements are allowed.
589
- Identification must be used with an identifier described in General Message
590
- Element Specifications, Chapter 1.5.2 of the Implementation Guide.
591
- Scheme Name’ under ‘Other’ must specify ‘SEPA’ under ‘Proprietary</xs:documentation>
592
- </xs:annotation>
593
- </xs:element>
594
- </xs:sequence>
595
- </xs:complexType>
596
- <xs:complexType name="PersonIdentificationSchemeName1Choice">
597
- <xs:sequence>
598
- <xs:choice>
599
- <xs:element name="Cd" type="ExternalPersonIdentification1Code" />
600
- <xs:element name="Prtry" type="Max35Text" />
601
- </xs:choice>
602
- </xs:sequence>
603
- </xs:complexType>
604
- <xs:complexType name="RestrictedPersonIdentificationSchemeNameSEPA">
605
- <xs:sequence>
606
- <xs:element name="Prtry" type="IdentificationSchemeNameSEPA" />
607
- </xs:sequence>
608
- </xs:complexType>
609
- <xs:simpleType name="IdentificationSchemeNameSEPA">
610
- <xs:restriction base="xs:string">
611
- <xs:enumeration value="SEPA" />
612
- </xs:restriction>
613
- </xs:simpleType>
614
- <xs:complexType name="PostalAddressSEPA">
615
- <xs:sequence>
616
- <xs:element name="Ctry" type="CountryCode" minOccurs="0" />
617
- <xs:element name="AdrLine" type="Max70Text" minOccurs="0"
618
- maxOccurs="2" />
619
- </xs:sequence>
620
- </xs:complexType>
621
- <xs:complexType name="PurposeSEPA">
622
- <xs:sequence>
623
- <xs:element name="Cd" type="ExternalPurpose1Code">
624
- <xs:annotation>
625
- <xs:documentation>Only codes from the ISO 20022 ExternalPurposeCode
626
- list are allowed.</xs:documentation>
627
- </xs:annotation>
628
- </xs:element>
629
- </xs:sequence>
630
- </xs:complexType>
631
- <xs:complexType name="RemittanceInformationSEPA1Choice">
632
- <xs:sequence>
633
- <xs:choice>
634
- <xs:element name="Ustrd" type="Max140Text" />
635
- <xs:element name="Strd" type="StructuredRemittanceInformationSEPA1" />
636
- </xs:choice>
637
- </xs:sequence>
638
- </xs:complexType>
639
- <xs:simpleType name="SequenceType1Code">
640
- <xs:restriction base="xs:string">
641
- <xs:enumeration value="FRST" />
642
- <xs:enumeration value="RCUR" />
643
- <xs:enumeration value="FNAL" />
644
- <xs:enumeration value="OOFF" />
645
- </xs:restriction>
646
- </xs:simpleType>
647
- <xs:complexType name="ServiceLevelSEPA">
648
- <xs:sequence>
649
- <xs:element name="Cd" type="ServiceLevelSEPACode" />
650
- </xs:sequence>
651
- </xs:complexType>
652
- <xs:complexType name="StructuredRemittanceInformationSEPA1">
653
- <xs:sequence>
654
- <xs:element name="CdtrRefInf" type="CreditorReferenceInformationSEPA1"
655
- minOccurs="0">
656
- <xs:annotation>
657
- <xs:documentation>When present, the receiving bank is not obliged
658
- to validate the reference information.</xs:documentation>
659
- </xs:annotation>
660
- </xs:element>
661
- </xs:sequence>
662
- </xs:complexType>
663
- <xs:simpleType name="TrueFalseIndicator">
664
- <xs:restriction base="xs:boolean" />
665
- </xs:simpleType>
666
- <xs:simpleType name="RestrictedIdentificationSEPA1">
667
- <xs:restriction base="xs:string">
668
- <xs:pattern value="([A-Za-z0-9]|[\+|\?|/|\-|:|\(|\)|\.|,|'| ]){1,35}" />
669
- </xs:restriction>
670
- </xs:simpleType>
671
- <xs:simpleType name="RestrictedIdentificationSEPA2">
672
- <xs:restriction base="xs:string">
673
- <xs:pattern value="([A-Za-z0-9]|[\+|\?|/|\-|:|\(|\)|\.|,|']){1,35}" />
674
- </xs:restriction>
675
- </xs:simpleType>
676
- </xs:schema>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/gateways/invoice/class-wc-gzd-gateway-invoice.php CHANGED
@@ -176,8 +176,11 @@ class WC_GZD_Gateway_Invoice extends WC_Payment_Gateway {
176
  public function process_payment( $order_id ) {
177
 
178
  $order = wc_get_order( $order_id );
 
 
 
 
179
 
180
- // Mark as on-hold (we're awaiting the cheque)
181
  $order->update_status( $this->default_order_status );
182
 
183
  // Reduce stock levels
176
  public function process_payment( $order_id ) {
177
 
178
  $order = wc_get_order( $order_id );
179
+
180
+ // Do not send "paid for order" e-mail for invoice payment
181
+ if ( WC_germanized()->emails->get_email_instance_by_id( 'customer_paid_for_order' ) )
182
+ remove_action( 'woocommerce_order_status_pending_to_processing_notification', array( WC_germanized()->emails->get_email_instance_by_id( 'customer_paid_for_order' ), 'trigger' ), 30 );
183
 
 
184
  $order->update_status( $this->default_order_status );
185
 
186
  // Reduce stock levels
includes/trusted-shops/widgets/class-wc-gzd-trusted-shops-widget-reviews.php CHANGED
@@ -42,8 +42,6 @@ class WC_GZD_Trusted_Shops_Widget_Reviews extends WC_Widget {
42
 
43
  extract( $args );
44
 
45
- if ( is_cart() || is_checkout() ) return;
46
-
47
  $title = apply_filters('widget_title', empty( $instance['title'] ) ? _x( 'Trusted Shops Reviews', 'trusted-shops', 'woocommerce-germanized' ) : $instance['title'], $instance, $this->id_base );
48
 
49
  echo $before_widget;
42
 
43
  extract( $args );
44
 
 
 
45
  $title = apply_filters('widget_title', empty( $instance['title'] ) ? _x( 'Trusted Shops Reviews', 'trusted-shops', 'woocommerce-germanized' ) : $instance['title'], $instance, $this->id_base );
46
 
47
  echo $before_widget;
includes/wc-gzd-cart-functions.php CHANGED
@@ -286,9 +286,9 @@ function wc_gzd_get_legal_text( $text = '' ) {
286
  $plain_text = str_replace(
287
  array( '{term_link}', '{data_security_link}', '{revocation_link}', '{/term_link}', '{/data_security_link}', '{/revocation_link}' ),
288
  array(
289
- '<a href="' . esc_url( get_permalink( wc_get_page_id( 'terms' ) ) ) . '" target="_blank">',
290
- '<a href="' . esc_url( get_permalink( wc_get_page_id( 'data_security' ) ) ) . '" target="_blank">',
291
- '<a href="' . esc_url( get_permalink( wc_get_page_id( 'revocation' ) ) ) . '" target="_blank">',
292
  '</a>',
293
  '</a>',
294
  '</a>',
@@ -326,7 +326,7 @@ function wc_gzd_get_legal_text_digital_email_notice() {
326
  $text = str_replace(
327
  array( '{link}', '{/link}' ),
328
  array(
329
- '<a href="' . esc_url( get_permalink( wc_get_page_id( 'revocation' ) ) ) . '" target="_blank">',
330
  '</a>'
331
  ),
332
  $text
@@ -360,7 +360,7 @@ function wc_gzd_get_legal_text_service_email_notice() {
360
  $text = str_replace(
361
  array( '{link}', '{/link}' ),
362
  array(
363
- '<a href="' . esc_url( get_permalink( wc_get_page_id( 'revocation' ) ) ) . '" target="_blank">',
364
  '</a>'
365
  ),
366
  $text
@@ -368,3 +368,31 @@ function wc_gzd_get_legal_text_service_email_notice() {
368
  }
369
  return $text;
370
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
286
  $plain_text = str_replace(
287
  array( '{term_link}', '{data_security_link}', '{revocation_link}', '{/term_link}', '{/data_security_link}', '{/revocation_link}' ),
288
  array(
289
+ '<a href="' . esc_url( wc_gzd_get_page_permalink( 'terms' ) ) . '" target="_blank">',
290
+ '<a href="' . esc_url( wc_gzd_get_page_permalink( 'data_security' ) ) . '" target="_blank">',
291
+ '<a href="' . esc_url( wc_gzd_get_page_permalink( 'revocation' ) ) . '" target="_blank">',
292
  '</a>',
293
  '</a>',
294
  '</a>',
326
  $text = str_replace(
327
  array( '{link}', '{/link}' ),
328
  array(
329
+ '<a href="' . esc_url( wc_gzd_get_page_permalink( 'revocation' ) ) . '" target="_blank">',
330
  '</a>'
331
  ),
332
  $text
360
  $text = str_replace(
361
  array( '{link}', '{/link}' ),
362
  array(
363
+ '<a href="' . esc_url( wc_gzd_get_page_permalink( 'revocation' ) ) . '" target="_blank">',
364
  '</a>'
365
  ),
366
  $text
368
  }
369
  return $text;
370
  }
371
+
372
+ function wc_gzd_get_chosen_shipping_rates() {
373
+
374
+ $packages = WC()->shipping->get_packages();
375
+ $shipping_methods = (array) WC()->session->get( 'chosen_shipping_methods' );
376
+ $rates = array();
377
+
378
+ foreach ( $packages as $i => $package ) {
379
+ if ( isset( $package['rates'][ $shipping_methods[ $i ] ] ) ) {
380
+ array_push( $rates, $package['rates'][ $shipping_methods[ $i ] ] );
381
+ }
382
+ }
383
+
384
+ return $rates;
385
+ }
386
+
387
+ function wc_gzd_get_legal_text_parcel_delivery( $titles = array() ) {
388
+ $plain_text = __( 'Yes, I would like to be reminded via E-mail about parcel delivery ({shipping_method_title}). Your E-mail Address will only be transferred to our parcel service provider for that particular reason.', 'woocommerce-germanized' );
389
+
390
+ if ( get_option( 'woocommerce_gzd_checkout_legal_text_parcel_delivery' ) )
391
+ $plain_text = get_option( 'woocommerce_gzd_checkout_legal_text_parcel_delivery' );
392
+
393
+ if ( ! empty( $titles ) ) {
394
+ $plain_text = str_replace( '{shipping_method_title}', implode( ', ', $titles ), $plain_text );
395
+ }
396
+
397
+ return apply_filters( 'woocommerce_gzd_legal_text_parcel_delivery', $plain_text, $titles );
398
+ }
includes/wc-gzd-core-functions.php CHANGED
@@ -65,10 +65,10 @@ function wc_gzd_get_email_attachment_order() {
65
  return $items;
66
  }
67
 
68
- function wc_gzd_get_page_permalink( $page ) {
69
- $page_id = wc_get_page_id( $page );
70
- $permalink = $page_id ? get_permalink( $page_id ) : '';
71
- return apply_filters( 'woocommerce_get_' . $page . '_page_permalink', $permalink );
72
  }
73
 
74
  if ( ! function_exists( 'is_payment_methods' ) ) {
@@ -83,7 +83,7 @@ if ( ! function_exists( 'is_payment_methods' ) ) {
83
  }
84
 
85
  function wc_gzd_get_small_business_notice() {
86
- return apply_filters( 'woocommerce_gzd_small_business_notice', __( 'Because of the small business owner state according to &#167;19 UStG the seller charge no sales tax, and therefore do not show it.', 'woocommerce-germanized' ) );
87
  }
88
 
89
  function wc_gzd_help_tip( $tip, $allow_html = false ) {
@@ -93,3 +93,21 @@ function wc_gzd_help_tip( $tip, $allow_html = false ) {
93
 
94
  return '<a class="tips" data-tip="' . ( $allow_html ? esc_html( $tip ) : $tip ) . '" href="#">[?]</a>';
95
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65
  return $items;
66
  }
67
 
68
+ function wc_gzd_get_page_permalink( $type ) {
69
+ $page_id = wc_get_page_id( $type );
70
+ $link = $page_id ? get_permalink( $page_id ) : '';
71
+ return apply_filters( 'woocommerce_gzd_legal_page_permalink', $link, $type );
72
  }
73
 
74
  if ( ! function_exists( 'is_payment_methods' ) ) {
83
  }
84
 
85
  function wc_gzd_get_small_business_notice() {
86
+ return apply_filters( 'woocommerce_gzd_small_business_notice', __( 'Because of the small business owner state according to &#167; 19 UStG the seller does not levy nor state the German value added tax.', 'woocommerce-germanized' ) );
87
  }
88
 
89
  function wc_gzd_help_tip( $tip, $allow_html = false ) {
93
 
94
  return '<a class="tips" data-tip="' . ( $allow_html ? esc_html( $tip ) : $tip ) . '" href="#">[?]</a>';
95
  }
96
+
97
+ function wc_gzd_is_parcel_delivery_data_transfer_checkbox_enabled( $method_ids = array() ) {
98
+ $supported = get_option( 'woocommerce_gzd_checkout_legal_parcel_delivery_checkbox_methods', array() );
99
+
100
+ if ( ! is_array( $supported ) )
101
+ $supported = array();
102
+
103
+ if ( get_option( 'woocommerce_gzd_checkout_legal_parcel_delivery_checkbox' ) !== 'yes' )
104
+ return false;
105
+
106
+ if ( ! empty( $method_ids ) ) {
107
+ foreach ( $method_ids as $method_id ) {
108
+ if ( ! in_array( $method_id, $supported ) )
109
+ return false;
110
+ }
111
+ }
112
+ return true;
113
+ }
includes/wc-gzd-order-functions.php CHANGED
@@ -11,7 +11,6 @@
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
12
 
13
  function wc_gzd_cart_forwarding_fee_notice_filter( $total_rows, $order ) {
14
-
15
  $gateways = WC()->payment_gateways()->get_available_payment_gateways();
16
  $gateway = isset( $gateways[ $order->payment_method ] ) ? $gateways[ $order->payment_method ] : null;
17
 
@@ -22,7 +21,15 @@ function wc_gzd_cart_forwarding_fee_notice_filter( $total_rows, $order ) {
22
  );
23
  }
24
  return $total_rows;
25
-
26
  }
27
 
28
- add_filter( 'woocommerce_get_order_item_totals', 'wc_gzd_cart_forwarding_fee_notice_filter', PHP_INT_MAX, 2 );
 
 
 
 
 
 
 
 
 
11
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
12
 
13
  function wc_gzd_cart_forwarding_fee_notice_filter( $total_rows, $order ) {
 
14
  $gateways = WC()->payment_gateways()->get_available_payment_gateways();
15
  $gateway = isset( $gateways[ $order->payment_method ] ) ? $gateways[ $order->payment_method ] : null;
16
 
21
  );
22
  }
23
  return $total_rows;
 
24
  }
25
 
26
+ add_filter( 'woocommerce_get_order_item_totals', 'wc_gzd_cart_forwarding_fee_notice_filter', PHP_INT_MAX, 2 );
27
+
28
+ function wc_gzd_order_supports_parcel_delivery_reminder( $order_id ) {
29
+ $order = wc_get_order( $order_id );
30
+
31
+ if ( $order->parcel_delivery_opted_in === 'yes' )
32
+ return true;
33
+
34
+ return false;
35
+ }
includes/wc-gzd-product-functions.php CHANGED
@@ -87,6 +87,11 @@ function wc_gzd_is_revocation_exempt( $product, $type = 'digital' ) {
87
 
88
  function wc_gzd_product_matches_extended_type( $type, $product ) {
89
 
 
 
 
 
 
90
  if ( $type === $product->get_type() )
91
  return true;
92
  else if ( is_callable( array( $product, 'is_' . $type ) ) )
87
 
88
  function wc_gzd_product_matches_extended_type( $type, $product ) {
89
 
90
+ // Support Variations
91
+ if ( $product->parent ) {
92
+ $product = wc_get_product( $product->parent );
93
+ }
94
+
95
  if ( $type === $product->get_type() )
96
  return true;
97
  else if ( is_callable( array( $product, 'is_' . $type ) ) )
includes/wc-gzd-template-functions.php CHANGED
@@ -212,6 +212,25 @@ if ( ! function_exists( 'woocommerce_gzd_service_checkbox' ) ) {
212
 
213
  }
214
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
215
  if ( ! function_exists( 'woocommerce_gzd_checkout_validation' ) ) {
216
 
217
  /**
@@ -248,6 +267,9 @@ if ( ! function_exists( 'woocommerce_gzd_checkout_validation' ) ) {
248
 
249
  if ( get_option( 'woocommerce_gzd_checkout_legal_service_checkbox' ) === 'yes' && $is_service && ! isset( $_POST[ 'service-revocate' ] ) )
250
  wc_add_notice( wc_gzd_get_legal_text_service_error(), 'error' );
 
 
 
251
  }
252
  }
253
 
@@ -486,6 +508,10 @@ if ( ! function_exists( 'woocommerce_gzd_template_maybe_hide_delivery_time' ) )
486
  }
487
  }
488
 
 
 
 
 
489
  return $hide;
490
 
491
  }
212
 
213
  }
214
 
215
+ if ( ! function_exists( 'woocommerce_gzd_parcel_delivery_checkbox' ) ) {
216
+
217
+ function woocommerce_gzd_parcel_delivery_checkbox() {
218
+
219
+ $rates = wc_gzd_get_chosen_shipping_rates();
220
+ $ids = array();
221
+ $titles = array();
222
+
223
+ foreach ( $rates as $rate ) {
224
+ array_push( $ids, $rate->method_id );
225
+ array_push( $titles, $rate->get_label() );
226
+ }
227
+
228
+ if ( wc_gzd_is_parcel_delivery_data_transfer_checkbox_enabled( $ids ) ) {
229
+ wc_get_template( 'checkout/terms-parcel-delivery.php', array( 'titles' => $titles ) );
230
+ }
231
+ }
232
+ }
233
+
234
  if ( ! function_exists( 'woocommerce_gzd_checkout_validation' ) ) {
235
 
236
  /**
267
 
268
  if ( get_option( 'woocommerce_gzd_checkout_legal_service_checkbox' ) === 'yes' && $is_service && ! isset( $_POST[ 'service-revocate' ] ) )
269
  wc_add_notice( wc_gzd_get_legal_text_service_error(), 'error' );
270
+
271
+ if ( ( wc_gzd_is_parcel_delivery_data_transfer_checkbox_enabled() && get_option( 'woocommerce_gzd_checkout_legal_parcel_delivery_checkbox_required' ) === 'yes' ) && ! isset( $_POST[ 'parcel-delivery' ] ) )
272
+ wc_add_notice( __( 'Please accept our parcel delivery agreement', 'woocommerce-germanized' ), 'error' );
273
  }
274
  }
275
 
508
  }
509
  }
510
 
511
+ // Hide delivery time if product is not in stock
512
+ if ( ! $product->is_in_stock() )
513
+ return true;
514
+
515
  return $hide;
516
 
517
  }
includes/wc-gzd-template-hooks.php CHANGED
@@ -113,19 +113,22 @@ function woocommerce_gzd_checkout_load_ajax_relevant_hooks() {
113
  add_action( 'woocommerce_review_order_after_payment', 'woocommerce_gzd_template_checkout_legal', wc_gzd_get_hook_priority( 'checkout_legal' ) );
114
  add_action( 'woocommerce_review_order_after_payment', 'woocommerce_gzd_template_checkout_set_terms_manually', wc_gzd_get_hook_priority( 'checkout_set_terms' ) );
115
 
116
- if ( get_option( 'woocommerce_gzd_checkout_legal_digital_checkbox' ) == 'yes' )
117
  add_action( 'woocommerce_review_order_after_payment', 'woocommerce_gzd_digital_checkbox', wc_gzd_get_hook_priority( 'checkout_digital_checkbox' ) );
118
 
119
- if ( get_option( 'woocommerce_gzd_checkout_legal_service_checkbox' ) == 'yes' )
120
  add_action( 'woocommerce_review_order_after_payment', 'woocommerce_gzd_service_checkbox', wc_gzd_get_hook_priority( 'checkout_service_checkbox' ) );
121
 
 
 
 
122
  // Add payment title heading
123
  add_action( 'woocommerce_review_order_before_payment', 'woocommerce_gzd_template_checkout_payment_title' );
124
 
125
  }
126
 
127
  // Display back to cart button
128
- if ( get_option( 'woocommerce_gzd_display_checkout_back_to_cart_button' ) == 'yes' )
129
  add_action( 'woocommerce_review_order_after_cart_contents', 'woocommerce_gzd_template_checkout_back_to_cart' );
130
 
131
  // Force order button text
113
  add_action( 'woocommerce_review_order_after_payment', 'woocommerce_gzd_template_checkout_legal', wc_gzd_get_hook_priority( 'checkout_legal' ) );
114
  add_action( 'woocommerce_review_order_after_payment', 'woocommerce_gzd_template_checkout_set_terms_manually', wc_gzd_get_hook_priority( 'checkout_set_terms' ) );
115
 
116
+ if ( get_option( 'woocommerce_gzd_checkout_legal_digital_checkbox' ) === 'yes' )
117
  add_action( 'woocommerce_review_order_after_payment', 'woocommerce_gzd_digital_checkbox', wc_gzd_get_hook_priority( 'checkout_digital_checkbox' ) );
118
 
119
+ if ( get_option( 'woocommerce_gzd_checkout_legal_service_checkbox' ) === 'yes' )
120
  add_action( 'woocommerce_review_order_after_payment', 'woocommerce_gzd_service_checkbox', wc_gzd_get_hook_priority( 'checkout_service_checkbox' ) );
121
 
122
+ if ( get_option( 'woocommerce_gzd_checkout_legal_parcel_delivery_checkbox' ) === 'yes' )
123
+ add_action( 'woocommerce_review_order_after_payment', 'woocommerce_gzd_parcel_delivery_checkbox', wc_gzd_get_hook_priority( 'checkout_parcel_delivery_checkbox' ) );
124
+
125
  // Add payment title heading
126
  add_action( 'woocommerce_review_order_before_payment', 'woocommerce_gzd_template_checkout_payment_title' );
127
 
128
  }
129
 
130
  // Display back to cart button
131
+ if ( get_option( 'woocommerce_gzd_display_checkout_back_to_cart_button' ) === 'yes' )
132
  add_action( 'woocommerce_review_order_after_cart_contents', 'woocommerce_gzd_template_checkout_back_to_cart' );
133
 
134
  // Force order button text
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: vendidero
3
  Tags: woocommerce, german market, german, germany, deutsch, deutschland, de, de_DE, shop, commerce, e-commerce, ecommerce, woothemes, sepa, invoice
4
  Requires at least: 3.8
5
  Tested up to: 4.6
6
- Stable tag: 1.7.1
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -157,6 +157,19 @@ Bug reports may be filed via our [GitHub repository](https://github.com/vendider
157
 
158
  == Changelog ==
159
 
 
 
 
 
 
 
 
 
 
 
 
 
 
160
  = 1.7.1 =
161
  * Fix - WooCommerce Multilingual 3.6.8 compatibility
162
  * Fix - Better Inline Plugin Update Compatibility
3
  Tags: woocommerce, german market, german, germany, deutsch, deutschland, de, de_DE, shop, commerce, e-commerce, ecommerce, woothemes, sepa, invoice
4
  Requires at least: 3.8
5
  Tested up to: 4.6
6
+ Stable tag: 1.7.2
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
157
 
158
  == Changelog ==
159
 
160
+ = 1.7.2 =
161
+ * Feature - Optionally do not allow customers to switch payment gateway after ordering
162
+ * Feature - Better Woo Subscriptions Compatibility
163
+ * Feature - Parcel Delivery Data Transfer Checkbox for certain shipping methods (optional)
164
+ * Feature - Better SEPA XML Library (https://github.com/php-sepa-xml/php-sepa-xml) with Pain Format Support
165
+ * Fix - Customer Double Opt In Notice
166
+ * Fix - Hide Shipping Time if Product is not in stock
167
+ * Fix - Free Shipping REST API
168
+ * Fix - Unit Price Saving
169
+ * Fix - Order REST API
170
+ * Fix - JS Variation Reset
171
+ * Fix - Maybe Reduce Order Stock (for gateways like PayPal)
172
+
173
  = 1.7.1 =
174
  * Fix - WooCommerce Multilingual 3.6.8 compatibility
175
  * Fix - Better Inline Plugin Update Compatibility
templates/checkout/terms-parcel-delivery.php ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Checkout parcel delivery terms checkbox
4
+ *
5
+ * @author vendidero
6
+ * @package WooCommerceGermanized/Templates
7
+ * @version 1.6.0
8
+ */
9
+ if ( ! defined( 'ABSPATH' ) ) {
10
+ exit;
11
+ }
12
+
13
+ ?>
14
+
15
+ <p class="form-row data-parcel-delivery terms legal">
16
+ <input type="checkbox" class="input-checkbox" name="parcel-delivery" id="parcel-delivery-checkbox" />
17
+ <label for="parcel-delivery-checkbox" class="checkbox"><?php echo wc_gzd_get_legal_text_parcel_delivery( $titles ); ?></label>
18
+ </p>
woocommerce-germanized.php CHANGED
@@ -3,7 +3,7 @@
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.7.1
7
  * Author: Vendidero
8
  * Author URI: https://vendidero.de
9
  * Requires at least: 3.8
@@ -28,7 +28,7 @@ final class WooCommerce_Germanized {
28
  *
29
  * @var string
30
  */
31
- public $version = '1.7.1';
32
 
33
  /**
34
  * Single instance of WooCommerce Germanized Main Class
@@ -219,6 +219,11 @@ final class WooCommerce_Germanized {
219
  do_action( 'woocommerce_germanized_init' );
220
  }
221
 
 
 
 
 
 
222
  public function send_instant_order_confirmation() {
223
  return ( apply_filters( 'woocommerce_gzd_instant_order_confirmation', true ) && ( 'yes' !== get_option( 'woocommerce_gzd_disable_instant_order_confirmation' ) ) );
224
  }
@@ -247,6 +252,9 @@ final class WooCommerce_Germanized {
247
  else if ( strpos( $class, 'defuse\crypto' ) !== false ) {
248
  $path = $this->plugin_path() . '/includes/gateways/direct-debit/libraries/php-encryption/';
249
  $file = ucfirst( str_replace( 'Defuse/Crypto/', '', str_replace( '\\', '/', $original_class ) ) . '.php' );
 
 
 
250
  }
251
 
252
  if ( $path && is_readable( $path . $file ) ) {
@@ -587,7 +595,7 @@ final class WooCommerce_Germanized {
587
  $assets_path = str_replace( array( 'http:', 'https:' ), '', WC_germanized()->plugin_url() ) . '/assets/';
588
  $frontend_script_path = $assets_path . 'js/';
589
 
590
- if ( is_page() && has_shortcode( $post->post_content, 'revocation_form' ) )
591
  wp_enqueue_script( 'wc-gzd-revocation', $frontend_script_path . 'revocation' . $suffix . '.js', array( 'jquery', 'woocommerce', 'wc-country-select', 'wc-address-i18n' ), WC_GERMANIZED_VERSION, true );
592
 
593
  if ( is_checkout() )
@@ -711,7 +719,10 @@ final class WooCommerce_Germanized {
711
  public function send_order_confirmation_mails( $result, $order ) {
712
 
713
  if ( ! is_object( $order ) )
714
- $order = wc_get_order( $order );
 
 
 
715
 
716
  do_action( 'woocommerce_germanized_before_order_confirmation', $order->id );
717
 
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.7.2
7
  * Author: Vendidero
8
  * Author URI: https://vendidero.de
9
  * Requires at least: 3.8
28
  *
29
  * @var string
30
  */
31
+ public $version = '1.7.2';
32
 
33
  /**
34
  * Single instance of WooCommerce Germanized Main Class
219
  do_action( 'woocommerce_germanized_init' );
220
  }
221
 
222
+ /**
223
+ * Check whether to send instant order confirmation or not
224
+ *
225
+ * @return bool
226
+ */
227
  public function send_instant_order_confirmation() {
228
  return ( apply_filters( 'woocommerce_gzd_instant_order_confirmation', true ) && ( 'yes' !== get_option( 'woocommerce_gzd_disable_instant_order_confirmation' ) ) );
229
  }
252
  else if ( strpos( $class, 'defuse\crypto' ) !== false ) {
253
  $path = $this->plugin_path() . '/includes/gateways/direct-debit/libraries/php-encryption/';
254
  $file = ucfirst( str_replace( 'Defuse/Crypto/', '', str_replace( '\\', '/', $original_class ) ) . '.php' );
255
+ } else if ( strpos( $class, 'digitick\sepa' ) !== false ) {
256
+ $path = $this->plugin_path() . '/includes/gateways/direct-debit/libraries/php-sepa-xml/';
257
+ $file = ucfirst( str_replace( 'Digitick/Sepa/', '', str_replace( '\\', '/', $original_class ) ) . '.php' );
258
  }
259
 
260
  if ( $path && is_readable( $path . $file ) ) {
595
  $assets_path = str_replace( array( 'http:', 'https:' ), '', WC_germanized()->plugin_url() ) . '/assets/';
596
  $frontend_script_path = $assets_path . 'js/';
597
 
598
+ if ( is_page() && is_object( $post ) && has_shortcode( $post->post_content, 'revocation_form' ) )
599
  wp_enqueue_script( 'wc-gzd-revocation', $frontend_script_path . 'revocation' . $suffix . '.js', array( 'jquery', 'woocommerce', 'wc-country-select', 'wc-address-i18n' ), WC_GERMANIZED_VERSION, true );
600
 
601
  if ( is_checkout() )
719
  public function send_order_confirmation_mails( $result, $order ) {
720
 
721
  if ( ! is_object( $order ) )
722
+ $order = wc_get_order( $order );
723
+
724
+ if ( ! apply_filters( 'woocommerce_germanized_send_instant_order_confirmation', true, $order ) )
725
+ return $result;
726
 
727
  do_action( 'woocommerce_germanized_before_order_confirmation', $order->id );
728
 
wpml-config.xml CHANGED
@@ -15,6 +15,7 @@
15
  <key name="woocommerce_gzd_checkout_legal_text_digital_error" />
16
  <key name="woocommerce_gzd_checkout_legal_text_service" />
17
  <key name="woocommerce_gzd_checkout_legal_text_service_error" />
 
18
  <key name="woocommerce_gzd_order_success_text" />
19
  <key name="woocommerce_gzd_customer_account_text" />
20
  <key name="woocommerce_direct-debit_company_info" />
15
  <key name="woocommerce_gzd_checkout_legal_text_digital_error" />
16
  <key name="woocommerce_gzd_checkout_legal_text_service" />
17
  <key name="woocommerce_gzd_checkout_legal_text_service_error" />
18
+ <key name="woocommerce_gzd_checkout_legal_text_parcel_delivery" />
19
  <key name="woocommerce_gzd_order_success_text" />
20
  <key name="woocommerce_gzd_customer_account_text" />
21
  <key name="woocommerce_direct-debit_company_info" />