Version Description
- Feature: Adjust email title format and customize it with placeholders e.g. first name or last name
- Improvement: Free shipping auto select implementation
- Improvement: Remove shipping taxes in case of VAT exempt to make sure shipping costs are interpreted as gross
- Improvement: Do not force IBAN to equal billing country (see https://www.wettbewerbszentrale.de/de/presse/pressemitteilungen/_pressemitteilung/?id=303)
- Fix: Check event data before calling GermanizedVariationForm in add to cart variation script
- Fix: Duplicate attributes in cart/checkout
Download this release
Release Info
Developer | vendidero |
Plugin | WooCommerce Germanized |
Version | 2.2.9 |
Comparing to | |
See all releases |
Code changes from version 2.2.8 to 2.2.9
- assets/css/woocommerce-gzd-trusted-shops.min.css +1 -1
- assets/js/add-to-cart-variation.js +7 -0
- assets/js/add-to-cart-variation.min.js +1 -1
- i18n/languages/woocommerce-germanized-de_DE.mo +0 -0
- i18n/languages/woocommerce-germanized-de_DE.po +171 -151
- i18n/languages/woocommerce-germanized-de_DE_formal.mo +0 -0
- i18n/languages/woocommerce-germanized-de_DE_formal.po +175 -154
- includes/abstracts/abstract-wc-gzd-product.php +101 -1
- includes/admin/settings/class-wc-gzd-settings-germanized.php +10 -2
- includes/admin/views/html-page-status-germanized.php +1 -1
- includes/class-wc-gzd-checkout.php +25 -14
- includes/class-wc-gzd-emails.php +50 -11
- includes/class-wc-gzd-hook-priorities.php +1 -0
- includes/class-wc-gzd-product-attribute-helper.php +19 -104
- includes/class-wc-gzd-shipping-rate.php +2 -3
- includes/compatibility/class-wc-gzd-compatibility-woocommerce-role-based-price.php +2 -1
- includes/compatibility/class-wc-gzd-compatibility-wpml-string-translation.php +1 -0
- includes/compatibility/class-wc-gzd-compatibility-wpml.php +28 -21
- includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php +1 -1
- includes/wc-gzd-cart-functions.php +40 -1
- includes/wc-gzd-template-functions.php +0 -1
- readme.txt +9 -1
- woocommerce-germanized.php +3 -4
- wpml-config.xml +1 -0
assets/css/woocommerce-gzd-trusted-shops.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
|
1 |
+
.wc-gzd-trusted-shops-rating-widget{line-height:1.5rem}.wc-gzd-trusted-shops-rating-widget .star-rating{display:inline-block;float:none}.trusted-shops-badge{width:100px;height:100px;display:inline-block;background:url(../images/ts/trusted-shops-badge.png) no-repeat}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (-o-min-device-pixel-ratio:3/2),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){.trusted-shops-badge{background:url(../images/ts/trusted-shops-badge@2x.png) no-repeat;background-size:100px 100px}.trusted-shops-badge-smaller{background-size:75px 75px}}
|
assets/js/add-to-cart-variation.js
CHANGED
@@ -62,7 +62,14 @@
|
|
62 |
};
|
63 |
|
64 |
GermanizedVariationForm.prototype.onUpdate = function( event ) {
|
|
|
65 |
setTimeout( function() {
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
if ( ! event.data.GermanizedvariationForm.$singleVariation.is( ':visible' ) || event.data.GermanizedvariationForm.$button.is( '[disabled]' ) ) {
|
67 |
event.data.GermanizedvariationForm.onReset( event );
|
68 |
}
|
62 |
};
|
63 |
|
64 |
GermanizedVariationForm.prototype.onUpdate = function( event ) {
|
65 |
+
|
66 |
setTimeout( function() {
|
67 |
+
if( typeof event.data === 'undefined' || ! event.data.hasOwnProperty( 'GermanizedvariationForm' ) ) {
|
68 |
+
return;
|
69 |
+
} else if ( typeof event.data.GermanizedvariationForm === 'undefined' ) {
|
70 |
+
return;
|
71 |
+
}
|
72 |
+
|
73 |
if ( ! event.data.GermanizedvariationForm.$singleVariation.is( ':visible' ) || event.data.GermanizedvariationForm.$button.is( '[disabled]' ) ) {
|
74 |
event.data.GermanizedvariationForm.onReset( event );
|
75 |
}
|
assets/js/add-to-cart-variation.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(a){var b=function(a){var b=this;b.$form=a,b.$wrapper=a.parents(wc_gzd_add_to_cart_variation_params.wrapper),b.$product=a.closest(".product"),b.variationData=a.data("product_variations"),b.$singleVariation=a.find(".single_variation"),b.$singleVariationWrap=a.find(".single_variation_wrap"),b.$resetVariations=a.find(".reset_variations"),b.$button=a.find(".single_add_to_cart_button"),b.$wrapper.length<=0&&(b.$wrapper=b.$product),a.on("click",".reset_variations",{GermanizedvariationForm:b},b.onReset),a.on("reset_data",{GermanizedvariationForm:b},b.onReset),a.on("update_variation_values",{GermanizedvariationForm:b},b.onUpdate),a.on("found_variation",{GermanizedvariationForm:b},b.onFoundVariation)};b.prototype.onReset=function(a){var b=a.data.GermanizedvariationForm.$wrapper;b.find(".org_price").length>0&&b.find(wc_gzd_add_to_cart_variation_params.price_selector+".variation_modified:not(.price-unit)").html(b.find(".org_price").html()).removeClass("variation_modified").show(),b.find(".org_delivery_time").length>0&&b.find(".delivery-time-info:first").html(b.find(".org_delivery_time").html()).removeClass("variation_modified").show(),b.find(".org_unit_price").length>0&&b.find(".price-unit:first").html(b.find(".org_unit_price").html()).removeClass("variation_modified").show(),b.find(".org_tax_info").length>0&&b.find(".tax-info:first").html(b.find(".org_tax_info").html()).removeClass("variation_modified").show(),b.find(".org_shipping_costs_info").length>0&&b.find(".shipping-costs-info:first").html(b.find(".org_shipping_costs_info").html()).removeClass("variation_modified").show(),b.find(".org_product_units").length>0&&b.find(".product-units:first").html(b.find(".org_product_units").html()).removeClass("variation_modified").show(),b.find(".org_product_info").remove(),b.find(".variation_modified").remove(),a.data.GermanizedvariationForm.$form.trigger("germanized_reset_data")},b.prototype.onUpdate=function(a){setTimeout(function(){(!a.data.GermanizedvariationForm.$singleVariation.is(":visible")||a.data.GermanizedvariationForm.$button.is("[disabled]"))&&a.data.GermanizedvariationForm.onReset(a)},250)},b.prototype.onFoundVariation=function(a,b){var c=a.data.GermanizedvariationForm,d=c.$wrapper;b.variation_is_visible&&(d.find(wc_gzd_add_to_cart_variation_params.price_selector+":first").hasClass("variation_modified")||(d.append('<div class="org_price org_product_info">'+d.find(wc_gzd_add_to_cart_variation_params.price_selector+":not(.price-unit):first").html()+"</div>"),d.find(".delivery-time-info:first").length>0&&d.append('<div class="org_delivery_time org_product_info">'+d.find(".delivery-time-info:first").html()+"</div>"),d.find(".tax-info:first").length>0&&d.append('<div class="org_tax_info org_product_info">'+d.find(".tax-info:first").html()+"</div>"),d.find(".shipping-costs-info:first").length>0&&d.append('<div class="org_shipping_costs_info org_product_info">'+d.find(".shipping-costs-info:first").html()+"</div>"),d.find(".price-unit:first").length>0&&d.append('<div class="org_unit_price org_product_info">'+d.find(".price-unit:first").html()+"</div>"),d.find(".product-units:first").length>0&&d.append('<div class="org_product_units org_product_info">'+d.find(".product-units:first").html()+"</div>"),d.find(".org_product_info").hide()),""!==b.price_html&&(c.$singleVariation.find(".price").hide(),d.find(wc_gzd_add_to_cart_variation_params.price_selector+":not(.price-unit):first").html(b.price_html).addClass("variation_modified"),d.find(wc_gzd_add_to_cart_variation_params.price_selector+":not(.price-unit):first").find(".price").contents().unwrap()),d.find(".delivery-time-info:first").hide(),d.find(".price-unit:first").hide(),d.find(".tax-info:first").hide(),d.find(".shipping-costs-info:first").hide(),d.find(".product-units:first").hide(),""!==b.delivery_time&&d.find("p.delivery-time-info:first").html(b.delivery_time).addClass("variation_modified").show(),""!==b.tax_info&&d.find(".tax-info:first").html(b.tax_info).addClass("variation_modified").show(),""!==b.shipping_costs_info&&d.find(".shipping-costs-info:first").html(b.shipping_costs_info).addClass("variation_modified").show(),""!==b.unit_price&&(d.find(".price-unit:first").length?d.find(".price-unit:first").html(b.unit_price).addClass("variation-modified").show():(d.find(".price-unit:first").remove(),d.find("p.price:first").after('<p class="price price-unit smaller variation_modified">'+b.unit_price+"</p>").show())),""!==b.product_units&&(d.find(".product-units:first").length?d.find(".product-units:first").html(b.product_units).addClass("variation-modified").show():(d.find(".product-units:first").remove(),d.find(".product_meta:first").prepend('<p class="wc-gzd-additional-info product-units-wrapper product-units variation_modified">'+b.product_units+"</p>").show())),c.$form.trigger("germanized_variation_data"))},a.fn.wc_germanized_variation_form=function(){return new b(this),this},a(function(){"undefined"!=typeof wc_gzd_add_to_cart_variation_params&&a(".variations_form").each(function(){a(this).wc_germanized_variation_form()})})}(jQuery,window,document);
|
1 |
+
!function(a){var b=function(a){var b=this;b.$form=a,b.$wrapper=a.parents(wc_gzd_add_to_cart_variation_params.wrapper),b.$product=a.closest(".product"),b.variationData=a.data("product_variations"),b.$singleVariation=a.find(".single_variation"),b.$singleVariationWrap=a.find(".single_variation_wrap"),b.$resetVariations=a.find(".reset_variations"),b.$button=a.find(".single_add_to_cart_button"),b.$wrapper.length<=0&&(b.$wrapper=b.$product),a.on("click",".reset_variations",{GermanizedvariationForm:b},b.onReset),a.on("reset_data",{GermanizedvariationForm:b},b.onReset),a.on("update_variation_values",{GermanizedvariationForm:b},b.onUpdate),a.on("found_variation",{GermanizedvariationForm:b},b.onFoundVariation)};b.prototype.onReset=function(a){var b=a.data.GermanizedvariationForm.$wrapper;b.find(".org_price").length>0&&b.find(wc_gzd_add_to_cart_variation_params.price_selector+".variation_modified:not(.price-unit)").html(b.find(".org_price").html()).removeClass("variation_modified").show(),b.find(".org_delivery_time").length>0&&b.find(".delivery-time-info:first").html(b.find(".org_delivery_time").html()).removeClass("variation_modified").show(),b.find(".org_unit_price").length>0&&b.find(".price-unit:first").html(b.find(".org_unit_price").html()).removeClass("variation_modified").show(),b.find(".org_tax_info").length>0&&b.find(".tax-info:first").html(b.find(".org_tax_info").html()).removeClass("variation_modified").show(),b.find(".org_shipping_costs_info").length>0&&b.find(".shipping-costs-info:first").html(b.find(".org_shipping_costs_info").html()).removeClass("variation_modified").show(),b.find(".org_product_units").length>0&&b.find(".product-units:first").html(b.find(".org_product_units").html()).removeClass("variation_modified").show(),b.find(".org_product_info").remove(),b.find(".variation_modified").remove(),a.data.GermanizedvariationForm.$form.trigger("germanized_reset_data")},b.prototype.onUpdate=function(a){setTimeout(function(){"undefined"!=typeof a.data&&a.data.hasOwnProperty("GermanizedvariationForm")&&"undefined"!=typeof a.data.GermanizedvariationForm&&(!a.data.GermanizedvariationForm.$singleVariation.is(":visible")||a.data.GermanizedvariationForm.$button.is("[disabled]"))&&a.data.GermanizedvariationForm.onReset(a)},250)},b.prototype.onFoundVariation=function(a,b){var c=a.data.GermanizedvariationForm,d=c.$wrapper;b.variation_is_visible&&(d.find(wc_gzd_add_to_cart_variation_params.price_selector+":first").hasClass("variation_modified")||(d.append('<div class="org_price org_product_info">'+d.find(wc_gzd_add_to_cart_variation_params.price_selector+":not(.price-unit):first").html()+"</div>"),d.find(".delivery-time-info:first").length>0&&d.append('<div class="org_delivery_time org_product_info">'+d.find(".delivery-time-info:first").html()+"</div>"),d.find(".tax-info:first").length>0&&d.append('<div class="org_tax_info org_product_info">'+d.find(".tax-info:first").html()+"</div>"),d.find(".shipping-costs-info:first").length>0&&d.append('<div class="org_shipping_costs_info org_product_info">'+d.find(".shipping-costs-info:first").html()+"</div>"),d.find(".price-unit:first").length>0&&d.append('<div class="org_unit_price org_product_info">'+d.find(".price-unit:first").html()+"</div>"),d.find(".product-units:first").length>0&&d.append('<div class="org_product_units org_product_info">'+d.find(".product-units:first").html()+"</div>"),d.find(".org_product_info").hide()),""!==b.price_html&&(c.$singleVariation.find(".price").hide(),d.find(wc_gzd_add_to_cart_variation_params.price_selector+":not(.price-unit):first").html(b.price_html).addClass("variation_modified"),d.find(wc_gzd_add_to_cart_variation_params.price_selector+":not(.price-unit):first").find(".price").contents().unwrap()),d.find(".delivery-time-info:first").hide(),d.find(".price-unit:first").hide(),d.find(".tax-info:first").hide(),d.find(".shipping-costs-info:first").hide(),d.find(".product-units:first").hide(),""!==b.delivery_time&&d.find("p.delivery-time-info:first").html(b.delivery_time).addClass("variation_modified").show(),""!==b.tax_info&&d.find(".tax-info:first").html(b.tax_info).addClass("variation_modified").show(),""!==b.shipping_costs_info&&d.find(".shipping-costs-info:first").html(b.shipping_costs_info).addClass("variation_modified").show(),""!==b.unit_price&&(d.find(".price-unit:first").length?d.find(".price-unit:first").html(b.unit_price).addClass("variation-modified").show():(d.find(".price-unit:first").remove(),d.find("p.price:first").after('<p class="price price-unit smaller variation_modified">'+b.unit_price+"</p>").show())),""!==b.product_units&&(d.find(".product-units:first").length?d.find(".product-units:first").html(b.product_units).addClass("variation-modified").show():(d.find(".product-units:first").remove(),d.find(".product_meta:first").prepend('<p class="wc-gzd-additional-info product-units-wrapper product-units variation_modified">'+b.product_units+"</p>").show())),c.$form.trigger("germanized_variation_data"))},a.fn.wc_germanized_variation_form=function(){return new b(this),this},a(function(){"undefined"!=typeof wc_gzd_add_to_cart_variation_params&&a(".variations_form").each(function(){a(this).wc_germanized_variation_form()})})}(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: 2019-
|
6 |
-
"PO-Revision-Date: 2019-
|
7 |
"Last-Translator: holzhannes <holzhannes@posteo.de>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE\n"
|
@@ -11,7 +11,7 @@ msgstr ""
|
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
-
"X-Generator: Poedit 2.2\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
@@ -92,27 +92,27 @@ msgid "l"
|
|
92 |
msgstr "l"
|
93 |
|
94 |
# @ woocommerce-germanized
|
95 |
-
#: includes/abstracts/abstract-wc-gzd-product.php:
|
96 |
-
#: includes/abstracts/abstract-wc-gzd-product.php:
|
97 |
#: includes/wc-gzd-core-functions.php:154
|
98 |
-
#: includes/wc-gzd-template-functions.php:444 woocommerce-germanized.php:
|
99 |
msgid "incl. VAT"
|
100 |
msgstr "inkl. MwSt."
|
101 |
|
102 |
# @ woocommerce-germanized
|
103 |
-
#: includes/abstracts/abstract-wc-gzd-product.php:
|
104 |
msgid "excl. VAT"
|
105 |
msgstr "exkl. MwSt."
|
106 |
|
107 |
# @ woocommerce-germanized
|
108 |
-
#: includes/abstracts/abstract-wc-gzd-product.php:
|
109 |
-
#: includes/wc-gzd-core-functions.php:154 woocommerce-germanized.php:
|
110 |
#, php-format
|
111 |
msgid "incl. %s%% VAT"
|
112 |
msgstr "inkl. %s%% MwSt."
|
113 |
|
114 |
# @ woocommerce-germanized
|
115 |
-
#: includes/abstracts/abstract-wc-gzd-product.php:
|
116 |
#, php-format
|
117 |
msgid "excl. %s%% VAT"
|
118 |
msgstr "exkl. %s%% MwSt."
|
@@ -239,20 +239,20 @@ msgstr ""
|
|
239 |
|
240 |
# @ woocommerce-germanized
|
241 |
#: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:99
|
242 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
243 |
msgid "Downloadable Product"
|
244 |
msgstr "Herunterladbares Produkt"
|
245 |
|
246 |
# @ woocommerce-germanized
|
247 |
#: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:100
|
248 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
249 |
msgid "Virtual Product"
|
250 |
msgstr "Virtuelles Produkt"
|
251 |
|
252 |
#: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:101
|
253 |
#: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:45
|
254 |
#: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:119
|
255 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
256 |
#: includes/class-wc-gzd-legal-checkbox-manager.php:122
|
257 |
msgid "Service"
|
258 |
msgstr "Dienstleistung"
|
@@ -500,9 +500,9 @@ msgstr "Angebotspreis Hinweis"
|
|
500 |
#: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:113
|
501 |
#: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:148
|
502 |
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:704
|
503 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
504 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
505 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
506 |
msgid "Product Units"
|
507 |
msgstr "Produkteinheiten"
|
508 |
|
@@ -732,7 +732,7 @@ msgstr "Keine"
|
|
732 |
|
733 |
# @ woocommerce-germanized
|
734 |
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:170
|
735 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
736 |
msgid "General"
|
737 |
msgstr "Allgemein"
|
738 |
|
@@ -1528,17 +1528,17 @@ msgstr "In E-Mails anzeigen"
|
|
1528 |
|
1529 |
# @ woocommerce-germanized
|
1530 |
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:696
|
1531 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1532 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1533 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1534 |
msgid "Base Price"
|
1535 |
msgstr "Grundpreis"
|
1536 |
|
1537 |
# @ woocommerce-germanized
|
1538 |
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:712
|
1539 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1540 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1541 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1542 |
msgid "Delivery Time Notice"
|
1543 |
msgstr "Lieferzeiten-Hinweis"
|
1544 |
|
@@ -1547,17 +1547,45 @@ msgstr "Lieferzeiten-Hinweis"
|
|
1547 |
msgid "Short Description"
|
1548 |
msgstr "Warenkorbkurzbeschreibung"
|
1549 |
|
|
|
|
|
1550 |
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:731
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1551 |
msgid "Hide Username"
|
1552 |
msgstr "Nutzernamen verstecken"
|
1553 |
|
1554 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1555 |
msgid ""
|
1556 |
"Hide username from email content if password or password reset link is "
|
1557 |
"embedded."
|
1558 |
msgstr "Nutzernamen nicht zusammen mit einem Passwort versenden."
|
1559 |
|
1560 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1561 |
msgid ""
|
1562 |
"Trusted Shops advises to not show the username together with an account "
|
1563 |
"password or password reset link. This option hides (or masks) the username "
|
@@ -1568,12 +1596,12 @@ msgstr ""
|
|
1568 |
"Trusted Shops Mitglied bist, solltest du diese Option aktivieren."
|
1569 |
|
1570 |
# @ woocommerce-germanized
|
1571 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1572 |
msgid "Email Attachment Options"
|
1573 |
msgstr "PDF Anhang"
|
1574 |
|
1575 |
# @ woocommerce-germanized
|
1576 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1577 |
#, php-format
|
1578 |
msgid ""
|
1579 |
"Want to attach automatically generated PDF files to emails instead of plain "
|
@@ -1583,17 +1611,17 @@ msgstr ""
|
|
1583 |
"%sUpgrade zur %spro%s Version%s"
|
1584 |
|
1585 |
# @ woocommerce-germanized
|
1586 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1587 |
msgid "Add to Cart"
|
1588 |
msgstr "Zum Warenkorb Button"
|
1589 |
|
1590 |
# @ woocommerce-germanized
|
1591 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1592 |
msgid "Show add to cart button on listings?"
|
1593 |
msgstr "Den zum Warenkorb Button in Produktlisten darstellen?"
|
1594 |
|
1595 |
# @ woocommerce-germanized
|
1596 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1597 |
msgid ""
|
1598 |
"unset this option if you don't want to show the add to cart button within "
|
1599 |
"the product listings"
|
@@ -1602,18 +1630,18 @@ msgstr ""
|
|
1602 |
"von Produktauflistungen darstellen möchten"
|
1603 |
|
1604 |
# @ woocommerce-germanized
|
1605 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1606 |
msgid "Link to Details"
|
1607 |
msgstr "Verlinkung zu Produktdetails"
|
1608 |
|
1609 |
# @ woocommerce-germanized
|
1610 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1611 |
msgid ""
|
1612 |
"Want to link to product details page instead of add to cart within listings?"
|
1613 |
msgstr "Zum Warenkorb Button mit Button zur Produktdetail-Seite ersetzen?"
|
1614 |
|
1615 |
# @ woocommerce-germanized
|
1616 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1617 |
msgid ""
|
1618 |
"Decide whether you like to link to your product's details page instead of "
|
1619 |
"displaying an add to cart button within product listings."
|
@@ -1623,17 +1651,17 @@ msgstr ""
|
|
1623 |
"diese Option."
|
1624 |
|
1625 |
# @ woocommerce-germanized
|
1626 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1627 |
msgid "Product Details Text"
|
1628 |
msgstr "Produktdetails Text"
|
1629 |
|
1630 |
# @ woocommerce-germanized
|
1631 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1632 |
msgid "Details"
|
1633 |
msgstr "Details"
|
1634 |
|
1635 |
# @ woocommerce-germanized
|
1636 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1637 |
msgid ""
|
1638 |
"If you have chosen to link to product details page instead of add to cart "
|
1639 |
"URL you may want to change the button text."
|
@@ -1643,11 +1671,11 @@ msgstr ""
|
|
1643 |
"einen Button-Text vergeben."
|
1644 |
|
1645 |
# @ woocommerce-germanized
|
1646 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1647 |
msgid "Digital Delivery Time Text"
|
1648 |
msgstr "Lieferzeit Digital"
|
1649 |
|
1650 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1651 |
msgid ""
|
1652 |
"Enter a text which will be shown as digital delivery time text (replacement "
|
1653 |
"for default digital time on digital products)."
|
@@ -1657,73 +1685,73 @@ msgstr ""
|
|
1657 |
"lassen."
|
1658 |
|
1659 |
# @ woocommerce-germanized
|
1660 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1661 |
msgid "Notice Footer"
|
1662 |
msgstr "Hinweise im Footer"
|
1663 |
|
1664 |
# @ woocommerce-germanized
|
1665 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1666 |
msgid "Show a global VAT notice within footer"
|
1667 |
msgstr "Einen seitenübergreifenden Hinweis bzgl. der MwSt. im Footer einfügen."
|
1668 |
|
1669 |
# @ woocommerce-germanized
|
1670 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1671 |
msgid "Show a global sale price notice within footer"
|
1672 |
msgstr ""
|
1673 |
"Einen seitenübergreifenden Hinweis bzgl. reduzierter Preise im Footer "
|
1674 |
"einfügen."
|
1675 |
|
1676 |
# @ woocommerce-germanized
|
1677 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1678 |
msgid "Products"
|
1679 |
msgstr "Produkt"
|
1680 |
|
1681 |
# @ woocommerce-germanized
|
1682 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1683 |
msgid "Show within Product Listings"
|
1684 |
msgstr "In Produktlisten"
|
1685 |
|
1686 |
# @ woocommerce-germanized
|
1687 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1688 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1689 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1690 |
msgid "Shipping Costs notice"
|
1691 |
msgstr "Versandkosten-Hinweis"
|
1692 |
|
1693 |
# @ woocommerce-germanized
|
1694 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1695 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1696 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1697 |
msgid "Tax Info"
|
1698 |
msgstr "MwSt. Hinweis"
|
1699 |
|
1700 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1701 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1702 |
#: includes/class-wc-gzd-post-types.php:93
|
1703 |
#: includes/class-wc-gzd-post-types.php:95
|
1704 |
msgid "Price Labels"
|
1705 |
msgstr "Preishinweise"
|
1706 |
|
1707 |
# @ woocommerce-germanized
|
1708 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1709 |
msgid "Show on Product Detail Page"
|
1710 |
msgstr "Auf der Produktseite"
|
1711 |
|
1712 |
# @ woocommerce-germanized
|
1713 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1714 |
msgid "Within Product Widgets"
|
1715 |
msgstr "In Produkt-Widgets"
|
1716 |
|
1717 |
# @ woocommerce-germanized
|
1718 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1719 |
msgid "Hide Tax Rate"
|
1720 |
msgstr "Steuersatz verstecken"
|
1721 |
|
1722 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1723 |
msgid "Hide specific tax rate within shop pages."
|
1724 |
msgstr "Entferne die Anzeige des konkreten Steuersatzes im Shop."
|
1725 |
|
1726 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1727 |
msgid ""
|
1728 |
"This option will make sure that within shop pages no specific tax rates are "
|
1729 |
"shown. Instead only incl. tax or excl. tax notice is shown."
|
@@ -1733,12 +1761,12 @@ msgstr ""
|
|
1733 |
"bzw. exkl. MwSt."
|
1734 |
|
1735 |
# @ woocommerce-germanized
|
1736 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1737 |
msgid "Hide Shipping Costs Notice"
|
1738 |
msgstr "Versandkosten ausblenden"
|
1739 |
|
1740 |
# @ woocommerce-germanized
|
1741 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1742 |
msgid ""
|
1743 |
"Select product types for which you might want to disable the shipping costs "
|
1744 |
"notice."
|
@@ -1747,11 +1775,11 @@ msgstr ""
|
|
1747 |
"möchtest."
|
1748 |
|
1749 |
# @ woocommerce-germanized
|
1750 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1751 |
msgid "Hide Delivery Time Notice"
|
1752 |
msgstr "Lieferzeiten ausblenden"
|
1753 |
|
1754 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1755 |
msgid ""
|
1756 |
"Select product types for which you might want to disable the delivery time "
|
1757 |
"notice."
|
@@ -1760,33 +1788,33 @@ msgstr ""
|
|
1760 |
"möchtest."
|
1761 |
|
1762 |
# @ woocommerce
|
1763 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1764 |
msgid "Backorder"
|
1765 |
msgstr "Lieferrückstand"
|
1766 |
|
1767 |
# @ woocommerce-germanized
|
1768 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1769 |
msgid "Hide delivery time if a product is on backorder."
|
1770 |
msgstr "Lieferzeit ausblenden falls das Produkt im Lieferrückstand ist."
|
1771 |
|
1772 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1773 |
msgid "Not in Stock"
|
1774 |
msgstr "Nicht auf Lager"
|
1775 |
|
1776 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1777 |
msgid "Hide delivery time if a product is not in stock."
|
1778 |
msgstr "Lieferzeit ausblenden falls das Produkt nicht auf Lager ist."
|
1779 |
|
1780 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1781 |
msgid "Prices"
|
1782 |
msgstr "Preise"
|
1783 |
|
1784 |
# @ woocommerce-germanized
|
1785 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1786 |
msgid "Price Range Format"
|
1787 |
msgstr "Preisspannen-Format"
|
1788 |
|
1789 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1790 |
msgid ""
|
1791 |
"Adjust the price range format e.g. for variable products. Use {min_price} as "
|
1792 |
"placeholder for the minimum price. Use {max_price} as placeholder for the "
|
@@ -1796,18 +1824,18 @@ msgstr ""
|
|
1796 |
"{min_price} als Platzhalter für den minimalen Preis und {max_price} als "
|
1797 |
"Platzhalter für den höchsten Preis."
|
1798 |
|
1799 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1800 |
#: includes/wc-gzd-core-functions.php:411
|
1801 |
msgid "{min_price} – {max_price}"
|
1802 |
msgstr "{min_price} – {max_price}"
|
1803 |
|
1804 |
# @ woocommerce-germanized
|
1805 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1806 |
msgid "Base Price Text"
|
1807 |
msgstr "Grundpreis Text"
|
1808 |
|
1809 |
# @ woocommerce-germanized
|
1810 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1811 |
msgid ""
|
1812 |
"This text will be used to display the base price. Use {price} to insert the "
|
1813 |
"price. If you want to specifically format base price output use {base}, "
|
@@ -1819,26 +1847,26 @@ msgstr ""
|
|
1819 |
"{base_price} für die einzelnen Elemente."
|
1820 |
|
1821 |
# @ woocommerce-germanized
|
1822 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1823 |
msgid "{price}"
|
1824 |
msgstr "{price}"
|
1825 |
|
1826 |
# @ woocommerce-germanized
|
1827 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1828 |
msgid "Variable Base Price"
|
1829 |
msgstr "Variabler Grundpreis"
|
1830 |
|
1831 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1832 |
msgid "Enable price range base prices for variable products."
|
1833 |
msgstr "Aktiviere von-bis-Grundpreise für variable Produkte."
|
1834 |
|
1835 |
# @ woocommerce-germanized
|
1836 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1837 |
msgid "Product Units Text"
|
1838 |
msgstr "Produkteinheiten Text"
|
1839 |
|
1840 |
# @ woocommerce-germanized
|
1841 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1842 |
msgid ""
|
1843 |
"This text will be used to display the product units. Use {product_units} to "
|
1844 |
"insert the amount of product units. Use {unit} to insert the unit. "
|
@@ -1850,26 +1878,26 @@ msgstr ""
|
|
1850 |
"Grundpreis."
|
1851 |
|
1852 |
# @ woocommerce-germanized
|
1853 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1854 |
msgid "Product contains: {product_units} {unit}"
|
1855 |
msgstr "Produkt enthält: {product_units} {unit}"
|
1856 |
|
1857 |
# @ woocommerce-germanized
|
1858 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1859 |
msgid "Checkout & Cart"
|
1860 |
msgstr "Checkout & Warenkorb"
|
1861 |
|
1862 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1863 |
msgid "DHL Parcel Shops"
|
1864 |
msgstr "DHL Packstationen"
|
1865 |
|
1866 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1867 |
msgid ""
|
1868 |
"Allow customers to choose a DHL parcel shop or packing station as delivery "
|
1869 |
"address."
|
1870 |
msgstr "Versand an DHL Packstation bzw. Paketshops aktivieren."
|
1871 |
|
1872 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1873 |
msgid ""
|
1874 |
"This option adds a checkbox to your checkout shipping fields which allows "
|
1875 |
"the customer to optionally choose a DHL packing station or parcel shop for "
|
@@ -1879,22 +1907,22 @@ msgstr ""
|
|
1879 |
"der Kunde optional die Lieferung an eine Packstation aktivieren. Fall das "
|
1880 |
"der Fall ist, muss eine PostNummer angegeben werden."
|
1881 |
|
1882 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1883 |
msgid "Supported Countries"
|
1884 |
msgstr "Unterstützte Länder"
|
1885 |
|
1886 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1887 |
msgid "Choose countries which support Parcel Shop delivery."
|
1888 |
msgstr ""
|
1889 |
"Wähle hier die Länder an, in denen du die Lieferung an DHL Packstationen "
|
1890 |
"bzw. Paketshops aktivieren möchtest."
|
1891 |
|
1892 |
# @ woocommerce-germanized
|
1893 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1894 |
msgid "Disabled Methods"
|
1895 |
msgstr "Deaktiviert für"
|
1896 |
|
1897 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1898 |
msgid ""
|
1899 |
"Optionally choose methods for which DHL Parcel Shop Delivery should be "
|
1900 |
"disabled. Does only work if you have disabled choosing shipping methods "
|
@@ -1904,17 +1932,17 @@ msgstr ""
|
|
1904 |
"Packstationen deaktiviert werden soll. Funktioniert nur in Verbindung mit "
|
1905 |
"der Option \"Auswahl von Versandarten im Checkout deaktivieren\"."
|
1906 |
|
1907 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1908 |
#: includes/class-wc-gzd-dhl-parcel-shops.php:354
|
1909 |
msgid "Parcel Shop Finder"
|
1910 |
msgstr "Paketshop finden"
|
1911 |
|
1912 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1913 |
msgid ""
|
1914 |
"Enable DHL Parcel Shop Finder to let customers choose a parcel shop nearby."
|
1915 |
msgstr "Standortsuche nach der nächstgelegenen Packstation aktivieren."
|
1916 |
|
1917 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1918 |
#, php-format
|
1919 |
msgid ""
|
1920 |
"You may enable this option to add a <a href=\"%s\" target=\"_blank\">Parcel "
|
@@ -1929,13 +1957,13 @@ msgstr ""
|
|
1929 |
"Nähe auswählen und die Daten automatisch übernehmen."
|
1930 |
|
1931 |
# @ woocommerce-germanized
|
1932 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1933 |
#: includes/admin/views/html-page-status-germanized.php:55
|
1934 |
msgid "Fallback Mode"
|
1935 |
msgstr "Fallback Modus"
|
1936 |
|
1937 |
# @ woocommerce-germanized
|
1938 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1939 |
msgid ""
|
1940 |
"Enable to make sure default checkout template is not being overriden by "
|
1941 |
"theme."
|
@@ -1943,7 +1971,7 @@ msgstr ""
|
|
1943 |
"Überschreiben relevanter Templates im Checkout durch dein Theme verhindern."
|
1944 |
|
1945 |
# @ woocommerce-germanized
|
1946 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1947 |
msgid ""
|
1948 |
"If you are facing problems within your checkout e.g. legally relevant data "
|
1949 |
"is not showing (terms, delivery time, unit price etc.) your theme seems to "
|
@@ -1957,17 +1985,17 @@ msgstr ""
|
|
1957 |
"Checkout (review-order.php und form-checkout.php) zu überschreiben. "
|
1958 |
|
1959 |
# @ woocommerce-germanized
|
1960 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1961 |
msgid "Force free shipping"
|
1962 |
msgstr "Versandmethode erzwingen"
|
1963 |
|
1964 |
# @ woocommerce-germanized
|
1965 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1966 |
msgid "Force free shipping method if available?"
|
1967 |
msgstr "Kostenlosen Versand erzwingen wenn die Methode zur Verfügung steht?"
|
1968 |
|
1969 |
# @ woocommerce-germanized
|
1970 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1971 |
msgid ""
|
1972 |
"By default WooCommerce will let customers choose other shipping methods than "
|
1973 |
"free shipping (if available). This option will force free shipping if "
|
@@ -1978,18 +2006,18 @@ msgstr ""
|
|
1978 |
"Versand, sobald dieser verfügbar ist."
|
1979 |
|
1980 |
# @ woocommerce-germanized
|
1981 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1982 |
msgid "Hide taxes estimated"
|
1983 |
msgstr "Hinweis \"Steuern geschätzt\""
|
1984 |
|
1985 |
# @ woocommerce-germanized
|
1986 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1987 |
msgid ""
|
1988 |
"Do you want to hide the \"taxes and shipping estimated\" text from your cart?"
|
1989 |
msgstr "Den Hinweis \"Versandkosten und Steuern werden geschätzt\" entfernen?"
|
1990 |
|
1991 |
# @ woocommerce-germanized
|
1992 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1993 |
msgid ""
|
1994 |
"By default WooCommerce adds a \"taxes and shipping estimated\" text to your "
|
1995 |
"cart. This might puzzle your customers and may not meet german law."
|
@@ -1999,17 +2027,17 @@ msgstr ""
|
|
1999 |
"Markt geeignet."
|
2000 |
|
2001 |
# @ woocommerce-germanized
|
2002 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2003 |
msgid "Show Thumbnails"
|
2004 |
msgstr "Thumbnails anzeigen"
|
2005 |
|
2006 |
# @ woocommerce-germanized
|
2007 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2008 |
msgid "Show product thumbnails on checkout page?"
|
2009 |
msgstr "Produktbilder im Checkout darstellen?"
|
2010 |
|
2011 |
# @ woocommerce-germanized
|
2012 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2013 |
msgid ""
|
2014 |
"Uncheck if you don't want to show your product thumbnails within checkout "
|
2015 |
"table."
|
@@ -2018,17 +2046,17 @@ msgstr ""
|
|
2018 |
"bekommen möchtest."
|
2019 |
|
2020 |
# @ woocommerce-germanized
|
2021 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2022 |
msgid "Hide Shipping Select"
|
2023 |
msgstr "Versandarten Auswahl"
|
2024 |
|
2025 |
# @ woocommerce-germanized
|
2026 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2027 |
msgid "Hide shipping rate selection from checkout?"
|
2028 |
msgstr "Die Auswahl von Versandarten im Checkout deaktivieren?"
|
2029 |
|
2030 |
# @ woocommerce-germanized
|
2031 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2032 |
msgid ""
|
2033 |
"This option will hide shipping rate selection from checkout. By then "
|
2034 |
"customers will only be able to change their shipping rate on cart page."
|
@@ -2038,18 +2066,18 @@ msgstr ""
|
|
2038 |
"Versandmethode ändern."
|
2039 |
|
2040 |
# @ woocommerce-germanized
|
2041 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2042 |
msgid "Show back to cart button"
|
2043 |
msgstr "Bestellung bearbeiten"
|
2044 |
|
2045 |
# @ woocommerce-germanized
|
2046 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2047 |
msgid "Show back to cart button within your checkout table?"
|
2048 |
msgstr ""
|
2049 |
"Einen \"Bestellung bearbeiten\" Button in der Bestellübersicht anzeigen?"
|
2050 |
|
2051 |
# @ woocommerce-germanized
|
2052 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2053 |
msgid ""
|
2054 |
"This button may let your customer edit their order before submitting. Some "
|
2055 |
"people state that this button should be hidden to avoid legal problems."
|
@@ -2061,28 +2089,28 @@ msgstr ""
|
|
2061 |
"keine weitere Informationen abgedruckt werden sollten."
|
2062 |
|
2063 |
# @ woocommerce-germanized
|
2064 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2065 |
msgid "Show edit data notice"
|
2066 |
msgstr "Bestellung prüfen Hinweis"
|
2067 |
|
2068 |
# @ woocommerce-germanized
|
2069 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2070 |
msgid "Show a \"check-your-entries\" notice to the user?"
|
2071 |
msgstr "Einen \"Bestellung prüfen\" Hinweis anzeigen?"
|
2072 |
|
2073 |
# @ woocommerce-germanized
|
2074 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2075 |
msgid "This notice will be added right before the order comments field."
|
2076 |
msgstr ""
|
2077 |
"Dieser Hinweis wird direkt oberhalb des Bestellhinweise-Feldes eingefügt."
|
2078 |
|
2079 |
# @ woocommerce-germanized
|
2080 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2081 |
msgid "Checkout Table Color"
|
2082 |
msgstr "Hintergrundfarbe der Tabelle"
|
2083 |
|
2084 |
# @ woocommerce-germanized
|
2085 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2086 |
msgid ""
|
2087 |
"Choose the color of your checkout product table. This table should be "
|
2088 |
"highlighted within your checkout page."
|
@@ -2091,19 +2119,19 @@ msgstr ""
|
|
2091 |
"Tabelle sollte sich farblich vom Rest des Inhalts abheben."
|
2092 |
|
2093 |
# @ woocommerce-germanized
|
2094 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2095 |
msgid "Pay now Button"
|
2096 |
msgstr "Jetzt bezahlen Button"
|
2097 |
|
2098 |
# @ woocommerce-germanized
|
2099 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2100 |
msgid "Add a pay now button to emails and order success page."
|
2101 |
msgstr ""
|
2102 |
"Füge einen jetzt bezahlen - Button zur E-Mail und der Bestätigungs-Seite "
|
2103 |
"hinzu."
|
2104 |
|
2105 |
# @ woocommerce-germanized
|
2106 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2107 |
msgid ""
|
2108 |
"Add a pay now button to order confirmation email and order success page if "
|
2109 |
"the order awaits payment (PayPal etc)."
|
@@ -2113,41 +2141,41 @@ msgstr ""
|
|
2113 |
"benötigt (z.B. per PayPal)."
|
2114 |
|
2115 |
# @ woocommerce-germanized
|
2116 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2117 |
msgid "Disabled for"
|
2118 |
msgstr "Deaktiviert für"
|
2119 |
|
2120 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2121 |
msgid "You may want to disable the pay now button for certain payment methods."
|
2122 |
msgstr ""
|
2123 |
"Du kannst den jetzt bezahlen Button hier bei Bedarf für bestimmte "
|
2124 |
"Zahlungsarten deaktivieren."
|
2125 |
|
2126 |
# @ woocommerce-germanized
|
2127 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2128 |
msgid "Order Success Text"
|
2129 |
msgstr "Bestellung eingegangen"
|
2130 |
|
2131 |
# @ woocommerce-germanized
|
2132 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2133 |
msgid "Choose a custom text to display on order success page."
|
2134 |
msgstr ""
|
2135 |
"Hier kannst du einen individuellen kurzen Text eingeben, der nach der "
|
2136 |
"Bestellung ausgegeben wird."
|
2137 |
|
2138 |
# @ woocommerce-germanized
|
2139 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2140 |
msgid "Order Success Data"
|
2141 |
msgstr "Bestellbestätigungs-Daten"
|
2142 |
|
2143 |
# @ woocommerce-germanized
|
2144 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2145 |
msgid "Hide product table and customer data on order success page"
|
2146 |
msgstr ""
|
2147 |
"Produktdetails (Tabelle, Kundeninfos) von der Bestätigungsseite entfernen."
|
2148 |
|
2149 |
# @ woocommerce-germanized
|
2150 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2151 |
msgid ""
|
2152 |
"Sorry, but the new Virtual VAT rules cannot be applied to small business."
|
2153 |
msgstr ""
|
@@ -2679,7 +2707,8 @@ msgid "Checks whether compatibility options for %s are being applied."
|
|
2679 |
msgstr "Prüft ob die Kompatibilitätsanpassungen für %s geladen werden."
|
2680 |
|
2681 |
#: includes/admin/views/html-page-status-germanized.php:179
|
2682 |
-
|
|
|
2683 |
msgstr ""
|
2684 |
"Version %s wird nicht unterstützt. Bitte installiere eine Version zwischen "
|
2685 |
"%s und %s."
|
@@ -2852,19 +2881,6 @@ msgstr ""
|
|
2852 |
msgid "Upgrade now"
|
2853 |
msgstr "jetzt upgraden"
|
2854 |
|
2855 |
-
# @ woocommerce-germanized
|
2856 |
-
# @ woocommerce
|
2857 |
-
#: includes/api/class-wc-gzd-rest-customers-controller.php:137
|
2858 |
-
#: includes/api/class-wc-gzd-rest-customers-controller.php:144
|
2859 |
-
#: includes/api/class-wc-gzd-rest-orders-controller.php:161
|
2860 |
-
#: includes/api/class-wc-gzd-rest-orders-controller.php:168
|
2861 |
-
#: includes/class-wc-gzd-checkout.php:365
|
2862 |
-
#: includes/class-wc-gzd-checkout.php:376
|
2863 |
-
#: includes/class-wc-gzd-customer-helper.php:106
|
2864 |
-
#: includes/class-wc-gzd-customer-helper.php:114
|
2865 |
-
msgid "Title"
|
2866 |
-
msgstr "Anrede"
|
2867 |
-
|
2868 |
#: includes/api/class-wc-gzd-rest-customers-controller.php:151
|
2869 |
#: includes/class-wc-gzd-dhl-parcel-shops.php:149
|
2870 |
msgid "Send to DHL Parcel Shop?"
|
@@ -3146,9 +3162,9 @@ msgstr ""
|
|
3146 |
"Mail mit deinen Daten als Bestätigung."
|
3147 |
|
3148 |
# @ woocommerce-germanized
|
3149 |
-
#: includes/class-wc-gzd-checkout.php:
|
3150 |
-
#: includes/class-wc-gzd-checkout.php:
|
3151 |
-
#: includes/class-wc-gzd-checkout.php:
|
3152 |
#: includes/class-wc-gzd-customer-helper.php:108
|
3153 |
#: includes/class-wc-gzd-customer-helper.php:116
|
3154 |
#: includes/class-wc-gzd-revocation.php:41
|
@@ -3157,9 +3173,9 @@ msgid "Mr."
|
|
3157 |
msgstr "Herr"
|
3158 |
|
3159 |
# @ woocommerce-germanized
|
3160 |
-
#: includes/class-wc-gzd-checkout.php:
|
3161 |
-
#: includes/class-wc-gzd-checkout.php:
|
3162 |
-
#: includes/class-wc-gzd-checkout.php:
|
3163 |
#: includes/class-wc-gzd-customer-helper.php:108
|
3164 |
#: includes/class-wc-gzd-customer-helper.php:116
|
3165 |
#: includes/class-wc-gzd-revocation.php:42
|
@@ -3382,7 +3398,7 @@ msgstr ""
|
|
3382 |
"Dieser Text wird in die Bestellbestätigung eingefügt. Verwende "
|
3383 |
"{order_number}, {site_title} oder {order_date} als Platzhalter."
|
3384 |
|
3385 |
-
#: includes/class-wc-gzd-emails.php:
|
3386 |
msgid ""
|
3387 |
"Your order has been received and is now being processed. Your order details "
|
3388 |
"are shown below for your reference."
|
@@ -3390,18 +3406,18 @@ msgstr ""
|
|
3390 |
"Deine Bestellung ist eingegangen und wird nun bearbeitet. Die Einzelheiten "
|
3391 |
"deiner Bestellung kannst du der nachfolgenden Tabelle entnehmen."
|
3392 |
|
3393 |
-
#: includes/class-wc-gzd-emails.php:
|
3394 |
msgid "Someone requested a password reset for your account."
|
3395 |
msgstr ""
|
3396 |
"Jemand hat das Zurücksetzen des Passworts für deinen Account beantragt."
|
3397 |
|
3398 |
-
#: includes/class-wc-gzd-emails.php:
|
3399 |
#, php-format
|
3400 |
msgid "Thanks for creating an account on %s."
|
3401 |
msgstr "Danke, dass du ein Konto bei %s erstellt hast."
|
3402 |
|
3403 |
# @ woocommerce-germanized
|
3404 |
-
#: includes/class-wc-gzd-emails.php:
|
3405 |
msgctxt "revocation-form"
|
3406 |
msgid "Forward your Revocation online"
|
3407 |
msgstr "Deinen Widerruf online erklären"
|
@@ -3985,15 +4001,19 @@ msgstr "Mandat ID"
|
|
3985 |
msgid "Mandate Email"
|
3986 |
msgstr "Mandat E-Mail"
|
3987 |
|
3988 |
-
#: includes/class-wc-gzd-product-attribute-helper.php:
|
|
|
|
|
|
|
|
|
3989 |
msgid "Show product attributes"
|
3990 |
msgstr "Produkteigenschaften"
|
3991 |
|
3992 |
-
#: includes/class-wc-gzd-product-attribute-helper.php:
|
3993 |
msgid "List all product attributes during cart and checkout."
|
3994 |
msgstr "Listet alle Produkteigenschaften im Warenkorb und in der Kasse auf."
|
3995 |
|
3996 |
-
#: includes/class-wc-gzd-product-attribute-helper.php:
|
3997 |
msgid ""
|
3998 |
"This option forces WooCommerce to output a list of all product attributes "
|
3999 |
"during cart and checkout."
|
@@ -4001,7 +4021,7 @@ msgstr ""
|
|
4001 |
"Diese Option zwingt WooCommerce zur Ausgabe aller Produkteigenschaften im "
|
4002 |
"Warenkorb und in der Kasse."
|
4003 |
|
4004 |
-
#: includes/class-wc-gzd-product-attribute-helper.php:
|
4005 |
msgid "Visible during checkout"
|
4006 |
msgstr "Im Checkout anzeigen"
|
4007 |
|
@@ -4137,7 +4157,7 @@ msgid ""
|
|
4137 |
"Sale price labels used to mark old prices (e.g. Recommended Retail Price)"
|
4138 |
msgstr "Preishinweise zur Markierung von Streichpreisen"
|
4139 |
|
4140 |
-
#: includes/compatibility/class-wc-gzd-compatibility-wpml-string-translation.php:
|
4141 |
#, php-format
|
4142 |
msgid ""
|
4143 |
"This option may be translated via WPML. You may translate the original "
|
@@ -4843,7 +4863,7 @@ msgstr ""
|
|
4843 |
# @ woocommerce-germanized
|
4844 |
# @ woocommerce
|
4845 |
#: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:64
|
4846 |
-
#: woocommerce-germanized.php:
|
4847 |
msgid "Settings"
|
4848 |
msgstr "Einstellungen"
|
4849 |
|
@@ -6201,7 +6221,7 @@ msgctxt "trusted-shops"
|
|
6201 |
msgid "cancel review reminder"
|
6202 |
msgstr "von der Bewertungserinnerung abmelden"
|
6203 |
|
6204 |
-
#: woocommerce-germanized.php:
|
6205 |
msgid "Pease wait while we are trying to redirect you to the payment provider."
|
6206 |
msgstr "Einen Moment - wir versuchen dich zum Zahlungsanbieter weiterzuleiten."
|
6207 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce Germanized v1.5.1\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-03-18 13:07+0100\n"
|
6 |
+
"PO-Revision-Date: 2019-03-18 13:10+0100\n"
|
7 |
"Last-Translator: holzhannes <holzhannes@posteo.de>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
+
"X-Generator: Poedit 2.2.1\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
92 |
msgstr "l"
|
93 |
|
94 |
# @ woocommerce-germanized
|
95 |
+
#: includes/abstracts/abstract-wc-gzd-product.php:369
|
96 |
+
#: includes/abstracts/abstract-wc-gzd-product.php:378
|
97 |
#: includes/wc-gzd-core-functions.php:154
|
98 |
+
#: includes/wc-gzd-template-functions.php:444 woocommerce-germanized.php:928
|
99 |
msgid "incl. VAT"
|
100 |
msgstr "inkl. MwSt."
|
101 |
|
102 |
# @ woocommerce-germanized
|
103 |
+
#: includes/abstracts/abstract-wc-gzd-product.php:369
|
104 |
msgid "excl. VAT"
|
105 |
msgstr "exkl. MwSt."
|
106 |
|
107 |
# @ woocommerce-germanized
|
108 |
+
#: includes/abstracts/abstract-wc-gzd-product.php:371
|
109 |
+
#: includes/wc-gzd-core-functions.php:154 woocommerce-germanized.php:928
|
110 |
#, php-format
|
111 |
msgid "incl. %s%% VAT"
|
112 |
msgstr "inkl. %s%% MwSt."
|
113 |
|
114 |
# @ woocommerce-germanized
|
115 |
+
#: includes/abstracts/abstract-wc-gzd-product.php:371
|
116 |
#, php-format
|
117 |
msgid "excl. %s%% VAT"
|
118 |
msgstr "exkl. %s%% MwSt."
|
239 |
|
240 |
# @ woocommerce-germanized
|
241 |
#: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:99
|
242 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:772
|
243 |
msgid "Downloadable Product"
|
244 |
msgstr "Herunterladbares Produkt"
|
245 |
|
246 |
# @ woocommerce-germanized
|
247 |
#: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:100
|
248 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:773
|
249 |
msgid "Virtual Product"
|
250 |
msgstr "Virtuelles Produkt"
|
251 |
|
252 |
#: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:101
|
253 |
#: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:45
|
254 |
#: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:119
|
255 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:774
|
256 |
#: includes/class-wc-gzd-legal-checkbox-manager.php:122
|
257 |
msgid "Service"
|
258 |
msgstr "Dienstleistung"
|
500 |
#: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:113
|
501 |
#: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:148
|
502 |
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:704
|
503 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:867
|
504 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:916
|
505 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:965
|
506 |
msgid "Product Units"
|
507 |
msgstr "Produkteinheiten"
|
508 |
|
732 |
|
733 |
# @ woocommerce-germanized
|
734 |
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:170
|
735 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:782
|
736 |
msgid "General"
|
737 |
msgstr "Allgemein"
|
738 |
|
1528 |
|
1529 |
# @ woocommerce-germanized
|
1530 |
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:696
|
1531 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:859
|
1532 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:908
|
1533 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:957
|
1534 |
msgid "Base Price"
|
1535 |
msgstr "Grundpreis"
|
1536 |
|
1537 |
# @ woocommerce-germanized
|
1538 |
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:712
|
1539 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:875
|
1540 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:924
|
1541 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:973
|
1542 |
msgid "Delivery Time Notice"
|
1543 |
msgstr "Lieferzeiten-Hinweis"
|
1544 |
|
1547 |
msgid "Short Description"
|
1548 |
msgstr "Warenkorbkurzbeschreibung"
|
1549 |
|
1550 |
+
# @ woocommerce-germanized
|
1551 |
+
# @ woocommerce
|
1552 |
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:731
|
1553 |
+
#: includes/api/class-wc-gzd-rest-customers-controller.php:137
|
1554 |
+
#: includes/api/class-wc-gzd-rest-customers-controller.php:144
|
1555 |
+
#: includes/api/class-wc-gzd-rest-orders-controller.php:161
|
1556 |
+
#: includes/api/class-wc-gzd-rest-orders-controller.php:168
|
1557 |
+
#: includes/class-wc-gzd-checkout.php:376
|
1558 |
+
#: includes/class-wc-gzd-checkout.php:387
|
1559 |
+
#: includes/class-wc-gzd-customer-helper.php:106
|
1560 |
+
#: includes/class-wc-gzd-customer-helper.php:114
|
1561 |
+
msgid "Title"
|
1562 |
+
msgstr "Anrede"
|
1563 |
+
|
1564 |
+
# @ woocommerce-germanized
|
1565 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:732
|
1566 |
+
msgid ""
|
1567 |
+
"Adjust the title to be used within emails. Use {first_name}, {last_name} and "
|
1568 |
+
"{title} as placeholders."
|
1569 |
+
msgstr ""
|
1570 |
+
"Passe die Anrede in den E-Mails an. Verwende {first_name}, {last_name} und "
|
1571 |
+
"{title} als Platzhalter."
|
1572 |
+
|
1573 |
+
# @ woocommerce-germanized
|
1574 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:734
|
1575 |
+
msgid "Hi {first_name},"
|
1576 |
+
msgstr "Hallo {first_name},"
|
1577 |
+
|
1578 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:739
|
1579 |
msgid "Hide Username"
|
1580 |
msgstr "Nutzernamen verstecken"
|
1581 |
|
1582 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:740
|
1583 |
msgid ""
|
1584 |
"Hide username from email content if password or password reset link is "
|
1585 |
"embedded."
|
1586 |
msgstr "Nutzernamen nicht zusammen mit einem Passwort versenden."
|
1587 |
|
1588 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:741
|
1589 |
msgid ""
|
1590 |
"Trusted Shops advises to not show the username together with an account "
|
1591 |
"password or password reset link. This option hides (or masks) the username "
|
1596 |
"Trusted Shops Mitglied bist, solltest du diese Option aktivieren."
|
1597 |
|
1598 |
# @ woocommerce-germanized
|
1599 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:749
|
1600 |
msgid "Email Attachment Options"
|
1601 |
msgstr "PDF Anhang"
|
1602 |
|
1603 |
# @ woocommerce-germanized
|
1604 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:749
|
1605 |
#, php-format
|
1606 |
msgid ""
|
1607 |
"Want to attach automatically generated PDF files to emails instead of plain "
|
1611 |
"%sUpgrade zur %spro%s Version%s"
|
1612 |
|
1613 |
# @ woocommerce-germanized
|
1614 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:785
|
1615 |
msgid "Add to Cart"
|
1616 |
msgstr "Zum Warenkorb Button"
|
1617 |
|
1618 |
# @ woocommerce-germanized
|
1619 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:786
|
1620 |
msgid "Show add to cart button on listings?"
|
1621 |
msgstr "Den zum Warenkorb Button in Produktlisten darstellen?"
|
1622 |
|
1623 |
# @ woocommerce-germanized
|
1624 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:790
|
1625 |
msgid ""
|
1626 |
"unset this option if you don't want to show the add to cart button within "
|
1627 |
"the product listings"
|
1630 |
"von Produktauflistungen darstellen möchten"
|
1631 |
|
1632 |
# @ woocommerce-germanized
|
1633 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:794
|
1634 |
msgid "Link to Details"
|
1635 |
msgstr "Verlinkung zu Produktdetails"
|
1636 |
|
1637 |
# @ woocommerce-germanized
|
1638 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:795
|
1639 |
msgid ""
|
1640 |
"Want to link to product details page instead of add to cart within listings?"
|
1641 |
msgstr "Zum Warenkorb Button mit Button zur Produktdetail-Seite ersetzen?"
|
1642 |
|
1643 |
# @ woocommerce-germanized
|
1644 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:799
|
1645 |
msgid ""
|
1646 |
"Decide whether you like to link to your product's details page instead of "
|
1647 |
"displaying an add to cart button within product listings."
|
1651 |
"diese Option."
|
1652 |
|
1653 |
# @ woocommerce-germanized
|
1654 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:803
|
1655 |
msgid "Product Details Text"
|
1656 |
msgstr "Produktdetails Text"
|
1657 |
|
1658 |
# @ woocommerce-germanized
|
1659 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:805
|
1660 |
msgid "Details"
|
1661 |
msgstr "Details"
|
1662 |
|
1663 |
# @ woocommerce-germanized
|
1664 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:807
|
1665 |
msgid ""
|
1666 |
"If you have chosen to link to product details page instead of add to cart "
|
1667 |
"URL you may want to change the button text."
|
1671 |
"einen Button-Text vergeben."
|
1672 |
|
1673 |
# @ woocommerce-germanized
|
1674 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:812
|
1675 |
msgid "Digital Delivery Time Text"
|
1676 |
msgstr "Lieferzeit Digital"
|
1677 |
|
1678 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:816
|
1679 |
msgid ""
|
1680 |
"Enter a text which will be shown as digital delivery time text (replacement "
|
1681 |
"for default digital time on digital products)."
|
1685 |
"lassen."
|
1686 |
|
1687 |
# @ woocommerce-germanized
|
1688 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:821
|
1689 |
msgid "Notice Footer"
|
1690 |
msgstr "Hinweise im Footer"
|
1691 |
|
1692 |
# @ woocommerce-germanized
|
1693 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:822
|
1694 |
msgid "Show a global VAT notice within footer"
|
1695 |
msgstr "Einen seitenübergreifenden Hinweis bzgl. der MwSt. im Footer einfügen."
|
1696 |
|
1697 |
# @ woocommerce-germanized
|
1698 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:830
|
1699 |
msgid "Show a global sale price notice within footer"
|
1700 |
msgstr ""
|
1701 |
"Einen seitenübergreifenden Hinweis bzgl. reduzierter Preise im Footer "
|
1702 |
"einfügen."
|
1703 |
|
1704 |
# @ woocommerce-germanized
|
1705 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:839
|
1706 |
msgid "Products"
|
1707 |
msgstr "Produkt"
|
1708 |
|
1709 |
# @ woocommerce-germanized
|
1710 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:842
|
1711 |
msgid "Show within Product Listings"
|
1712 |
msgstr "In Produktlisten"
|
1713 |
|
1714 |
# @ woocommerce-germanized
|
1715 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:843
|
1716 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:892
|
1717 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:941
|
1718 |
msgid "Shipping Costs notice"
|
1719 |
msgstr "Versandkosten-Hinweis"
|
1720 |
|
1721 |
# @ woocommerce-germanized
|
1722 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:851
|
1723 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:900
|
1724 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:949
|
1725 |
msgid "Tax Info"
|
1726 |
msgstr "MwSt. Hinweis"
|
1727 |
|
1728 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:883
|
1729 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:932
|
1730 |
#: includes/class-wc-gzd-post-types.php:93
|
1731 |
#: includes/class-wc-gzd-post-types.php:95
|
1732 |
msgid "Price Labels"
|
1733 |
msgstr "Preishinweise"
|
1734 |
|
1735 |
# @ woocommerce-germanized
|
1736 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:891
|
1737 |
msgid "Show on Product Detail Page"
|
1738 |
msgstr "Auf der Produktseite"
|
1739 |
|
1740 |
# @ woocommerce-germanized
|
1741 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:940
|
1742 |
msgid "Within Product Widgets"
|
1743 |
msgstr "In Produkt-Widgets"
|
1744 |
|
1745 |
# @ woocommerce-germanized
|
1746 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:981
|
1747 |
msgid "Hide Tax Rate"
|
1748 |
msgstr "Steuersatz verstecken"
|
1749 |
|
1750 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:982
|
1751 |
msgid "Hide specific tax rate within shop pages."
|
1752 |
msgstr "Entferne die Anzeige des konkreten Steuersatzes im Shop."
|
1753 |
|
1754 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:986
|
1755 |
msgid ""
|
1756 |
"This option will make sure that within shop pages no specific tax rates are "
|
1757 |
"shown. Instead only incl. tax or excl. tax notice is shown."
|
1761 |
"bzw. exkl. MwSt."
|
1762 |
|
1763 |
# @ woocommerce-germanized
|
1764 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:990
|
1765 |
msgid "Hide Shipping Costs Notice"
|
1766 |
msgstr "Versandkosten ausblenden"
|
1767 |
|
1768 |
# @ woocommerce-germanized
|
1769 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:991
|
1770 |
msgid ""
|
1771 |
"Select product types for which you might want to disable the shipping costs "
|
1772 |
"notice."
|
1775 |
"möchtest."
|
1776 |
|
1777 |
# @ woocommerce-germanized
|
1778 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1001
|
1779 |
msgid "Hide Delivery Time Notice"
|
1780 |
msgstr "Lieferzeiten ausblenden"
|
1781 |
|
1782 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1002
|
1783 |
msgid ""
|
1784 |
"Select product types for which you might want to disable the delivery time "
|
1785 |
"notice."
|
1788 |
"möchtest."
|
1789 |
|
1790 |
# @ woocommerce
|
1791 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1012
|
1792 |
msgid "Backorder"
|
1793 |
msgstr "Lieferrückstand"
|
1794 |
|
1795 |
# @ woocommerce-germanized
|
1796 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1013
|
1797 |
msgid "Hide delivery time if a product is on backorder."
|
1798 |
msgstr "Lieferzeit ausblenden falls das Produkt im Lieferrückstand ist."
|
1799 |
|
1800 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1020
|
1801 |
msgid "Not in Stock"
|
1802 |
msgstr "Nicht auf Lager"
|
1803 |
|
1804 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1021
|
1805 |
msgid "Hide delivery time if a product is not in stock."
|
1806 |
msgstr "Lieferzeit ausblenden falls das Produkt nicht auf Lager ist."
|
1807 |
|
1808 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1029
|
1809 |
msgid "Prices"
|
1810 |
msgstr "Preise"
|
1811 |
|
1812 |
# @ woocommerce-germanized
|
1813 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1032
|
1814 |
msgid "Price Range Format"
|
1815 |
msgstr "Preisspannen-Format"
|
1816 |
|
1817 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1033
|
1818 |
msgid ""
|
1819 |
"Adjust the price range format e.g. for variable products. Use {min_price} as "
|
1820 |
"placeholder for the minimum price. Use {max_price} as placeholder for the "
|
1824 |
"{min_price} als Platzhalter für den minimalen Preis und {max_price} als "
|
1825 |
"Platzhalter für den höchsten Preis."
|
1826 |
|
1827 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1038
|
1828 |
#: includes/wc-gzd-core-functions.php:411
|
1829 |
msgid "{min_price} – {max_price}"
|
1830 |
msgstr "{min_price} – {max_price}"
|
1831 |
|
1832 |
# @ woocommerce-germanized
|
1833 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1042
|
1834 |
msgid "Base Price Text"
|
1835 |
msgstr "Grundpreis Text"
|
1836 |
|
1837 |
# @ woocommerce-germanized
|
1838 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1043
|
1839 |
msgid ""
|
1840 |
"This text will be used to display the base price. Use {price} to insert the "
|
1841 |
"price. If you want to specifically format base price output use {base}, "
|
1847 |
"{base_price} für die einzelnen Elemente."
|
1848 |
|
1849 |
# @ woocommerce-germanized
|
1850 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1048
|
1851 |
msgid "{price}"
|
1852 |
msgstr "{price}"
|
1853 |
|
1854 |
# @ woocommerce-germanized
|
1855 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1052
|
1856 |
msgid "Variable Base Price"
|
1857 |
msgstr "Variabler Grundpreis"
|
1858 |
|
1859 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1053
|
1860 |
msgid "Enable price range base prices for variable products."
|
1861 |
msgstr "Aktiviere von-bis-Grundpreise für variable Produkte."
|
1862 |
|
1863 |
# @ woocommerce-germanized
|
1864 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1060
|
1865 |
msgid "Product Units Text"
|
1866 |
msgstr "Produkteinheiten Text"
|
1867 |
|
1868 |
# @ woocommerce-germanized
|
1869 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1061
|
1870 |
msgid ""
|
1871 |
"This text will be used to display the product units. Use {product_units} to "
|
1872 |
"insert the amount of product units. Use {unit} to insert the unit. "
|
1878 |
"Grundpreis."
|
1879 |
|
1880 |
# @ woocommerce-germanized
|
1881 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1066
|
1882 |
msgid "Product contains: {product_units} {unit}"
|
1883 |
msgstr "Produkt enthält: {product_units} {unit}"
|
1884 |
|
1885 |
# @ woocommerce-germanized
|
1886 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1071
|
1887 |
msgid "Checkout & Cart"
|
1888 |
msgstr "Checkout & Warenkorb"
|
1889 |
|
1890 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1074
|
1891 |
msgid "DHL Parcel Shops"
|
1892 |
msgstr "DHL Packstationen"
|
1893 |
|
1894 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1075
|
1895 |
msgid ""
|
1896 |
"Allow customers to choose a DHL parcel shop or packing station as delivery "
|
1897 |
"address."
|
1898 |
msgstr "Versand an DHL Packstation bzw. Paketshops aktivieren."
|
1899 |
|
1900 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1079
|
1901 |
msgid ""
|
1902 |
"This option adds a checkbox to your checkout shipping fields which allows "
|
1903 |
"the customer to optionally choose a DHL packing station or parcel shop for "
|
1907 |
"der Kunde optional die Lieferung an eine Packstation aktivieren. Fall das "
|
1908 |
"der Fall ist, muss eine PostNummer angegeben werden."
|
1909 |
|
1910 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1083
|
1911 |
msgid "Supported Countries"
|
1912 |
msgstr "Unterstützte Länder"
|
1913 |
|
1914 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1087
|
1915 |
msgid "Choose countries which support Parcel Shop delivery."
|
1916 |
msgstr ""
|
1917 |
"Wähle hier die Länder an, in denen du die Lieferung an DHL Packstationen "
|
1918 |
"bzw. Paketshops aktivieren möchtest."
|
1919 |
|
1920 |
# @ woocommerce-germanized
|
1921 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1091
|
1922 |
msgid "Disabled Methods"
|
1923 |
msgstr "Deaktiviert für"
|
1924 |
|
1925 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1097
|
1926 |
msgid ""
|
1927 |
"Optionally choose methods for which DHL Parcel Shop Delivery should be "
|
1928 |
"disabled. Does only work if you have disabled choosing shipping methods "
|
1932 |
"Packstationen deaktiviert werden soll. Funktioniert nur in Verbindung mit "
|
1933 |
"der Option \"Auswahl von Versandarten im Checkout deaktivieren\"."
|
1934 |
|
1935 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1101
|
1936 |
#: includes/class-wc-gzd-dhl-parcel-shops.php:354
|
1937 |
msgid "Parcel Shop Finder"
|
1938 |
msgstr "Paketshop finden"
|
1939 |
|
1940 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1102
|
1941 |
msgid ""
|
1942 |
"Enable DHL Parcel Shop Finder to let customers choose a parcel shop nearby."
|
1943 |
msgstr "Standortsuche nach der nächstgelegenen Packstation aktivieren."
|
1944 |
|
1945 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1106
|
1946 |
#, php-format
|
1947 |
msgid ""
|
1948 |
"You may enable this option to add a <a href=\"%s\" target=\"_blank\">Parcel "
|
1957 |
"Nähe auswählen und die Daten automatisch übernehmen."
|
1958 |
|
1959 |
# @ woocommerce-germanized
|
1960 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1110
|
1961 |
#: includes/admin/views/html-page-status-germanized.php:55
|
1962 |
msgid "Fallback Mode"
|
1963 |
msgstr "Fallback Modus"
|
1964 |
|
1965 |
# @ woocommerce-germanized
|
1966 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1111
|
1967 |
msgid ""
|
1968 |
"Enable to make sure default checkout template is not being overriden by "
|
1969 |
"theme."
|
1971 |
"Überschreiben relevanter Templates im Checkout durch dein Theme verhindern."
|
1972 |
|
1973 |
# @ woocommerce-germanized
|
1974 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1115
|
1975 |
msgid ""
|
1976 |
"If you are facing problems within your checkout e.g. legally relevant data "
|
1977 |
"is not showing (terms, delivery time, unit price etc.) your theme seems to "
|
1985 |
"Checkout (review-order.php und form-checkout.php) zu überschreiben. "
|
1986 |
|
1987 |
# @ woocommerce-germanized
|
1988 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1119
|
1989 |
msgid "Force free shipping"
|
1990 |
msgstr "Versandmethode erzwingen"
|
1991 |
|
1992 |
# @ woocommerce-germanized
|
1993 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1120
|
1994 |
msgid "Force free shipping method if available?"
|
1995 |
msgstr "Kostenlosen Versand erzwingen wenn die Methode zur Verfügung steht?"
|
1996 |
|
1997 |
# @ woocommerce-germanized
|
1998 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1124
|
1999 |
msgid ""
|
2000 |
"By default WooCommerce will let customers choose other shipping methods than "
|
2001 |
"free shipping (if available). This option will force free shipping if "
|
2006 |
"Versand, sobald dieser verfügbar ist."
|
2007 |
|
2008 |
# @ woocommerce-germanized
|
2009 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1128
|
2010 |
msgid "Hide taxes estimated"
|
2011 |
msgstr "Hinweis \"Steuern geschätzt\""
|
2012 |
|
2013 |
# @ woocommerce-germanized
|
2014 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1129
|
2015 |
msgid ""
|
2016 |
"Do you want to hide the \"taxes and shipping estimated\" text from your cart?"
|
2017 |
msgstr "Den Hinweis \"Versandkosten und Steuern werden geschätzt\" entfernen?"
|
2018 |
|
2019 |
# @ woocommerce-germanized
|
2020 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1133
|
2021 |
msgid ""
|
2022 |
"By default WooCommerce adds a \"taxes and shipping estimated\" text to your "
|
2023 |
"cart. This might puzzle your customers and may not meet german law."
|
2027 |
"Markt geeignet."
|
2028 |
|
2029 |
# @ woocommerce-germanized
|
2030 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1137
|
2031 |
msgid "Show Thumbnails"
|
2032 |
msgstr "Thumbnails anzeigen"
|
2033 |
|
2034 |
# @ woocommerce-germanized
|
2035 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1138
|
2036 |
msgid "Show product thumbnails on checkout page?"
|
2037 |
msgstr "Produktbilder im Checkout darstellen?"
|
2038 |
|
2039 |
# @ woocommerce-germanized
|
2040 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1142
|
2041 |
msgid ""
|
2042 |
"Uncheck if you don't want to show your product thumbnails within checkout "
|
2043 |
"table."
|
2046 |
"bekommen möchtest."
|
2047 |
|
2048 |
# @ woocommerce-germanized
|
2049 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1146
|
2050 |
msgid "Hide Shipping Select"
|
2051 |
msgstr "Versandarten Auswahl"
|
2052 |
|
2053 |
# @ woocommerce-germanized
|
2054 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1147
|
2055 |
msgid "Hide shipping rate selection from checkout?"
|
2056 |
msgstr "Die Auswahl von Versandarten im Checkout deaktivieren?"
|
2057 |
|
2058 |
# @ woocommerce-germanized
|
2059 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1151
|
2060 |
msgid ""
|
2061 |
"This option will hide shipping rate selection from checkout. By then "
|
2062 |
"customers will only be able to change their shipping rate on cart page."
|
2066 |
"Versandmethode ändern."
|
2067 |
|
2068 |
# @ woocommerce-germanized
|
2069 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1155
|
2070 |
msgid "Show back to cart button"
|
2071 |
msgstr "Bestellung bearbeiten"
|
2072 |
|
2073 |
# @ woocommerce-germanized
|
2074 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1156
|
2075 |
msgid "Show back to cart button within your checkout table?"
|
2076 |
msgstr ""
|
2077 |
"Einen \"Bestellung bearbeiten\" Button in der Bestellübersicht anzeigen?"
|
2078 |
|
2079 |
# @ woocommerce-germanized
|
2080 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1160
|
2081 |
msgid ""
|
2082 |
"This button may let your customer edit their order before submitting. Some "
|
2083 |
"people state that this button should be hidden to avoid legal problems."
|
2089 |
"keine weitere Informationen abgedruckt werden sollten."
|
2090 |
|
2091 |
# @ woocommerce-germanized
|
2092 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1164
|
2093 |
msgid "Show edit data notice"
|
2094 |
msgstr "Bestellung prüfen Hinweis"
|
2095 |
|
2096 |
# @ woocommerce-germanized
|
2097 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1165
|
2098 |
msgid "Show a \"check-your-entries\" notice to the user?"
|
2099 |
msgstr "Einen \"Bestellung prüfen\" Hinweis anzeigen?"
|
2100 |
|
2101 |
# @ woocommerce-germanized
|
2102 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1169
|
2103 |
msgid "This notice will be added right before the order comments field."
|
2104 |
msgstr ""
|
2105 |
"Dieser Hinweis wird direkt oberhalb des Bestellhinweise-Feldes eingefügt."
|
2106 |
|
2107 |
# @ woocommerce-germanized
|
2108 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1173
|
2109 |
msgid "Checkout Table Color"
|
2110 |
msgstr "Hintergrundfarbe der Tabelle"
|
2111 |
|
2112 |
# @ woocommerce-germanized
|
2113 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1175
|
2114 |
msgid ""
|
2115 |
"Choose the color of your checkout product table. This table should be "
|
2116 |
"highlighted within your checkout page."
|
2119 |
"Tabelle sollte sich farblich vom Rest des Inhalts abheben."
|
2120 |
|
2121 |
# @ woocommerce-germanized
|
2122 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1181
|
2123 |
msgid "Pay now Button"
|
2124 |
msgstr "Jetzt bezahlen Button"
|
2125 |
|
2126 |
# @ woocommerce-germanized
|
2127 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1182
|
2128 |
msgid "Add a pay now button to emails and order success page."
|
2129 |
msgstr ""
|
2130 |
"Füge einen jetzt bezahlen - Button zur E-Mail und der Bestätigungs-Seite "
|
2131 |
"hinzu."
|
2132 |
|
2133 |
# @ woocommerce-germanized
|
2134 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1183
|
2135 |
msgid ""
|
2136 |
"Add a pay now button to order confirmation email and order success page if "
|
2137 |
"the order awaits payment (PayPal etc)."
|
2141 |
"benötigt (z.B. per PayPal)."
|
2142 |
|
2143 |
# @ woocommerce-germanized
|
2144 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1190
|
2145 |
msgid "Disabled for"
|
2146 |
msgstr "Deaktiviert für"
|
2147 |
|
2148 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1191
|
2149 |
msgid "You may want to disable the pay now button for certain payment methods."
|
2150 |
msgstr ""
|
2151 |
"Du kannst den jetzt bezahlen Button hier bei Bedarf für bestimmte "
|
2152 |
"Zahlungsarten deaktivieren."
|
2153 |
|
2154 |
# @ woocommerce-germanized
|
2155 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1200
|
2156 |
msgid "Order Success Text"
|
2157 |
msgstr "Bestellung eingegangen"
|
2158 |
|
2159 |
# @ woocommerce-germanized
|
2160 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1201
|
2161 |
msgid "Choose a custom text to display on order success page."
|
2162 |
msgstr ""
|
2163 |
"Hier kannst du einen individuellen kurzen Text eingeben, der nach der "
|
2164 |
"Bestellung ausgegeben wird."
|
2165 |
|
2166 |
# @ woocommerce-germanized
|
2167 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1209
|
2168 |
msgid "Order Success Data"
|
2169 |
msgstr "Bestellbestätigungs-Daten"
|
2170 |
|
2171 |
# @ woocommerce-germanized
|
2172 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1210
|
2173 |
msgid "Hide product table and customer data on order success page"
|
2174 |
msgstr ""
|
2175 |
"Produktdetails (Tabelle, Kundeninfos) von der Bestätigungsseite entfernen."
|
2176 |
|
2177 |
# @ woocommerce-germanized
|
2178 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1324
|
2179 |
msgid ""
|
2180 |
"Sorry, but the new Virtual VAT rules cannot be applied to small business."
|
2181 |
msgstr ""
|
2707 |
msgstr "Prüft ob die Kompatibilitätsanpassungen für %s geladen werden."
|
2708 |
|
2709 |
#: includes/admin/views/html-page-status-germanized.php:179
|
2710 |
+
#, php-format
|
2711 |
+
msgid "Version %s not supported, supporting version %s - %s"
|
2712 |
msgstr ""
|
2713 |
"Version %s wird nicht unterstützt. Bitte installiere eine Version zwischen "
|
2714 |
"%s und %s."
|
2881 |
msgid "Upgrade now"
|
2882 |
msgstr "jetzt upgraden"
|
2883 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2884 |
#: includes/api/class-wc-gzd-rest-customers-controller.php:151
|
2885 |
#: includes/class-wc-gzd-dhl-parcel-shops.php:149
|
2886 |
msgid "Send to DHL Parcel Shop?"
|
3162 |
"Mail mit deinen Daten als Bestätigung."
|
3163 |
|
3164 |
# @ woocommerce-germanized
|
3165 |
+
#: includes/class-wc-gzd-checkout.php:377
|
3166 |
+
#: includes/class-wc-gzd-checkout.php:386
|
3167 |
+
#: includes/class-wc-gzd-checkout.php:409
|
3168 |
#: includes/class-wc-gzd-customer-helper.php:108
|
3169 |
#: includes/class-wc-gzd-customer-helper.php:116
|
3170 |
#: includes/class-wc-gzd-revocation.php:41
|
3173 |
msgstr "Herr"
|
3174 |
|
3175 |
# @ woocommerce-germanized
|
3176 |
+
#: includes/class-wc-gzd-checkout.php:377
|
3177 |
+
#: includes/class-wc-gzd-checkout.php:386
|
3178 |
+
#: includes/class-wc-gzd-checkout.php:410
|
3179 |
#: includes/class-wc-gzd-customer-helper.php:108
|
3180 |
#: includes/class-wc-gzd-customer-helper.php:116
|
3181 |
#: includes/class-wc-gzd-revocation.php:42
|
3398 |
"Dieser Text wird in die Bestellbestätigung eingefügt. Verwende "
|
3399 |
"{order_number}, {site_title} oder {order_date} als Platzhalter."
|
3400 |
|
3401 |
+
#: includes/class-wc-gzd-emails.php:162
|
3402 |
msgid ""
|
3403 |
"Your order has been received and is now being processed. Your order details "
|
3404 |
"are shown below for your reference."
|
3406 |
"Deine Bestellung ist eingegangen und wird nun bearbeitet. Die Einzelheiten "
|
3407 |
"deiner Bestellung kannst du der nachfolgenden Tabelle entnehmen."
|
3408 |
|
3409 |
+
#: includes/class-wc-gzd-emails.php:201
|
3410 |
msgid "Someone requested a password reset for your account."
|
3411 |
msgstr ""
|
3412 |
"Jemand hat das Zurücksetzen des Passworts für deinen Account beantragt."
|
3413 |
|
3414 |
+
#: includes/class-wc-gzd-emails.php:214
|
3415 |
#, php-format
|
3416 |
msgid "Thanks for creating an account on %s."
|
3417 |
msgstr "Danke, dass du ein Konto bei %s erstellt hast."
|
3418 |
|
3419 |
# @ woocommerce-germanized
|
3420 |
+
#: includes/class-wc-gzd-emails.php:686
|
3421 |
msgctxt "revocation-form"
|
3422 |
msgid "Forward your Revocation online"
|
3423 |
msgstr "Deinen Widerruf online erklären"
|
4001 |
msgid "Mandate Email"
|
4002 |
msgstr "Mandat E-Mail"
|
4003 |
|
4004 |
+
#: includes/class-wc-gzd-product-attribute-helper.php:51
|
4005 |
+
msgid "Product Attributes"
|
4006 |
+
msgstr "Produkteigenschaften"
|
4007 |
+
|
4008 |
+
#: includes/class-wc-gzd-product-attribute-helper.php:65
|
4009 |
msgid "Show product attributes"
|
4010 |
msgstr "Produkteigenschaften"
|
4011 |
|
4012 |
+
#: includes/class-wc-gzd-product-attribute-helper.php:66
|
4013 |
msgid "List all product attributes during cart and checkout."
|
4014 |
msgstr "Listet alle Produkteigenschaften im Warenkorb und in der Kasse auf."
|
4015 |
|
4016 |
+
#: includes/class-wc-gzd-product-attribute-helper.php:70
|
4017 |
msgid ""
|
4018 |
"This option forces WooCommerce to output a list of all product attributes "
|
4019 |
"during cart and checkout."
|
4021 |
"Diese Option zwingt WooCommerce zur Ausgabe aller Produkteigenschaften im "
|
4022 |
"Warenkorb und in der Kasse."
|
4023 |
|
4024 |
+
#: includes/class-wc-gzd-product-attribute-helper.php:93
|
4025 |
msgid "Visible during checkout"
|
4026 |
msgstr "Im Checkout anzeigen"
|
4027 |
|
4157 |
"Sale price labels used to mark old prices (e.g. Recommended Retail Price)"
|
4158 |
msgstr "Preishinweise zur Markierung von Streichpreisen"
|
4159 |
|
4160 |
+
#: includes/compatibility/class-wc-gzd-compatibility-wpml-string-translation.php:265
|
4161 |
#, php-format
|
4162 |
msgid ""
|
4163 |
"This option may be translated via WPML. You may translate the original "
|
4863 |
# @ woocommerce-germanized
|
4864 |
# @ woocommerce
|
4865 |
#: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:64
|
4866 |
+
#: woocommerce-germanized.php:648
|
4867 |
msgid "Settings"
|
4868 |
msgstr "Einstellungen"
|
4869 |
|
6221 |
msgid "cancel review reminder"
|
6222 |
msgstr "von der Bewertungserinnerung abmelden"
|
6223 |
|
6224 |
+
#: woocommerce-germanized.php:755
|
6225 |
msgid "Pease wait while we are trying to redirect you to the payment provider."
|
6226 |
msgstr "Einen Moment - wir versuchen dich zum Zahlungsanbieter weiterzuleiten."
|
6227 |
|
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: 2019-
|
6 |
-
"PO-Revision-Date: 2019-
|
7 |
"Last-Translator: holzhannes <holzhannes@posteo.de>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE\n"
|
@@ -11,7 +11,7 @@ msgstr ""
|
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
-
"X-Generator: Poedit 2.2\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
@@ -92,27 +92,27 @@ msgid "l"
|
|
92 |
msgstr "l"
|
93 |
|
94 |
# @ woocommerce-germanized
|
95 |
-
#: includes/abstracts/abstract-wc-gzd-product.php:
|
96 |
-
#: includes/abstracts/abstract-wc-gzd-product.php:
|
97 |
#: includes/wc-gzd-core-functions.php:154
|
98 |
-
#: includes/wc-gzd-template-functions.php:444 woocommerce-germanized.php:
|
99 |
msgid "incl. VAT"
|
100 |
msgstr "inkl. MwSt."
|
101 |
|
102 |
# @ woocommerce-germanized
|
103 |
-
#: includes/abstracts/abstract-wc-gzd-product.php:
|
104 |
msgid "excl. VAT"
|
105 |
msgstr "exkl. MwSt."
|
106 |
|
107 |
# @ woocommerce-germanized
|
108 |
-
#: includes/abstracts/abstract-wc-gzd-product.php:
|
109 |
-
#: includes/wc-gzd-core-functions.php:154 woocommerce-germanized.php:
|
110 |
#, php-format
|
111 |
msgid "incl. %s%% VAT"
|
112 |
msgstr "inkl. %s%% MwSt."
|
113 |
|
114 |
# @ woocommerce-germanized
|
115 |
-
#: includes/abstracts/abstract-wc-gzd-product.php:
|
116 |
#, php-format
|
117 |
msgid "excl. %s%% VAT"
|
118 |
msgstr "exkl. %s%% MwSt."
|
@@ -239,20 +239,20 @@ msgstr ""
|
|
239 |
|
240 |
# @ woocommerce-germanized
|
241 |
#: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:99
|
242 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
243 |
msgid "Downloadable Product"
|
244 |
msgstr "Herunterladbares Produkt"
|
245 |
|
246 |
# @ woocommerce-germanized
|
247 |
#: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:100
|
248 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
249 |
msgid "Virtual Product"
|
250 |
msgstr "Virtuelles Produkt"
|
251 |
|
252 |
#: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:101
|
253 |
#: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:45
|
254 |
#: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:119
|
255 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
256 |
#: includes/class-wc-gzd-legal-checkbox-manager.php:122
|
257 |
msgid "Service"
|
258 |
msgstr "Dienstleistung"
|
@@ -500,9 +500,9 @@ msgstr "Neuer Preis Hinweis"
|
|
500 |
#: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:113
|
501 |
#: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:148
|
502 |
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:704
|
503 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
504 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
505 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
506 |
msgid "Product Units"
|
507 |
msgstr "Produkteinheiten"
|
508 |
|
@@ -732,7 +732,7 @@ msgstr "Keine"
|
|
732 |
|
733 |
# @ woocommerce-germanized
|
734 |
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:170
|
735 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
736 |
msgid "General"
|
737 |
msgstr "Allgemein"
|
738 |
|
@@ -1529,17 +1529,17 @@ msgstr "In E-Mails anzeigen"
|
|
1529 |
|
1530 |
# @ woocommerce-germanized
|
1531 |
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:696
|
1532 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1533 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1534 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1535 |
msgid "Base Price"
|
1536 |
msgstr "Grundpreis"
|
1537 |
|
1538 |
# @ woocommerce-germanized
|
1539 |
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:712
|
1540 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1541 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1542 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1543 |
msgid "Delivery Time Notice"
|
1544 |
msgstr "Lieferzeiten-Hinweis"
|
1545 |
|
@@ -1548,17 +1548,45 @@ msgstr "Lieferzeiten-Hinweis"
|
|
1548 |
msgid "Short Description"
|
1549 |
msgstr "Warenkorbkurzbeschreibung"
|
1550 |
|
|
|
|
|
1551 |
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:731
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1552 |
msgid "Hide Username"
|
1553 |
msgstr "Nutzernamen verstecken"
|
1554 |
|
1555 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1556 |
msgid ""
|
1557 |
"Hide username from email content if password or password reset link is "
|
1558 |
"embedded."
|
1559 |
msgstr "Nutzernamen nicht zusammen mit einem Passwort versenden."
|
1560 |
|
1561 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1562 |
msgid ""
|
1563 |
"Trusted Shops advises to not show the username together with an account "
|
1564 |
"password or password reset link. This option hides (or masks) the username "
|
@@ -1569,12 +1597,12 @@ msgstr ""
|
|
1569 |
"Trusted Shops Mitglied sind, sollten Sie diese Option aktivieren."
|
1570 |
|
1571 |
# @ woocommerce-germanized
|
1572 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1573 |
msgid "Email Attachment Options"
|
1574 |
msgstr "PDF Anhang"
|
1575 |
|
1576 |
# @ woocommerce-germanized
|
1577 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1578 |
#, php-format
|
1579 |
msgid ""
|
1580 |
"Want to attach automatically generated PDF files to emails instead of plain "
|
@@ -1584,17 +1612,17 @@ msgstr ""
|
|
1584 |
"%sUpgraden Sie zur %spro%s Version%s"
|
1585 |
|
1586 |
# @ woocommerce-germanized
|
1587 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1588 |
msgid "Add to Cart"
|
1589 |
msgstr "Zum Warenkorb Button"
|
1590 |
|
1591 |
# @ woocommerce-germanized
|
1592 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1593 |
msgid "Show add to cart button on listings?"
|
1594 |
msgstr "Den zum Warenkorb Button in Produktlisten darstellen?"
|
1595 |
|
1596 |
# @ woocommerce-germanized
|
1597 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1598 |
msgid ""
|
1599 |
"unset this option if you don't want to show the add to cart button within "
|
1600 |
"the product listings"
|
@@ -1603,18 +1631,18 @@ msgstr ""
|
|
1603 |
"innerhalb von Produktauflistungen darstellen möchten"
|
1604 |
|
1605 |
# @ woocommerce-germanized
|
1606 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1607 |
msgid "Link to Details"
|
1608 |
msgstr "Verlinkung zu Produktdetails"
|
1609 |
|
1610 |
# @ woocommerce-germanized
|
1611 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1612 |
msgid ""
|
1613 |
"Want to link to product details page instead of add to cart within listings?"
|
1614 |
msgstr "Zum Warenkorb Button mit Button zur Produktdetail-Seite ersetzen?"
|
1615 |
|
1616 |
# @ woocommerce-germanized
|
1617 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1618 |
msgid ""
|
1619 |
"Decide whether you like to link to your product's details page instead of "
|
1620 |
"displaying an add to cart button within product listings."
|
@@ -1624,17 +1652,17 @@ msgstr ""
|
|
1624 |
"einfach diese Option."
|
1625 |
|
1626 |
# @ woocommerce-germanized
|
1627 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1628 |
msgid "Product Details Text"
|
1629 |
msgstr "Produktdetails Text"
|
1630 |
|
1631 |
# @ woocommerce-germanized
|
1632 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1633 |
msgid "Details"
|
1634 |
msgstr "Details"
|
1635 |
|
1636 |
# @ woocommerce-germanized
|
1637 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1638 |
msgid ""
|
1639 |
"If you have chosen to link to product details page instead of add to cart "
|
1640 |
"URL you may want to change the button text."
|
@@ -1644,11 +1672,11 @@ msgstr ""
|
|
1644 |
"einen Button-Text vergeben."
|
1645 |
|
1646 |
# @ woocommerce-germanized
|
1647 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1648 |
msgid "Digital Delivery Time Text"
|
1649 |
msgstr "Lieferzeit Digital"
|
1650 |
|
1651 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1652 |
msgid ""
|
1653 |
"Enter a text which will be shown as digital delivery time text (replacement "
|
1654 |
"for default digital time on digital products)."
|
@@ -1658,73 +1686,73 @@ msgstr ""
|
|
1658 |
"einfach leer lassen."
|
1659 |
|
1660 |
# @ woocommerce-germanized
|
1661 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1662 |
msgid "Notice Footer"
|
1663 |
msgstr "Hinweise im Footer"
|
1664 |
|
1665 |
# @ woocommerce-germanized
|
1666 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1667 |
msgid "Show a global VAT notice within footer"
|
1668 |
msgstr "Einen seitenübergreifenden Hinweis bzgl. der MwSt. im Footer einfügen."
|
1669 |
|
1670 |
# @ woocommerce-germanized
|
1671 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1672 |
msgid "Show a global sale price notice within footer"
|
1673 |
msgstr ""
|
1674 |
"Einen seitenübergreifenden Hinweis bzgl. reduzierter Preise im Footer "
|
1675 |
"einfügen."
|
1676 |
|
1677 |
# @ woocommerce-germanized
|
1678 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1679 |
msgid "Products"
|
1680 |
msgstr "Produkt"
|
1681 |
|
1682 |
# @ woocommerce-germanized
|
1683 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1684 |
msgid "Show within Product Listings"
|
1685 |
msgstr "In Produktlisten"
|
1686 |
|
1687 |
# @ woocommerce-germanized
|
1688 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1689 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1690 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1691 |
msgid "Shipping Costs notice"
|
1692 |
msgstr "Versandkosten-Hinweis"
|
1693 |
|
1694 |
# @ woocommerce-germanized
|
1695 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1696 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1697 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1698 |
msgid "Tax Info"
|
1699 |
msgstr "MwSt. Hinweis"
|
1700 |
|
1701 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1702 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1703 |
#: includes/class-wc-gzd-post-types.php:93
|
1704 |
#: includes/class-wc-gzd-post-types.php:95
|
1705 |
msgid "Price Labels"
|
1706 |
msgstr "Preishinweise"
|
1707 |
|
1708 |
# @ woocommerce-germanized
|
1709 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1710 |
msgid "Show on Product Detail Page"
|
1711 |
msgstr "Auf der Produktseite"
|
1712 |
|
1713 |
# @ woocommerce-germanized
|
1714 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1715 |
msgid "Within Product Widgets"
|
1716 |
msgstr "In Produkt-Widgets"
|
1717 |
|
1718 |
# @ woocommerce-germanized
|
1719 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1720 |
msgid "Hide Tax Rate"
|
1721 |
msgstr "Steuersatz verstecken"
|
1722 |
|
1723 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1724 |
msgid "Hide specific tax rate within shop pages."
|
1725 |
msgstr "Entfernt die Anzeige des konkreten Steuersatzes für Produkte im Shop."
|
1726 |
|
1727 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1728 |
msgid ""
|
1729 |
"This option will make sure that within shop pages no specific tax rates are "
|
1730 |
"shown. Instead only incl. tax or excl. tax notice is shown."
|
@@ -1734,12 +1762,12 @@ msgstr ""
|
|
1734 |
"bzw. exkl. MwSt."
|
1735 |
|
1736 |
# @ woocommerce-germanized
|
1737 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1738 |
msgid "Hide Shipping Costs Notice"
|
1739 |
msgstr "Versandkosten ausblenden"
|
1740 |
|
1741 |
# @ woocommerce-germanized
|
1742 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1743 |
msgid ""
|
1744 |
"Select product types for which you might want to disable the shipping costs "
|
1745 |
"notice."
|
@@ -1748,11 +1776,11 @@ msgstr ""
|
|
1748 |
"ausblenden möchten."
|
1749 |
|
1750 |
# @ woocommerce-germanized
|
1751 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1752 |
msgid "Hide Delivery Time Notice"
|
1753 |
msgstr "Lieferzeiten ausblenden"
|
1754 |
|
1755 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1756 |
msgid ""
|
1757 |
"Select product types for which you might want to disable the delivery time "
|
1758 |
"notice."
|
@@ -1761,33 +1789,33 @@ msgstr ""
|
|
1761 |
"deaktivieren möchten."
|
1762 |
|
1763 |
# @ woocommerce
|
1764 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1765 |
msgid "Backorder"
|
1766 |
msgstr "Lieferrückstand"
|
1767 |
|
1768 |
# @ woocommerce-germanized
|
1769 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1770 |
msgid "Hide delivery time if a product is on backorder."
|
1771 |
msgstr "Lieferzeit ausblenden falls das Produkt im Lieferrückstand ist."
|
1772 |
|
1773 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1774 |
msgid "Not in Stock"
|
1775 |
msgstr "Nicht auf Lager"
|
1776 |
|
1777 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1778 |
msgid "Hide delivery time if a product is not in stock."
|
1779 |
msgstr "Lieferzeit ausblenden falls das Produkt nicht auf Lager ist."
|
1780 |
|
1781 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1782 |
msgid "Prices"
|
1783 |
msgstr "Preise"
|
1784 |
|
1785 |
# @ woocommerce-germanized
|
1786 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1787 |
msgid "Price Range Format"
|
1788 |
msgstr "Preisspannen-Format"
|
1789 |
|
1790 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1791 |
msgid ""
|
1792 |
"Adjust the price range format e.g. for variable products. Use {min_price} as "
|
1793 |
"placeholder for the minimum price. Use {max_price} as placeholder for the "
|
@@ -1797,18 +1825,18 @@ msgstr ""
|
|
1797 |
"Sie {min_price} als Platzhalter für den minimalen Preis und {max_price} als "
|
1798 |
"Platzhalter für den höchsten Preis."
|
1799 |
|
1800 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1801 |
#: includes/wc-gzd-core-functions.php:411
|
1802 |
msgid "{min_price} – {max_price}"
|
1803 |
msgstr "{min_price} – {max_price}"
|
1804 |
|
1805 |
# @ woocommerce-germanized
|
1806 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1807 |
msgid "Base Price Text"
|
1808 |
msgstr "Grundpreis Text"
|
1809 |
|
1810 |
# @ woocommerce-germanized
|
1811 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1812 |
msgid ""
|
1813 |
"This text will be used to display the base price. Use {price} to insert the "
|
1814 |
"price. If you want to specifically format base price output use {base}, "
|
@@ -1820,26 +1848,26 @@ msgstr ""
|
|
1820 |
"{unit} und {base_price} für die einzelnen Elemente."
|
1821 |
|
1822 |
# @ woocommerce-germanized
|
1823 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1824 |
msgid "{price}"
|
1825 |
msgstr "{price}"
|
1826 |
|
1827 |
# @ woocommerce-germanized
|
1828 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1829 |
msgid "Variable Base Price"
|
1830 |
msgstr "Variabler Grundpreis"
|
1831 |
|
1832 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1833 |
msgid "Enable price range base prices for variable products."
|
1834 |
msgstr "Aktiviert von-bis-Grundpreise für variable Produkte."
|
1835 |
|
1836 |
# @ woocommerce-germanized
|
1837 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1838 |
msgid "Product Units Text"
|
1839 |
msgstr "Produkteinheiten Text"
|
1840 |
|
1841 |
# @ woocommerce-germanized
|
1842 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1843 |
msgid ""
|
1844 |
"This text will be used to display the product units. Use {product_units} to "
|
1845 |
"insert the amount of product units. Use {unit} to insert the unit. "
|
@@ -1851,26 +1879,26 @@ msgstr ""
|
|
1851 |
"formatierten Grundpreis."
|
1852 |
|
1853 |
# @ woocommerce-germanized
|
1854 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1855 |
msgid "Product contains: {product_units} {unit}"
|
1856 |
msgstr "Produkt enthält: {product_units} {unit}"
|
1857 |
|
1858 |
# @ woocommerce-germanized
|
1859 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1860 |
msgid "Checkout & Cart"
|
1861 |
msgstr "Checkout & Warenkorb"
|
1862 |
|
1863 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1864 |
msgid "DHL Parcel Shops"
|
1865 |
msgstr "DHL Packstationen"
|
1866 |
|
1867 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1868 |
msgid ""
|
1869 |
"Allow customers to choose a DHL parcel shop or packing station as delivery "
|
1870 |
"address."
|
1871 |
msgstr "Versand an DHL Packstation bzw. Paketshops aktivieren."
|
1872 |
|
1873 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1874 |
msgid ""
|
1875 |
"This option adds a checkbox to your checkout shipping fields which allows "
|
1876 |
"the customer to optionally choose a DHL packing station or parcel shop for "
|
@@ -1880,22 +1908,22 @@ msgstr ""
|
|
1880 |
"der Kunde optional die Lieferung an eine Packstation aktivieren. Fall das "
|
1881 |
"der Fall ist, muss eine PostNummer angegeben werden."
|
1882 |
|
1883 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1884 |
msgid "Supported Countries"
|
1885 |
msgstr "Unterstützte Länder"
|
1886 |
|
1887 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1888 |
msgid "Choose countries which support Parcel Shop delivery."
|
1889 |
msgstr ""
|
1890 |
"Wählen Sie hier die Länder aus, in denen Sie die Lieferung an DHL "
|
1891 |
"Packstationen bzw. Paketshops aktivieren möchten."
|
1892 |
|
1893 |
# @ woocommerce-germanized
|
1894 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1895 |
msgid "Disabled Methods"
|
1896 |
msgstr "Deaktiviert für"
|
1897 |
|
1898 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1899 |
msgid ""
|
1900 |
"Optionally choose methods for which DHL Parcel Shop Delivery should be "
|
1901 |
"disabled. Does only work if you have disabled choosing shipping methods "
|
@@ -1905,17 +1933,17 @@ msgstr ""
|
|
1905 |
"DHL Packstationen deaktiviert werden soll. Funktioniert nur in Verbindung "
|
1906 |
"mit der Option \"Auswahl von Versandarten im Checkout deaktivieren\"."
|
1907 |
|
1908 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1909 |
#: includes/class-wc-gzd-dhl-parcel-shops.php:354
|
1910 |
msgid "Parcel Shop Finder"
|
1911 |
msgstr "Paketshop finden"
|
1912 |
|
1913 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1914 |
msgid ""
|
1915 |
"Enable DHL Parcel Shop Finder to let customers choose a parcel shop nearby."
|
1916 |
msgstr "Standortsuche nach der nächstgelegenen Packstation aktivieren."
|
1917 |
|
1918 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1919 |
#, php-format
|
1920 |
msgid ""
|
1921 |
"You may enable this option to add a <a href=\"%s\" target=\"_blank\">Parcel "
|
@@ -1930,13 +1958,13 @@ msgstr ""
|
|
1930 |
"Nähe auswählen und die Daten automatisch übernehmen."
|
1931 |
|
1932 |
# @ woocommerce-germanized
|
1933 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1934 |
#: includes/admin/views/html-page-status-germanized.php:55
|
1935 |
msgid "Fallback Mode"
|
1936 |
msgstr "Fallback Modus"
|
1937 |
|
1938 |
# @ woocommerce-germanized
|
1939 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1940 |
msgid ""
|
1941 |
"Enable to make sure default checkout template is not being overriden by "
|
1942 |
"theme."
|
@@ -1944,7 +1972,7 @@ msgstr ""
|
|
1944 |
"Überschreiben relevanter Templates im Checkout durch das Theme verhindern."
|
1945 |
|
1946 |
# @ woocommerce-germanized
|
1947 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1948 |
msgid ""
|
1949 |
"If you are facing problems within your checkout e.g. legally relevant data "
|
1950 |
"is not showing (terms, delivery time, unit price etc.) your theme seems to "
|
@@ -1958,17 +1986,17 @@ msgstr ""
|
|
1958 |
"Checkout (review-order.php und form-checkout.php) zu überschreiben."
|
1959 |
|
1960 |
# @ woocommerce-germanized
|
1961 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1962 |
msgid "Force free shipping"
|
1963 |
msgstr "Versandmethode erzwingen"
|
1964 |
|
1965 |
# @ woocommerce-germanized
|
1966 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1967 |
msgid "Force free shipping method if available?"
|
1968 |
msgstr "Kostenlosen Versand erzwingen wenn die Methode zur Verfügung steht?"
|
1969 |
|
1970 |
# @ woocommerce-germanized
|
1971 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1972 |
msgid ""
|
1973 |
"By default WooCommerce will let customers choose other shipping methods than "
|
1974 |
"free shipping (if available). This option will force free shipping if "
|
@@ -1979,18 +2007,18 @@ msgstr ""
|
|
1979 |
"Versand, sobald dieser verfügbar ist."
|
1980 |
|
1981 |
# @ woocommerce-germanized
|
1982 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1983 |
msgid "Hide taxes estimated"
|
1984 |
msgstr "Hinweis \"Steuern geschätzt\""
|
1985 |
|
1986 |
# @ woocommerce-germanized
|
1987 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1988 |
msgid ""
|
1989 |
"Do you want to hide the \"taxes and shipping estimated\" text from your cart?"
|
1990 |
msgstr "Den Hinweis \"Versandkosten und Steuern werden geschätzt\" entfernen?"
|
1991 |
|
1992 |
# @ woocommerce-germanized
|
1993 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
1994 |
msgid ""
|
1995 |
"By default WooCommerce adds a \"taxes and shipping estimated\" text to your "
|
1996 |
"cart. This might puzzle your customers and may not meet german law."
|
@@ -2000,17 +2028,17 @@ msgstr ""
|
|
2000 |
"Markt geeignet."
|
2001 |
|
2002 |
# @ woocommerce-germanized
|
2003 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2004 |
msgid "Show Thumbnails"
|
2005 |
msgstr "Thumbnails anzeigen"
|
2006 |
|
2007 |
# @ woocommerce-germanized
|
2008 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2009 |
msgid "Show product thumbnails on checkout page?"
|
2010 |
msgstr "Produktbilder im Checkout darstellen?"
|
2011 |
|
2012 |
# @ woocommerce-germanized
|
2013 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2014 |
msgid ""
|
2015 |
"Uncheck if you don't want to show your product thumbnails within checkout "
|
2016 |
"table."
|
@@ -2019,17 +2047,17 @@ msgstr ""
|
|
2019 |
"zu bekommen."
|
2020 |
|
2021 |
# @ woocommerce-germanized
|
2022 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2023 |
msgid "Hide Shipping Select"
|
2024 |
msgstr "Versandarten Auswahl"
|
2025 |
|
2026 |
# @ woocommerce-germanized
|
2027 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2028 |
msgid "Hide shipping rate selection from checkout?"
|
2029 |
msgstr "Die Auswahl von Versandarten im Checkout deaktivieren?"
|
2030 |
|
2031 |
# @ woocommerce-germanized
|
2032 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2033 |
msgid ""
|
2034 |
"This option will hide shipping rate selection from checkout. By then "
|
2035 |
"customers will only be able to change their shipping rate on cart page."
|
@@ -2039,18 +2067,18 @@ msgstr ""
|
|
2039 |
"Versandmethode ändern."
|
2040 |
|
2041 |
# @ woocommerce-germanized
|
2042 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2043 |
msgid "Show back to cart button"
|
2044 |
msgstr "Bestellung bearbeiten"
|
2045 |
|
2046 |
# @ woocommerce-germanized
|
2047 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2048 |
msgid "Show back to cart button within your checkout table?"
|
2049 |
msgstr ""
|
2050 |
"Einen \"Bestellung bearbeiten\" Button in der Bestellübersicht anzeigen?"
|
2051 |
|
2052 |
# @ woocommerce-germanized
|
2053 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2054 |
msgid ""
|
2055 |
"This button may let your customer edit their order before submitting. Some "
|
2056 |
"people state that this button should be hidden to avoid legal problems."
|
@@ -2062,28 +2090,28 @@ msgstr ""
|
|
2062 |
"weitere Informationen abgedruckt werden sollten."
|
2063 |
|
2064 |
# @ woocommerce-germanized
|
2065 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2066 |
msgid "Show edit data notice"
|
2067 |
msgstr "Bestellung prüfen Hinweis"
|
2068 |
|
2069 |
# @ woocommerce-germanized
|
2070 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2071 |
msgid "Show a \"check-your-entries\" notice to the user?"
|
2072 |
msgstr "Einen \"Bestellung prüfen\" Hinweis anzeigen?"
|
2073 |
|
2074 |
# @ woocommerce-germanized
|
2075 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2076 |
msgid "This notice will be added right before the order comments field."
|
2077 |
msgstr ""
|
2078 |
"Dieser Hinweis wird direkt oberhalb des Bestellhinweise-Feldes eingefügt."
|
2079 |
|
2080 |
# @ woocommerce-germanized
|
2081 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2082 |
msgid "Checkout Table Color"
|
2083 |
msgstr "Hintergrundfarbe der Tabelle"
|
2084 |
|
2085 |
# @ woocommerce-germanized
|
2086 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2087 |
msgid ""
|
2088 |
"Choose the color of your checkout product table. This table should be "
|
2089 |
"highlighted within your checkout page."
|
@@ -2092,19 +2120,19 @@ msgstr ""
|
|
2092 |
"Tabelle sollte sich farblich vom Rest des Inhalts abheben."
|
2093 |
|
2094 |
# @ woocommerce-germanized
|
2095 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2096 |
msgid "Pay now Button"
|
2097 |
msgstr "Jetzt bezahlen Button"
|
2098 |
|
2099 |
# @ woocommerce-germanized
|
2100 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2101 |
msgid "Add a pay now button to emails and order success page."
|
2102 |
msgstr ""
|
2103 |
"Fügt einen jetzt bezahlen - Button zur E-Mail und der Bestätigungs-Seite "
|
2104 |
"hinzu."
|
2105 |
|
2106 |
# @ woocommerce-germanized
|
2107 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2108 |
msgid ""
|
2109 |
"Add a pay now button to order confirmation email and order success page if "
|
2110 |
"the order awaits payment (PayPal etc)."
|
@@ -2114,41 +2142,41 @@ msgstr ""
|
|
2114 |
"benötigt (z.B. per PayPal)."
|
2115 |
|
2116 |
# @ woocommerce-germanized
|
2117 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2118 |
msgid "Disabled for"
|
2119 |
msgstr "Deaktiviert für"
|
2120 |
|
2121 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2122 |
msgid "You may want to disable the pay now button for certain payment methods."
|
2123 |
msgstr ""
|
2124 |
"Sie können den jetzt bezahlen Button hier bei Bedarf für bestimmte "
|
2125 |
"Zahlungsarten deaktivieren."
|
2126 |
|
2127 |
# @ woocommerce-germanized
|
2128 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2129 |
msgid "Order Success Text"
|
2130 |
msgstr "Bestellung eingegangen"
|
2131 |
|
2132 |
# @ woocommerce-germanized
|
2133 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2134 |
msgid "Choose a custom text to display on order success page."
|
2135 |
msgstr ""
|
2136 |
"Hier können Sie einen individuellen kurzen Text eingeben, der nach der "
|
2137 |
"Bestellung ausgegeben wird."
|
2138 |
|
2139 |
# @ woocommerce-germanized
|
2140 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2141 |
msgid "Order Success Data"
|
2142 |
msgstr "Bestellbestätigungs-Daten"
|
2143 |
|
2144 |
# @ woocommerce-germanized
|
2145 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2146 |
msgid "Hide product table and customer data on order success page"
|
2147 |
msgstr ""
|
2148 |
"Produktdetails (Tabelle, Kundeninfos) von der Bestätigungsseite entfernen."
|
2149 |
|
2150 |
# @ woocommerce-germanized
|
2151 |
-
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:
|
2152 |
msgid ""
|
2153 |
"Sorry, but the new Virtual VAT rules cannot be applied to small business."
|
2154 |
msgstr ""
|
@@ -2681,10 +2709,11 @@ msgid "Checks whether compatibility options for %s are being applied."
|
|
2681 |
msgstr "Prüft ob die Kompatibilitätsanpassungen für %s geladen werden."
|
2682 |
|
2683 |
#: includes/admin/views/html-page-status-germanized.php:179
|
2684 |
-
|
|
|
2685 |
msgstr ""
|
2686 |
-
"Version %s wird nicht unterstützt. Bitte
|
2687 |
-
"
|
2688 |
|
2689 |
# @ woocommerce-germanized
|
2690 |
#: includes/admin/views/html-page-status-germanized.php:192
|
@@ -2854,19 +2883,6 @@ msgstr ""
|
|
2854 |
msgid "Upgrade now"
|
2855 |
msgstr "jetzt upgraden"
|
2856 |
|
2857 |
-
# @ woocommerce-germanized
|
2858 |
-
# @ woocommerce
|
2859 |
-
#: includes/api/class-wc-gzd-rest-customers-controller.php:137
|
2860 |
-
#: includes/api/class-wc-gzd-rest-customers-controller.php:144
|
2861 |
-
#: includes/api/class-wc-gzd-rest-orders-controller.php:161
|
2862 |
-
#: includes/api/class-wc-gzd-rest-orders-controller.php:168
|
2863 |
-
#: includes/class-wc-gzd-checkout.php:365
|
2864 |
-
#: includes/class-wc-gzd-checkout.php:376
|
2865 |
-
#: includes/class-wc-gzd-customer-helper.php:106
|
2866 |
-
#: includes/class-wc-gzd-customer-helper.php:114
|
2867 |
-
msgid "Title"
|
2868 |
-
msgstr "Anrede"
|
2869 |
-
|
2870 |
#: includes/api/class-wc-gzd-rest-customers-controller.php:151
|
2871 |
#: includes/class-wc-gzd-dhl-parcel-shops.php:149
|
2872 |
msgid "Send to DHL Parcel Shop?"
|
@@ -3148,9 +3164,9 @@ msgstr ""
|
|
3148 |
"Mail mit Ihren Daten als Bestätigung."
|
3149 |
|
3150 |
# @ woocommerce-germanized
|
3151 |
-
#: includes/class-wc-gzd-checkout.php:
|
3152 |
-
#: includes/class-wc-gzd-checkout.php:
|
3153 |
-
#: includes/class-wc-gzd-checkout.php:
|
3154 |
#: includes/class-wc-gzd-customer-helper.php:108
|
3155 |
#: includes/class-wc-gzd-customer-helper.php:116
|
3156 |
#: includes/class-wc-gzd-revocation.php:41
|
@@ -3159,9 +3175,9 @@ msgid "Mr."
|
|
3159 |
msgstr "Herr"
|
3160 |
|
3161 |
# @ woocommerce-germanized
|
3162 |
-
#: includes/class-wc-gzd-checkout.php:
|
3163 |
-
#: includes/class-wc-gzd-checkout.php:
|
3164 |
-
#: includes/class-wc-gzd-checkout.php:
|
3165 |
#: includes/class-wc-gzd-customer-helper.php:108
|
3166 |
#: includes/class-wc-gzd-customer-helper.php:116
|
3167 |
#: includes/class-wc-gzd-revocation.php:42
|
@@ -3386,7 +3402,7 @@ msgstr ""
|
|
3386 |
"Dieser Text wird in die Bestellbestätigung eingefügt. Verwenden Sie "
|
3387 |
"{order_number}, {site_title} oder {order_date} als Platzhalter."
|
3388 |
|
3389 |
-
#: includes/class-wc-gzd-emails.php:
|
3390 |
msgid ""
|
3391 |
"Your order has been received and is now being processed. Your order details "
|
3392 |
"are shown below for your reference."
|
@@ -3394,17 +3410,17 @@ msgstr ""
|
|
3394 |
"Ihre Bestellung ist eingegangen und wird nun bearbeitet. Die Einzelheiten "
|
3395 |
"Ihrer Bestellung können Sie der nachfolgenden Tabelle entnehmen."
|
3396 |
|
3397 |
-
#: includes/class-wc-gzd-emails.php:
|
3398 |
msgid "Someone requested a password reset for your account."
|
3399 |
msgstr "Jemand hat das Zurücksetzen des Passworts für Ihren Account beantragt."
|
3400 |
|
3401 |
-
#: includes/class-wc-gzd-emails.php:
|
3402 |
#, php-format
|
3403 |
msgid "Thanks for creating an account on %s."
|
3404 |
msgstr "Danke, dass Sie ein Konto bei %s erstellt haben."
|
3405 |
|
3406 |
# @ woocommerce-germanized
|
3407 |
-
#: includes/class-wc-gzd-emails.php:
|
3408 |
msgctxt "revocation-form"
|
3409 |
msgid "Forward your Revocation online"
|
3410 |
msgstr "Widerruf online erklären"
|
@@ -3990,15 +4006,19 @@ msgstr "Mandat ID"
|
|
3990 |
msgid "Mandate Email"
|
3991 |
msgstr "Mandat E-Mail"
|
3992 |
|
3993 |
-
#: includes/class-wc-gzd-product-attribute-helper.php:
|
|
|
|
|
|
|
|
|
3994 |
msgid "Show product attributes"
|
3995 |
msgstr "Produkteigenschaften"
|
3996 |
|
3997 |
-
#: includes/class-wc-gzd-product-attribute-helper.php:
|
3998 |
msgid "List all product attributes during cart and checkout."
|
3999 |
msgstr "Listet alle Produkteigenschaften im Warenkorb und in der Kasse auf."
|
4000 |
|
4001 |
-
#: includes/class-wc-gzd-product-attribute-helper.php:
|
4002 |
msgid ""
|
4003 |
"This option forces WooCommerce to output a list of all product attributes "
|
4004 |
"during cart and checkout."
|
@@ -4006,7 +4026,7 @@ msgstr ""
|
|
4006 |
"Diese Option zwingt WooCommerce zur Ausgabe aller Produkteigenschaften im "
|
4007 |
"Warenkorb und in der Kasse."
|
4008 |
|
4009 |
-
#: includes/class-wc-gzd-product-attribute-helper.php:
|
4010 |
msgid "Visible during checkout"
|
4011 |
msgstr "Im Checkout anzeigen"
|
4012 |
|
@@ -4142,7 +4162,7 @@ msgid ""
|
|
4142 |
"Sale price labels used to mark old prices (e.g. Recommended Retail Price)"
|
4143 |
msgstr "Preishinweise zur Markierung von Streichpreisen"
|
4144 |
|
4145 |
-
#: includes/compatibility/class-wc-gzd-compatibility-wpml-string-translation.php:
|
4146 |
#, php-format
|
4147 |
msgid ""
|
4148 |
"This option may be translated via WPML. You may translate the original "
|
@@ -4850,7 +4870,7 @@ msgstr ""
|
|
4850 |
# @ woocommerce-germanized
|
4851 |
# @ woocommerce
|
4852 |
#: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:64
|
4853 |
-
#: woocommerce-germanized.php:
|
4854 |
msgid "Settings"
|
4855 |
msgstr "Einstellungen"
|
4856 |
|
@@ -6015,7 +6035,8 @@ msgid ""
|
|
6015 |
"do so."
|
6016 |
msgstr ""
|
6017 |
"Da Ihr Browser kein JavaScript erlaubt, denken Sie bitte daran, auf "
|
6018 |
-
"
|
|
|
6019 |
|
6020 |
# @ woocommerce-germanized
|
6021 |
#: templates/checkout/order-submit.php:20
|
@@ -6212,7 +6233,7 @@ msgctxt "trusted-shops"
|
|
6212 |
msgid "cancel review reminder"
|
6213 |
msgstr "von der Bewertungserinnerung abmelden"
|
6214 |
|
6215 |
-
#: woocommerce-germanized.php:
|
6216 |
msgid "Pease wait while we are trying to redirect you to the payment provider."
|
6217 |
msgstr "Einen Moment - wir versuchen Sie zum Zahlungsanbieter weiterzuleiten."
|
6218 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce Germanized v1.5.1\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2019-03-18 13:08+0100\n"
|
6 |
+
"PO-Revision-Date: 2019-03-18 13:10+0100\n"
|
7 |
"Last-Translator: holzhannes <holzhannes@posteo.de>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
+
"X-Generator: Poedit 2.2.1\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
92 |
msgstr "l"
|
93 |
|
94 |
# @ woocommerce-germanized
|
95 |
+
#: includes/abstracts/abstract-wc-gzd-product.php:369
|
96 |
+
#: includes/abstracts/abstract-wc-gzd-product.php:378
|
97 |
#: includes/wc-gzd-core-functions.php:154
|
98 |
+
#: includes/wc-gzd-template-functions.php:444 woocommerce-germanized.php:928
|
99 |
msgid "incl. VAT"
|
100 |
msgstr "inkl. MwSt."
|
101 |
|
102 |
# @ woocommerce-germanized
|
103 |
+
#: includes/abstracts/abstract-wc-gzd-product.php:369
|
104 |
msgid "excl. VAT"
|
105 |
msgstr "exkl. MwSt."
|
106 |
|
107 |
# @ woocommerce-germanized
|
108 |
+
#: includes/abstracts/abstract-wc-gzd-product.php:371
|
109 |
+
#: includes/wc-gzd-core-functions.php:154 woocommerce-germanized.php:928
|
110 |
#, php-format
|
111 |
msgid "incl. %s%% VAT"
|
112 |
msgstr "inkl. %s%% MwSt."
|
113 |
|
114 |
# @ woocommerce-germanized
|
115 |
+
#: includes/abstracts/abstract-wc-gzd-product.php:371
|
116 |
#, php-format
|
117 |
msgid "excl. %s%% VAT"
|
118 |
msgstr "exkl. %s%% MwSt."
|
239 |
|
240 |
# @ woocommerce-germanized
|
241 |
#: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:99
|
242 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:772
|
243 |
msgid "Downloadable Product"
|
244 |
msgstr "Herunterladbares Produkt"
|
245 |
|
246 |
# @ woocommerce-germanized
|
247 |
#: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:100
|
248 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:773
|
249 |
msgid "Virtual Product"
|
250 |
msgstr "Virtuelles Produkt"
|
251 |
|
252 |
#: includes/admin/class-wc-gzd-admin-legal-checkboxes.php:101
|
253 |
#: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:45
|
254 |
#: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:119
|
255 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:774
|
256 |
#: includes/class-wc-gzd-legal-checkbox-manager.php:122
|
257 |
msgid "Service"
|
258 |
msgstr "Dienstleistung"
|
500 |
#: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data-variable.php:113
|
501 |
#: includes/admin/meta-boxes/class-wc-gzd-meta-box-product-data.php:148
|
502 |
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:704
|
503 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:867
|
504 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:916
|
505 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:965
|
506 |
msgid "Product Units"
|
507 |
msgstr "Produkteinheiten"
|
508 |
|
732 |
|
733 |
# @ woocommerce-germanized
|
734 |
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:170
|
735 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:782
|
736 |
msgid "General"
|
737 |
msgstr "Allgemein"
|
738 |
|
1529 |
|
1530 |
# @ woocommerce-germanized
|
1531 |
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:696
|
1532 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:859
|
1533 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:908
|
1534 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:957
|
1535 |
msgid "Base Price"
|
1536 |
msgstr "Grundpreis"
|
1537 |
|
1538 |
# @ woocommerce-germanized
|
1539 |
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:712
|
1540 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:875
|
1541 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:924
|
1542 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:973
|
1543 |
msgid "Delivery Time Notice"
|
1544 |
msgstr "Lieferzeiten-Hinweis"
|
1545 |
|
1548 |
msgid "Short Description"
|
1549 |
msgstr "Warenkorbkurzbeschreibung"
|
1550 |
|
1551 |
+
# @ woocommerce-germanized
|
1552 |
+
# @ woocommerce
|
1553 |
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:731
|
1554 |
+
#: includes/api/class-wc-gzd-rest-customers-controller.php:137
|
1555 |
+
#: includes/api/class-wc-gzd-rest-customers-controller.php:144
|
1556 |
+
#: includes/api/class-wc-gzd-rest-orders-controller.php:161
|
1557 |
+
#: includes/api/class-wc-gzd-rest-orders-controller.php:168
|
1558 |
+
#: includes/class-wc-gzd-checkout.php:376
|
1559 |
+
#: includes/class-wc-gzd-checkout.php:387
|
1560 |
+
#: includes/class-wc-gzd-customer-helper.php:106
|
1561 |
+
#: includes/class-wc-gzd-customer-helper.php:114
|
1562 |
+
msgid "Title"
|
1563 |
+
msgstr "Anrede"
|
1564 |
+
|
1565 |
+
# @ woocommerce-germanized
|
1566 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:732
|
1567 |
+
msgid ""
|
1568 |
+
"Adjust the title to be used within emails. Use {first_name}, {last_name} and "
|
1569 |
+
"{title} as placeholders."
|
1570 |
+
msgstr ""
|
1571 |
+
"Passen Sie die Anrede in den E-Mails an. Verwenden Sie {first_name}, "
|
1572 |
+
"{last_name} und {title} als Platzhalter."
|
1573 |
+
|
1574 |
+
# @ woocommerce-germanized
|
1575 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:734
|
1576 |
+
msgid "Hi {first_name},"
|
1577 |
+
msgstr "Sehr geehrte{r} {title} {last_name},"
|
1578 |
+
|
1579 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:739
|
1580 |
msgid "Hide Username"
|
1581 |
msgstr "Nutzernamen verstecken"
|
1582 |
|
1583 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:740
|
1584 |
msgid ""
|
1585 |
"Hide username from email content if password or password reset link is "
|
1586 |
"embedded."
|
1587 |
msgstr "Nutzernamen nicht zusammen mit einem Passwort versenden."
|
1588 |
|
1589 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:741
|
1590 |
msgid ""
|
1591 |
"Trusted Shops advises to not show the username together with an account "
|
1592 |
"password or password reset link. This option hides (or masks) the username "
|
1597 |
"Trusted Shops Mitglied sind, sollten Sie diese Option aktivieren."
|
1598 |
|
1599 |
# @ woocommerce-germanized
|
1600 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:749
|
1601 |
msgid "Email Attachment Options"
|
1602 |
msgstr "PDF Anhang"
|
1603 |
|
1604 |
# @ woocommerce-germanized
|
1605 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:749
|
1606 |
#, php-format
|
1607 |
msgid ""
|
1608 |
"Want to attach automatically generated PDF files to emails instead of plain "
|
1612 |
"%sUpgraden Sie zur %spro%s Version%s"
|
1613 |
|
1614 |
# @ woocommerce-germanized
|
1615 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:785
|
1616 |
msgid "Add to Cart"
|
1617 |
msgstr "Zum Warenkorb Button"
|
1618 |
|
1619 |
# @ woocommerce-germanized
|
1620 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:786
|
1621 |
msgid "Show add to cart button on listings?"
|
1622 |
msgstr "Den zum Warenkorb Button in Produktlisten darstellen?"
|
1623 |
|
1624 |
# @ woocommerce-germanized
|
1625 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:790
|
1626 |
msgid ""
|
1627 |
"unset this option if you don't want to show the add to cart button within "
|
1628 |
"the product listings"
|
1631 |
"innerhalb von Produktauflistungen darstellen möchten"
|
1632 |
|
1633 |
# @ woocommerce-germanized
|
1634 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:794
|
1635 |
msgid "Link to Details"
|
1636 |
msgstr "Verlinkung zu Produktdetails"
|
1637 |
|
1638 |
# @ woocommerce-germanized
|
1639 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:795
|
1640 |
msgid ""
|
1641 |
"Want to link to product details page instead of add to cart within listings?"
|
1642 |
msgstr "Zum Warenkorb Button mit Button zur Produktdetail-Seite ersetzen?"
|
1643 |
|
1644 |
# @ woocommerce-germanized
|
1645 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:799
|
1646 |
msgid ""
|
1647 |
"Decide whether you like to link to your product's details page instead of "
|
1648 |
"displaying an add to cart button within product listings."
|
1652 |
"einfach diese Option."
|
1653 |
|
1654 |
# @ woocommerce-germanized
|
1655 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:803
|
1656 |
msgid "Product Details Text"
|
1657 |
msgstr "Produktdetails Text"
|
1658 |
|
1659 |
# @ woocommerce-germanized
|
1660 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:805
|
1661 |
msgid "Details"
|
1662 |
msgstr "Details"
|
1663 |
|
1664 |
# @ woocommerce-germanized
|
1665 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:807
|
1666 |
msgid ""
|
1667 |
"If you have chosen to link to product details page instead of add to cart "
|
1668 |
"URL you may want to change the button text."
|
1672 |
"einen Button-Text vergeben."
|
1673 |
|
1674 |
# @ woocommerce-germanized
|
1675 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:812
|
1676 |
msgid "Digital Delivery Time Text"
|
1677 |
msgstr "Lieferzeit Digital"
|
1678 |
|
1679 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:816
|
1680 |
msgid ""
|
1681 |
"Enter a text which will be shown as digital delivery time text (replacement "
|
1682 |
"for default digital time on digital products)."
|
1686 |
"einfach leer lassen."
|
1687 |
|
1688 |
# @ woocommerce-germanized
|
1689 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:821
|
1690 |
msgid "Notice Footer"
|
1691 |
msgstr "Hinweise im Footer"
|
1692 |
|
1693 |
# @ woocommerce-germanized
|
1694 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:822
|
1695 |
msgid "Show a global VAT notice within footer"
|
1696 |
msgstr "Einen seitenübergreifenden Hinweis bzgl. der MwSt. im Footer einfügen."
|
1697 |
|
1698 |
# @ woocommerce-germanized
|
1699 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:830
|
1700 |
msgid "Show a global sale price notice within footer"
|
1701 |
msgstr ""
|
1702 |
"Einen seitenübergreifenden Hinweis bzgl. reduzierter Preise im Footer "
|
1703 |
"einfügen."
|
1704 |
|
1705 |
# @ woocommerce-germanized
|
1706 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:839
|
1707 |
msgid "Products"
|
1708 |
msgstr "Produkt"
|
1709 |
|
1710 |
# @ woocommerce-germanized
|
1711 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:842
|
1712 |
msgid "Show within Product Listings"
|
1713 |
msgstr "In Produktlisten"
|
1714 |
|
1715 |
# @ woocommerce-germanized
|
1716 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:843
|
1717 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:892
|
1718 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:941
|
1719 |
msgid "Shipping Costs notice"
|
1720 |
msgstr "Versandkosten-Hinweis"
|
1721 |
|
1722 |
# @ woocommerce-germanized
|
1723 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:851
|
1724 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:900
|
1725 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:949
|
1726 |
msgid "Tax Info"
|
1727 |
msgstr "MwSt. Hinweis"
|
1728 |
|
1729 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:883
|
1730 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:932
|
1731 |
#: includes/class-wc-gzd-post-types.php:93
|
1732 |
#: includes/class-wc-gzd-post-types.php:95
|
1733 |
msgid "Price Labels"
|
1734 |
msgstr "Preishinweise"
|
1735 |
|
1736 |
# @ woocommerce-germanized
|
1737 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:891
|
1738 |
msgid "Show on Product Detail Page"
|
1739 |
msgstr "Auf der Produktseite"
|
1740 |
|
1741 |
# @ woocommerce-germanized
|
1742 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:940
|
1743 |
msgid "Within Product Widgets"
|
1744 |
msgstr "In Produkt-Widgets"
|
1745 |
|
1746 |
# @ woocommerce-germanized
|
1747 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:981
|
1748 |
msgid "Hide Tax Rate"
|
1749 |
msgstr "Steuersatz verstecken"
|
1750 |
|
1751 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:982
|
1752 |
msgid "Hide specific tax rate within shop pages."
|
1753 |
msgstr "Entfernt die Anzeige des konkreten Steuersatzes für Produkte im Shop."
|
1754 |
|
1755 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:986
|
1756 |
msgid ""
|
1757 |
"This option will make sure that within shop pages no specific tax rates are "
|
1758 |
"shown. Instead only incl. tax or excl. tax notice is shown."
|
1762 |
"bzw. exkl. MwSt."
|
1763 |
|
1764 |
# @ woocommerce-germanized
|
1765 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:990
|
1766 |
msgid "Hide Shipping Costs Notice"
|
1767 |
msgstr "Versandkosten ausblenden"
|
1768 |
|
1769 |
# @ woocommerce-germanized
|
1770 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:991
|
1771 |
msgid ""
|
1772 |
"Select product types for which you might want to disable the shipping costs "
|
1773 |
"notice."
|
1776 |
"ausblenden möchten."
|
1777 |
|
1778 |
# @ woocommerce-germanized
|
1779 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1001
|
1780 |
msgid "Hide Delivery Time Notice"
|
1781 |
msgstr "Lieferzeiten ausblenden"
|
1782 |
|
1783 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1002
|
1784 |
msgid ""
|
1785 |
"Select product types for which you might want to disable the delivery time "
|
1786 |
"notice."
|
1789 |
"deaktivieren möchten."
|
1790 |
|
1791 |
# @ woocommerce
|
1792 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1012
|
1793 |
msgid "Backorder"
|
1794 |
msgstr "Lieferrückstand"
|
1795 |
|
1796 |
# @ woocommerce-germanized
|
1797 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1013
|
1798 |
msgid "Hide delivery time if a product is on backorder."
|
1799 |
msgstr "Lieferzeit ausblenden falls das Produkt im Lieferrückstand ist."
|
1800 |
|
1801 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1020
|
1802 |
msgid "Not in Stock"
|
1803 |
msgstr "Nicht auf Lager"
|
1804 |
|
1805 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1021
|
1806 |
msgid "Hide delivery time if a product is not in stock."
|
1807 |
msgstr "Lieferzeit ausblenden falls das Produkt nicht auf Lager ist."
|
1808 |
|
1809 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1029
|
1810 |
msgid "Prices"
|
1811 |
msgstr "Preise"
|
1812 |
|
1813 |
# @ woocommerce-germanized
|
1814 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1032
|
1815 |
msgid "Price Range Format"
|
1816 |
msgstr "Preisspannen-Format"
|
1817 |
|
1818 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1033
|
1819 |
msgid ""
|
1820 |
"Adjust the price range format e.g. for variable products. Use {min_price} as "
|
1821 |
"placeholder for the minimum price. Use {max_price} as placeholder for the "
|
1825 |
"Sie {min_price} als Platzhalter für den minimalen Preis und {max_price} als "
|
1826 |
"Platzhalter für den höchsten Preis."
|
1827 |
|
1828 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1038
|
1829 |
#: includes/wc-gzd-core-functions.php:411
|
1830 |
msgid "{min_price} – {max_price}"
|
1831 |
msgstr "{min_price} – {max_price}"
|
1832 |
|
1833 |
# @ woocommerce-germanized
|
1834 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1042
|
1835 |
msgid "Base Price Text"
|
1836 |
msgstr "Grundpreis Text"
|
1837 |
|
1838 |
# @ woocommerce-germanized
|
1839 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1043
|
1840 |
msgid ""
|
1841 |
"This text will be used to display the base price. Use {price} to insert the "
|
1842 |
"price. If you want to specifically format base price output use {base}, "
|
1848 |
"{unit} und {base_price} für die einzelnen Elemente."
|
1849 |
|
1850 |
# @ woocommerce-germanized
|
1851 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1048
|
1852 |
msgid "{price}"
|
1853 |
msgstr "{price}"
|
1854 |
|
1855 |
# @ woocommerce-germanized
|
1856 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1052
|
1857 |
msgid "Variable Base Price"
|
1858 |
msgstr "Variabler Grundpreis"
|
1859 |
|
1860 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1053
|
1861 |
msgid "Enable price range base prices for variable products."
|
1862 |
msgstr "Aktiviert von-bis-Grundpreise für variable Produkte."
|
1863 |
|
1864 |
# @ woocommerce-germanized
|
1865 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1060
|
1866 |
msgid "Product Units Text"
|
1867 |
msgstr "Produkteinheiten Text"
|
1868 |
|
1869 |
# @ woocommerce-germanized
|
1870 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1061
|
1871 |
msgid ""
|
1872 |
"This text will be used to display the product units. Use {product_units} to "
|
1873 |
"insert the amount of product units. Use {unit} to insert the unit. "
|
1879 |
"formatierten Grundpreis."
|
1880 |
|
1881 |
# @ woocommerce-germanized
|
1882 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1066
|
1883 |
msgid "Product contains: {product_units} {unit}"
|
1884 |
msgstr "Produkt enthält: {product_units} {unit}"
|
1885 |
|
1886 |
# @ woocommerce-germanized
|
1887 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1071
|
1888 |
msgid "Checkout & Cart"
|
1889 |
msgstr "Checkout & Warenkorb"
|
1890 |
|
1891 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1074
|
1892 |
msgid "DHL Parcel Shops"
|
1893 |
msgstr "DHL Packstationen"
|
1894 |
|
1895 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1075
|
1896 |
msgid ""
|
1897 |
"Allow customers to choose a DHL parcel shop or packing station as delivery "
|
1898 |
"address."
|
1899 |
msgstr "Versand an DHL Packstation bzw. Paketshops aktivieren."
|
1900 |
|
1901 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1079
|
1902 |
msgid ""
|
1903 |
"This option adds a checkbox to your checkout shipping fields which allows "
|
1904 |
"the customer to optionally choose a DHL packing station or parcel shop for "
|
1908 |
"der Kunde optional die Lieferung an eine Packstation aktivieren. Fall das "
|
1909 |
"der Fall ist, muss eine PostNummer angegeben werden."
|
1910 |
|
1911 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1083
|
1912 |
msgid "Supported Countries"
|
1913 |
msgstr "Unterstützte Länder"
|
1914 |
|
1915 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1087
|
1916 |
msgid "Choose countries which support Parcel Shop delivery."
|
1917 |
msgstr ""
|
1918 |
"Wählen Sie hier die Länder aus, in denen Sie die Lieferung an DHL "
|
1919 |
"Packstationen bzw. Paketshops aktivieren möchten."
|
1920 |
|
1921 |
# @ woocommerce-germanized
|
1922 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1091
|
1923 |
msgid "Disabled Methods"
|
1924 |
msgstr "Deaktiviert für"
|
1925 |
|
1926 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1097
|
1927 |
msgid ""
|
1928 |
"Optionally choose methods for which DHL Parcel Shop Delivery should be "
|
1929 |
"disabled. Does only work if you have disabled choosing shipping methods "
|
1933 |
"DHL Packstationen deaktiviert werden soll. Funktioniert nur in Verbindung "
|
1934 |
"mit der Option \"Auswahl von Versandarten im Checkout deaktivieren\"."
|
1935 |
|
1936 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1101
|
1937 |
#: includes/class-wc-gzd-dhl-parcel-shops.php:354
|
1938 |
msgid "Parcel Shop Finder"
|
1939 |
msgstr "Paketshop finden"
|
1940 |
|
1941 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1102
|
1942 |
msgid ""
|
1943 |
"Enable DHL Parcel Shop Finder to let customers choose a parcel shop nearby."
|
1944 |
msgstr "Standortsuche nach der nächstgelegenen Packstation aktivieren."
|
1945 |
|
1946 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1106
|
1947 |
#, php-format
|
1948 |
msgid ""
|
1949 |
"You may enable this option to add a <a href=\"%s\" target=\"_blank\">Parcel "
|
1958 |
"Nähe auswählen und die Daten automatisch übernehmen."
|
1959 |
|
1960 |
# @ woocommerce-germanized
|
1961 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1110
|
1962 |
#: includes/admin/views/html-page-status-germanized.php:55
|
1963 |
msgid "Fallback Mode"
|
1964 |
msgstr "Fallback Modus"
|
1965 |
|
1966 |
# @ woocommerce-germanized
|
1967 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1111
|
1968 |
msgid ""
|
1969 |
"Enable to make sure default checkout template is not being overriden by "
|
1970 |
"theme."
|
1972 |
"Überschreiben relevanter Templates im Checkout durch das Theme verhindern."
|
1973 |
|
1974 |
# @ woocommerce-germanized
|
1975 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1115
|
1976 |
msgid ""
|
1977 |
"If you are facing problems within your checkout e.g. legally relevant data "
|
1978 |
"is not showing (terms, delivery time, unit price etc.) your theme seems to "
|
1986 |
"Checkout (review-order.php und form-checkout.php) zu überschreiben."
|
1987 |
|
1988 |
# @ woocommerce-germanized
|
1989 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1119
|
1990 |
msgid "Force free shipping"
|
1991 |
msgstr "Versandmethode erzwingen"
|
1992 |
|
1993 |
# @ woocommerce-germanized
|
1994 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1120
|
1995 |
msgid "Force free shipping method if available?"
|
1996 |
msgstr "Kostenlosen Versand erzwingen wenn die Methode zur Verfügung steht?"
|
1997 |
|
1998 |
# @ woocommerce-germanized
|
1999 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1124
|
2000 |
msgid ""
|
2001 |
"By default WooCommerce will let customers choose other shipping methods than "
|
2002 |
"free shipping (if available). This option will force free shipping if "
|
2007 |
"Versand, sobald dieser verfügbar ist."
|
2008 |
|
2009 |
# @ woocommerce-germanized
|
2010 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1128
|
2011 |
msgid "Hide taxes estimated"
|
2012 |
msgstr "Hinweis \"Steuern geschätzt\""
|
2013 |
|
2014 |
# @ woocommerce-germanized
|
2015 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1129
|
2016 |
msgid ""
|
2017 |
"Do you want to hide the \"taxes and shipping estimated\" text from your cart?"
|
2018 |
msgstr "Den Hinweis \"Versandkosten und Steuern werden geschätzt\" entfernen?"
|
2019 |
|
2020 |
# @ woocommerce-germanized
|
2021 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1133
|
2022 |
msgid ""
|
2023 |
"By default WooCommerce adds a \"taxes and shipping estimated\" text to your "
|
2024 |
"cart. This might puzzle your customers and may not meet german law."
|
2028 |
"Markt geeignet."
|
2029 |
|
2030 |
# @ woocommerce-germanized
|
2031 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1137
|
2032 |
msgid "Show Thumbnails"
|
2033 |
msgstr "Thumbnails anzeigen"
|
2034 |
|
2035 |
# @ woocommerce-germanized
|
2036 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1138
|
2037 |
msgid "Show product thumbnails on checkout page?"
|
2038 |
msgstr "Produktbilder im Checkout darstellen?"
|
2039 |
|
2040 |
# @ woocommerce-germanized
|
2041 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1142
|
2042 |
msgid ""
|
2043 |
"Uncheck if you don't want to show your product thumbnails within checkout "
|
2044 |
"table."
|
2047 |
"zu bekommen."
|
2048 |
|
2049 |
# @ woocommerce-germanized
|
2050 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1146
|
2051 |
msgid "Hide Shipping Select"
|
2052 |
msgstr "Versandarten Auswahl"
|
2053 |
|
2054 |
# @ woocommerce-germanized
|
2055 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1147
|
2056 |
msgid "Hide shipping rate selection from checkout?"
|
2057 |
msgstr "Die Auswahl von Versandarten im Checkout deaktivieren?"
|
2058 |
|
2059 |
# @ woocommerce-germanized
|
2060 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1151
|
2061 |
msgid ""
|
2062 |
"This option will hide shipping rate selection from checkout. By then "
|
2063 |
"customers will only be able to change their shipping rate on cart page."
|
2067 |
"Versandmethode ändern."
|
2068 |
|
2069 |
# @ woocommerce-germanized
|
2070 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1155
|
2071 |
msgid "Show back to cart button"
|
2072 |
msgstr "Bestellung bearbeiten"
|
2073 |
|
2074 |
# @ woocommerce-germanized
|
2075 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1156
|
2076 |
msgid "Show back to cart button within your checkout table?"
|
2077 |
msgstr ""
|
2078 |
"Einen \"Bestellung bearbeiten\" Button in der Bestellübersicht anzeigen?"
|
2079 |
|
2080 |
# @ woocommerce-germanized
|
2081 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1160
|
2082 |
msgid ""
|
2083 |
"This button may let your customer edit their order before submitting. Some "
|
2084 |
"people state that this button should be hidden to avoid legal problems."
|
2090 |
"weitere Informationen abgedruckt werden sollten."
|
2091 |
|
2092 |
# @ woocommerce-germanized
|
2093 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1164
|
2094 |
msgid "Show edit data notice"
|
2095 |
msgstr "Bestellung prüfen Hinweis"
|
2096 |
|
2097 |
# @ woocommerce-germanized
|
2098 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1165
|
2099 |
msgid "Show a \"check-your-entries\" notice to the user?"
|
2100 |
msgstr "Einen \"Bestellung prüfen\" Hinweis anzeigen?"
|
2101 |
|
2102 |
# @ woocommerce-germanized
|
2103 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1169
|
2104 |
msgid "This notice will be added right before the order comments field."
|
2105 |
msgstr ""
|
2106 |
"Dieser Hinweis wird direkt oberhalb des Bestellhinweise-Feldes eingefügt."
|
2107 |
|
2108 |
# @ woocommerce-germanized
|
2109 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1173
|
2110 |
msgid "Checkout Table Color"
|
2111 |
msgstr "Hintergrundfarbe der Tabelle"
|
2112 |
|
2113 |
# @ woocommerce-germanized
|
2114 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1175
|
2115 |
msgid ""
|
2116 |
"Choose the color of your checkout product table. This table should be "
|
2117 |
"highlighted within your checkout page."
|
2120 |
"Tabelle sollte sich farblich vom Rest des Inhalts abheben."
|
2121 |
|
2122 |
# @ woocommerce-germanized
|
2123 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1181
|
2124 |
msgid "Pay now Button"
|
2125 |
msgstr "Jetzt bezahlen Button"
|
2126 |
|
2127 |
# @ woocommerce-germanized
|
2128 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1182
|
2129 |
msgid "Add a pay now button to emails and order success page."
|
2130 |
msgstr ""
|
2131 |
"Fügt einen jetzt bezahlen - Button zur E-Mail und der Bestätigungs-Seite "
|
2132 |
"hinzu."
|
2133 |
|
2134 |
# @ woocommerce-germanized
|
2135 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1183
|
2136 |
msgid ""
|
2137 |
"Add a pay now button to order confirmation email and order success page if "
|
2138 |
"the order awaits payment (PayPal etc)."
|
2142 |
"benötigt (z.B. per PayPal)."
|
2143 |
|
2144 |
# @ woocommerce-germanized
|
2145 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1190
|
2146 |
msgid "Disabled for"
|
2147 |
msgstr "Deaktiviert für"
|
2148 |
|
2149 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1191
|
2150 |
msgid "You may want to disable the pay now button for certain payment methods."
|
2151 |
msgstr ""
|
2152 |
"Sie können den jetzt bezahlen Button hier bei Bedarf für bestimmte "
|
2153 |
"Zahlungsarten deaktivieren."
|
2154 |
|
2155 |
# @ woocommerce-germanized
|
2156 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1200
|
2157 |
msgid "Order Success Text"
|
2158 |
msgstr "Bestellung eingegangen"
|
2159 |
|
2160 |
# @ woocommerce-germanized
|
2161 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1201
|
2162 |
msgid "Choose a custom text to display on order success page."
|
2163 |
msgstr ""
|
2164 |
"Hier können Sie einen individuellen kurzen Text eingeben, der nach der "
|
2165 |
"Bestellung ausgegeben wird."
|
2166 |
|
2167 |
# @ woocommerce-germanized
|
2168 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1209
|
2169 |
msgid "Order Success Data"
|
2170 |
msgstr "Bestellbestätigungs-Daten"
|
2171 |
|
2172 |
# @ woocommerce-germanized
|
2173 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1210
|
2174 |
msgid "Hide product table and customer data on order success page"
|
2175 |
msgstr ""
|
2176 |
"Produktdetails (Tabelle, Kundeninfos) von der Bestätigungsseite entfernen."
|
2177 |
|
2178 |
# @ woocommerce-germanized
|
2179 |
+
#: includes/admin/settings/class-wc-gzd-settings-germanized.php:1324
|
2180 |
msgid ""
|
2181 |
"Sorry, but the new Virtual VAT rules cannot be applied to small business."
|
2182 |
msgstr ""
|
2709 |
msgstr "Prüft ob die Kompatibilitätsanpassungen für %s geladen werden."
|
2710 |
|
2711 |
#: includes/admin/views/html-page-status-germanized.php:179
|
2712 |
+
#, php-format
|
2713 |
+
msgid "Version %s not supported, supporting version %s - %s"
|
2714 |
msgstr ""
|
2715 |
+
"Version %s wird nicht unterstützt. Bitte installiere eine Version zwischen "
|
2716 |
+
"%s und %s."
|
2717 |
|
2718 |
# @ woocommerce-germanized
|
2719 |
#: includes/admin/views/html-page-status-germanized.php:192
|
2883 |
msgid "Upgrade now"
|
2884 |
msgstr "jetzt upgraden"
|
2885 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2886 |
#: includes/api/class-wc-gzd-rest-customers-controller.php:151
|
2887 |
#: includes/class-wc-gzd-dhl-parcel-shops.php:149
|
2888 |
msgid "Send to DHL Parcel Shop?"
|
3164 |
"Mail mit Ihren Daten als Bestätigung."
|
3165 |
|
3166 |
# @ woocommerce-germanized
|
3167 |
+
#: includes/class-wc-gzd-checkout.php:377
|
3168 |
+
#: includes/class-wc-gzd-checkout.php:386
|
3169 |
+
#: includes/class-wc-gzd-checkout.php:409
|
3170 |
#: includes/class-wc-gzd-customer-helper.php:108
|
3171 |
#: includes/class-wc-gzd-customer-helper.php:116
|
3172 |
#: includes/class-wc-gzd-revocation.php:41
|
3175 |
msgstr "Herr"
|
3176 |
|
3177 |
# @ woocommerce-germanized
|
3178 |
+
#: includes/class-wc-gzd-checkout.php:377
|
3179 |
+
#: includes/class-wc-gzd-checkout.php:386
|
3180 |
+
#: includes/class-wc-gzd-checkout.php:410
|
3181 |
#: includes/class-wc-gzd-customer-helper.php:108
|
3182 |
#: includes/class-wc-gzd-customer-helper.php:116
|
3183 |
#: includes/class-wc-gzd-revocation.php:42
|
3402 |
"Dieser Text wird in die Bestellbestätigung eingefügt. Verwenden Sie "
|
3403 |
"{order_number}, {site_title} oder {order_date} als Platzhalter."
|
3404 |
|
3405 |
+
#: includes/class-wc-gzd-emails.php:162
|
3406 |
msgid ""
|
3407 |
"Your order has been received and is now being processed. Your order details "
|
3408 |
"are shown below for your reference."
|
3410 |
"Ihre Bestellung ist eingegangen und wird nun bearbeitet. Die Einzelheiten "
|
3411 |
"Ihrer Bestellung können Sie der nachfolgenden Tabelle entnehmen."
|
3412 |
|
3413 |
+
#: includes/class-wc-gzd-emails.php:201
|
3414 |
msgid "Someone requested a password reset for your account."
|
3415 |
msgstr "Jemand hat das Zurücksetzen des Passworts für Ihren Account beantragt."
|
3416 |
|
3417 |
+
#: includes/class-wc-gzd-emails.php:214
|
3418 |
#, php-format
|
3419 |
msgid "Thanks for creating an account on %s."
|
3420 |
msgstr "Danke, dass Sie ein Konto bei %s erstellt haben."
|
3421 |
|
3422 |
# @ woocommerce-germanized
|
3423 |
+
#: includes/class-wc-gzd-emails.php:686
|
3424 |
msgctxt "revocation-form"
|
3425 |
msgid "Forward your Revocation online"
|
3426 |
msgstr "Widerruf online erklären"
|
4006 |
msgid "Mandate Email"
|
4007 |
msgstr "Mandat E-Mail"
|
4008 |
|
4009 |
+
#: includes/class-wc-gzd-product-attribute-helper.php:51
|
4010 |
+
msgid "Product Attributes"
|
4011 |
+
msgstr "Produkteigenschaften"
|
4012 |
+
|
4013 |
+
#: includes/class-wc-gzd-product-attribute-helper.php:65
|
4014 |
msgid "Show product attributes"
|
4015 |
msgstr "Produkteigenschaften"
|
4016 |
|
4017 |
+
#: includes/class-wc-gzd-product-attribute-helper.php:66
|
4018 |
msgid "List all product attributes during cart and checkout."
|
4019 |
msgstr "Listet alle Produkteigenschaften im Warenkorb und in der Kasse auf."
|
4020 |
|
4021 |
+
#: includes/class-wc-gzd-product-attribute-helper.php:70
|
4022 |
msgid ""
|
4023 |
"This option forces WooCommerce to output a list of all product attributes "
|
4024 |
"during cart and checkout."
|
4026 |
"Diese Option zwingt WooCommerce zur Ausgabe aller Produkteigenschaften im "
|
4027 |
"Warenkorb und in der Kasse."
|
4028 |
|
4029 |
+
#: includes/class-wc-gzd-product-attribute-helper.php:93
|
4030 |
msgid "Visible during checkout"
|
4031 |
msgstr "Im Checkout anzeigen"
|
4032 |
|
4162 |
"Sale price labels used to mark old prices (e.g. Recommended Retail Price)"
|
4163 |
msgstr "Preishinweise zur Markierung von Streichpreisen"
|
4164 |
|
4165 |
+
#: includes/compatibility/class-wc-gzd-compatibility-wpml-string-translation.php:265
|
4166 |
#, php-format
|
4167 |
msgid ""
|
4168 |
"This option may be translated via WPML. You may translate the original "
|
4870 |
# @ woocommerce-germanized
|
4871 |
# @ woocommerce
|
4872 |
#: includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:64
|
4873 |
+
#: woocommerce-germanized.php:648
|
4874 |
msgid "Settings"
|
4875 |
msgstr "Einstellungen"
|
4876 |
|
6035 |
"do so."
|
6036 |
msgstr ""
|
6037 |
"Da Ihr Browser kein JavaScript erlaubt, denken Sie bitte daran, auf "
|
6038 |
+
"<em>Gesamtsumme aktualisieren</em> zu klicken, bevor Sie den Auftrag "
|
6039 |
+
"absenden."
|
6040 |
|
6041 |
# @ woocommerce-germanized
|
6042 |
#: templates/checkout/order-submit.php:20
|
6233 |
msgid "cancel review reminder"
|
6234 |
msgstr "von der Bewertungserinnerung abmelden"
|
6235 |
|
6236 |
+
#: woocommerce-germanized.php:755
|
6237 |
msgid "Pease wait while we are trying to redirect you to the payment provider."
|
6238 |
msgstr "Einen Moment - wir versuchen Sie zum Zahlungsanbieter weiterzuleiten."
|
6239 |
|
includes/abstracts/abstract-wc-gzd-product.php
CHANGED
@@ -163,7 +163,6 @@ class WC_GZD_Product {
|
|
163 |
* @return boolean|string
|
164 |
*/
|
165 |
public function get_mini_desc() {
|
166 |
-
|
167 |
$mini_desc = apply_filters( 'woocommerce_gzd_product_cart_description', $this->mini_desc, $this );
|
168 |
|
169 |
if ( $mini_desc && ! empty( $mini_desc ) ) {
|
@@ -173,6 +172,107 @@ class WC_GZD_Product {
|
|
173 |
return false;
|
174 |
}
|
175 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
176 |
public function is_service() {
|
177 |
if ( ! empty( $this->service ) && 'yes' === $this->service ) {
|
178 |
return true;
|
163 |
* @return boolean|string
|
164 |
*/
|
165 |
public function get_mini_desc() {
|
|
|
166 |
$mini_desc = apply_filters( 'woocommerce_gzd_product_cart_description', $this->mini_desc, $this );
|
167 |
|
168 |
if ( $mini_desc && ! empty( $mini_desc ) ) {
|
172 |
return false;
|
173 |
}
|
174 |
|
175 |
+
private function attribute_exists( $key, $item_data ) {
|
176 |
+
foreach( $item_data as $item_data_key => $data ) {
|
177 |
+
if ( isset( $data['key'] ) && $key === $data['key'] ) {
|
178 |
+
return true;
|
179 |
+
}
|
180 |
+
}
|
181 |
+
|
182 |
+
return false;
|
183 |
+
}
|
184 |
+
|
185 |
+
protected function attribute_is_checkout_visible( $attribute ) {
|
186 |
+
return ( $attribute && ( 'yes' === get_option( 'woocommerce_gzd_display_checkout_product_attributes' ) || $attribute->is_checkout_visible() ) );
|
187 |
+
}
|
188 |
+
|
189 |
+
public function get_checkout_attributes( $item_data = array(), $cart_variation_data = array() ) {
|
190 |
+
$item_data = ! empty( $item_data ) ? $item_data : array();
|
191 |
+
|
192 |
+
if ( $this->child->is_type( 'variation' ) ) {
|
193 |
+
$attributes = ! empty( $cart_variation_data ) ? $cart_variation_data : $this->child->get_variation_attributes();
|
194 |
+
|
195 |
+
foreach( $attributes as $name => $value ) {
|
196 |
+
$taxonomy = wc_attribute_taxonomy_name( str_replace( 'attribute_pa_', '', urldecode( $name ) ) );
|
197 |
+
$attribute = WC_GZD_Product_Attribute_Helper::instance()->get_attribute_by_variation( $this->child, $name );
|
198 |
+
|
199 |
+
if ( $this->attribute_is_checkout_visible( $attribute ) ) {
|
200 |
+
if ( taxonomy_exists( $taxonomy ) ) {
|
201 |
+
// If this is a term slug, get the term's nice name.
|
202 |
+
$term = get_term_by( 'slug', $value, $taxonomy );
|
203 |
+
if ( ! is_wp_error( $term ) && $term && $term->name ) {
|
204 |
+
$value = $term->name;
|
205 |
+
}
|
206 |
+
$label = wc_attribute_label( $taxonomy );
|
207 |
+
} else {
|
208 |
+
// If this is a custom option slug, get the options name.
|
209 |
+
$value = apply_filters( 'woocommerce_variation_option_name', $value );
|
210 |
+
$label = wc_attribute_label( str_replace( 'attribute_', '', $name ), $this->child );
|
211 |
+
}
|
212 |
+
|
213 |
+
if ( '' === $value || $this->attribute_exists( $label, $item_data ) ) {
|
214 |
+
continue;
|
215 |
+
}
|
216 |
+
|
217 |
+
$item_data[] = array(
|
218 |
+
'key' => $label,
|
219 |
+
'value' => $value,
|
220 |
+
);
|
221 |
+
}
|
222 |
+
}
|
223 |
+
}
|
224 |
+
|
225 |
+
$product = $this->child->is_type( 'variation' ) ? wc_get_product( $this->child->get_parent_id() ) : $this->child;
|
226 |
+
$attributes = $product->get_attributes();
|
227 |
+
|
228 |
+
foreach( $attributes as $attribute ) {
|
229 |
+
$attribute = WC_GZD_Product_Attribute_Helper::instance()->get_attribute( $attribute, $product );
|
230 |
+
|
231 |
+
if ( $this->attribute_is_checkout_visible( $attribute ) ) {
|
232 |
+
$values = array();
|
233 |
+
|
234 |
+
// Make sure to exclude variation specific attributes (which were already added by variation data).
|
235 |
+
if ( $this->child->is_type( 'variation' ) && $attribute->get_variation() ) {
|
236 |
+
continue;
|
237 |
+
}
|
238 |
+
|
239 |
+
if ( $attribute->is_taxonomy() ) {
|
240 |
+
$attribute_taxonomy = $attribute->get_taxonomy_object();
|
241 |
+
$attribute_values = wc_get_product_terms( $product->get_id(), $attribute->get_name(), array( 'fields' => 'all' ) );
|
242 |
+
|
243 |
+
foreach ( $attribute_values as $attribute_value ) {
|
244 |
+
$value_name = esc_html( $attribute_value->name );
|
245 |
+
|
246 |
+
if ( apply_filters( 'woocommerce_gzd_product_attribute_checkout_clickable', false ) && $attribute_taxonomy->attribute_public ) {
|
247 |
+
$values[] = '<a href="' . esc_url( get_term_link( $attribute_value->term_id, $attribute->get_name() ) ) . '" rel="tag">' . $value_name . '</a>';
|
248 |
+
} else {
|
249 |
+
$values[] = $value_name;
|
250 |
+
}
|
251 |
+
}
|
252 |
+
} else {
|
253 |
+
$values = $attribute->get_options();
|
254 |
+
|
255 |
+
foreach ( $values as &$value ) {
|
256 |
+
$value = make_clickable( esc_html( $value ) );
|
257 |
+
}
|
258 |
+
}
|
259 |
+
|
260 |
+
$label = wc_attribute_label( $attribute->get_name() );
|
261 |
+
|
262 |
+
if ( $this->attribute_exists( $label, $item_data ) ) {
|
263 |
+
continue;
|
264 |
+
}
|
265 |
+
|
266 |
+
$item_data[] = array(
|
267 |
+
'key' => $label,
|
268 |
+
'value' => apply_filters( 'woocommerce_attribute', wpautop( wptexturize( implode( ', ', $values ) ) ), $attribute->get_attribute(), $values )
|
269 |
+
);
|
270 |
+
}
|
271 |
+
}
|
272 |
+
|
273 |
+
return apply_filters( 'woocommerce_gzd_product_checkout_attributes', $item_data, $this->child );
|
274 |
+
}
|
275 |
+
|
276 |
public function is_service() {
|
277 |
if ( ! empty( $this->service ) && 'yes' === $this->service ) {
|
278 |
return true;
|
includes/admin/settings/class-wc-gzd-settings-germanized.php
CHANGED
@@ -685,7 +685,7 @@ class WC_GZD_Settings_Germanized extends WC_Settings_Page {
|
|
685 |
|
686 |
$settings = array_merge( $settings, $email_settings );
|
687 |
|
688 |
-
$settings = array_merge( $settings, array(
|
689 |
|
690 |
array( 'type' => 'sectionend', 'id' => 'email_options' ),
|
691 |
|
@@ -723,10 +723,18 @@ class WC_GZD_Settings_Germanized extends WC_Settings_Page {
|
|
723 |
'default' => 'yes',
|
724 |
'checkboxgroup' => '',
|
725 |
),
|
726 |
-
) );
|
727 |
|
728 |
$settings = array_merge( $settings, array(
|
729 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
730 |
array(
|
731 |
'title' => __( 'Hide Username', 'woocommerce-germanized' ),
|
732 |
'desc' => __( 'Hide username from email content if password or password reset link is embedded.', 'woocommerce-germanized' ),
|
685 |
|
686 |
$settings = array_merge( $settings, $email_settings );
|
687 |
|
688 |
+
$settings = array_merge( $settings, apply_filters( 'woocommerce_gzd_email_visibility_settings', array(
|
689 |
|
690 |
array( 'type' => 'sectionend', 'id' => 'email_options' ),
|
691 |
|
723 |
'default' => 'yes',
|
724 |
'checkboxgroup' => '',
|
725 |
),
|
726 |
+
) ) );
|
727 |
|
728 |
$settings = array_merge( $settings, array(
|
729 |
|
730 |
+
array(
|
731 |
+
'title' => __( 'Title', 'woocommerce-germanized' ),
|
732 |
+
'desc_tip' => __( 'Adjust the title to be used within emails. Use {first_name}, {last_name} and {title} as placeholders.', 'woocommerce-germanized' ),
|
733 |
+
'id' => 'woocommerce_gzd_email_title_text',
|
734 |
+
'default' => __( 'Hi {first_name},', 'woocommerce-germanized' ),
|
735 |
+
'type' => 'text',
|
736 |
+
),
|
737 |
+
|
738 |
array(
|
739 |
'title' => __( 'Hide Username', 'woocommerce-germanized' ),
|
740 |
'desc' => __( 'Hide username from email content if password or password reset link is embedded.', 'woocommerce-germanized' ),
|
includes/admin/views/html-page-status-germanized.php
CHANGED
@@ -176,7 +176,7 @@ if ( ! defined( 'ABSPATH' ) )
|
|
176 |
<td class="help"><?php echo '<a href="#" class="help_tip" data-tip="' . esc_attr( sprintf( __( 'Checks whether compatibility options for %s are being applied.', 'woocommerce-germanized' ), $comp->get_name() ) ) . '">[?]</a>'; ?></td>
|
177 |
<td>
|
178 |
<?php echo ( $comp->is_applicable() ? '<mark class="yes">'.'✔'.'</mark>' : '<mark class="no">'.'–'.'</mark>' ); ?>
|
179 |
-
<?php echo ( ! $comp->is_supported() ? sprintf( __( 'Version % not supported, supporting version %s - %s', 'woocommerce-germanized' ), $version_data['version'], $version_data['requires_at_least'], $version_data['tested_up_to'] ) : '' ); ?>
|
180 |
</td>
|
181 |
</tr>
|
182 |
|
176 |
<td class="help"><?php echo '<a href="#" class="help_tip" data-tip="' . esc_attr( sprintf( __( 'Checks whether compatibility options for %s are being applied.', 'woocommerce-germanized' ), $comp->get_name() ) ) . '">[?]</a>'; ?></td>
|
177 |
<td>
|
178 |
<?php echo ( $comp->is_applicable() ? '<mark class="yes">'.'✔'.'</mark>' : '<mark class="no">'.'–'.'</mark>' ); ?>
|
179 |
+
<?php echo ( ! $comp->is_supported() ? sprintf( __( 'Version %s not supported, supporting version %s - %s', 'woocommerce-germanized' ), $version_data['version'], $version_data['requires_at_least'], $version_data['tested_up_to'] ) : '' ); ?>
|
180 |
</td>
|
181 |
</tr>
|
182 |
|
includes/class-wc-gzd-checkout.php
CHANGED
@@ -215,11 +215,11 @@ class WC_GZD_Checkout {
|
|
215 |
}
|
216 |
|
217 |
public function free_shipping_auto_select( $rates ) {
|
218 |
-
|
219 |
$do_check = is_checkout() || is_cart() || self::$force_free_shipping_filter;
|
220 |
|
221 |
-
if ( ! $do_check )
|
222 |
return $rates;
|
|
|
223 |
|
224 |
$keep = array();
|
225 |
$hide = false;
|
@@ -233,15 +233,26 @@ class WC_GZD_Checkout {
|
|
233 |
// Check for cost-free shipping
|
234 |
foreach ( $rates as $key => $rate ) {
|
235 |
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
}
|
246 |
|
247 |
// Unset all other rates
|
@@ -253,9 +264,9 @@ class WC_GZD_Checkout {
|
|
253 |
}
|
254 |
|
255 |
foreach ( $rates as $key => $rate ) {
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
}
|
260 |
}
|
261 |
|
215 |
}
|
216 |
|
217 |
public function free_shipping_auto_select( $rates ) {
|
|
|
218 |
$do_check = is_checkout() || is_cart() || self::$force_free_shipping_filter;
|
219 |
|
220 |
+
if ( ! $do_check ) {
|
221 |
return $rates;
|
222 |
+
}
|
223 |
|
224 |
$keep = array();
|
225 |
$hide = false;
|
233 |
// Check for cost-free shipping
|
234 |
foreach ( $rates as $key => $rate ) {
|
235 |
|
236 |
+
if ( is_a( $rate, 'WC_Shipping_Rate' ) ) {
|
237 |
+
if ( 'free_shipping' === $rate->method_id ) {
|
238 |
+
$keep[] = $key;
|
239 |
+
$hide = true;
|
240 |
+
} elseif ( 'local_pickup' === $rate->method_id ) {
|
241 |
+
$keep[] = $key;
|
242 |
+
} elseif( $rate->cost == 0 ) {
|
243 |
+
$keep[] = $key;
|
244 |
+
}
|
245 |
+
} else {
|
246 |
+
// Do only hide if free_shipping exists
|
247 |
+
if ( strpos( $key, 'free_shipping' ) !== false ) {
|
248 |
+
$hide = true;
|
249 |
+
}
|
250 |
+
|
251 |
+
// Always show local pickup
|
252 |
+
if ( $rate->cost == 0 || strpos( $key, 'local_pickup' ) !== false ) {
|
253 |
+
$keep[] = $key;
|
254 |
+
}
|
255 |
+
}
|
256 |
}
|
257 |
|
258 |
// Unset all other rates
|
264 |
}
|
265 |
|
266 |
foreach ( $rates as $key => $rate ) {
|
267 |
+
if ( ! in_array( $key, $keep ) ) {
|
268 |
+
unset( $rates[ $key ] );
|
269 |
+
}
|
270 |
}
|
271 |
}
|
272 |
|
includes/class-wc-gzd-emails.php
CHANGED
@@ -53,7 +53,7 @@ class WC_GZD_Emails {
|
|
53 |
add_filter( 'woocommerce_gzd_email_template_id_comparison', array( $this, 'check_for_partial_refund_mail' ), 10, 3 );
|
54 |
|
55 |
// Filter customer-processing-order Woo 3.5 payment text
|
56 |
-
add_filter( 'woocommerce_before_template_part', array( $this, '
|
57 |
|
58 |
// Hide username if an email contains a password or password reset link (TS advises to do so)
|
59 |
if ( 'yes' === get_option( 'woocommerce_gzd_hide_username_with_password' ) ) {
|
@@ -97,13 +97,20 @@ class WC_GZD_Emails {
|
|
97 |
return $actions;
|
98 |
}
|
99 |
|
100 |
-
public function
|
101 |
-
|
|
|
102 |
if ( isset( $args['order'] ) ) {
|
103 |
$GLOBALS['wc_gzd_processing_order'] = $args['order'];
|
104 |
add_filter( 'gettext', array( $this, 'replace_processing_email_text' ), 10, 3 );
|
105 |
}
|
106 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
}
|
108 |
|
109 |
public function replace_processing_email_text( $translated, $original, $domain ) {
|
@@ -125,6 +132,28 @@ class WC_GZD_Emails {
|
|
125 |
return $translated;
|
126 |
}
|
127 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
protected function get_processing_email_text( $order_id ) {
|
129 |
$order = is_numeric( $order_id ) ? wc_get_order( $order_id ) : $order_id;
|
130 |
$plain = apply_filters( 'woocommerce_gzd_order_confirmation_email_plain_text', get_option( 'woocommerce_gzd_email_order_confirmation_text' ) );
|
@@ -484,24 +513,33 @@ class WC_GZD_Emails {
|
|
484 |
// Add order item name actions
|
485 |
add_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_differential_taxation_mark', wc_gzd_get_hook_priority( 'email_product_differential_taxation' ), 2 );
|
486 |
|
487 |
-
if ( get_option( 'woocommerce_gzd_display_emails_product_units' )
|
488 |
add_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_units', wc_gzd_get_hook_priority( 'email_product_units' ), 2 );
|
489 |
-
|
|
|
490 |
add_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_delivery_time', wc_gzd_get_hook_priority( 'email_product_delivery_time' ), 2 );
|
491 |
-
|
492 |
-
|
493 |
-
if ( get_option( '
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
494 |
add_filter( 'woocommerce_order_formatted_line_subtotal', 'wc_gzd_cart_product_unit_price', wc_gzd_get_hook_priority( 'email_product_unit_price' ), 2 );
|
|
|
495 |
|
496 |
do_action( 'woocommerce_gzd_after_set_email_cart_item_filters', $this, $current );
|
497 |
-
|
498 |
}
|
499 |
|
500 |
public function remove_order_email_filters() {
|
501 |
// Make sure to explicitly remove order item name filters - removing "woocommerce_gzd_template_order_item_hooks" may not be sufficient thankyou hooks have already been applied
|
502 |
remove_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_units', wc_gzd_get_hook_priority( 'order_product_units' ) );
|
503 |
remove_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_delivery_time', wc_gzd_get_hook_priority( 'order_product_delivery_time' ) );
|
504 |
-
|
505 |
|
506 |
// Remove actions and filters from template hooks
|
507 |
remove_filter( 'woocommerce_order_formatted_line_subtotal', 'wc_gzd_cart_product_unit_price', wc_gzd_get_hook_priority( 'order_product_unit_price' ) );
|
@@ -513,8 +551,9 @@ class WC_GZD_Emails {
|
|
513 |
remove_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_units', wc_gzd_get_hook_priority( 'email_product_units' ) );
|
514 |
remove_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_delivery_time', wc_gzd_get_hook_priority( 'email_product_delivery_time' ) );
|
515 |
remove_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_item_desc', wc_gzd_get_hook_priority( 'email_product_item_desc' ) );
|
516 |
-
|
517 |
|
|
|
518 |
}
|
519 |
|
520 |
/**
|
53 |
add_filter( 'woocommerce_gzd_email_template_id_comparison', array( $this, 'check_for_partial_refund_mail' ), 10, 3 );
|
54 |
|
55 |
// Filter customer-processing-order Woo 3.5 payment text
|
56 |
+
add_filter( 'woocommerce_before_template_part', array( $this, 'maybe_set_gettext_email_filter' ), 10, 4 );
|
57 |
|
58 |
// Hide username if an email contains a password or password reset link (TS advises to do so)
|
59 |
if ( 'yes' === get_option( 'woocommerce_gzd_hide_username_with_password' ) ) {
|
97 |
return $actions;
|
98 |
}
|
99 |
|
100 |
+
public function maybe_set_gettext_email_filter( $template_name, $template_path, $located, $args ) {
|
101 |
+
|
102 |
+
if ( 'emails/customer-processing-order.php' === $template_name || 'emails/plain/customer-processing-order.php' === $template_name ) {
|
103 |
if ( isset( $args['order'] ) ) {
|
104 |
$GLOBALS['wc_gzd_processing_order'] = $args['order'];
|
105 |
add_filter( 'gettext', array( $this, 'replace_processing_email_text' ), 10, 3 );
|
106 |
}
|
107 |
}
|
108 |
+
|
109 |
+
// Adjust customer addressing within emails
|
110 |
+
if ( strpos( $template_name, 'emails/' ) !== false && isset( $args['order'] ) ) {
|
111 |
+
$GLOBALS['wc_gzd_email_order'] = $args['order'];
|
112 |
+
add_filter( 'gettext', array( $this, 'replace_title_email_text' ), 10, 3 );
|
113 |
+
}
|
114 |
}
|
115 |
|
116 |
public function replace_processing_email_text( $translated, $original, $domain ) {
|
132 |
return $translated;
|
133 |
}
|
134 |
|
135 |
+
public function replace_title_email_text( $translated, $original, $domain ) {
|
136 |
+
if ( 'woocommerce' === $domain ) {
|
137 |
+
if ( 'Hi %s,' === $original ) {
|
138 |
+
if ( isset( $GLOBALS['wc_gzd_email_order'] ) ) {
|
139 |
+
$order = $GLOBALS['wc_gzd_email_order'];
|
140 |
+
$title_text = get_option( 'woocommerce_gzd_email_title_text' );
|
141 |
+
$title_options = array(
|
142 |
+
'{first_name}' => $order->get_billing_first_name(),
|
143 |
+
'{last_name}' => $order->get_billing_last_name(),
|
144 |
+
'{title}' => wc_gzd_get_customer_title( wc_gzd_get_crud_data( $order, 'billing_title' ) )
|
145 |
+
);
|
146 |
+
|
147 |
+
$title_text = str_replace( array_keys( $title_options ), array_values( $title_options ), $title_text );
|
148 |
+
|
149 |
+
return apply_filters( 'woocommerce_gzd_email_title', esc_html( $title_text ), $order );
|
150 |
+
}
|
151 |
+
}
|
152 |
+
}
|
153 |
+
|
154 |
+
return $translated;
|
155 |
+
}
|
156 |
+
|
157 |
protected function get_processing_email_text( $order_id ) {
|
158 |
$order = is_numeric( $order_id ) ? wc_get_order( $order_id ) : $order_id;
|
159 |
$plain = apply_filters( 'woocommerce_gzd_order_confirmation_email_plain_text', get_option( 'woocommerce_gzd_email_order_confirmation_text' ) );
|
513 |
// Add order item name actions
|
514 |
add_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_differential_taxation_mark', wc_gzd_get_hook_priority( 'email_product_differential_taxation' ), 2 );
|
515 |
|
516 |
+
if ( 'yes' === get_option( 'woocommerce_gzd_display_emails_product_units' ) ) {
|
517 |
add_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_units', wc_gzd_get_hook_priority( 'email_product_units' ), 2 );
|
518 |
+
}
|
519 |
+
if ( 'yes' === get_option( 'woocommerce_gzd_display_emails_delivery_time' ) ) {
|
520 |
add_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_delivery_time', wc_gzd_get_hook_priority( 'email_product_delivery_time' ), 2 );
|
521 |
+
}
|
522 |
+
|
523 |
+
if ( 'yes' === get_option( 'woocommerce_gzd_display_emails_product_item_desc' ) ) {
|
524 |
+
add_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_item_desc', wc_gzd_get_hook_priority( 'email_product_item_desc' ), 2 );
|
525 |
+
}
|
526 |
+
|
527 |
+
if ( 'yes' === get_option( 'woocommerce_gzd_display_emails_product_attributes' ) ) {
|
528 |
+
add_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_attributes', wc_gzd_get_hook_priority( 'email_product_attributes' ), 2 );
|
529 |
+
}
|
530 |
+
|
531 |
+
if ( 'yes' === get_option( 'woocommerce_gzd_display_emails_unit_price' ) ) {
|
532 |
add_filter( 'woocommerce_order_formatted_line_subtotal', 'wc_gzd_cart_product_unit_price', wc_gzd_get_hook_priority( 'email_product_unit_price' ), 2 );
|
533 |
+
}
|
534 |
|
535 |
do_action( 'woocommerce_gzd_after_set_email_cart_item_filters', $this, $current );
|
|
|
536 |
}
|
537 |
|
538 |
public function remove_order_email_filters() {
|
539 |
// Make sure to explicitly remove order item name filters - removing "woocommerce_gzd_template_order_item_hooks" may not be sufficient thankyou hooks have already been applied
|
540 |
remove_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_units', wc_gzd_get_hook_priority( 'order_product_units' ) );
|
541 |
remove_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_delivery_time', wc_gzd_get_hook_priority( 'order_product_delivery_time' ) );
|
542 |
+
remove_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_item_desc', wc_gzd_get_hook_priority( 'order_product_item_desc' ) );
|
543 |
|
544 |
// Remove actions and filters from template hooks
|
545 |
remove_filter( 'woocommerce_order_formatted_line_subtotal', 'wc_gzd_cart_product_unit_price', wc_gzd_get_hook_priority( 'order_product_unit_price' ) );
|
551 |
remove_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_units', wc_gzd_get_hook_priority( 'email_product_units' ) );
|
552 |
remove_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_delivery_time', wc_gzd_get_hook_priority( 'email_product_delivery_time' ) );
|
553 |
remove_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_item_desc', wc_gzd_get_hook_priority( 'email_product_item_desc' ) );
|
554 |
+
remove_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_attributes', wc_gzd_get_hook_priority( 'email_product_attributes' ) );
|
555 |
|
556 |
+
remove_filter( 'woocommerce_order_formatted_line_subtotal', 'wc_gzd_cart_product_unit_price', wc_gzd_get_hook_priority( 'email_product_unit_price' ) );
|
557 |
}
|
558 |
|
559 |
/**
|
includes/class-wc-gzd-hook-priorities.php
CHANGED
@@ -114,6 +114,7 @@ class WC_GZD_Hook_Priorities {
|
|
114 |
'email_product_units' => 2,
|
115 |
'email_product_delivery_time' => 3,
|
116 |
'email_product_item_desc' => 4,
|
|
|
117 |
'gzd_footer_vat_info' => 0,
|
118 |
'footer_vat_info' => 5,
|
119 |
'gzd_footer_sale_info' => 0,
|
114 |
'email_product_units' => 2,
|
115 |
'email_product_delivery_time' => 3,
|
116 |
'email_product_item_desc' => 4,
|
117 |
+
'email_product_attributes' => 5,
|
118 |
'gzd_footer_vat_info' => 0,
|
119 |
'footer_vat_info' => 5,
|
120 |
'gzd_footer_sale_info' => 0,
|
includes/class-wc-gzd-product-attribute-helper.php
CHANGED
@@ -36,13 +36,26 @@ class WC_GZD_Product_Attribute_Helper {
|
|
36 |
// This is the only nice way to update attributes after Woo has updated product attributes
|
37 |
add_action( 'woocommerce_product_object_updated_props', array( $this, 'update_attributes' ), 10, 2 );
|
38 |
// Adjust cart item data to include attributes visible during cart/checkout
|
39 |
-
add_filter( 'woocommerce_get_item_data', array( $this, 'cart_item_data_filter' ),
|
40 |
|
41 |
if ( is_admin() ) {
|
42 |
add_action( 'woocommerce_after_product_attribute_settings', array( $this, 'attribute_visibility' ), 10, 2 );
|
43 |
}
|
44 |
|
45 |
add_filter( 'woocommerce_germanized_settings_display', array( $this, 'global_attribute_setting' ), 10 );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
}
|
47 |
|
48 |
public function global_attribute_setting( $settings ) {
|
@@ -84,18 +97,17 @@ class WC_GZD_Product_Attribute_Helper {
|
|
84 |
}
|
85 |
|
86 |
public function cart_item_data_filter( $item_data, $cart_item ) {
|
87 |
-
$cart_product
|
|
|
88 |
|
89 |
-
if ( $
|
90 |
-
$item_data
|
91 |
}
|
92 |
|
93 |
-
$item_data = array_merge( $this->get_cart_product_attributes( $cart_item ), $item_data );
|
94 |
-
|
95 |
return $item_data;
|
96 |
}
|
97 |
|
98 |
-
|
99 |
$name = str_replace( 'attribute_', '', $name );
|
100 |
|
101 |
if ( $parent = wc_get_product( $product->get_parent_id() ) ) {
|
@@ -109,103 +121,6 @@ class WC_GZD_Product_Attribute_Helper {
|
|
109 |
return false;
|
110 |
}
|
111 |
|
112 |
-
protected function get_cart_product_variation_attributes( $cart_item ) {
|
113 |
-
$item_data = array();
|
114 |
-
|
115 |
-
if ( $cart_item['data']->is_type( 'variation' ) && is_array( $cart_item['variation'] ) ) {
|
116 |
-
foreach ( $cart_item['variation'] as $name => $value ) {
|
117 |
-
$taxonomy = wc_attribute_taxonomy_name( str_replace( 'attribute_pa_', '', urldecode( $name ) ) );
|
118 |
-
|
119 |
-
// Lets try to find the original (parent) attribute based on attribute name
|
120 |
-
if ( $attribute = $this->get_attribute_by_variation( $cart_item['data'], $name ) ) {
|
121 |
-
// If the attribute is not visible and displaying is not forced - skip
|
122 |
-
if ( ! $attribute->is_checkout_visible() && 'yes' !== get_option( 'woocommerce_gzd_display_checkout_product_attributes' ) ) {
|
123 |
-
continue;
|
124 |
-
}
|
125 |
-
}
|
126 |
-
|
127 |
-
if ( taxonomy_exists( $taxonomy ) ) {
|
128 |
-
// If this is a term slug, get the term's nice name.
|
129 |
-
$term = get_term_by( 'slug', $value, $taxonomy );
|
130 |
-
if ( ! is_wp_error( $term ) && $term && $term->name ) {
|
131 |
-
$value = $term->name;
|
132 |
-
}
|
133 |
-
$label = wc_attribute_label( $taxonomy );
|
134 |
-
} else {
|
135 |
-
// If this is a custom option slug, get the options name.
|
136 |
-
$value = apply_filters( 'woocommerce_variation_option_name', $value );
|
137 |
-
$label = wc_attribute_label( str_replace( 'attribute_', '', $name ), $cart_item['data'] );
|
138 |
-
}
|
139 |
-
|
140 |
-
if ( '' === $value ) {
|
141 |
-
continue;
|
142 |
-
}
|
143 |
-
|
144 |
-
$item_data[] = array(
|
145 |
-
'key' => $label,
|
146 |
-
'value' => $value,
|
147 |
-
);
|
148 |
-
}
|
149 |
-
}
|
150 |
-
|
151 |
-
return $item_data;
|
152 |
-
}
|
153 |
-
|
154 |
-
protected function get_cart_product_attributes( $cart_item ) {
|
155 |
-
$item_data = array();
|
156 |
-
$org_product = $cart_item['data'];
|
157 |
-
$product = $org_product;
|
158 |
-
|
159 |
-
if ( $product->is_type( 'variation' ) ) {
|
160 |
-
$product = wc_get_product( $product->get_parent_id() );
|
161 |
-
}
|
162 |
-
|
163 |
-
if ( ! $product ) {
|
164 |
-
return $item_data;
|
165 |
-
}
|
166 |
-
|
167 |
-
foreach( $product->get_attributes() as $attribute ) {
|
168 |
-
$attribute = $this->get_attribute( $attribute, $product );
|
169 |
-
|
170 |
-
if ( 'yes' === get_option( 'woocommerce_gzd_display_checkout_product_attributes' ) || $attribute->is_checkout_visible() ) {
|
171 |
-
$values = array();
|
172 |
-
|
173 |
-
// Make sure to exclude variation specific attributes (which were already added by variation data).
|
174 |
-
if ( $org_product->is_type( 'variation' ) && $attribute->get_variation() ) {
|
175 |
-
continue;
|
176 |
-
}
|
177 |
-
|
178 |
-
if ( $attribute->is_taxonomy() ) {
|
179 |
-
$attribute_taxonomy = $attribute->get_taxonomy_object();
|
180 |
-
$attribute_values = wc_get_product_terms( $product->get_id(), $attribute->get_name(), array( 'fields' => 'all' ) );
|
181 |
-
|
182 |
-
foreach ( $attribute_values as $attribute_value ) {
|
183 |
-
$value_name = esc_html( $attribute_value->name );
|
184 |
-
|
185 |
-
if ( apply_filters( 'woocommerce_gzd_product_attribute_checkout_clickable', false ) && $attribute_taxonomy->attribute_public ) {
|
186 |
-
$values[] = '<a href="' . esc_url( get_term_link( $attribute_value->term_id, $attribute->get_name() ) ) . '" rel="tag">' . $value_name . '</a>';
|
187 |
-
} else {
|
188 |
-
$values[] = $value_name;
|
189 |
-
}
|
190 |
-
}
|
191 |
-
} else {
|
192 |
-
$values = $attribute->get_options();
|
193 |
-
|
194 |
-
foreach ( $values as &$value ) {
|
195 |
-
$value = make_clickable( esc_html( $value ) );
|
196 |
-
}
|
197 |
-
}
|
198 |
-
|
199 |
-
$item_data[] = array(
|
200 |
-
'key' => wc_attribute_label( $attribute->get_name() ),
|
201 |
-
'value' => apply_filters( 'woocommerce_attribute', wpautop( wptexturize( implode( ', ', $values ) ) ), $attribute->get_attribute(), $values )
|
202 |
-
);
|
203 |
-
}
|
204 |
-
}
|
205 |
-
|
206 |
-
return $item_data;
|
207 |
-
}
|
208 |
-
|
209 |
public function update_attributes( $product, $updated_props ) {
|
210 |
$attributes = $product->get_attributes();
|
211 |
$meta = get_post_meta( $product->get_id(), '_product_attributes', true );
|
36 |
// This is the only nice way to update attributes after Woo has updated product attributes
|
37 |
add_action( 'woocommerce_product_object_updated_props', array( $this, 'update_attributes' ), 10, 2 );
|
38 |
// Adjust cart item data to include attributes visible during cart/checkout
|
39 |
+
add_filter( 'woocommerce_get_item_data', array( $this, 'cart_item_data_filter' ), 150, 2 );
|
40 |
|
41 |
if ( is_admin() ) {
|
42 |
add_action( 'woocommerce_after_product_attribute_settings', array( $this, 'attribute_visibility' ), 10, 2 );
|
43 |
}
|
44 |
|
45 |
add_filter( 'woocommerce_germanized_settings_display', array( $this, 'global_attribute_setting' ), 10 );
|
46 |
+
add_filter( 'woocommerce_gzd_email_visibility_settings', array( $this, 'email_attribute_setting' ), 10 );
|
47 |
+
}
|
48 |
+
|
49 |
+
public function email_attribute_setting( $settings ) {
|
50 |
+
$settings[] = array(
|
51 |
+
'desc' => __( 'Product Attributes', 'woocommerce-germanized' ),
|
52 |
+
'id' => 'woocommerce_gzd_display_emails_product_attributes',
|
53 |
+
'type' => 'checkbox',
|
54 |
+
'default' => 'no',
|
55 |
+
'checkboxgroup' => '',
|
56 |
+
);
|
57 |
+
|
58 |
+
return $settings;
|
59 |
}
|
60 |
|
61 |
public function global_attribute_setting( $settings ) {
|
97 |
}
|
98 |
|
99 |
public function cart_item_data_filter( $item_data, $cart_item ) {
|
100 |
+
$cart_product = $cart_item['data'];
|
101 |
+
$item_data_product = wc_gzd_get_gzd_product( $cart_product )->get_checkout_attributes( $item_data, isset( $cart_item['variation'] ) ? $cart_item['variation'] : array() );
|
102 |
|
103 |
+
if ( $item_data !== $item_data_product ) {
|
104 |
+
$item_data = array_merge( $item_data, $item_data_product );
|
105 |
}
|
106 |
|
|
|
|
|
107 |
return $item_data;
|
108 |
}
|
109 |
|
110 |
+
public function get_attribute_by_variation( $product, $name ) {
|
111 |
$name = str_replace( 'attribute_', '', $name );
|
112 |
|
113 |
if ( $parent = wc_get_product( $product->get_parent_id() ) ) {
|
121 |
return false;
|
122 |
}
|
123 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
public function update_attributes( $product, $updated_props ) {
|
125 |
$attributes = $product->get_attributes();
|
126 |
$meta = get_post_meta( $product->get_id(), '_product_attributes', true );
|
includes/class-wc-gzd-shipping-rate.php
CHANGED
@@ -55,14 +55,13 @@ class WC_GZD_Shipping_Rate extends WC_Shipping_Rate {
|
|
55 |
}
|
56 |
|
57 |
public function set_costs() {
|
58 |
-
if ( WC()->cart->tax_display_cart === 'incl' ) {
|
59 |
$cost = $this->cost - array_sum( $this->taxes );
|
60 |
|
61 |
if ( WC()->customer->is_vat_exempt() ) {
|
62 |
$shipping_rates = WC_Tax::get_shipping_tax_rates();
|
63 |
$shipping_taxes = WC_Tax::calc_inclusive_tax( $this->cost, $shipping_rates );
|
64 |
-
|
65 |
-
$cost = ( $cost - array_sum( $shipping_taxes ) );
|
66 |
}
|
67 |
|
68 |
if ( is_callable( array( $this, 'set_cost' ) ) ) {
|
55 |
}
|
56 |
|
57 |
public function set_costs() {
|
58 |
+
if ( WC()->cart->tax_display_cart === 'incl' || WC()->customer->is_vat_exempt() ) {
|
59 |
$cost = $this->cost - array_sum( $this->taxes );
|
60 |
|
61 |
if ( WC()->customer->is_vat_exempt() ) {
|
62 |
$shipping_rates = WC_Tax::get_shipping_tax_rates();
|
63 |
$shipping_taxes = WC_Tax::calc_inclusive_tax( $this->cost, $shipping_rates );
|
64 |
+
$cost = ( $cost - array_sum( $shipping_taxes ) );
|
|
|
65 |
}
|
66 |
|
67 |
if ( is_callable( array( $this, 'set_cost' ) ) ) {
|
includes/compatibility/class-wc-gzd-compatibility-woocommerce-role-based-price.php
CHANGED
@@ -2,7 +2,8 @@
|
|
2 |
/**
|
3 |
* WPML Helper
|
4 |
*
|
5 |
-
* Specific configuration for
|
|
|
6 |
*
|
7 |
* @class WC_GZD_WPML_Helper
|
8 |
* @category Class
|
2 |
/**
|
3 |
* WPML Helper
|
4 |
*
|
5 |
+
* Specific configuration for Role Based Pricing
|
6 |
+
* https://wordpress.org/plugins/woocommerce-role-based-price/
|
7 |
*
|
8 |
* @class WC_GZD_WPML_Helper
|
9 |
* @category Class
|
includes/compatibility/class-wc-gzd-compatibility-wpml-string-translation.php
CHANGED
@@ -102,6 +102,7 @@ class WC_GZD_Compatibility_Wpml_String_Translation extends WC_GZD_Compatibility
|
|
102 |
'woocommerce_gzd_alternative_complaints_text_none' => '',
|
103 |
'woocommerce_gzd_alternative_complaints_text_willing' => '',
|
104 |
'woocommerce_gzd_alternative_complaints_text_obliged' => '',
|
|
|
105 |
'woocommerce_gzd_legal_checkboxes_settings' => array(
|
106 |
'label',
|
107 |
'error_message',
|
102 |
'woocommerce_gzd_alternative_complaints_text_none' => '',
|
103 |
'woocommerce_gzd_alternative_complaints_text_willing' => '',
|
104 |
'woocommerce_gzd_alternative_complaints_text_obliged' => '',
|
105 |
+
'woocommerce_gzd_email_title_text' => '',
|
106 |
'woocommerce_gzd_legal_checkboxes_settings' => array(
|
107 |
'label',
|
108 |
'error_message',
|
includes/compatibility/class-wc-gzd-compatibility-wpml.php
CHANGED
@@ -52,6 +52,13 @@ class WC_GZD_Compatibility_Wpml extends WC_GZD_Compatibility {
|
|
52 |
$this->filter_page_ids();
|
53 |
}
|
54 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
public function before_show_product_unit_price( $product ) {
|
56 |
$product->recalculate_unit_price();
|
57 |
}
|
@@ -156,38 +163,38 @@ class WC_GZD_Compatibility_Wpml extends WC_GZD_Compatibility {
|
|
156 |
}
|
157 |
|
158 |
if ( isset( $sitepress ) && is_callable( array( $sitepress, 'get_current_language' ) ) && is_callable( array( $sitepress, 'switch_lang' ) ) ) {
|
159 |
-
if ( $sitepress->get_current_language() != $lang ) {
|
160 |
|
|
|
161 |
$this->new_language = $lang;
|
|
|
162 |
|
163 |
-
|
164 |
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
|
170 |
-
|
171 |
-
|
172 |
|
173 |
-
|
174 |
-
|
175 |
|
176 |
-
|
177 |
-
|
178 |
|
179 |
-
|
180 |
-
|
181 |
-
unload_textdomain( 'woocommerce-germanized' );
|
182 |
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
load_default_textdomain( get_locale() );
|
187 |
-
}
|
188 |
|
189 |
-
|
190 |
}
|
|
|
|
|
191 |
}
|
192 |
|
193 |
do_action( 'woocommerce_gzd_wpml_switch_language', $lang, $wc_gzd_original_lang );
|
52 |
$this->filter_page_ids();
|
53 |
}
|
54 |
|
55 |
+
public function reload_locale() {
|
56 |
+
unload_textdomain( 'woocommerce-germanized' );
|
57 |
+
WC_germanized()->load_plugin_textdomain();
|
58 |
+
|
59 |
+
do_action( 'woocommerce_gzd_reload_locale' );
|
60 |
+
}
|
61 |
+
|
62 |
public function before_show_product_unit_price( $product ) {
|
63 |
$product->recalculate_unit_price();
|
64 |
}
|
163 |
}
|
164 |
|
165 |
if ( isset( $sitepress ) && is_callable( array( $sitepress, 'get_current_language' ) ) && is_callable( array( $sitepress, 'switch_lang' ) ) ) {
|
|
|
166 |
|
167 |
+
if ( $sitepress->get_current_language() != $lang ) {
|
168 |
$this->new_language = $lang;
|
169 |
+
}
|
170 |
|
171 |
+
$sitepress->switch_lang( $lang, true );
|
172 |
|
173 |
+
// Somehow WPML doesn't automatically change the locale
|
174 |
+
if ( is_callable( array( $sitepress, 'reset_locale_utils_cache' ) ) ) {
|
175 |
+
$sitepress->reset_locale_utils_cache();
|
176 |
+
}
|
177 |
|
178 |
+
// Filter locale because WPML does still use the user locale within admin panel
|
179 |
+
add_filter( 'locale', array( $this, 'language_locale_filter' ), 50 );
|
180 |
|
181 |
+
if ( function_exists( 'switch_to_locale' ) ) {
|
182 |
+
switch_to_locale( get_locale() );
|
183 |
|
184 |
+
// Filter on plugin_locale so load_plugin_textdomain loads the correct locale.
|
185 |
+
add_filter( 'plugin_locale', 'get_locale' );
|
186 |
|
187 |
+
unload_textdomain( 'default' );
|
188 |
+
unload_textdomain( 'woocommerce' );
|
|
|
189 |
|
190 |
+
// Init WC locale.
|
191 |
+
WC()->load_plugin_textdomain();
|
192 |
+
$this->reload_locale();
|
|
|
|
|
193 |
|
194 |
+
load_default_textdomain( get_locale() );
|
195 |
}
|
196 |
+
|
197 |
+
do_action( 'woocommerce_gzd_wpml_switched_language', $lang, $wc_gzd_original_lang );
|
198 |
}
|
199 |
|
200 |
do_action( 'woocommerce_gzd_wpml_switch_language', $lang, $wc_gzd_original_lang );
|
includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php
CHANGED
@@ -868,7 +868,7 @@ Please notice: Period for pre-information of the SEPA direct debit is shortened
|
|
868 |
|
869 |
if ( ! $iban_validator->Verify() ) {
|
870 |
wc_add_notice( __( 'Your IBAN seems to be invalid.', 'woocommerce-germanized' ), 'error' );
|
871 |
-
} elseif ( apply_filters( 'woocommerce_gzd_direct_debit_verify_iban_country',
|
872 |
wc_add_notice( __( 'Your IBAN\'s country code doesn’t match with your billing country.', 'woocommerce-germanized' ), 'error' );
|
873 |
}
|
874 |
|
868 |
|
869 |
if ( ! $iban_validator->Verify() ) {
|
870 |
wc_add_notice( __( 'Your IBAN seems to be invalid.', 'woocommerce-germanized' ), 'error' );
|
871 |
+
} elseif ( apply_filters( 'woocommerce_gzd_direct_debit_verify_iban_country', false ) && $iban_validator->Country() != $country ) {
|
872 |
wc_add_notice( __( 'Your IBAN\'s country code doesn’t match with your billing country.', 'woocommerce-germanized' ), 'error' );
|
873 |
}
|
874 |
|
includes/wc-gzd-cart-functions.php
CHANGED
@@ -52,7 +52,6 @@ function wc_gzd_cart_product_differential_taxation_mark( $title, $cart_item, $ca
|
|
52 |
* @return string
|
53 |
*/
|
54 |
function wc_gzd_cart_product_item_desc( $title, $cart_item, $cart_item_key = '' ) {
|
55 |
-
|
56 |
$product_desc = "";
|
57 |
|
58 |
if ( isset( $cart_item[ 'data' ] ) ) {
|
@@ -81,6 +80,46 @@ function wc_gzd_cart_product_item_desc( $title, $cart_item, $cart_item_key = ''
|
|
81 |
return $title;
|
82 |
}
|
83 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
/**
|
85 |
* Appends delivery time live data (while checkout) or order meta to product name
|
86 |
*
|
52 |
* @return string
|
53 |
*/
|
54 |
function wc_gzd_cart_product_item_desc( $title, $cart_item, $cart_item_key = '' ) {
|
|
|
55 |
$product_desc = "";
|
56 |
|
57 |
if ( isset( $cart_item[ 'data' ] ) ) {
|
80 |
return $title;
|
81 |
}
|
82 |
|
83 |
+
function wc_gzd_cart_product_attributes( $title, $cart_item, $cart_item_key = '' ) {
|
84 |
+
$item_data = array();
|
85 |
+
|
86 |
+
if ( isset( $cart_item['data'] ) ) {
|
87 |
+
$product = wc_get_product( ! empty( $cart_item['variation_id'] ) ? $cart_item['variation_id'] : $cart_item['product_id'] );
|
88 |
+
$item_data = wc_gzd_get_gzd_product( $product )->get_checkout_attributes( array(), isset( $cart_item['variation'] ) ? $cart_item['variation'] : array() );
|
89 |
+
} elseif ( isset( $cart_item['product_id'] ) ) {
|
90 |
+
$product = wc_get_product( ! empty( $cart_item['variation_id'] ) ? $cart_item['variation_id'] : $cart_item['product_id'] );
|
91 |
+
$item_data = wc_gzd_get_gzd_product( $product )->get_checkout_attributes();
|
92 |
+
}
|
93 |
+
|
94 |
+
// Format item data ready to display.
|
95 |
+
foreach ( $item_data as $key => $data ) {
|
96 |
+
// Set hidden to true to not display meta on cart.
|
97 |
+
if ( ! empty( $data['hidden'] ) ) {
|
98 |
+
unset( $item_data[ $key ] );
|
99 |
+
continue;
|
100 |
+
}
|
101 |
+
$item_data[ $key ]['key'] = ! empty( $data['key'] ) ? $data['key'] : $data['name'];
|
102 |
+
$item_data[ $key ]['display'] = ! empty( $data['display'] ) ? $data['display'] : $data['value'];
|
103 |
+
}
|
104 |
+
|
105 |
+
$item_data_html = '';
|
106 |
+
|
107 |
+
// Output flat or in list format.
|
108 |
+
if ( count( $item_data ) > 0 ) {
|
109 |
+
ob_start();
|
110 |
+
foreach ( $item_data as $data ) {
|
111 |
+
echo esc_html( $data['key'] ) . ': ' . strip_tags( $data['display'] ) . "\n" . "<br/>";
|
112 |
+
}
|
113 |
+
$item_data_html = ob_get_clean();
|
114 |
+
}
|
115 |
+
|
116 |
+
if ( ! empty( $item_data_html ) ) {
|
117 |
+
$title .= '<div class="wc-gzd-item-attributes item-attributes">' . $item_data_html . '</div>';
|
118 |
+
}
|
119 |
+
|
120 |
+
return $title;
|
121 |
+
}
|
122 |
+
|
123 |
/**
|
124 |
* Appends delivery time live data (while checkout) or order meta to product name
|
125 |
*
|
includes/wc-gzd-template-functions.php
CHANGED
@@ -478,7 +478,6 @@ if ( ! function_exists( 'woocommerce_gzd_template_order_item_hooks' ) ) {
|
|
478 |
add_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_delivery_time', wc_gzd_get_hook_priority( 'order_product_delivery_time' ), 3 );
|
479 |
add_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_item_desc', wc_gzd_get_hook_priority( 'order_product_item_desc' ), 3 );
|
480 |
}
|
481 |
-
|
482 |
}
|
483 |
|
484 |
if ( ! function_exists( 'woocommerce_gzd_template_mini_cart_taxes' ) ) {
|
478 |
add_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_delivery_time', wc_gzd_get_hook_priority( 'order_product_delivery_time' ), 3 );
|
479 |
add_filter( 'woocommerce_order_item_name', 'wc_gzd_cart_product_item_desc', wc_gzd_get_hook_priority( 'order_product_item_desc' ), 3 );
|
480 |
}
|
|
|
481 |
}
|
482 |
|
483 |
if ( ! function_exists( 'woocommerce_gzd_template_mini_cart_taxes' ) ) {
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Requires at least: 3.8
|
|
5 |
Tested up to: 5.1
|
6 |
WC requires at least: 2.4
|
7 |
WC tested up to: 3.5
|
8 |
-
Stable tag: 2.2.
|
9 |
Requires PHP: 5.3
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -184,6 +184,14 @@ Bug reports may be filed via our [GitHub repository](https://github.com/vendider
|
|
184 |
|
185 |
== Changelog ==
|
186 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
= 2.2.8 =
|
188 |
* Feature: Choose specific product attributes to be shown during checkout/cart (WC version > 3)
|
189 |
* Feature: Enable/disable listing all product attributes during checkout/cart (WC version > 3)
|
5 |
Tested up to: 5.1
|
6 |
WC requires at least: 2.4
|
7 |
WC tested up to: 3.5
|
8 |
+
Stable tag: 2.2.9
|
9 |
Requires PHP: 5.3
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
184 |
|
185 |
== Changelog ==
|
186 |
|
187 |
+
= 2.2.9 =
|
188 |
+
* Feature: Adjust email title format and customize it with placeholders e.g. first name or last name
|
189 |
+
* Improvement: Free shipping auto select implementation
|
190 |
+
* Improvement: Remove shipping taxes in case of VAT exempt to make sure shipping costs are interpreted as gross
|
191 |
+
* Improvement: Do not force IBAN to equal billing country (see https://www.wettbewerbszentrale.de/de/presse/pressemitteilungen/_pressemitteilung/?id=303)
|
192 |
+
* Fix: Check event data before calling GermanizedVariationForm in add to cart variation script
|
193 |
+
* Fix: Duplicate attributes in cart/checkout
|
194 |
+
|
195 |
= 2.2.8 =
|
196 |
* Feature: Choose specific product attributes to be shown during checkout/cart (WC version > 3)
|
197 |
* Feature: Enable/disable listing all product attributes during checkout/cart (WC version > 3)
|
woocommerce-germanized.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: WooCommerce Germanized
|
4 |
* Plugin URI: https://www.vendidero.de/woocommerce-germanized
|
5 |
* Description: WooCommerce Germanized extends WooCommerce to become a legally compliant store in the german market.
|
6 |
-
* Version: 2.2.
|
7 |
* Author: Vendidero
|
8 |
* Author URI: https://vendidero.de
|
9 |
* Requires at least: 3.8
|
@@ -31,7 +31,7 @@ final class WooCommerce_Germanized {
|
|
31 |
*
|
32 |
* @var string
|
33 |
*/
|
34 |
-
public $version = '2.2.
|
35 |
|
36 |
/**
|
37 |
* Single instance of WooCommerce Germanized Main Class
|
@@ -181,7 +181,6 @@ final class WooCommerce_Germanized {
|
|
181 |
* Init WooCommerceGermanized when WordPress initializes.
|
182 |
*/
|
183 |
public function init() {
|
184 |
-
|
185 |
// Before init action
|
186 |
do_action( 'before_woocommerce_germanized_init' );
|
187 |
|
@@ -634,7 +633,7 @@ final class WooCommerce_Germanized {
|
|
634 |
$locale = apply_filters( 'plugin_locale', $locale, 'woocommerce-germanized' );
|
635 |
|
636 |
unload_textdomain( 'woocommerce-germanized' );
|
637 |
-
|
638 |
load_plugin_textdomain( 'woocommerce-germanized', false, plugin_basename( dirname( __FILE__ ) ) . '/i18n/languages/' );
|
639 |
}
|
640 |
|
3 |
* Plugin Name: WooCommerce Germanized
|
4 |
* Plugin URI: https://www.vendidero.de/woocommerce-germanized
|
5 |
* Description: WooCommerce Germanized extends WooCommerce to become a legally compliant store in the german market.
|
6 |
+
* Version: 2.2.9
|
7 |
* Author: Vendidero
|
8 |
* Author URI: https://vendidero.de
|
9 |
* Requires at least: 3.8
|
31 |
*
|
32 |
* @var string
|
33 |
*/
|
34 |
+
public $version = '2.2.9';
|
35 |
|
36 |
/**
|
37 |
* Single instance of WooCommerce Germanized Main Class
|
181 |
* Init WooCommerceGermanized when WordPress initializes.
|
182 |
*/
|
183 |
public function init() {
|
|
|
184 |
// Before init action
|
185 |
do_action( 'before_woocommerce_germanized_init' );
|
186 |
|
633 |
$locale = apply_filters( 'plugin_locale', $locale, 'woocommerce-germanized' );
|
634 |
|
635 |
unload_textdomain( 'woocommerce-germanized' );
|
636 |
+
load_textdomain( 'woocommerce-germanized', trailingslashit( WP_LANG_DIR ) . 'woocommerce-germanized/woocommerce-germanized-' . $locale . '.mo' );
|
637 |
load_plugin_textdomain( 'woocommerce-germanized', false, plugin_basename( dirname( __FILE__ ) ) . '/i18n/languages/' );
|
638 |
}
|
639 |
|
wpml-config.xml
CHANGED
@@ -55,6 +55,7 @@
|
|
55 |
<key name="woocommerce_gzd_alternative_complaints_text_none" />
|
56 |
<key name="woocommerce_gzd_alternative_complaints_text_willing" />
|
57 |
<key name="woocommerce_gzd_alternative_complaints_text_obliged" />
|
|
|
58 |
<key name="woocommerce_customer_revocation_settings">
|
59 |
<key name="subject" />
|
60 |
<key name="heading" />
|
55 |
<key name="woocommerce_gzd_alternative_complaints_text_none" />
|
56 |
<key name="woocommerce_gzd_alternative_complaints_text_willing" />
|
57 |
<key name="woocommerce_gzd_alternative_complaints_text_obliged" />
|
58 |
+
<key name="woocommerce_gzd_email_title_text" />
|
59 |
<key name="woocommerce_customer_revocation_settings">
|
60 |
<key name="subject" />
|
61 |
<key name="heading" />
|