Version Description
- Feature: DHL - Warenpost integration
- Improvement: Insert 16%, 5% tax rates for DE on install
- Improvement: Order item meta handling and unit price (re-) calculation
- Improvement: Added min_age to wpml-config.xml
- Improvement: Added protocol to asset URLs
- Improvement: Added is_activated customer DOI field to REST API
- Improvement: Woo Product Addons compatibility
- Tweak: Use "Herrn" as title in formatted addresses
- Fix: Screen option settings for Shipments table
- Fix: Renamed wrong field in REST API (age_verification to min_age)
- Fix: Remove additional cancelled email notifications to prevent duplicate mail
Download this release
Release Info
Developer | vendidero |
Plugin | WooCommerce Germanized |
Version | 3.1.10 |
Comparing to | |
See all releases |
Code changes from version 3.1.9 to 3.1.10
- assets/css/admin-activation.css +25 -19
- assets/css/admin-activation.min.css +1 -1
- assets/css/admin-activation.scss +33 -20
- assets/js/admin/settings.js +2 -2
- assets/js/admin/settings.min.js +1 -1
- i18n/languages/woocommerce-germanized-de_DE.mo +0 -0
- i18n/languages/woocommerce-germanized-de_DE.po +308 -298
- i18n/languages/woocommerce-germanized-de_DE_formal.mo +0 -0
- i18n/languages/woocommerce-germanized-de_DE_formal.po +308 -298
- includes/abstracts/abstract-wc-gzd-product.php +5 -56
- includes/admin/class-wc-gzd-admin-welcome.php +16 -15
- includes/api/class-wc-gzd-rest-customers-controller.php +13 -1
- includes/api/class-wc-gzd-rest-products-controller.php +1 -1
- includes/class-wc-gzd-checkout.php +69 -34
- includes/class-wc-gzd-customer-helper.php +7 -0
- includes/class-wc-gzd-emails.php +2 -1
- includes/class-wc-gzd-install.php +9 -9
- includes/class-wc-gzd-order-item-product.php +249 -0
- includes/class-wc-gzd-order-item.php +56 -0
- includes/compatibility/class-wc-gzd-compatibility-woocommerce-product-addons.php +21 -5
- includes/emails/class-wc-gzd-email-customer-on-hold-order.php +2 -1
- includes/emails/class-wc-gzd-email-customer-processing-order.php +1 -0
- includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php +1 -1
- includes/wc-gzd-cart-functions.php +39 -27
- includes/wc-gzd-core-functions.php +78 -0
- includes/wc-gzd-order-functions.php +19 -0
- packages/woocommerce-germanized-dhl/assets/js/admin-label.js +65 -0
- packages/woocommerce-germanized-dhl/assets/js/admin-label.min.js +1 -0
- packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php +21 -12
- packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php +93 -17
- packages/woocommerce-germanized-dhl/src/Admin/Admin.php +16 -0
- packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php +4 -4
- packages/woocommerce-germanized-dhl/src/Package.php +1 -1
- packages/woocommerce-germanized-dhl/src/ParcelLocator.php +1 -1
- packages/woocommerce-germanized-dhl/woocommerce-germanized-dhl.php +1 -1
- packages/woocommerce-germanized-shipments/assets/js/admin-shipment-label-backbone.js +2 -0
- packages/woocommerce-germanized-shipments/assets/js/admin-shipment-label-backbone.min.js +1 -1
- packages/woocommerce-germanized-shipments/src/Admin/Admin.php +5 -2
- packages/woocommerce-germanized-shipments/src/Package.php +1 -1
- packages/woocommerce-germanized-shipments/woocommerce-germanized-shipments.php +1 -1
- packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-core.php +1 -1
- packages/woocommerce-trusted-shops/src/Package.php +1 -1
- packages/woocommerce-trusted-shops/woocommerce-trusted-shops.php +1 -1
- readme.txt +15 -2
- vendor/autoload.php +1 -1
- vendor/autoload_packages.php +2 -2
- vendor/composer/autoload_classmap_package.php +68 -68
- vendor/composer/autoload_real.php +4 -4
- vendor/composer/autoload_static.php +4 -4
- vendor/composer/installed.json +21 -21
- woocommerce-germanized.php +13 -17
- wpml-config.xml +1 -0
assets/css/admin-activation.css
CHANGED
@@ -1,3 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
.wc-gzd-news p.price {
|
2 |
font-size: .8em; }
|
3 |
|
@@ -20,25 +45,6 @@
|
|
20 |
.wc-gzd-news .columns.two-col .col {
|
21 |
width: 50%; }
|
22 |
|
23 |
-
.wc-gzd-logo {
|
24 |
-
display: inline-block !important;
|
25 |
-
text-indent: -9999px;
|
26 |
-
width: 298px;
|
27 |
-
vertical-align: top;
|
28 |
-
margin-top: 2rem;
|
29 |
-
height: 89px;
|
30 |
-
background: url(../images/germanized.svg) no-repeat;
|
31 |
-
background-size: 298px auto; }
|
32 |
-
|
33 |
-
.about-text {
|
34 |
-
display: inline-block;
|
35 |
-
padding: 0;
|
36 |
-
max-width: 50%;
|
37 |
-
width: 50%;
|
38 |
-
margin: 0;
|
39 |
-
margin-top: 2rem;
|
40 |
-
margin-left: 5%; }
|
41 |
-
|
42 |
.dashboard_page_wc-gzd-about h1 {
|
43 |
width: 100%;
|
44 |
margin-right: 0; }
|
1 |
+
.wc-gzd-news .about-logo-wrapper {
|
2 |
+
display: flex;
|
3 |
+
flex-wrap: wrap;
|
4 |
+
justify-content: flex-start; }
|
5 |
+
.wc-gzd-news .about-logo-wrapper .wc-gzd-logo {
|
6 |
+
display: inline-block !important;
|
7 |
+
text-indent: -9999px;
|
8 |
+
width: 298px;
|
9 |
+
vertical-align: top;
|
10 |
+
margin-top: 2rem;
|
11 |
+
height: 89px;
|
12 |
+
background: url(../images/germanized.svg) no-repeat;
|
13 |
+
background-size: 298px auto; }
|
14 |
+
.wc-gzd-news .about-logo-wrapper .about-text {
|
15 |
+
display: inline-block;
|
16 |
+
padding: 0;
|
17 |
+
max-width: 50%;
|
18 |
+
width: 50%;
|
19 |
+
margin: 0;
|
20 |
+
margin-top: 1rem;
|
21 |
+
margin-left: 3%; }
|
22 |
+
|
23 |
+
.wc-gzd-news .new-feature img {
|
24 |
+
align-self: flex-start; }
|
25 |
+
|
26 |
.wc-gzd-news p.price {
|
27 |
font-size: .8em; }
|
28 |
|
45 |
.wc-gzd-news .columns.two-col .col {
|
46 |
width: 50%; }
|
47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
.dashboard_page_wc-gzd-about h1 {
|
49 |
width: 100%;
|
50 |
margin-right: 0; }
|
assets/css/admin-activation.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.wc-gzd-news p.price{font-size:.8em}.wc-gzd-news .columns{display:flex;flex-wrap:wrap;margin-left:-1em;margin-right:-1em}.wc-gzd-news .columns *{box-sizing:border-box}.wc-gzd-news .columns .col{margin-right:0;padding:0 1em;width:33.3333%}.wc-gzd-news .columns .col h4 .dashicons{margin-right:5px}.wc-gzd-news .columns .col.align-center{display:inline-flex;align-self:center}.wc-gzd-news .columns.two-col .col{width:50%}.
|
1 |
+
.wc-gzd-news .about-logo-wrapper{display:flex;flex-wrap:wrap;justify-content:flex-start}.wc-gzd-news .about-logo-wrapper .wc-gzd-logo{display:inline-block!important;text-indent:-9999px;width:298px;vertical-align:top;margin-top:2rem;height:89px;background:url(../images/germanized.svg) no-repeat;background-size:298px auto}.wc-gzd-news .about-logo-wrapper .about-text{display:inline-block;padding:0;max-width:50%;width:50%;margin:0;margin-top:1rem;margin-left:3%}.wc-gzd-news .new-feature img{align-self:flex-start}.wc-gzd-news p.price{font-size:.8em}.wc-gzd-news .columns{display:flex;flex-wrap:wrap;margin-left:-1em;margin-right:-1em}.wc-gzd-news .columns *{box-sizing:border-box}.wc-gzd-news .columns .col{margin-right:0;padding:0 1em;width:33.3333%}.wc-gzd-news .columns .col h4 .dashicons{margin-right:5px}.wc-gzd-news .columns .col.align-center{display:inline-flex;align-self:center}.wc-gzd-news .columns.two-col .col{width:50%}.dashboard_page_wc-gzd-about h1{width:100%;margin-right:0}.dashboard_page_wc-gzd-about h3 .wc-gzd-pro{font-size:.7em;margin-left:1em}.dashboard_page_wc-gzd-about .wc-vendipro-features{margin-top:0;border:none;padding-bottom:15px}.dashboard_page_wc-gzd-about .wc-vendipro-features div h4{margin-top:.5em;font-size:1.1em;line-height:1.1em}.vendipro-buttons a,.vendipro-buttons p{display:inline-block}.vendipro-buttons p{font-size:.8em;padding-top:3px;margin:0 0 0 5px}.dashboard_page_wc-gzd-about .changelog{margin-top:3em;border-top:1px solid #ccc;padding-top:0}.dashboard_page_wc-gzd-about .feature-section{border:none}.dashboard_page_wc-gzd-about .vendipro .left{display:inline-block;width:40%;padding-right:2em;vertical-align:top}.dashboard_page_wc-gzd-about .vendipro .right{display:inline-block;vertical-align:top;width:50%}.dashboard_page_wc-gzd-about .vendipro .right p:first-child{margin-top:5px}.dashboard_page_wc-gzd-about .vendipro .left img{width:100%;border:1px solid #ccc;border-radius:3px}.wc-gzd-actions a.button{margin-right:.5em}.wc-gzd-actions .woocommerce-gzd-message .button-primary,.wc-gzd-actions a.button-primary{background-color:#262626!important;border:1px solid #000!important;text-shadow:none!important}.wc-gzd-actions .woocommerce-gzd-message .button-primary:hover,.wc-gzd-actions a.button-primary:hover{background-color:#363636!important;border:1px solid #000!important;text-shadow:none!important}.woocommerce-gzd-message .form-table tr td,.woocommerce-gzd-message .form-table tr th{padding:.7rem 0;margin:0}.woocommerce-gzd-message a.wc-gzd-skip{opacity:.7}div.woocommerce-gzd-message{border-left:4px solid #bb2525!important}div.woocommerce-gzd-message p{max-width:100%!important}
|
assets/css/admin-activation.scss
CHANGED
@@ -1,5 +1,38 @@
|
|
1 |
.wc-gzd-news {
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
p.price {
|
4 |
font-size: .8em;
|
5 |
}
|
@@ -38,26 +71,6 @@
|
|
38 |
}
|
39 |
}
|
40 |
}
|
41 |
-
|
42 |
-
.wc-gzd-logo {
|
43 |
-
display: inline-block !important;
|
44 |
-
text-indent: -9999px;
|
45 |
-
width: 298px;
|
46 |
-
vertical-align: top;
|
47 |
-
margin-top: 2rem;
|
48 |
-
height: 89px;
|
49 |
-
background: url(../images/germanized.svg) no-repeat;
|
50 |
-
background-size: 298px auto;
|
51 |
-
}
|
52 |
-
.about-text {
|
53 |
-
display: inline-block;
|
54 |
-
padding: 0;
|
55 |
-
max-width: 50%;
|
56 |
-
width: 50%;
|
57 |
-
margin: 0;
|
58 |
-
margin-top: 2rem;
|
59 |
-
margin-left: 5%;
|
60 |
-
}
|
61 |
.dashboard_page_wc-gzd-about h1 {
|
62 |
width: 100%;
|
63 |
margin-right: 0;
|
1 |
.wc-gzd-news {
|
2 |
|
3 |
+
.about-logo-wrapper {
|
4 |
+
display: flex;
|
5 |
+
flex-wrap: wrap;
|
6 |
+
justify-content: flex-start;
|
7 |
+
|
8 |
+
.wc-gzd-logo {
|
9 |
+
display: inline-block !important;
|
10 |
+
text-indent: -9999px;
|
11 |
+
width: 298px;
|
12 |
+
vertical-align: top;
|
13 |
+
margin-top: 2rem;
|
14 |
+
height: 89px;
|
15 |
+
background: url(../images/germanized.svg) no-repeat;
|
16 |
+
background-size: 298px auto;
|
17 |
+
}
|
18 |
+
|
19 |
+
.about-text {
|
20 |
+
display: inline-block;
|
21 |
+
padding: 0;
|
22 |
+
max-width: 50%;
|
23 |
+
width: 50%;
|
24 |
+
margin: 0;
|
25 |
+
margin-top: 1rem;
|
26 |
+
margin-left: 3%;
|
27 |
+
}
|
28 |
+
}
|
29 |
+
|
30 |
+
.new-feature {
|
31 |
+
img {
|
32 |
+
align-self: flex-start;
|
33 |
+
}
|
34 |
+
}
|
35 |
+
|
36 |
p.price {
|
37 |
font-size: .8em;
|
38 |
}
|
71 |
}
|
72 |
}
|
73 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
.dashboard_page_wc-gzd-about h1 {
|
75 |
width: 100%;
|
76 |
margin-right: 0;
|
assets/js/admin/settings.js
CHANGED
@@ -27,13 +27,13 @@ window.germanized = window.germanized || {};
|
|
27 |
.on( 'change', 'input[name=woocommerce_gzd_dispute_resolution_type]', this.onChangeDisputeResolutionType )
|
28 |
.on( 'click', 'a.woocommerce-gzd-input-toggle-trigger', this.onInputToogleClick )
|
29 |
.on( 'change', '.wc-gzd-setting-tabs input.woocommerce-gzd-tab-status-checkbox', this.onChangeTabStatus )
|
30 |
-
.on( 'change', '.wc-gzd-admin-settings :input', this.onChangeInput );
|
31 |
|
32 |
$( document.body )
|
33 |
.on( 'woocommerce_gzd_setting_field_visible', this.onShowField )
|
34 |
.on( 'woocommerce_gzd_setting_field_invisible', this.onHideField );
|
35 |
|
36 |
-
$( '.wc-gzd-admin-settings :input' ).trigger( '
|
37 |
$( 'input[name=woocommerce_gzd_dispute_resolution_type]:checked' ).trigger( 'change' );
|
38 |
|
39 |
this.initMailSortable();
|
27 |
.on( 'change', 'input[name=woocommerce_gzd_dispute_resolution_type]', this.onChangeDisputeResolutionType )
|
28 |
.on( 'click', 'a.woocommerce-gzd-input-toggle-trigger', this.onInputToogleClick )
|
29 |
.on( 'change', '.wc-gzd-setting-tabs input.woocommerce-gzd-tab-status-checkbox', this.onChangeTabStatus )
|
30 |
+
.on( 'change gzd_show_or_hide_fields', '.wc-gzd-admin-settings :input', this.onChangeInput );
|
31 |
|
32 |
$( document.body )
|
33 |
.on( 'woocommerce_gzd_setting_field_visible', this.onShowField )
|
34 |
.on( 'woocommerce_gzd_setting_field_invisible', this.onHideField );
|
35 |
|
36 |
+
$( '.wc-gzd-admin-settings :input' ).trigger( 'gzd_show_or_hide_fields' );
|
37 |
$( 'input[name=woocommerce_gzd_dispute_resolution_type]:checked' ).trigger( 'change' );
|
38 |
|
39 |
this.initMailSortable();
|
assets/js/admin/settings.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
window.germanized=window.germanized||{},function(d,c){c.settings={params:{},init:function(){var e=this;this.params=wc_gzd_admin_settings_params;try{d(document.body).on("wc-enhanced-select-init wc-gzd-enhanced-select-init",this.onEnhancedSelectInit).trigger("wc-gzd-enhanced-select-init")}catch(e){window.console.log(e)}d(document).on("change","input[name=woocommerce_gzd_dispute_resolution_type]",this.onChangeDisputeResolutionType).on("click","a.woocommerce-gzd-input-toggle-trigger",this.onInputToogleClick).on("change",".wc-gzd-setting-tabs input.woocommerce-gzd-tab-status-checkbox",this.onChangeTabStatus).on("change",".wc-gzd-admin-settings :input",this.onChangeInput),d(document.body).on("woocommerce_gzd_setting_field_visible",this.onShowField).on("woocommerce_gzd_setting_field_invisible",this.onHideField),d(".wc-gzd-admin-settings :input").trigger("
|
1 |
+
window.germanized=window.germanized||{},function(d,c){c.settings={params:{},init:function(){var e=this;this.params=wc_gzd_admin_settings_params;try{d(document.body).on("wc-enhanced-select-init wc-gzd-enhanced-select-init",this.onEnhancedSelectInit).trigger("wc-gzd-enhanced-select-init")}catch(e){window.console.log(e)}d(document).on("change","input[name=woocommerce_gzd_dispute_resolution_type]",this.onChangeDisputeResolutionType).on("click","a.woocommerce-gzd-input-toggle-trigger",this.onInputToogleClick).on("change",".wc-gzd-setting-tabs input.woocommerce-gzd-tab-status-checkbox",this.onChangeTabStatus).on("change gzd_show_or_hide_fields",".wc-gzd-admin-settings :input",this.onChangeInput),d(document.body).on("woocommerce_gzd_setting_field_visible",this.onShowField).on("woocommerce_gzd_setting_field_invisible",this.onHideField),d(".wc-gzd-admin-settings :input").trigger("gzd_show_or_hide_fields"),d("input[name=woocommerce_gzd_dispute_resolution_type]:checked").trigger("change"),this.initMailSortable(),d(document.body).on("init_tooltips",function(){e.initTipTips()}),e.initTipTip()},initTipTip:function(){d(".wc-gzd-setting-tab-actions a.button").tipTip({fadeIn:50,fadeOut:50,delay:200})},onChangeTabStatus:function(){var e=d(this),t=c.settings,i=e.data("tab"),o=e.parents("td").find(".woocommerce-gzd-input-toggle"),n=o.parents("a"),s=e.is(":checked")?"yes":"no",a={action:"woocommerce_gzd_toggle_tab_enabled",security:t.params.tab_toggle_nonce,enable:s,tab:i};return o.addClass("woocommerce-input-toggle--loading"),d.ajax({url:t.params.ajax_url,data:a,dataType:"json",type:"POST",success:function(e){!0===e.data?(o.removeClass("woocommerce-input-toggle--enabled, woocommerce-input-toggle--disabled"),o.addClass("woocommerce-input-toggle--enabled"),o.removeClass("woocommerce-input-toggle--loading"),e.hasOwnProperty("message")&&0<e.message.length&&(d(".wc-gzd-setting-tabs").before('<div class="error inline" id="message"><p>'+e.message+"</p></div>"),d("html, body").animate({scrollTop:d("#message").offset().top-32},1e3))):!1===e.data?(o.removeClass("woocommerce-input-toggle--enabled, woocommerce-input-toggle--disabled"),o.addClass("woocommerce-input-toggle--disabled"),o.removeClass("woocommerce-input-toggle--loading")):"needs_setup"===e.data&&(window.location.href=n.attr("href"))}}),!1},onShowField:function(e,t,o,i){t.parents("table").find(":input[data-show_if_"+o+"]").each(function(){d(this).data("show_if_"+o);var e=d(this).val(),t=d(this).attr("name").replace(/[\[\]']+/g,""),i=d(this).parents("tr");i.removeClass("wc-gzd-setting-invisible"),i.addClass("wc-gzd-setting-visible"),d(document.body).trigger("woocommerce_gzd_setting_field_visible",[i,t,e])})},onHideField:function(e,t,o,i){t.parents("table").find(":input[data-show_if_"+o+"]").each(function(){d(this).data("show_if_"+o);var e=d(this).val(),t=d(this).attr("name").replace(/[\[\]']+/g,""),i=d(this).parents("tr");i.removeClass("wc-gzd-setting-visible"),i.addClass("wc-gzd-setting-invisible"),d(document.body).trigger("woocommerce_gzd_setting_field_invisible",[i,t,e])})},onChangeInput:function(){d(this).parents("tr").find(":input:not(.select2-focusser, .select2-input)").each(function(){var n,s,e,t,i,o=d(this),a=!1,c=d(this).attr("name");(o.is(":checked")||o.is(":selected"))&&(a=!0,o.parents("tr").is(":visible")||(a=!1)),void 0!==c&&!1!==c&&(n=c.replace(/[\[\]']+/g,""),s=o.val(),e=d(".wc-gzd-admin-settings").find(":input[data-show_if_"+n+"]"),o.is(":checkbox")&&(s=o.is(":checked")?"yes":"no",o.parents("tr").is(":visible")||(s="no")),e.each(function(){var e=d(this).data("show_if_"+n),t=d(this).val(),i=d(this).attr("name").replace(/[\[\]']+/g,""),o=d(this).parents("tr");o.removeClass("wc-gzd-setting-visible wc-gzd-setting-invisible"),void 0!==e&&0<e.length?s===e?(o.addClass("wc-gzd-setting-visible"),d(document.body).trigger("woocommerce_gzd_setting_field_visible",[o,i,t])):(o.addClass("wc-gzd-setting-invisible"),d(document.body).trigger("woocommerce_gzd_setting_field_invisible",[o,i,t])):a?(o.addClass("wc-gzd-setting-visible"),d(document.body).trigger("woocommerce_gzd_setting_field_visible",[o,i,t])):(o.addClass("wc-gzd-setting-invisible"),d(document.body).trigger("woocommerce_gzd_setting_field_invisible",[o,i,t]))}),t=d(this).parents(".form-table"),i=!1,t.find("tr").each(function(){if(!d(this).hasClass("wc-gzd-setting-invisible"))return!(i=!0)}),i?t.show():t.hide())})},onEnhancedSelectInit:function(){d(":input.wc-gzd-enhanced-tags").filter(":not(.enhanced)").each(function(){var e={minimumResultsForSearch:10,allowClear:!!d(this).data("allow_clear"),placeholder:d(this).data("placeholder"),tags:!0};d(this).selectWoo(e).addClass("enhanced")})},onParcelDeliveryShowSpecial:function(){"shipping_methods"===d(this).val()?d("select#woocommerce_gzd_checkboxes_parcel_delivery_show_shipping_methods").parents("tr").show():d("select#woocommerce_gzd_checkboxes_parcel_delivery_show_shipping_methods").parents("tr").hide()},onChangeDisputeResolutionType:function(){var e=d(this).val();d("#woocommerce_gzd_alternative_complaints_text_"+e);d("[id^=woocommerce_gzd_alternative_complaints_text_]").parents("tr").hide(),d("#woocommerce_gzd_alternative_complaints_text_"+e).parents("tr").show()},onInputToogleClick:function(){var e=d(this).find("span.woocommerce-gzd-input-toggle"),t=e.parents("fieldset").find("input[type=checkbox]"),i=e.hasClass("woocommerce-input-toggle--enabled");return e.removeClass("woocommerce-input-toggle--enabled"),e.removeClass("woocommerce-input-toggle--disabled"),i?(t.prop("checked",!1),e.addClass("woocommerce-input-toggle--disabled")):(t.prop("checked",!0),e.addClass("woocommerce-input-toggle--enabled")),t.trigger("change"),!1},initMailSortable:function(){var o;0<d("#woocommerce_gzd_mail_attach_imprint").length&&(o=d("#woocommerce_gzd_mail_attach_imprint").parents("table"),d(o).find("tbody").sortable({items:"tr",cursor:"move",axis:"y",handle:"td, th",scrollSensitivity:40,helper:function(e,t){return t.children().each(function(){jQuery(this).width(jQuery(this).width())}),t.css("left","0"),t},start:function(e,t){t.item.css("background-color","#f6f6f6")},stop:function(e,t){t.item.removeAttr("style");var i=[];d(o).find("tr select").each(function(){i.push(d(this).attr("id").replace("woocommerce_gzd_mail_attach_",""))}),d("#woocommerce_gzd_mail_attach_order").val(i.join())}}))}},d(document).ready(function(){c.settings.init()})}(jQuery,window.germanized);
|
i18n/languages/woocommerce-germanized-de_DE.mo
CHANGED
Binary file
|
i18n/languages/woocommerce-germanized-de_DE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce Germanized\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2020-
|
6 |
-
"PO-Revision-Date: 2020-
|
7 |
"Last-Translator: holzhannes <holzhannes@posteo.de>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE\n"
|
@@ -106,7 +106,7 @@ msgstr "Firma"
|
|
106 |
|
107 |
# @ woocommerce-germanized
|
108 |
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:139
|
109 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
110 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:747
|
111 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:816
|
112 |
msgctxt "dhl"
|
@@ -121,7 +121,7 @@ msgstr "Hausnummer"
|
|
121 |
|
122 |
# @ woocommerce-germanized
|
123 |
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:159
|
124 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
125 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:768
|
126 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:837
|
127 |
#: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:27
|
@@ -131,7 +131,7 @@ msgstr "Postleitzahl"
|
|
131 |
|
132 |
# @ woocommerce-germanized
|
133 |
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:168
|
134 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
135 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:761
|
136 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:830
|
137 |
#: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:30
|
@@ -174,57 +174,57 @@ msgctxt "dhl"
|
|
174 |
msgid "Age check"
|
175 |
msgstr "Alterssichtprüfung"
|
176 |
|
177 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:
|
178 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:
|
179 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:531
|
180 |
msgctxt "dhl"
|
181 |
msgid "GoGreen"
|
182 |
msgstr "GoGreen"
|
183 |
|
184 |
# @ woocommerce-germanized
|
185 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:
|
186 |
msgctxt "dhl"
|
187 |
msgid "Additional insurance"
|
188 |
msgstr "Transportversicherung"
|
189 |
|
190 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:
|
191 |
msgctxt "dhl"
|
192 |
msgid "Retail outlet routing"
|
193 |
msgstr "Filialrouting"
|
194 |
|
195 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:
|
196 |
msgctxt "dhl"
|
197 |
msgid "No neighbor"
|
198 |
msgstr "Keine Nachbarschaftszustellung"
|
199 |
|
200 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:
|
201 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:559
|
202 |
msgctxt "dhl"
|
203 |
msgid "Named person only"
|
204 |
msgstr "Persönliche Übergabe"
|
205 |
|
206 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:
|
207 |
msgctxt "dhl"
|
208 |
msgid "Bulky goods"
|
209 |
msgstr "Sperrgut"
|
210 |
|
211 |
# @ woocommerce-germanized
|
212 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:
|
213 |
msgctxt "dhl"
|
214 |
msgid "Identity check"
|
215 |
msgstr "Ident-Check"
|
216 |
|
217 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:
|
218 |
msgctxt "dhl"
|
219 |
msgid "Date of Birth"
|
220 |
msgstr "Geburtsdatum"
|
221 |
|
222 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:
|
223 |
msgctxt "dhl"
|
224 |
msgid "Minimum age"
|
225 |
msgstr "Mindestalter"
|
226 |
|
227 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:
|
228 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:580
|
229 |
msgctxt "dhl"
|
230 |
msgid "Premium"
|
@@ -382,7 +382,7 @@ msgstr "Retourensendung #{shipment_id} zur Bestellung #{order_id}"
|
|
382 |
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:224
|
383 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:184
|
384 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:485
|
385 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
386 |
#: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:38
|
387 |
msgctxt "dhl"
|
388 |
msgid "Packstation"
|
@@ -400,51 +400,51 @@ msgctxt "dhl"
|
|
400 |
msgid "Receiver is missing or does not exist."
|
401 |
msgstr "Empfänger fehlt oder existiert nicht."
|
402 |
|
403 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
404 |
#, php-format
|
405 |
msgctxt "dhl"
|
406 |
msgid "Shipment order #%s does not exist"
|
407 |
msgstr "Bestellung zur Sendung #%s existiert nicht"
|
408 |
|
409 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
410 |
#, php-format
|
411 |
msgctxt "dhl"
|
412 |
msgid "%s of the return address is a mandatory field."
|
413 |
msgstr "%s der Rücksendeadresse ist ein Pflichtfeld."
|
414 |
|
415 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
416 |
msgctxt "dhl"
|
417 |
msgid "Please either add a return company or name."
|
418 |
msgstr ""
|
419 |
"Bitte gib entweder einen Firmennamen oder Namen für die Rücksendeadresse an."
|
420 |
|
421 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
422 |
msgctxt "dhl"
|
423 |
msgid "Error while parsing preferred day."
|
424 |
msgstr "Fehler beim Einlesen des Wunschtags."
|
425 |
|
426 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
427 |
msgctxt "dhl"
|
428 |
msgid "Error while parsing preferred time."
|
429 |
msgstr "Fehler beim Einlesen der Wunschzeit."
|
430 |
|
431 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
432 |
msgctxt "dhl"
|
433 |
msgid "The visual min age check is invalid."
|
434 |
msgstr "Das Alter der Alterssichtprüfung ist ungültig."
|
435 |
|
436 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
437 |
msgctxt "dhl"
|
438 |
msgid "The ident min age check is invalid."
|
439 |
msgstr "Das Alter des Ident-Checks ist ungültig."
|
440 |
|
441 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
442 |
msgctxt "dhl"
|
443 |
msgid "There was an error parsing the date of birth for the identity check."
|
444 |
msgstr ""
|
445 |
"Beim Einlesen des Geburtsdatums für den Ident-Check trat ein Problem auf."
|
446 |
|
447 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
448 |
msgctxt "dhl"
|
449 |
msgid ""
|
450 |
"Either a minimum age or a date of birth must be added to the ident check."
|
@@ -453,151 +453,151 @@ msgstr ""
|
|
453 |
"hinzugefügt werden."
|
454 |
|
455 |
# @ woocommerce-germanized
|
456 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
457 |
#, php-format
|
458 |
msgctxt "dhl"
|
459 |
msgid "%s duties element does not exist."
|
460 |
msgstr "%s Zollabgabe existiert nicht."
|
461 |
|
462 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:879
|
463 |
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:954
|
|
|
464 |
msgctxt "dhl"
|
465 |
msgid "Invalid shipment"
|
466 |
msgstr "Ungültige Sendung"
|
467 |
|
468 |
# @ woocommerce-germanized
|
469 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:883
|
470 |
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:958
|
|
|
471 |
msgctxt "dhl"
|
472 |
msgid "Order does not exist"
|
473 |
msgstr "Bestellung existiert nicht"
|
474 |
|
475 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
476 |
msgctxt "dhl"
|
477 |
msgid "Error while creating the label instance"
|
478 |
msgstr "Fehler beim Erstellen der Label-Instanz"
|
479 |
|
480 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
481 |
msgctxt "dhl"
|
482 |
msgid "Invalid label"
|
483 |
msgstr "Ungültiges Label"
|
484 |
|
485 |
# @ woocommerce-germanized
|
486 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
487 |
msgctxt "dhl"
|
488 |
msgid "DHL Retoure International A"
|
489 |
msgstr "DHL Retoure International A"
|
490 |
|
491 |
# @ woocommerce-germanized
|
492 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
493 |
msgctxt "dhl"
|
494 |
msgid "DHL Retoure International B"
|
495 |
msgstr "DHL Retoure International B"
|
496 |
|
497 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
498 |
msgctxt "dhl"
|
499 |
msgid "DHL Retoure Online"
|
500 |
msgstr "DHL Retoure Online"
|
501 |
|
502 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
503 |
msgctxt "dhl"
|
504 |
msgid "DHL Paket Connect"
|
505 |
msgstr "DHL Paket Connect"
|
506 |
|
507 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
508 |
msgctxt "dhl"
|
509 |
msgid "DHL Europaket (B2B)"
|
510 |
msgstr "DHL Europaket (B2B)"
|
511 |
|
512 |
# @ woocommerce-germanized
|
513 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
514 |
msgctxt "dhl"
|
515 |
msgid "DHL Paket International"
|
516 |
msgstr "DHL Paket International"
|
517 |
|
518 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
519 |
msgctxt "dhl"
|
520 |
msgid "DHL Paket"
|
521 |
msgstr "DHL Paket"
|
522 |
|
523 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
524 |
msgctxt "dhl"
|
525 |
msgid "DHL Paket PRIO"
|
526 |
msgstr "DHL Paket PRIO"
|
527 |
|
528 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
529 |
msgctxt "dhl"
|
530 |
msgid "DHL Paket Taggleich"
|
531 |
msgstr "DHL Paket Taggleich"
|
532 |
|
533 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
534 |
msgctxt "dhl"
|
535 |
msgid "Error while uploading label."
|
536 |
msgstr "Fehler beim Hochladen des Labels."
|
537 |
|
538 |
# @ woocommerce-germanized
|
539 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
540 |
msgctxt "dhl"
|
541 |
msgid "Receiver Ids"
|
542 |
msgstr "Empfänger IDs"
|
543 |
|
544 |
# @ woocommerce-germanized
|
545 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
546 |
msgctxt "dhl"
|
547 |
msgid "Receiver Id"
|
548 |
msgstr "Empfänger ID"
|
549 |
|
550 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
551 |
msgctxt "dhl"
|
552 |
msgid "Find your Receiver Ids within your DHL contract data."
|
553 |
msgstr "Die Empfänger IDs findest du im DHL Geschäftskundenportal."
|
554 |
|
555 |
# @ woocommerce-germanized
|
556 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
557 |
msgctxt "dhl"
|
558 |
msgid "Country Code"
|
559 |
msgstr "Ländercode"
|
560 |
|
561 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
562 |
msgctxt "dhl"
|
563 |
msgid "Leave empty to use the Receiver Id as fallback."
|
564 |
msgstr "Leer lassen, um diese Empfänger ID als Fallback zu verwenden."
|
565 |
|
566 |
# @ woocommerce-germanized
|
567 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
568 |
msgctxt "dhl"
|
569 |
msgid "+ Add receiver"
|
570 |
msgstr "+ Empfänger hinzufügen"
|
571 |
|
572 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
573 |
msgctxt "dhl"
|
574 |
msgid "Remove selected receiver(s)"
|
575 |
msgstr "Ausgewählte Empfänger löschen"
|
576 |
|
577 |
# @ woocommerce-germanized
|
578 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
579 |
msgctxt "dhl"
|
580 |
msgid "Select a country"
|
581 |
msgstr "Land auswählen"
|
582 |
|
583 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
584 |
msgctxt "dhl"
|
585 |
msgid "Harmonized Tariff Schedule (DHL)"
|
586 |
msgstr "Harmonized Tariff Schedule (DHL)"
|
587 |
|
588 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
589 |
msgctxt "dhl"
|
590 |
msgid "This code is needed for customs of international shipping."
|
591 |
msgstr ""
|
592 |
"Dieser Code wird für die Zollabwicklung bei internationalen Sendungen "
|
593 |
"benötigt."
|
594 |
|
595 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
596 |
msgctxt "dhl"
|
597 |
msgid "Country of manufacture (DHL)"
|
598 |
msgstr "Herstellungsland (DHL)"
|
599 |
|
600 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
601 |
msgctxt "dhl"
|
602 |
msgid ""
|
603 |
"The country of manufacture is needed for customs of international shipping."
|
@@ -605,7 +605,7 @@ msgstr ""
|
|
605 |
"Das Herstellungsland wird für die Zollabwicklung bei internationalen "
|
606 |
"Sendungen benötigt."
|
607 |
|
608 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
609 |
#, php-format
|
610 |
msgctxt "dhl"
|
611 |
msgid ""
|
@@ -615,18 +615,18 @@ msgstr ""
|
|
615 |
"Das Verzeichnis zum Speichern von DHL Labels fehlt. Bitte erstelle den "
|
616 |
"Ordner %s manuell und stelle sicher, dass der Ordner beschreibbar ist."
|
617 |
|
618 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
619 |
#: woocommerce-germanized-dhl/src/ShippingProviderDHL.php:34
|
620 |
msgctxt "dhl"
|
621 |
msgid "DHL"
|
622 |
msgstr "DHL"
|
623 |
|
624 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
625 |
msgctxt "dhl"
|
626 |
msgid "DHL Label"
|
627 |
msgstr "DHL Label"
|
628 |
|
629 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
630 |
msgctxt "dhl"
|
631 |
msgid ""
|
632 |
"This label has been generated by the DHL for WooCommerce Plugin and is shown "
|
@@ -636,7 +636,7 @@ msgstr ""
|
|
636 |
"Kompatibilitäts-Gründen angezeigt."
|
637 |
|
638 |
# @ woocommerce-germanized
|
639 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
640 |
msgctxt "dhl"
|
641 |
msgid "Download label"
|
642 |
msgstr "Label downloaden"
|
@@ -1885,8 +1885,8 @@ msgstr "Deutschland"
|
|
1885 |
|
1886 |
# @ woocommerce-germanized
|
1887 |
#: woocommerce-germanized-dhl/src/ParcelLocator.php:89
|
1888 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1889 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1890 |
msgctxt "dhl"
|
1891 |
msgid "Address Type"
|
1892 |
msgstr "Adresstyp"
|
@@ -1911,30 +1911,30 @@ msgstr ""
|
|
1911 |
"eintragen."
|
1912 |
|
1913 |
#: woocommerce-germanized-dhl/src/ParcelLocator.php:185
|
1914 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1915 |
msgctxt "dhl"
|
1916 |
msgid "Invalid address type."
|
1917 |
msgstr "Ungültiger Adresstyp."
|
1918 |
|
1919 |
# @ woocommerce-germanized
|
1920 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1921 |
msgctxt "dhl"
|
1922 |
msgid "Sorry, but delivery to packstation is not available."
|
1923 |
msgstr ""
|
1924 |
"Entschuldigung, die Lieferung an eine Packstation steht nicht zur Verfügung."
|
1925 |
|
1926 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1927 |
msgctxt "dhl"
|
1928 |
msgid "Sorry, but delivery to parcel shops is not available."
|
1929 |
msgstr ""
|
1930 |
"Entschuldigung, die Lieferung an einen Paketshop steht nicht zur Verfügung."
|
1931 |
|
1932 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1933 |
msgctxt "dhl"
|
1934 |
msgid "Sorry, but delivery to post offices is not available."
|
1935 |
msgstr "Entschuldigung, die Lieferung an Postfilialen ist nicht verfügbar."
|
1936 |
|
1937 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1938 |
#, php-format
|
1939 |
msgctxt "dhl"
|
1940 |
msgid "Please indicate shipment to %s by one of the following values: %s."
|
@@ -1942,7 +1942,7 @@ msgstr ""
|
|
1942 |
"Bitte identifiziere die Lieferung an %s durch die Eingabe einer der "
|
1943 |
"folgenden Werte: %s."
|
1944 |
|
1945 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1946 |
msgctxt "dhl"
|
1947 |
msgid ""
|
1948 |
"Your DHL customer number (Post number) is not valid. Please check your "
|
@@ -1951,7 +1951,7 @@ msgstr ""
|
|
1951 |
"Deine DHL Kundennummer (Postnummer) ist nicht gültig. Bitte überprüfe deine "
|
1952 |
"Eingabe."
|
1953 |
|
1954 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1955 |
msgctxt "dhl"
|
1956 |
msgid ""
|
1957 |
"Your DHL customer number (Post number) is needed to ship to a packstation."
|
@@ -1959,64 +1959,64 @@ msgstr ""
|
|
1959 |
"Deine DHL Kundennummer (Postnummer) wird für den Versand an eine Packstation "
|
1960 |
"benötigt."
|
1961 |
|
1962 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1963 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1964 |
msgctxt "dhl"
|
1965 |
msgid "Branch"
|
1966 |
msgstr "Filiale"
|
1967 |
|
1968 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1969 |
msgctxt "dhl"
|
1970 |
msgid "Postnumber "
|
1971 |
msgstr "Postnummer "
|
1972 |
|
1973 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1974 |
#, php-format
|
1975 |
msgctxt "dhl"
|
1976 |
msgid "e.g. %s 456"
|
1977 |
msgstr "z.B. %s 456"
|
1978 |
|
1979 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1980 |
msgctxt "dhl"
|
1981 |
msgid "Branches"
|
1982 |
msgstr "Filialen"
|
1983 |
|
1984 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1985 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1986 |
msgctxt "dhl"
|
1987 |
msgid "DHL customer number (Post number)"
|
1988 |
msgstr "DHL Kundennummer (Postnummer)"
|
1989 |
|
1990 |
# @ woocommerce-germanized
|
1991 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1992 |
msgctxt "dhl"
|
1993 |
msgid "Regular Address"
|
1994 |
msgstr "Normale Adresse"
|
1995 |
|
1996 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1997 |
msgctxt "dhl"
|
1998 |
msgid "Not yet a DHL customer?"
|
1999 |
msgstr "Noch kein DHL Kunde?"
|
2000 |
|
2001 |
# @ woocommerce-germanized
|
2002 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2003 |
msgctxt "dhl"
|
2004 |
msgid "Register now"
|
2005 |
msgstr "Jetzt registrieren"
|
2006 |
|
2007 |
# @ woocommerce-germanized
|
2008 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2009 |
#, php-format
|
2010 |
msgctxt "dhl"
|
2011 |
msgid "Search %s"
|
2012 |
msgstr "%s suchen"
|
2013 |
|
2014 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2015 |
msgctxt "dhl"
|
2016 |
msgid "No DHL locations found"
|
2017 |
msgstr "Keine DHL Standorte gefunden"
|
2018 |
|
2019 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2020 |
#, php-format
|
2021 |
msgctxt "dhl"
|
2022 |
msgid ""
|
@@ -2027,12 +2027,12 @@ msgstr ""
|
|
2027 |
"%s oder %s."
|
2028 |
|
2029 |
# @ woocommerce-germanized
|
2030 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2031 |
msgctxt "dhl"
|
2032 |
msgid "DHL location"
|
2033 |
msgstr "DHL Standort"
|
2034 |
|
2035 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2036 |
msgctxt "dhl"
|
2037 |
msgid "retry"
|
2038 |
msgstr "Erneut versuchen"
|
@@ -2266,7 +2266,7 @@ msgstr "LxBxH in dezimaler Form."
|
|
2266 |
|
2267 |
# @ woocommerce-germanized
|
2268 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:47
|
2269 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2270 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:24
|
2271 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:688
|
2272 |
msgctxt "shipments"
|
@@ -2312,14 +2312,14 @@ msgstr "Position hinzufügen"
|
|
2312 |
|
2313 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:178
|
2314 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:45
|
2315 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2316 |
msgctxt "shipments"
|
2317 |
msgid "Item"
|
2318 |
msgstr "Position"
|
2319 |
|
2320 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:179
|
2321 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:46
|
2322 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2323 |
#: woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:55
|
2324 |
#: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:37
|
2325 |
#: woocommerce-germanized-shipments/templates/shipment/shipment-details.php:60
|
@@ -2399,9 +2399,9 @@ msgstr "Löschen"
|
|
2399 |
|
2400 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-list.php:22
|
2401 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:76
|
2402 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2403 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2404 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2405 |
#: woocommerce-germanized-shipments/src/Admin/Settings.php:80
|
2406 |
#: woocommerce-germanized-shipments/src/Admin/Settings.php:177
|
2407 |
#: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:36
|
@@ -2418,10 +2418,10 @@ msgstr "%s #%s"
|
|
2418 |
# @ woocommerce-germanized
|
2419 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:19
|
2420 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:69
|
2421 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2422 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2423 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2424 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2425 |
#: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:20
|
2426 |
msgctxt "shipments"
|
2427 |
msgid "Shipments"
|
@@ -2515,7 +2515,7 @@ msgid "Download"
|
|
2515 |
msgstr "Download"
|
2516 |
|
2517 |
#: woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:39
|
2518 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2519 |
msgctxt "shipments"
|
2520 |
msgid "Create new label"
|
2521 |
msgstr "Neues Label erstellen"
|
@@ -2683,8 +2683,8 @@ msgid "Text to appear below the main email content."
|
|
2683 |
msgstr "Text der unterhalb des Inhalts der E-Mail angezeigt werden soll."
|
2684 |
|
2685 |
#: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:356
|
2686 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2687 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2688 |
#: woocommerce-germanized-shipments/templates/shipment/shipment-details-address.php:28
|
2689 |
msgctxt "shipments"
|
2690 |
msgid "N/A"
|
@@ -2701,7 +2701,7 @@ msgid "Choose which format of email to send."
|
|
2701 |
msgstr "Format für E-Mail-Versand auswählen."
|
2702 |
|
2703 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:68
|
2704 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2705 |
msgctxt "shipments"
|
2706 |
msgid "Shipment"
|
2707 |
msgstr "Sendung"
|
@@ -2724,7 +2724,7 @@ msgstr "Teilweise versandt"
|
|
2724 |
|
2725 |
# @ woocommerce-germanized
|
2726 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:104
|
2727 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2728 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:854
|
2729 |
msgctxt "shipments"
|
2730 |
msgid "Shipped"
|
@@ -2745,49 +2745,49 @@ msgctxt "shipments"
|
|
2745 |
msgid "Returned"
|
2746 |
msgstr "Retourniert"
|
2747 |
|
2748 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2749 |
msgctxt "shipments"
|
2750 |
msgid "Draft"
|
2751 |
msgstr "Entwurf"
|
2752 |
|
2753 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2754 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:846
|
2755 |
msgctxt "shipments"
|
2756 |
msgid "Processing"
|
2757 |
msgstr "In Bearbeitung"
|
2758 |
|
2759 |
# @ woocommerce-germanized
|
2760 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2761 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:50
|
2762 |
msgctxt "shipments"
|
2763 |
msgid "Delivered"
|
2764 |
msgstr "Geliefert"
|
2765 |
|
2766 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2767 |
msgctxt "shipments"
|
2768 |
msgid "Requested"
|
2769 |
msgstr "Beantragt"
|
2770 |
|
2771 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2772 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:81
|
2773 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:135
|
2774 |
msgctxt "shipments"
|
2775 |
msgid "Invalid order."
|
2776 |
msgstr "Ungültige Bestellung."
|
2777 |
|
2778 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2779 |
msgctxt "shipments"
|
2780 |
msgid "This order is already fully returned."
|
2781 |
msgstr "Diese Bestellung wurde bereits vollständig zurückgesendet."
|
2782 |
|
2783 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2784 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2785 |
msgctxt "shipments"
|
2786 |
msgid "Error while creating the shipment instance"
|
2787 |
msgstr "Fehler beim Erstellen der Sendungsinstanz"
|
2788 |
|
2789 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2790 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2791 |
#: woocommerce-germanized-shipments/src/ReturnShipment.php:429
|
2792 |
#: woocommerce-germanized-shipments/src/ReturnShipment.php:489
|
2793 |
#: woocommerce-germanized-shipments/src/SimpleShipment.php:118
|
@@ -2796,57 +2796,57 @@ msgctxt "shipments"
|
|
2796 |
msgid "Invalid shipment order"
|
2797 |
msgstr "Ungültige Bestellung zur Sendung"
|
2798 |
|
2799 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2800 |
msgctxt "shipments"
|
2801 |
msgid "Invalid order item"
|
2802 |
msgstr "Ungültige Bestellposition"
|
2803 |
|
2804 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2805 |
msgctxt "shipments"
|
2806 |
msgid "Invalid shipment item"
|
2807 |
msgstr "Ungültige Sendungsposition"
|
2808 |
|
2809 |
# @ woocommerce-germanized
|
2810 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2811 |
msgctxt "shipments"
|
2812 |
msgid "None"
|
2813 |
msgstr "Keiner"
|
2814 |
|
2815 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2816 |
msgctxt "shipments"
|
2817 |
msgid "Error while uploading file."
|
2818 |
msgstr "Fehler beim Hochladen der Datei."
|
2819 |
|
2820 |
# @ woocommerce-germanized
|
2821 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2822 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:23
|
2823 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:687
|
2824 |
msgctxt "shipments"
|
2825 |
msgid "Date"
|
2826 |
msgstr "Datum"
|
2827 |
|
2828 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2829 |
#: woocommerce-germanized-shipments/templates/shipment/shipment-details-tracking.php:23
|
2830 |
msgctxt "shipments"
|
2831 |
msgid "Tracking"
|
2832 |
msgstr "Sendungsverfolgung"
|
2833 |
|
2834 |
# @ woocommerce-germanized
|
2835 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2836 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2837 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:30
|
2838 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:694
|
2839 |
msgctxt "shipments"
|
2840 |
msgid "Actions"
|
2841 |
msgstr "Aktionen"
|
2842 |
|
2843 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2844 |
msgctxt "shipments"
|
2845 |
msgid "View"
|
2846 |
msgstr "Anzeigen"
|
2847 |
|
2848 |
# @ woocommerce-germanized
|
2849 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2850 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:865
|
2851 |
#: woocommerce-germanized-shipments/src/Ajax.php:336
|
2852 |
msgctxt "shipments"
|
@@ -2885,25 +2885,25 @@ msgid "View order"
|
|
2885 |
msgstr "Bestellung ansehen"
|
2886 |
|
2887 |
# @ woocommerce-germanized
|
2888 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2889 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2890 |
#: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:36
|
2891 |
msgctxt "shipments"
|
2892 |
msgid "Reason"
|
2893 |
msgstr "Rücksendegrund"
|
2894 |
|
2895 |
# @ woocommerce-germanized
|
2896 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2897 |
msgctxt "shipments"
|
2898 |
msgid "Return reasons"
|
2899 |
msgstr "Rücksendegründe"
|
2900 |
|
2901 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2902 |
msgctxt "shipments"
|
2903 |
msgid "Reason code"
|
2904 |
msgstr "Rücksendegrund (Code)"
|
2905 |
|
2906 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2907 |
msgctxt "shipments"
|
2908 |
msgid "The reason code is used to identify the reason."
|
2909 |
msgstr ""
|
@@ -2911,56 +2911,56 @@ msgstr ""
|
|
2911 |
"identifizieren zu können."
|
2912 |
|
2913 |
# @ woocommerce-germanized
|
2914 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2915 |
msgctxt "shipments"
|
2916 |
msgid "Choose a reason text."
|
2917 |
msgstr "Beschreibung für den Grund."
|
2918 |
|
2919 |
# @ woocommerce-germanized
|
2920 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2921 |
msgctxt "shipments"
|
2922 |
msgid "+ Add reason"
|
2923 |
msgstr "+ Grund hinzufügen"
|
2924 |
|
2925 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2926 |
msgctxt "shipments"
|
2927 |
msgid "Remove selected reason(s)"
|
2928 |
msgstr "Ausgewählte Gründe löschen"
|
2929 |
|
2930 |
# @ woocommerce-germanized
|
2931 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2932 |
msgctxt "shipments"
|
2933 |
msgid "Create shipments"
|
2934 |
msgstr "Sendungen erstellen"
|
2935 |
|
2936 |
# @ woocommerce-germanized
|
2937 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2938 |
msgctxt "shipments"
|
2939 |
msgid "Search shipments"
|
2940 |
msgstr "Sendungen suchen"
|
2941 |
|
2942 |
# @ woocommerce-germanized
|
2943 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2944 |
msgctxt "shipments"
|
2945 |
msgid "Search returns"
|
2946 |
msgstr "Retouren suchen"
|
2947 |
|
2948 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2949 |
msgctxt "shipments"
|
2950 |
msgid "Do you really want to delete the shipment?"
|
2951 |
msgstr "Möchtest du die Sendung wirklich löschen?"
|
2952 |
|
2953 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2954 |
msgctxt "shipments"
|
2955 |
msgid "Do you really want to delete the label?"
|
2956 |
msgstr "Möchtest du das Label wirklich löschen?"
|
2957 |
|
2958 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2959 |
msgctxt "shipments"
|
2960 |
msgid "Please save the shipment before creating a new label"
|
2961 |
msgstr "Bitte speichere die Sendung bevor du ein neues Label erzeugst"
|
2962 |
|
2963 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2964 |
msgctxt "shipments"
|
2965 |
msgid ""
|
2966 |
"Do you really want to delete the shipping provider? Some of your existing "
|
@@ -4487,8 +4487,9 @@ msgstr "l"
|
|
4487 |
# @ woocommerce-germanized
|
4488 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:549
|
4489 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:559
|
4490 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
4491 |
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:546
|
|
|
4492 |
msgid "incl. VAT"
|
4493 |
msgstr "inkl. MwSt."
|
4494 |
|
@@ -4499,7 +4500,7 @@ msgstr "exkl. MwSt."
|
|
4499 |
|
4500 |
# @ woocommerce-germanized
|
4501 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:551
|
4502 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
4503 |
#, php-format
|
4504 |
msgid "incl. %s%% VAT"
|
4505 |
msgstr "inkl. %s %% MwSt."
|
@@ -4743,7 +4744,7 @@ msgstr "Germanize"
|
|
4743 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:73
|
4744 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:141
|
4745 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:79
|
4746 |
-
#: woocommerce-germanized/woocommerce-germanized.php:
|
4747 |
msgid "Settings"
|
4748 |
msgstr "Einstellungen"
|
4749 |
|
@@ -4923,7 +4924,7 @@ msgid "Welcome to Germanized"
|
|
4923 |
msgstr "Willkommen bei Germanized"
|
4924 |
|
4925 |
# @ woocommerce-germanized
|
4926 |
-
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-welcome.php:
|
4927 |
msgid "Go to Germanized Settings"
|
4928 |
msgstr "Germanized Einstellungen"
|
4929 |
|
@@ -6029,13 +6030,13 @@ msgstr ""
|
|
6029 |
# @ woocommerce-germanized
|
6030 |
# @ woocommerce
|
6031 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:164
|
6032 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6033 |
-
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:
|
6034 |
-
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:
|
6035 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:138
|
6036 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:145
|
6037 |
-
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:
|
6038 |
-
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:
|
6039 |
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:131
|
6040 |
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:139
|
6041 |
msgid "Title"
|
@@ -6135,7 +6136,7 @@ msgstr "Passe allgemeine Optionen z.B. deine rechtlich relevanten Seiten an."
|
|
6135 |
|
6136 |
# @ woocommerce-germanized
|
6137 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:30
|
6138 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6139 |
#: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:174
|
6140 |
msgid "Legal Pages"
|
6141 |
msgstr "Rechtlich relevante Seiten"
|
@@ -6372,61 +6373,49 @@ msgstr "Jetzt hinzufügen"
|
|
6372 |
|
6373 |
# @ woocommerce-germanized
|
6374 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:209
|
6375 |
-
msgid "No VAT notice"
|
6376 |
-
msgstr "Umsatzsteuerbefreiung"
|
6377 |
-
|
6378 |
-
# @ woocommerce-germanized
|
6379 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:210
|
6380 |
-
msgid "Show no VAT §19 UStG notice on single product page."
|
6381 |
-
msgstr ""
|
6382 |
-
"Hinweis zur Umsatzsteuerbefreiung gemäß §19 UStG auf der Produktseite "
|
6383 |
-
"anzeigen."
|
6384 |
-
|
6385 |
-
# @ woocommerce-germanized
|
6386 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:219
|
6387 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:367
|
6388 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:161
|
6389 |
msgid "Notice Text"
|
6390 |
msgstr "Hinweistext"
|
6391 |
|
6392 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6393 |
msgid ""
|
6394 |
"You may want to adjust the small buisness notice text to meet your criteria."
|
6395 |
msgstr "Passe hier, falls notwending, den Kleinunternehmer Hinweistext an."
|
6396 |
|
6397 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6398 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
6399 |
msgid ""
|
6400 |
"Value added tax is not collected, as small businesses according to §19 (1) "
|
6401 |
"UStG."
|
6402 |
msgstr "Kein Mehrwertsteuerausweis, da Kleinunternehmer nach §19 (1) UStG."
|
6403 |
|
6404 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6405 |
msgid "Phone"
|
6406 |
msgstr "Telefon"
|
6407 |
|
6408 |
# @ woocommerce-germanized
|
6409 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6410 |
msgid "Mark phone number as non-required within checkout."
|
6411 |
msgstr "Telefonnummer in der Kasse nicht als Pflichtfeld abfragen."
|
6412 |
|
6413 |
# @ woocommerce-germanized
|
6414 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6415 |
msgid "Add a title field to the address within checkout."
|
6416 |
msgstr "Lasse Kunden eine Anrede auswählen."
|
6417 |
|
6418 |
# @ woocommerce-germanized
|
6419 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6420 |
msgid "Disallow cancellations"
|
6421 |
msgstr "Stornierungen verhindern"
|
6422 |
|
6423 |
# @ woocommerce-germanized
|
6424 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6425 |
msgid "Don't allow customers to manually cancel orders."
|
6426 |
msgstr "Stornierung von Bestellungen durch den Kunden verhindern."
|
6427 |
|
6428 |
# @ woocommerce-germanized
|
6429 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6430 |
msgid ""
|
6431 |
"By default payment methods like PayPal allow order cancellation by clicking "
|
6432 |
"the abort link. This option will stop customers from manually cancel orders."
|
@@ -6435,17 +6424,17 @@ msgstr ""
|
|
6435 |
"Kunden den Abbrechen-Link verwendet. Diese Option verhindert den manuellen "
|
6436 |
"Abbruch einer Bestellung durch den Kunden."
|
6437 |
|
6438 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6439 |
msgid "Disallow gateway choosing"
|
6440 |
msgstr "Wechsel der Zahlungsart"
|
6441 |
|
6442 |
# @ woocommerce-germanized
|
6443 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6444 |
msgid "Don't allow customers to change the payment gateway after ordering."
|
6445 |
msgstr ""
|
6446 |
"Wechsel der Zahlungsart nach der Bestellung durch den Kunden verhindern."
|
6447 |
|
6448 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6449 |
msgid ""
|
6450 |
"Customers paying through a gateway which allows later payment (e.g. PayPal) "
|
6451 |
"will find a link within their customer account which redirects them to a pay "
|
@@ -6464,17 +6453,17 @@ msgstr ""
|
|
6464 |
"PayPal weiter."
|
6465 |
|
6466 |
# @ woocommerce-germanized
|
6467 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6468 |
msgid "Free shipping"
|
6469 |
msgstr "Kostenloser Versand"
|
6470 |
|
6471 |
# @ woocommerce-germanized
|
6472 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6473 |
msgid "Force free shipping method if available."
|
6474 |
msgstr "Erzwinge kostenlosen Versand wenn die Methode zur Verfügung steht."
|
6475 |
|
6476 |
# @ woocommerce-germanized
|
6477 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6478 |
msgid ""
|
6479 |
"By default WooCommerce will let customers choose other shipping methods than "
|
6480 |
"free shipping (if available). This option will force free shipping if "
|
@@ -6485,11 +6474,11 @@ msgstr ""
|
|
6485 |
"Versand, sobald dieser verfügbar ist."
|
6486 |
|
6487 |
# @ woocommerce-germanized
|
6488 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6489 |
msgid "Exclude Methods"
|
6490 |
msgstr "Deaktivierte Methoden"
|
6491 |
|
6492 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6493 |
msgid ""
|
6494 |
"Optionally choose methods which should be excluded from hiding when free "
|
6495 |
"shipping is available (e.g. express shipping options)."
|
@@ -6498,11 +6487,11 @@ msgstr ""
|
|
6498 |
"kostenloser Versand verfügbar ist (z.B. Express-Versandmethoden)."
|
6499 |
|
6500 |
# @ woocommerce-germanized
|
6501 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6502 |
msgid "Price Range Format"
|
6503 |
msgstr "Preisspannen-Format"
|
6504 |
|
6505 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6506 |
msgid ""
|
6507 |
"Adjust the price range format e.g. for variable products. Use {min_price} as "
|
6508 |
"placeholder for the minimum price. Use {max_price} as placeholder for the "
|
@@ -6512,23 +6501,23 @@ msgstr ""
|
|
6512 |
"{min_price} als Platzhalter für den minimalen Preis und {max_price} als "
|
6513 |
"Platzhalter für den höchsten Preis."
|
6514 |
|
6515 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6516 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
6517 |
msgid "{min_price} – {max_price}"
|
6518 |
msgstr "{min_price} – {max_price}"
|
6519 |
|
6520 |
# @ woocommerce-germanized
|
6521 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6522 |
msgid "Add to Cart"
|
6523 |
msgstr "Zum Warenkorb Button"
|
6524 |
|
6525 |
# @ woocommerce-germanized
|
6526 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6527 |
msgid "Show add to cart button on listings."
|
6528 |
msgstr "Zeige den „zum Warenkorb“ Button in Produktlisten an."
|
6529 |
|
6530 |
# @ woocommerce-germanized
|
6531 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6532 |
msgid ""
|
6533 |
"unset this option if you don't want to show the add to cart button within "
|
6534 |
"the product listings"
|
@@ -6536,19 +6525,19 @@ msgstr ""
|
|
6536 |
"Deaktiviere diese Option, wenn du den zum Warenkorb Button nicht innerhalb "
|
6537 |
"von Produktauflistungen darstellen möchten"
|
6538 |
|
6539 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6540 |
msgid "Link"
|
6541 |
msgstr "Verlinkung"
|
6542 |
|
6543 |
# @ woocommerce-germanized
|
6544 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6545 |
msgid "Link to product details page instead of add to cart within listings."
|
6546 |
msgstr ""
|
6547 |
"Ersetze den zum-Warenkorb-Link durch einen Link zur Produktdetailseite in "
|
6548 |
"Produktlisten."
|
6549 |
|
6550 |
# @ woocommerce-germanized
|
6551 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6552 |
msgid ""
|
6553 |
"Decide whether you like to link to your product's details page instead of "
|
6554 |
"displaying an add to cart button within product listings."
|
@@ -6558,17 +6547,17 @@ msgstr ""
|
|
6558 |
"diese Option."
|
6559 |
|
6560 |
# @ woocommerce-germanized
|
6561 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6562 |
msgid "Product Details Text"
|
6563 |
msgstr "Produktdetails Text"
|
6564 |
|
6565 |
# @ woocommerce-germanized
|
6566 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6567 |
msgid "Details"
|
6568 |
msgstr "Details"
|
6569 |
|
6570 |
# @ woocommerce-germanized
|
6571 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6572 |
msgid ""
|
6573 |
"If you have chosen to link to product details page instead of add to cart "
|
6574 |
"URL you may want to change the button text."
|
@@ -6578,11 +6567,11 @@ msgstr ""
|
|
6578 |
"einen Button-Text vergeben."
|
6579 |
|
6580 |
# @ woocommerce-germanized
|
6581 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6582 |
msgid "Overview"
|
6583 |
msgstr "Übersicht"
|
6584 |
|
6585 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6586 |
msgid ""
|
6587 |
"You can always return to the settings overview by navigating through the "
|
6588 |
"breadcrumb navigation."
|
@@ -6591,17 +6580,17 @@ msgstr ""
|
|
6591 |
"indem du die Breadcrumb-Navigation nutzt."
|
6592 |
|
6593 |
# @ woocommerce-germanized
|
6594 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6595 |
msgid "Sections"
|
6596 |
msgstr "Rubriken"
|
6597 |
|
6598 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6599 |
msgid ""
|
6600 |
"Each setting tab might have sub sections containing more specific options."
|
6601 |
msgstr ""
|
6602 |
"Jeder Tab kann weitere Unterbereiche mit spezifischen Optionen beinhalten."
|
6603 |
|
6604 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6605 |
msgid ""
|
6606 |
"Adjust legal pages e.g. terms and conditions. These pages are used to add "
|
6607 |
"links within checkboxes and text attachments to emails."
|
@@ -7374,7 +7363,7 @@ msgstr "Name"
|
|
7374 |
#: woocommerce-germanized/includes/admin/settings/views/html-admin-page-checkboxes.php:12
|
7375 |
#: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:29
|
7376 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:800
|
7377 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7378 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:124
|
7379 |
msgid "Description"
|
7380 |
msgstr "Beschreibung"
|
@@ -7774,52 +7763,56 @@ msgstr ""
|
|
7774 |
"Passe Germanized an deine Bedürfnisse an. Die Einstellungen kannst du später "
|
7775 |
"jederzeit ändern."
|
7776 |
|
|
|
|
|
|
|
|
|
7777 |
# @ woocommerce-germanized
|
7778 |
-
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:
|
7779 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:159
|
7780 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:39
|
7781 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7782 |
#: woocommerce-germanized/includes/gateways/direct-debit/views/html-export.php:30
|
7783 |
msgid "Direct Debit"
|
7784 |
msgstr "Lastschrift"
|
7785 |
|
7786 |
# @ woocommerce-germanized
|
7787 |
-
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:
|
7788 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:164
|
7789 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:85
|
7790 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:117
|
7791 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:166
|
7792 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:117
|
7793 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7794 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7795 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7796 |
msgid "Account Holder"
|
7797 |
msgstr "Kontoinhaber"
|
7798 |
|
7799 |
# @ woocommerce-germanized
|
7800 |
-
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:
|
7801 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:169
|
7802 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:86
|
7803 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:118
|
7804 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:167
|
7805 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:124
|
7806 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7807 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7808 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7809 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7810 |
msgid "IBAN"
|
7811 |
msgstr "IBAN"
|
7812 |
|
7813 |
# @ woocommerce-germanized
|
7814 |
-
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:
|
7815 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:174
|
7816 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:87
|
7817 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:119
|
7818 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:168
|
7819 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:131
|
7820 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7821 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7822 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7823 |
msgid "BIC/SWIFT"
|
7824 |
msgstr "BIC/SWIFT"
|
7825 |
|
@@ -7830,7 +7823,7 @@ msgstr "Paketdienstleister Datenweitergabe"
|
|
7830 |
# @ woocommerce-germanized
|
7831 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:179
|
7832 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:138
|
7833 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7834 |
msgid "Mandate Reference ID"
|
7835 |
msgstr "Mandat-Referenznummer"
|
7836 |
|
@@ -8040,7 +8033,7 @@ msgstr ""
|
|
8040 |
"Vielen Dank. Wir haben deinen Widerruf erhalten. Du bekommst in Kürze eine E-"
|
8041 |
"Mail mit deinen Daten als Bestätigung."
|
8042 |
|
8043 |
-
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:
|
8044 |
msgid ""
|
8045 |
"Sorry, but differential taxed products cannot be purchased with normal "
|
8046 |
"products at the same time."
|
@@ -8048,7 +8041,7 @@ msgstr ""
|
|
8048 |
"Entschuldigung, differenzbesteuerte Produkte können nicht gemeinsam mit "
|
8049 |
"normalen Produkten gekauft werden."
|
8050 |
|
8051 |
-
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:
|
8052 |
msgid ""
|
8053 |
"Sorry, but normal products cannot be purchased together with differential "
|
8054 |
"taxed products at the same time."
|
@@ -8056,6 +8049,19 @@ msgstr ""
|
|
8056 |
"Entschuldigung, normale Produkte können nicht gemeinsam mit "
|
8057 |
"differenzbesteuerten Produkten gekauft werden."
|
8058 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8059 |
#: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:257
|
8060 |
msgid "Is voucher?"
|
8061 |
msgstr "Wertgutschein?"
|
@@ -8073,25 +8079,25 @@ msgstr ""
|
|
8073 |
"\">hier</a>."
|
8074 |
|
8075 |
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:118
|
8076 |
-
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:
|
8077 |
-
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:
|
8078 |
msgid ""
|
8079 |
"Please activate your account through clicking on the activation link "
|
8080 |
"received via email."
|
8081 |
msgstr ""
|
8082 |
"Bitte aktiviere dein Kundenkonto indem du auf den Link in der E-Mail klickst."
|
8083 |
|
8084 |
-
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:
|
8085 |
#, php-format
|
8086 |
msgid "Continue without creating an account? <a href=\"%s\">Click here</a>"
|
8087 |
msgstr "Weiter zur Kasse ohne Kundenkonto? <a href=\"%s\">Hier klicken</a>"
|
8088 |
|
8089 |
-
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:
|
8090 |
msgid "Please create an account or login before continuing to checkout"
|
8091 |
msgstr ""
|
8092 |
"Bitte erstelle ein Kundenkonto oder logge dich ein, bevor du zur Kasse gehst"
|
8093 |
|
8094 |
-
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:
|
8095 |
msgid ""
|
8096 |
"This activation code has expired. We have sent you a new activation code via "
|
8097 |
"e-mail."
|
@@ -8100,20 +8106,20 @@ msgstr ""
|
|
8100 |
"Code per E-Mail geschickt."
|
8101 |
|
8102 |
# @ woocommerce-germanized
|
8103 |
-
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:
|
8104 |
msgid "Sorry, but this activation code cannot be found."
|
8105 |
msgstr "Sorry, dieser Aktivierungscode ist uns leider nicht bekannt."
|
8106 |
|
8107 |
# @ woocommerce-germanized
|
8108 |
-
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:
|
8109 |
msgid "Thank you. You have successfully activated your account."
|
8110 |
msgstr "Vielen Dank. Dein Benutzerkonto wurde erfolgreich aktiviert."
|
8111 |
|
8112 |
-
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:
|
8113 |
msgid "Expired activation key"
|
8114 |
msgstr "Abgelaufener Aktivierungscode"
|
8115 |
|
8116 |
-
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:
|
8117 |
msgid "Invalid activation key"
|
8118 |
msgstr "Aktivierungscode ungültig"
|
8119 |
|
@@ -8164,7 +8170,7 @@ msgid "Forward your Revocation online"
|
|
8164 |
msgstr "Deinen Widerruf online erklären"
|
8165 |
|
8166 |
# @ woocommerce-germanized
|
8167 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8168 |
#, php-format
|
8169 |
msgid ""
|
8170 |
"Please install <a href=\"%s\" target=\"_blank\">WooCommerce</a> before "
|
@@ -8173,85 +8179,85 @@ msgstr ""
|
|
8173 |
"Bitte installiere <a href=\"%s\" target=\"_blank\">WooCommerce</a> bevor du "
|
8174 |
"WooCommerce Germanized installierst. Vielen Dank!"
|
8175 |
|
8176 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8177 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8178 |
msgid "Reduced rate"
|
8179 |
msgstr "Ermäßigter Steuersatz"
|
8180 |
|
8181 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8182 |
#, php-format
|
8183 |
msgctxt "vat-rate-import"
|
8184 |
msgid "VAT %s"
|
8185 |
msgstr "MwSt. %s"
|
8186 |
|
8187 |
# @ woocommerce-germanized
|
8188 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8189 |
msgctxt "Page slug"
|
8190 |
msgid "data-security"
|
8191 |
msgstr "datenschutzerklaerung"
|
8192 |
|
8193 |
# @ woocommerce-germanized
|
8194 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8195 |
msgctxt "Page title"
|
8196 |
msgid "Data Security Statement"
|
8197 |
msgstr "Datenschutzerklärung"
|
8198 |
|
8199 |
# @ woocommerce-germanized
|
8200 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8201 |
msgctxt "Page slug"
|
8202 |
msgid "imprint"
|
8203 |
msgstr "impressum"
|
8204 |
|
8205 |
# @ woocommerce-germanized
|
8206 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8207 |
msgctxt "Page title"
|
8208 |
msgid "Imprint"
|
8209 |
msgstr "Impressum"
|
8210 |
|
8211 |
# @ woocommerce-germanized
|
8212 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8213 |
msgctxt "Page slug"
|
8214 |
msgid "terms"
|
8215 |
msgstr "agb"
|
8216 |
|
8217 |
# @ woocommerce-germanized
|
8218 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8219 |
msgctxt "Page title"
|
8220 |
msgid "Terms & Conditions"
|
8221 |
msgstr "AGB"
|
8222 |
|
8223 |
# @ woocommerce-germanized
|
8224 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8225 |
msgctxt "Page slug"
|
8226 |
msgid "revocation"
|
8227 |
msgstr "widerrufsbelehrung"
|
8228 |
|
8229 |
# @ woocommerce-germanized
|
8230 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8231 |
msgctxt "Page title"
|
8232 |
msgid "Power of Revocation"
|
8233 |
msgstr "Widerrufsbelehrung"
|
8234 |
|
8235 |
# @ woocommerce-germanized
|
8236 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8237 |
msgctxt "Page slug"
|
8238 |
msgid "shipping-methods"
|
8239 |
msgstr "versandarten"
|
8240 |
|
8241 |
# @ woocommerce-germanized
|
8242 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8243 |
msgctxt "Page title"
|
8244 |
msgid "Shipping Methods"
|
8245 |
msgstr "Versandarten"
|
8246 |
|
8247 |
# @ woocommerce-germanized
|
8248 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8249 |
msgctxt "Page slug"
|
8250 |
msgid "payment-methods"
|
8251 |
msgstr "bezahlmoeglichkeiten"
|
8252 |
|
8253 |
# @ woocommerce-germanized
|
8254 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8255 |
msgctxt "Page title"
|
8256 |
msgid "Payment Methods"
|
8257 |
msgstr "Zahlungsarten"
|
@@ -8421,7 +8427,7 @@ msgstr ""
|
|
8421 |
|
8422 |
# @ woocommerce-germanized
|
8423 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:209
|
8424 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
8425 |
msgid "I hereby agree to the {link}direct debit mandate{/link}."
|
8426 |
msgstr "Hiermit erteile ich das {link}SEPA Lastschriftmandat{/link}."
|
8427 |
|
@@ -8815,16 +8821,10 @@ msgctxt "revocation-form"
|
|
8815 |
msgid "Title"
|
8816 |
msgstr "Anrede"
|
8817 |
|
8818 |
-
# @ woocommerce-germanized
|
8819 |
-
#: woocommerce-germanized/includes/class-wc-gzd-revocation.php:52
|
8820 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:500
|
8821 |
-
msgid "Mr."
|
8822 |
-
msgstr "Herr"
|
8823 |
-
|
8824 |
# @ woocommerce-germanized
|
8825 |
#: woocommerce-germanized/includes/class-wc-gzd-revocation.php:53
|
8826 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
8827 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
8828 |
msgid "Ms."
|
8829 |
msgstr "Frau"
|
8830 |
|
@@ -9199,16 +9199,16 @@ msgid "SEPA XML Export"
|
|
9199 |
msgstr "SEPA XML Export"
|
9200 |
|
9201 |
# @ woocommerce-germanized
|
9202 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9203 |
#, php-format
|
9204 |
msgid "Order %s"
|
9205 |
msgstr "Bestellung %s"
|
9206 |
|
9207 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9208 |
msgid "Will be notified separately"
|
9209 |
msgstr "Wird separat mitgeteilt"
|
9210 |
|
9211 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9212 |
#, php-format
|
9213 |
msgid ""
|
9214 |
"We will debit %s from your account by direct debit on or shortly after %s."
|
@@ -9217,105 +9217,105 @@ msgstr ""
|
|
9217 |
"%s ein."
|
9218 |
|
9219 |
# @ woocommerce-germanized
|
9220 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9221 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9222 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9223 |
msgid "a single payment"
|
9224 |
msgstr "eine einmalige Zahlung"
|
9225 |
|
9226 |
# @ woocommerce-germanized
|
9227 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9228 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:111
|
9229 |
msgid "Enable/Disable"
|
9230 |
msgstr "Aktivieren/Deaktivieren"
|
9231 |
|
9232 |
# @ woocommerce-germanized
|
9233 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9234 |
msgid "Enable Direct Debit Payment"
|
9235 |
msgstr "Bezahlung per Lastschrift aktivieren"
|
9236 |
|
9237 |
# @ woocommerce-germanized
|
9238 |
# @ woocommerce
|
9239 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9240 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:117
|
9241 |
msgctxt "gateway"
|
9242 |
msgid "Title"
|
9243 |
msgstr "Bezeichnung"
|
9244 |
|
9245 |
# @ woocommerce-germanized
|
9246 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9247 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:119
|
9248 |
msgid "This controls the title which the user sees during checkout."
|
9249 |
msgstr ""
|
9250 |
"Beschreibungstext, den Benutzer bei der Auswahl dieser Zahlungsart sehen."
|
9251 |
|
9252 |
# @ woocommerce-germanized
|
9253 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9254 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:126
|
9255 |
msgid "Payment method description that the customer will see on your checkout."
|
9256 |
msgstr "Beschreibung der Zahlungsart, die Kunden auf deiner Website sehen."
|
9257 |
|
9258 |
# @ woocommerce-germanized
|
9259 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9260 |
msgid "The order amount will be debited directly from your bank account."
|
9261 |
msgstr ""
|
9262 |
"Der Gesamtbestellbetrag wird per SEPA-Lastschrift direkt von deinem Konto "
|
9263 |
"abgebucht."
|
9264 |
|
9265 |
# @ woocommerce-germanized
|
9266 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9267 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:131
|
9268 |
msgid "Instructions"
|
9269 |
msgstr "Anweisungen"
|
9270 |
|
9271 |
# @ woocommerce-germanized
|
9272 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9273 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:133
|
9274 |
msgid "Instructions that will be added to the thank you page and emails."
|
9275 |
msgstr "Anweisung, die zur „Danke“-Seite und zu E-Mails hinzugefügt werden."
|
9276 |
|
9277 |
# @ woocommerce-germanized
|
9278 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9279 |
msgid "Debtee"
|
9280 |
msgstr "Gläubiger Informationen"
|
9281 |
|
9282 |
# @ woocommerce-germanized
|
9283 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9284 |
msgid "Insert your company information."
|
9285 |
msgstr "Füge hier die Informationen zu deinem Unternehmen ein."
|
9286 |
|
9287 |
# @ woocommerce-germanized
|
9288 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9289 |
msgid "Company Inc, John Doe Street, New York"
|
9290 |
msgstr "Musterfirma GmbH, Musterstraße 12, 12203 Musterstadt"
|
9291 |
|
9292 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9293 |
msgid "Insert the bank account holder name."
|
9294 |
msgstr "Füge hier den Namen des Kontoinhabers ein."
|
9295 |
|
9296 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9297 |
msgid "Company Inc"
|
9298 |
msgstr "Muster GmbH"
|
9299 |
|
9300 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9301 |
msgid "Insert the bank account IBAN."
|
9302 |
msgstr "Füge hier den IBAN deines Kontos ein."
|
9303 |
|
9304 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9305 |
msgid "BIC"
|
9306 |
msgstr "BIC"
|
9307 |
|
9308 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9309 |
msgid "Insert the bank account BIC."
|
9310 |
msgstr "Füge hier den BIC deines Kontos ein."
|
9311 |
|
9312 |
# @ woocommerce-germanized
|
9313 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9314 |
msgid "Debtee identification number"
|
9315 |
msgstr "Identifikationsnummer"
|
9316 |
|
9317 |
# @ woocommerce-germanized
|
9318 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9319 |
#, php-format
|
9320 |
msgid ""
|
9321 |
"Insert your debtee indentification number. More information can be found <a "
|
@@ -9325,16 +9325,16 @@ msgstr ""
|
|
9325 |
"Weitere Informationen zu dieser Nummer erhältst du <a href=\"%s\">hier</a>."
|
9326 |
|
9327 |
# @ woocommerce-germanized
|
9328 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9329 |
msgid "Generate Mandate ID"
|
9330 |
msgstr "Mandat-Referenz generieren"
|
9331 |
|
9332 |
# @ woocommerce-germanized
|
9333 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9334 |
msgid "Automatically generate Mandate ID."
|
9335 |
msgstr "Mandat-Referenznummer automatisch generieren."
|
9336 |
|
9337 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9338 |
msgid ""
|
9339 |
"Automatically generate Mandate ID after order completion (based on Order ID)."
|
9340 |
msgstr ""
|
@@ -9342,11 +9342,11 @@ msgstr ""
|
|
9342 |
"basierend auf der Bestellnummer."
|
9343 |
|
9344 |
# @ woocommerce-germanized
|
9345 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9346 |
msgid "XML Pain Format"
|
9347 |
msgstr "XML Pain Format"
|
9348 |
|
9349 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9350 |
msgid ""
|
9351 |
"You may adjust the XML Export Pain Schema to your banks needs. Some banks "
|
9352 |
"may require pain.001.003.03."
|
@@ -9355,11 +9355,11 @@ msgstr ""
|
|
9355 |
"Banken benötigen z.B. pain.001.003.03."
|
9356 |
|
9357 |
# @ woocommerce-germanized
|
9358 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9359 |
msgid "Mandate ID Format"
|
9360 |
msgstr "Mandat-Referenz Format"
|
9361 |
|
9362 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9363 |
msgid ""
|
9364 |
"You may extend the Mandate ID format by adding a prefix and/or suffix. Use "
|
9365 |
"{id} as placeholder to insert the automatically generated ID."
|
@@ -9368,12 +9368,12 @@ msgstr ""
|
|
9368 |
"{id} als Platzhalter um die automatisch generierte Referenznummer einzufügen."
|
9369 |
|
9370 |
# @ woocommerce-germanized
|
9371 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9372 |
msgid "Mandate Text"
|
9373 |
msgstr "Lastschriftmandat"
|
9374 |
|
9375 |
# @ woocommerce-germanized
|
9376 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9377 |
msgid ""
|
9378 |
"This text will be populated with live order/checkout data. Will be used as "
|
9379 |
"preview direct debit mandate and as email template text."
|
@@ -9384,28 +9384,28 @@ msgstr ""
|
|
9384 |
"Verfügung gestellt."
|
9385 |
|
9386 |
# @ woocommerce-germanized
|
9387 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9388 |
msgid "Checkbox"
|
9389 |
msgstr "Checkbox"
|
9390 |
|
9391 |
# @ woocommerce-germanized
|
9392 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9393 |
msgid "Enable \"agree to SEPA mandate\" checkbox"
|
9394 |
msgstr "Aktiviere die Checkbox zur Bestätigung des Lastschriftmandates"
|
9395 |
|
9396 |
# @ woocommerce-germanized
|
9397 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9398 |
msgid "Enable a checkbox linking to a SEPA direct debit mandate preview."
|
9399 |
msgstr ""
|
9400 |
"Aktiviere eine Checkbox, die zu einer Vorschau des Lastschrift-Mandats führt."
|
9401 |
|
9402 |
# @ woocommerce-germanized
|
9403 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9404 |
msgid "Checkbox label"
|
9405 |
msgstr "Checkbox Text"
|
9406 |
|
9407 |
# @ woocommerce-germanized
|
9408 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9409 |
msgid ""
|
9410 |
"Customize the checkbox label. Use {link}link name{/link} to insert the "
|
9411 |
"preview link."
|
@@ -9413,17 +9413,17 @@ msgstr ""
|
|
9413 |
"Passe den Checkbox Text an. Verwende {link}SEPA Lastschriftmandat{/link} um "
|
9414 |
"auf die Vorschau zu verlinken."
|
9415 |
|
9416 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9417 |
msgid "Enable pre-notification"
|
9418 |
msgstr "Vorankündigung aktivieren"
|
9419 |
|
9420 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9421 |
msgid "Insert pre-notification text within the order confirmation email."
|
9422 |
msgstr ""
|
9423 |
"Fügt einen Standard-Text zur Vorankündigung des SEPA-Einzugs in die "
|
9424 |
"Bestellbestätigung ein."
|
9425 |
|
9426 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9427 |
msgid ""
|
9428 |
"This option inserts a standard text containing a pre-notification for the "
|
9429 |
"customer."
|
@@ -9432,11 +9432,11 @@ msgstr ""
|
|
9432 |
"die Bestellbestätigung ein. In der Ankündigung wird u.a. ein konkreter "
|
9433 |
"Fälligkeitstermin genannt."
|
9434 |
|
9435 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9436 |
msgid "Debit days"
|
9437 |
msgstr "Fälligkeitstage"
|
9438 |
|
9439 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9440 |
msgid ""
|
9441 |
"This option is used to calculate the debit date and is added to the order "
|
9442 |
"date."
|
@@ -9446,15 +9446,15 @@ msgstr ""
|
|
9446 |
"hier eingestellten Anzahl Tage."
|
9447 |
|
9448 |
# @ woocommerce-germanized
|
9449 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9450 |
msgid "Mask IBAN"
|
9451 |
msgstr "IBAN maskieren"
|
9452 |
|
9453 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9454 |
msgid "Mask the IBAN within emails."
|
9455 |
msgstr "IBAN in E-Mails maskieren."
|
9456 |
|
9457 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9458 |
msgid ""
|
9459 |
"This will lead to masked IBANs within emails (replaced by *). All but last 4 "
|
9460 |
"digits will be masked."
|
@@ -9462,15 +9462,15 @@ msgstr ""
|
|
9462 |
"Der IBAN wird in E-Mails (abgesehen von den letzten 4 Stellen) mit * "
|
9463 |
"maskiert."
|
9464 |
|
9465 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9466 |
msgid "Remember"
|
9467 |
msgstr "Bankdaten merken"
|
9468 |
|
9469 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9470 |
msgid "Remember account data for returning customers."
|
9471 |
msgstr "Bankverbindung für registrierte Kunden speichern."
|
9472 |
|
9473 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9474 |
msgid "Save account data as user meta if user has/creates a customer account."
|
9475 |
msgstr ""
|
9476 |
"Speichert die Bankverbindung für registrierte Kunden in der user_meta "
|
@@ -9478,32 +9478,32 @@ msgstr ""
|
|
9478 |
"eigenständig aus."
|
9479 |
|
9480 |
# @ woocommerce-germanized
|
9481 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9482 |
msgid "Please insert your SEPA account data."
|
9483 |
msgstr "Bitte füge deine SEPA Kontoinformationen ein."
|
9484 |
|
9485 |
# @ woocommerce-germanized
|
9486 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9487 |
msgid "Your IBAN seems to be invalid."
|
9488 |
msgstr "Dein IBAN scheint nicht gültig zu sein."
|
9489 |
|
9490 |
# @ woocommerce-germanized
|
9491 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9492 |
msgid "Your IBAN's country code doesn’t match with your billing country."
|
9493 |
msgstr "Der Ländercode des IBANs stimmt nicht mit dem Rechnungsland überein."
|
9494 |
|
9495 |
# @ woocommerce-germanized
|
9496 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9497 |
msgid "Your BIC seems to be invalid."
|
9498 |
msgstr "Dein BIC/SWIFT scheint nicht gültig zu sein."
|
9499 |
|
9500 |
# @ woocommerce-germanized
|
9501 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9502 |
msgid "is invalid"
|
9503 |
msgstr "ist ungültig"
|
9504 |
|
9505 |
# @ woocommerce-germanized
|
9506 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9507 |
msgid "Awaiting Direct Debit Payment"
|
9508 |
msgstr "Zahlung per Lastschrift ausstehend"
|
9509 |
|
@@ -10056,7 +10056,7 @@ msgstr "Germanized benötigt mindestens PHP 5.6. Bitte %s deine PHP-Version."
|
|
10056 |
msgid "upgrade"
|
10057 |
msgstr "Upgrade"
|
10058 |
|
10059 |
-
#: woocommerce-germanized/woocommerce-germanized.php:
|
10060 |
msgid "Pease wait while we are trying to redirect you to the payment provider."
|
10061 |
msgstr "Einen Moment - wir versuchen dich zum Zahlungsanbieter weiterzuleiten."
|
10062 |
|
@@ -11292,6 +11292,16 @@ msgstr "vendidero"
|
|
11292 |
msgid "https://vendidero.de"
|
11293 |
msgstr "https://vendidero.de"
|
11294 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11295 |
#~ msgid "install"
|
11296 |
#~ msgstr "installiere"
|
11297 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce Germanized\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-06-28 11:04+0200\n"
|
6 |
+
"PO-Revision-Date: 2020-06-28 11:04+0200\n"
|
7 |
"Last-Translator: holzhannes <holzhannes@posteo.de>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE\n"
|
106 |
|
107 |
# @ woocommerce-germanized
|
108 |
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:139
|
109 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:379
|
110 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:747
|
111 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:816
|
112 |
msgctxt "dhl"
|
121 |
|
122 |
# @ woocommerce-germanized
|
123 |
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:159
|
124 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:380
|
125 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:768
|
126 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:837
|
127 |
#: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:27
|
131 |
|
132 |
# @ woocommerce-germanized
|
133 |
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:168
|
134 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:381
|
135 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:761
|
136 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:830
|
137 |
#: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:30
|
174 |
msgid "Age check"
|
175 |
msgstr "Alterssichtprüfung"
|
176 |
|
177 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:228
|
178 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:331
|
179 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:531
|
180 |
msgctxt "dhl"
|
181 |
msgid "GoGreen"
|
182 |
msgstr "GoGreen"
|
183 |
|
184 |
# @ woocommerce-germanized
|
185 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:237
|
186 |
msgctxt "dhl"
|
187 |
msgid "Additional insurance"
|
188 |
msgstr "Transportversicherung"
|
189 |
|
190 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:248
|
191 |
msgctxt "dhl"
|
192 |
msgid "Retail outlet routing"
|
193 |
msgstr "Filialrouting"
|
194 |
|
195 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:261
|
196 |
msgctxt "dhl"
|
197 |
msgid "No neighbor"
|
198 |
msgstr "Keine Nachbarschaftszustellung"
|
199 |
|
200 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:272
|
201 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:559
|
202 |
msgctxt "dhl"
|
203 |
msgid "Named person only"
|
204 |
msgstr "Persönliche Übergabe"
|
205 |
|
206 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:281
|
207 |
msgctxt "dhl"
|
208 |
msgid "Bulky goods"
|
209 |
msgstr "Sperrgut"
|
210 |
|
211 |
# @ woocommerce-germanized
|
212 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:290
|
213 |
msgctxt "dhl"
|
214 |
msgid "Identity check"
|
215 |
msgstr "Ident-Check"
|
216 |
|
217 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:301
|
218 |
msgctxt "dhl"
|
219 |
msgid "Date of Birth"
|
220 |
msgstr "Geburtsdatum"
|
221 |
|
222 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:311
|
223 |
msgctxt "dhl"
|
224 |
msgid "Minimum age"
|
225 |
msgstr "Mindestalter"
|
226 |
|
227 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:322
|
228 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:580
|
229 |
msgctxt "dhl"
|
230 |
msgid "Premium"
|
382 |
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:224
|
383 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:184
|
384 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:485
|
385 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:835
|
386 |
#: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:38
|
387 |
msgctxt "dhl"
|
388 |
msgid "Packstation"
|
400 |
msgid "Receiver is missing or does not exist."
|
401 |
msgstr "Empfänger fehlt oder existiert nicht."
|
402 |
|
403 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:344
|
404 |
#, php-format
|
405 |
msgctxt "dhl"
|
406 |
msgid "Shipment order #%s does not exist"
|
407 |
msgstr "Bestellung zur Sendung #%s existiert nicht"
|
408 |
|
409 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:386
|
410 |
#, php-format
|
411 |
msgctxt "dhl"
|
412 |
msgid "%s of the return address is a mandatory field."
|
413 |
msgstr "%s der Rücksendeadresse ist ein Pflichtfeld."
|
414 |
|
415 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:391
|
416 |
msgctxt "dhl"
|
417 |
msgid "Please either add a return company or name."
|
418 |
msgstr ""
|
419 |
"Bitte gib entweder einen Firmennamen oder Namen für die Rücksendeadresse an."
|
420 |
|
421 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:410
|
422 |
msgctxt "dhl"
|
423 |
msgid "Error while parsing preferred day."
|
424 |
msgstr "Fehler beim Einlesen des Wunschtags."
|
425 |
|
426 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:421
|
427 |
msgctxt "dhl"
|
428 |
msgid "Error while parsing preferred time."
|
429 |
msgstr "Fehler beim Einlesen der Wunschzeit."
|
430 |
|
431 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:446
|
432 |
msgctxt "dhl"
|
433 |
msgid "The visual min age check is invalid."
|
434 |
msgstr "Das Alter der Alterssichtprüfung ist ungültig."
|
435 |
|
436 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:465
|
437 |
msgctxt "dhl"
|
438 |
msgid "The ident min age check is invalid."
|
439 |
msgstr "Das Alter des Ident-Checks ist ungültig."
|
440 |
|
441 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:472
|
442 |
msgctxt "dhl"
|
443 |
msgid "There was an error parsing the date of birth for the identity check."
|
444 |
msgstr ""
|
445 |
"Beim Einlesen des Geburtsdatums für den Ident-Check trat ein Problem auf."
|
446 |
|
447 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:477
|
448 |
msgctxt "dhl"
|
449 |
msgid ""
|
450 |
"Either a minimum age or a date of birth must be added to the ident check."
|
453 |
"hinzugefügt werden."
|
454 |
|
455 |
# @ woocommerce-germanized
|
456 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:490
|
457 |
#, php-format
|
458 |
msgctxt "dhl"
|
459 |
msgid "%s duties element does not exist."
|
460 |
msgstr "%s Zollabgabe existiert nicht."
|
461 |
|
|
|
462 |
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:954
|
463 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1029
|
464 |
msgctxt "dhl"
|
465 |
msgid "Invalid shipment"
|
466 |
msgstr "Ungültige Sendung"
|
467 |
|
468 |
# @ woocommerce-germanized
|
|
|
469 |
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:958
|
470 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1033
|
471 |
msgctxt "dhl"
|
472 |
msgid "Order does not exist"
|
473 |
msgstr "Bestellung existiert nicht"
|
474 |
|
475 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:981
|
476 |
msgctxt "dhl"
|
477 |
msgid "Error while creating the label instance"
|
478 |
msgstr "Fehler beim Erstellen der Label-Instanz"
|
479 |
|
480 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1101
|
481 |
msgctxt "dhl"
|
482 |
msgid "Invalid label"
|
483 |
msgstr "Ungültiges Label"
|
484 |
|
485 |
# @ woocommerce-germanized
|
486 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1189
|
487 |
msgctxt "dhl"
|
488 |
msgid "DHL Retoure International A"
|
489 |
msgstr "DHL Retoure International A"
|
490 |
|
491 |
# @ woocommerce-germanized
|
492 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1190
|
493 |
msgctxt "dhl"
|
494 |
msgid "DHL Retoure International B"
|
495 |
msgstr "DHL Retoure International B"
|
496 |
|
497 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1199
|
498 |
msgctxt "dhl"
|
499 |
msgid "DHL Retoure Online"
|
500 |
msgstr "DHL Retoure Online"
|
501 |
|
502 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1210
|
503 |
msgctxt "dhl"
|
504 |
msgid "DHL Paket Connect"
|
505 |
msgstr "DHL Paket Connect"
|
506 |
|
507 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1211
|
508 |
msgctxt "dhl"
|
509 |
msgid "DHL Europaket (B2B)"
|
510 |
msgstr "DHL Europaket (B2B)"
|
511 |
|
512 |
# @ woocommerce-germanized
|
513 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1212
|
514 |
msgctxt "dhl"
|
515 |
msgid "DHL Paket International"
|
516 |
msgstr "DHL Paket International"
|
517 |
|
518 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1278
|
519 |
msgctxt "dhl"
|
520 |
msgid "DHL Paket"
|
521 |
msgstr "DHL Paket"
|
522 |
|
523 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1279
|
524 |
msgctxt "dhl"
|
525 |
msgid "DHL Paket PRIO"
|
526 |
msgstr "DHL Paket PRIO"
|
527 |
|
528 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1280
|
529 |
msgctxt "dhl"
|
530 |
msgid "DHL Paket Taggleich"
|
531 |
msgstr "DHL Paket Taggleich"
|
532 |
|
533 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1367
|
534 |
msgctxt "dhl"
|
535 |
msgid "Error while uploading label."
|
536 |
msgstr "Fehler beim Hochladen des Labels."
|
537 |
|
538 |
# @ woocommerce-germanized
|
539 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:109
|
540 |
msgctxt "dhl"
|
541 |
msgid "Receiver Ids"
|
542 |
msgstr "Empfänger IDs"
|
543 |
|
544 |
# @ woocommerce-germanized
|
545 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:116
|
546 |
msgctxt "dhl"
|
547 |
msgid "Receiver Id"
|
548 |
msgstr "Empfänger ID"
|
549 |
|
550 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:116
|
551 |
msgctxt "dhl"
|
552 |
msgid "Find your Receiver Ids within your DHL contract data."
|
553 |
msgstr "Die Empfänger IDs findest du im DHL Geschäftskundenportal."
|
554 |
|
555 |
# @ woocommerce-germanized
|
556 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:117
|
557 |
msgctxt "dhl"
|
558 |
msgid "Country Code"
|
559 |
msgstr "Ländercode"
|
560 |
|
561 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:117
|
562 |
msgctxt "dhl"
|
563 |
msgid "Leave empty to use the Receiver Id as fallback."
|
564 |
msgstr "Leer lassen, um diese Empfänger ID als Fallback zu verwenden."
|
565 |
|
566 |
# @ woocommerce-germanized
|
567 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:137
|
568 |
msgctxt "dhl"
|
569 |
msgid "+ Add receiver"
|
570 |
msgstr "+ Empfänger hinzufügen"
|
571 |
|
572 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:137
|
573 |
msgctxt "dhl"
|
574 |
msgid "Remove selected receiver(s)"
|
575 |
msgstr "Ausgewählte Empfänger löschen"
|
576 |
|
577 |
# @ woocommerce-germanized
|
578 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:173
|
579 |
msgctxt "dhl"
|
580 |
msgid "Select a country"
|
581 |
msgstr "Land auswählen"
|
582 |
|
583 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:175
|
584 |
msgctxt "dhl"
|
585 |
msgid "Harmonized Tariff Schedule (DHL)"
|
586 |
msgstr "Harmonized Tariff Schedule (DHL)"
|
587 |
|
588 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:175
|
589 |
msgctxt "dhl"
|
590 |
msgid "This code is needed for customs of international shipping."
|
591 |
msgstr ""
|
592 |
"Dieser Code wird für die Zollabwicklung bei internationalen Sendungen "
|
593 |
"benötigt."
|
594 |
|
595 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:176
|
596 |
msgctxt "dhl"
|
597 |
msgid "Country of manufacture (DHL)"
|
598 |
msgstr "Herstellungsland (DHL)"
|
599 |
|
600 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:176
|
601 |
msgctxt "dhl"
|
602 |
msgid ""
|
603 |
"The country of manufacture is needed for customs of international shipping."
|
605 |
"Das Herstellungsland wird für die Zollabwicklung bei internationalen "
|
606 |
"Sendungen benötigt."
|
607 |
|
608 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:197
|
609 |
#, php-format
|
610 |
msgctxt "dhl"
|
611 |
msgid ""
|
615 |
"Das Verzeichnis zum Speichern von DHL Labels fehlt. Bitte erstelle den "
|
616 |
"Ordner %s manuell und stelle sicher, dass der Ordner beschreibbar ist."
|
617 |
|
618 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:204
|
619 |
#: woocommerce-germanized-dhl/src/ShippingProviderDHL.php:34
|
620 |
msgctxt "dhl"
|
621 |
msgid "DHL"
|
622 |
msgstr "DHL"
|
623 |
|
624 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:219
|
625 |
msgctxt "dhl"
|
626 |
msgid "DHL Label"
|
627 |
msgstr "DHL Label"
|
628 |
|
629 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:231
|
630 |
msgctxt "dhl"
|
631 |
msgid ""
|
632 |
"This label has been generated by the DHL for WooCommerce Plugin and is shown "
|
636 |
"Kompatibilitäts-Gründen angezeigt."
|
637 |
|
638 |
# @ woocommerce-germanized
|
639 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:232
|
640 |
msgctxt "dhl"
|
641 |
msgid "Download label"
|
642 |
msgstr "Label downloaden"
|
1885 |
|
1886 |
# @ woocommerce-germanized
|
1887 |
#: woocommerce-germanized-dhl/src/ParcelLocator.php:89
|
1888 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:848
|
1889 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:877
|
1890 |
msgctxt "dhl"
|
1891 |
msgid "Address Type"
|
1892 |
msgstr "Adresstyp"
|
1911 |
"eintragen."
|
1912 |
|
1913 |
#: woocommerce-germanized-dhl/src/ParcelLocator.php:185
|
1914 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:564
|
1915 |
msgctxt "dhl"
|
1916 |
msgid "Invalid address type."
|
1917 |
msgstr "Ungültiger Adresstyp."
|
1918 |
|
1919 |
# @ woocommerce-germanized
|
1920 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:636
|
1921 |
msgctxt "dhl"
|
1922 |
msgid "Sorry, but delivery to packstation is not available."
|
1923 |
msgstr ""
|
1924 |
"Entschuldigung, die Lieferung an eine Packstation steht nicht zur Verfügung."
|
1925 |
|
1926 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:641
|
1927 |
msgctxt "dhl"
|
1928 |
msgid "Sorry, but delivery to parcel shops is not available."
|
1929 |
msgstr ""
|
1930 |
"Entschuldigung, die Lieferung an einen Paketshop steht nicht zur Verfügung."
|
1931 |
|
1932 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:645
|
1933 |
msgctxt "dhl"
|
1934 |
msgid "Sorry, but delivery to post offices is not available."
|
1935 |
msgstr "Entschuldigung, die Lieferung an Postfilialen ist nicht verfügbar."
|
1936 |
|
1937 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:652
|
1938 |
#, php-format
|
1939 |
msgctxt "dhl"
|
1940 |
msgid "Please indicate shipment to %s by one of the following values: %s."
|
1942 |
"Bitte identifiziere die Lieferung an %s durch die Eingabe einer der "
|
1943 |
"folgenden Werte: %s."
|
1944 |
|
1945 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:660
|
1946 |
msgctxt "dhl"
|
1947 |
msgid ""
|
1948 |
"Your DHL customer number (Post number) is not valid. Please check your "
|
1951 |
"Deine DHL Kundennummer (Postnummer) ist nicht gültig. Bitte überprüfe deine "
|
1952 |
"Eingabe."
|
1953 |
|
1954 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:663
|
1955 |
msgctxt "dhl"
|
1956 |
msgid ""
|
1957 |
"Your DHL customer number (Post number) is needed to ship to a packstation."
|
1959 |
"Deine DHL Kundennummer (Postnummer) wird für den Versand an eine Packstation "
|
1960 |
"benötigt."
|
1961 |
|
1962 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:712
|
1963 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:839
|
1964 |
msgctxt "dhl"
|
1965 |
msgid "Branch"
|
1966 |
msgstr "Filiale"
|
1967 |
|
1968 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:713
|
1969 |
msgctxt "dhl"
|
1970 |
msgid "Postnumber "
|
1971 |
msgstr "Postnummer "
|
1972 |
|
1973 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:814
|
1974 |
#, php-format
|
1975 |
msgctxt "dhl"
|
1976 |
msgid "e.g. %s 456"
|
1977 |
msgstr "z.B. %s 456"
|
1978 |
|
1979 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:839
|
1980 |
msgctxt "dhl"
|
1981 |
msgid "Branches"
|
1982 |
msgstr "Filialen"
|
1983 |
|
1984 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:855
|
1985 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:887
|
1986 |
msgctxt "dhl"
|
1987 |
msgid "DHL customer number (Post number)"
|
1988 |
msgstr "DHL Kundennummer (Postnummer)"
|
1989 |
|
1990 |
# @ woocommerce-germanized
|
1991 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:865
|
1992 |
msgctxt "dhl"
|
1993 |
msgid "Regular Address"
|
1994 |
msgstr "Normale Adresse"
|
1995 |
|
1996 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:891
|
1997 |
msgctxt "dhl"
|
1998 |
msgid "Not yet a DHL customer?"
|
1999 |
msgstr "Noch kein DHL Kunde?"
|
2000 |
|
2001 |
# @ woocommerce-germanized
|
2002 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:891
|
2003 |
msgctxt "dhl"
|
2004 |
msgid "Register now"
|
2005 |
msgstr "Jetzt registrieren"
|
2006 |
|
2007 |
# @ woocommerce-germanized
|
2008 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:940
|
2009 |
#, php-format
|
2010 |
msgctxt "dhl"
|
2011 |
msgid "Search %s"
|
2012 |
msgstr "%s suchen"
|
2013 |
|
2014 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:1045
|
2015 |
msgctxt "dhl"
|
2016 |
msgid "No DHL locations found"
|
2017 |
msgstr "Keine DHL Standorte gefunden"
|
2018 |
|
2019 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:1060
|
2020 |
#, php-format
|
2021 |
msgctxt "dhl"
|
2022 |
msgid ""
|
2027 |
"%s oder %s."
|
2028 |
|
2029 |
# @ woocommerce-germanized
|
2030 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:1060
|
2031 |
msgctxt "dhl"
|
2032 |
msgid "DHL location"
|
2033 |
msgstr "DHL Standort"
|
2034 |
|
2035 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:1060
|
2036 |
msgctxt "dhl"
|
2037 |
msgid "retry"
|
2038 |
msgstr "Erneut versuchen"
|
2266 |
|
2267 |
# @ woocommerce-germanized
|
2268 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:47
|
2269 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1027
|
2270 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:24
|
2271 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:688
|
2272 |
msgctxt "shipments"
|
2312 |
|
2313 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:178
|
2314 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:45
|
2315 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:84
|
2316 |
msgctxt "shipments"
|
2317 |
msgid "Item"
|
2318 |
msgstr "Position"
|
2319 |
|
2320 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:179
|
2321 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:46
|
2322 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:89
|
2323 |
#: woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:55
|
2324 |
#: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:37
|
2325 |
#: woocommerce-germanized-shipments/templates/shipment/shipment-details.php:60
|
2399 |
|
2400 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-list.php:22
|
2401 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:76
|
2402 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:71
|
2403 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:325
|
2404 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:446
|
2405 |
#: woocommerce-germanized-shipments/src/Admin/Settings.php:80
|
2406 |
#: woocommerce-germanized-shipments/src/Admin/Settings.php:177
|
2407 |
#: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:36
|
2418 |
# @ woocommerce-germanized
|
2419 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:19
|
2420 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:69
|
2421 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:255
|
2422 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:324
|
2423 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:412
|
2424 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:479
|
2425 |
#: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:20
|
2426 |
msgctxt "shipments"
|
2427 |
msgid "Shipments"
|
2515 |
msgstr "Download"
|
2516 |
|
2517 |
#: woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:39
|
2518 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:537
|
2519 |
msgctxt "shipments"
|
2520 |
msgid "Create new label"
|
2521 |
msgstr "Neues Label erstellen"
|
2683 |
msgstr "Text der unterhalb des Inhalts der E-Mail angezeigt werden soll."
|
2684 |
|
2685 |
#: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:356
|
2686 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:959
|
2687 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:989
|
2688 |
#: woocommerce-germanized-shipments/templates/shipment/shipment-details-address.php:28
|
2689 |
msgctxt "shipments"
|
2690 |
msgid "N/A"
|
2701 |
msgstr "Format für E-Mail-Versand auswählen."
|
2702 |
|
2703 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:68
|
2704 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1025
|
2705 |
msgctxt "shipments"
|
2706 |
msgid "Shipment"
|
2707 |
msgstr "Sendung"
|
2724 |
|
2725 |
# @ woocommerce-germanized
|
2726 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:104
|
2727 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:321
|
2728 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:854
|
2729 |
msgctxt "shipments"
|
2730 |
msgid "Shipped"
|
2745 |
msgid "Returned"
|
2746 |
msgstr "Retourniert"
|
2747 |
|
2748 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:319
|
2749 |
msgctxt "shipments"
|
2750 |
msgid "Draft"
|
2751 |
msgstr "Entwurf"
|
2752 |
|
2753 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:320
|
2754 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:846
|
2755 |
msgctxt "shipments"
|
2756 |
msgid "Processing"
|
2757 |
msgstr "In Bearbeitung"
|
2758 |
|
2759 |
# @ woocommerce-germanized
|
2760 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:322
|
2761 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:50
|
2762 |
msgctxt "shipments"
|
2763 |
msgid "Delivered"
|
2764 |
msgstr "Geliefert"
|
2765 |
|
2766 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:323
|
2767 |
msgctxt "shipments"
|
2768 |
msgid "Requested"
|
2769 |
msgstr "Beantragt"
|
2770 |
|
2771 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:372
|
2772 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:81
|
2773 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:135
|
2774 |
msgctxt "shipments"
|
2775 |
msgid "Invalid order."
|
2776 |
msgstr "Ungültige Bestellung."
|
2777 |
|
2778 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:376
|
2779 |
msgctxt "shipments"
|
2780 |
msgid "This order is already fully returned."
|
2781 |
msgstr "Diese Bestellung wurde bereits vollständig zurückgesendet."
|
2782 |
|
2783 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:387
|
2784 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:428
|
2785 |
msgctxt "shipments"
|
2786 |
msgid "Error while creating the shipment instance"
|
2787 |
msgstr "Fehler beim Erstellen der Sendungsinstanz"
|
2788 |
|
2789 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:413
|
2790 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:417
|
2791 |
#: woocommerce-germanized-shipments/src/ReturnShipment.php:429
|
2792 |
#: woocommerce-germanized-shipments/src/ReturnShipment.php:489
|
2793 |
#: woocommerce-germanized-shipments/src/SimpleShipment.php:118
|
2796 |
msgid "Invalid shipment order"
|
2797 |
msgstr "Ungültige Bestellung zur Sendung"
|
2798 |
|
2799 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:447
|
2800 |
msgctxt "shipments"
|
2801 |
msgid "Invalid order item"
|
2802 |
msgstr "Ungültige Bestellposition"
|
2803 |
|
2804 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:569
|
2805 |
msgctxt "shipments"
|
2806 |
msgid "Invalid shipment item"
|
2807 |
msgstr "Ungültige Sendungsposition"
|
2808 |
|
2809 |
# @ woocommerce-germanized
|
2810 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:642
|
2811 |
msgctxt "shipments"
|
2812 |
msgid "None"
|
2813 |
msgstr "Keiner"
|
2814 |
|
2815 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:715
|
2816 |
msgctxt "shipments"
|
2817 |
msgid "Error while uploading file."
|
2818 |
msgstr "Fehler beim Hochladen der Datei."
|
2819 |
|
2820 |
# @ woocommerce-germanized
|
2821 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1026
|
2822 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:23
|
2823 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:687
|
2824 |
msgctxt "shipments"
|
2825 |
msgid "Date"
|
2826 |
msgstr "Datum"
|
2827 |
|
2828 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1028
|
2829 |
#: woocommerce-germanized-shipments/templates/shipment/shipment-details-tracking.php:23
|
2830 |
msgctxt "shipments"
|
2831 |
msgid "Tracking"
|
2832 |
msgstr "Sendungsverfolgung"
|
2833 |
|
2834 |
# @ woocommerce-germanized
|
2835 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1029
|
2836 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:94
|
2837 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:30
|
2838 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:694
|
2839 |
msgctxt "shipments"
|
2840 |
msgid "Actions"
|
2841 |
msgstr "Aktionen"
|
2842 |
|
2843 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1265
|
2844 |
msgctxt "shipments"
|
2845 |
msgid "View"
|
2846 |
msgstr "Anzeigen"
|
2847 |
|
2848 |
# @ woocommerce-germanized
|
2849 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1272
|
2850 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:865
|
2851 |
#: woocommerce-germanized-shipments/src/Ajax.php:336
|
2852 |
msgctxt "shipments"
|
2885 |
msgstr "Bestellung ansehen"
|
2886 |
|
2887 |
# @ woocommerce-germanized
|
2888 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:102
|
2889 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:176
|
2890 |
#: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:36
|
2891 |
msgctxt "shipments"
|
2892 |
msgid "Reason"
|
2893 |
msgstr "Rücksendegrund"
|
2894 |
|
2895 |
# @ woocommerce-germanized
|
2896 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:168
|
2897 |
msgctxt "shipments"
|
2898 |
msgid "Return reasons"
|
2899 |
msgstr "Rücksendegründe"
|
2900 |
|
2901 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:175
|
2902 |
msgctxt "shipments"
|
2903 |
msgid "Reason code"
|
2904 |
msgstr "Rücksendegrund (Code)"
|
2905 |
|
2906 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:175
|
2907 |
msgctxt "shipments"
|
2908 |
msgid "The reason code is used to identify the reason."
|
2909 |
msgstr ""
|
2911 |
"identifizieren zu können."
|
2912 |
|
2913 |
# @ woocommerce-germanized
|
2914 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:176
|
2915 |
msgctxt "shipments"
|
2916 |
msgid "Choose a reason text."
|
2917 |
msgstr "Beschreibung für den Grund."
|
2918 |
|
2919 |
# @ woocommerce-germanized
|
2920 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:195
|
2921 |
msgctxt "shipments"
|
2922 |
msgid "+ Add reason"
|
2923 |
msgstr "+ Grund hinzufügen"
|
2924 |
|
2925 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:195
|
2926 |
msgctxt "shipments"
|
2927 |
msgid "Remove selected reason(s)"
|
2928 |
msgstr "Ausgewählte Gründe löschen"
|
2929 |
|
2930 |
# @ woocommerce-germanized
|
2931 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:309
|
2932 |
msgctxt "shipments"
|
2933 |
msgid "Create shipments"
|
2934 |
msgstr "Sendungen erstellen"
|
2935 |
|
2936 |
# @ woocommerce-germanized
|
2937 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:424
|
2938 |
msgctxt "shipments"
|
2939 |
msgid "Search shipments"
|
2940 |
msgstr "Sendungen suchen"
|
2941 |
|
2942 |
# @ woocommerce-germanized
|
2943 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:458
|
2944 |
msgctxt "shipments"
|
2945 |
msgid "Search returns"
|
2946 |
msgstr "Retouren suchen"
|
2947 |
|
2948 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:531
|
2949 |
msgctxt "shipments"
|
2950 |
msgid "Do you really want to delete the shipment?"
|
2951 |
msgstr "Möchtest du die Sendung wirklich löschen?"
|
2952 |
|
2953 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:536
|
2954 |
msgctxt "shipments"
|
2955 |
msgid "Do you really want to delete the label?"
|
2956 |
msgstr "Möchtest du das Label wirklich löschen?"
|
2957 |
|
2958 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:538
|
2959 |
msgctxt "shipments"
|
2960 |
msgid "Please save the shipment before creating a new label"
|
2961 |
msgstr "Bitte speichere die Sendung bevor du ein neues Label erzeugst"
|
2962 |
|
2963 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:588
|
2964 |
msgctxt "shipments"
|
2965 |
msgid ""
|
2966 |
"Do you really want to delete the shipping provider? Some of your existing "
|
4487 |
# @ woocommerce-germanized
|
4488 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:549
|
4489 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:559
|
4490 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:404
|
4491 |
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:546
|
4492 |
+
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:554
|
4493 |
msgid "incl. VAT"
|
4494 |
msgstr "inkl. MwSt."
|
4495 |
|
4500 |
|
4501 |
# @ woocommerce-germanized
|
4502 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:551
|
4503 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:404
|
4504 |
#, php-format
|
4505 |
msgid "incl. %s%% VAT"
|
4506 |
msgstr "inkl. %s %% MwSt."
|
4744 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:73
|
4745 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:141
|
4746 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:79
|
4747 |
+
#: woocommerce-germanized/woocommerce-germanized.php:831
|
4748 |
msgid "Settings"
|
4749 |
msgstr "Einstellungen"
|
4750 |
|
4924 |
msgstr "Willkommen bei Germanized"
|
4925 |
|
4926 |
# @ woocommerce-germanized
|
4927 |
+
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-welcome.php:281
|
4928 |
msgid "Go to Germanized Settings"
|
4929 |
msgstr "Germanized Einstellungen"
|
4930 |
|
6030 |
# @ woocommerce-germanized
|
6031 |
# @ woocommerce
|
6032 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:164
|
6033 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:239
|
6034 |
+
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:137
|
6035 |
+
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:144
|
6036 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:138
|
6037 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:145
|
6038 |
+
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:556
|
6039 |
+
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:567
|
6040 |
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:131
|
6041 |
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:139
|
6042 |
msgid "Title"
|
6136 |
|
6137 |
# @ woocommerce-germanized
|
6138 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:30
|
6139 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:370
|
6140 |
#: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:174
|
6141 |
msgid "Legal Pages"
|
6142 |
msgstr "Rechtlich relevante Seiten"
|
6373 |
|
6374 |
# @ woocommerce-germanized
|
6375 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:209
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6376 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:367
|
6377 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:161
|
6378 |
msgid "Notice Text"
|
6379 |
msgstr "Hinweistext"
|
6380 |
|
6381 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:210
|
6382 |
msgid ""
|
6383 |
"You may want to adjust the small buisness notice text to meet your criteria."
|
6384 |
msgstr "Passe hier, falls notwending, den Kleinunternehmer Hinweistext an."
|
6385 |
|
6386 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:217
|
6387 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:319
|
6388 |
msgid ""
|
6389 |
"Value added tax is not collected, as small businesses according to §19 (1) "
|
6390 |
"UStG."
|
6391 |
msgstr "Kein Mehrwertsteuerausweis, da Kleinunternehmer nach §19 (1) UStG."
|
6392 |
|
6393 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:232
|
6394 |
msgid "Phone"
|
6395 |
msgstr "Telefon"
|
6396 |
|
6397 |
# @ woocommerce-germanized
|
6398 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:233
|
6399 |
msgid "Mark phone number as non-required within checkout."
|
6400 |
msgstr "Telefonnummer in der Kasse nicht als Pflichtfeld abfragen."
|
6401 |
|
6402 |
# @ woocommerce-germanized
|
6403 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:240
|
6404 |
msgid "Add a title field to the address within checkout."
|
6405 |
msgstr "Lasse Kunden eine Anrede auswählen."
|
6406 |
|
6407 |
# @ woocommerce-germanized
|
6408 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:246
|
6409 |
msgid "Disallow cancellations"
|
6410 |
msgstr "Stornierungen verhindern"
|
6411 |
|
6412 |
# @ woocommerce-germanized
|
6413 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:247
|
6414 |
msgid "Don't allow customers to manually cancel orders."
|
6415 |
msgstr "Stornierung von Bestellungen durch den Kunden verhindern."
|
6416 |
|
6417 |
# @ woocommerce-germanized
|
6418 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:247
|
6419 |
msgid ""
|
6420 |
"By default payment methods like PayPal allow order cancellation by clicking "
|
6421 |
"the abort link. This option will stop customers from manually cancel orders."
|
6424 |
"Kunden den Abbrechen-Link verwendet. Diese Option verhindert den manuellen "
|
6425 |
"Abbruch einer Bestellung durch den Kunden."
|
6426 |
|
6427 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:253
|
6428 |
msgid "Disallow gateway choosing"
|
6429 |
msgstr "Wechsel der Zahlungsart"
|
6430 |
|
6431 |
# @ woocommerce-germanized
|
6432 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:254
|
6433 |
msgid "Don't allow customers to change the payment gateway after ordering."
|
6434 |
msgstr ""
|
6435 |
"Wechsel der Zahlungsart nach der Bestellung durch den Kunden verhindern."
|
6436 |
|
6437 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:254
|
6438 |
msgid ""
|
6439 |
"Customers paying through a gateway which allows later payment (e.g. PayPal) "
|
6440 |
"will find a link within their customer account which redirects them to a pay "
|
6453 |
"PayPal weiter."
|
6454 |
|
6455 |
# @ woocommerce-germanized
|
6456 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:260
|
6457 |
msgid "Free shipping"
|
6458 |
msgstr "Kostenloser Versand"
|
6459 |
|
6460 |
# @ woocommerce-germanized
|
6461 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:261
|
6462 |
msgid "Force free shipping method if available."
|
6463 |
msgstr "Erzwinge kostenlosen Versand wenn die Methode zur Verfügung steht."
|
6464 |
|
6465 |
# @ woocommerce-germanized
|
6466 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:261
|
6467 |
msgid ""
|
6468 |
"By default WooCommerce will let customers choose other shipping methods than "
|
6469 |
"free shipping (if available). This option will force free shipping if "
|
6474 |
"Versand, sobald dieser verfügbar ist."
|
6475 |
|
6476 |
# @ woocommerce-germanized
|
6477 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:268
|
6478 |
msgid "Exclude Methods"
|
6479 |
msgstr "Deaktivierte Methoden"
|
6480 |
|
6481 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:277
|
6482 |
msgid ""
|
6483 |
"Optionally choose methods which should be excluded from hiding when free "
|
6484 |
"shipping is available (e.g. express shipping options)."
|
6487 |
"kostenloser Versand verfügbar ist (z.B. Express-Versandmethoden)."
|
6488 |
|
6489 |
# @ woocommerce-germanized
|
6490 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:289
|
6491 |
msgid "Price Range Format"
|
6492 |
msgstr "Preisspannen-Format"
|
6493 |
|
6494 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:290
|
6495 |
msgid ""
|
6496 |
"Adjust the price range format e.g. for variable products. Use {min_price} as "
|
6497 |
"placeholder for the minimum price. Use {max_price} as placeholder for the "
|
6501 |
"{min_price} als Platzhalter für den minimalen Preis und {max_price} als "
|
6502 |
"Platzhalter für den höchsten Preis."
|
6503 |
|
6504 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:294
|
6505 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:787
|
6506 |
msgid "{min_price} – {max_price}"
|
6507 |
msgstr "{min_price} – {max_price}"
|
6508 |
|
6509 |
# @ woocommerce-germanized
|
6510 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:298
|
6511 |
msgid "Add to Cart"
|
6512 |
msgstr "Zum Warenkorb Button"
|
6513 |
|
6514 |
# @ woocommerce-germanized
|
6515 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:299
|
6516 |
msgid "Show add to cart button on listings."
|
6517 |
msgstr "Zeige den „zum Warenkorb“ Button in Produktlisten an."
|
6518 |
|
6519 |
# @ woocommerce-germanized
|
6520 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:303
|
6521 |
msgid ""
|
6522 |
"unset this option if you don't want to show the add to cart button within "
|
6523 |
"the product listings"
|
6525 |
"Deaktiviere diese Option, wenn du den zum Warenkorb Button nicht innerhalb "
|
6526 |
"von Produktauflistungen darstellen möchten"
|
6527 |
|
6528 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:306
|
6529 |
msgid "Link"
|
6530 |
msgstr "Verlinkung"
|
6531 |
|
6532 |
# @ woocommerce-germanized
|
6533 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:307
|
6534 |
msgid "Link to product details page instead of add to cart within listings."
|
6535 |
msgstr ""
|
6536 |
"Ersetze den zum-Warenkorb-Link durch einen Link zur Produktdetailseite in "
|
6537 |
"Produktlisten."
|
6538 |
|
6539 |
# @ woocommerce-germanized
|
6540 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:311
|
6541 |
msgid ""
|
6542 |
"Decide whether you like to link to your product's details page instead of "
|
6543 |
"displaying an add to cart button within product listings."
|
6547 |
"diese Option."
|
6548 |
|
6549 |
# @ woocommerce-germanized
|
6550 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:314
|
6551 |
msgid "Product Details Text"
|
6552 |
msgstr "Produktdetails Text"
|
6553 |
|
6554 |
# @ woocommerce-germanized
|
6555 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:316
|
6556 |
msgid "Details"
|
6557 |
msgstr "Details"
|
6558 |
|
6559 |
# @ woocommerce-germanized
|
6560 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:321
|
6561 |
msgid ""
|
6562 |
"If you have chosen to link to product details page instead of add to cart "
|
6563 |
"URL you may want to change the button text."
|
6567 |
"einen Button-Text vergeben."
|
6568 |
|
6569 |
# @ woocommerce-germanized
|
6570 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:342
|
6571 |
msgid "Overview"
|
6572 |
msgstr "Übersicht"
|
6573 |
|
6574 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:343
|
6575 |
msgid ""
|
6576 |
"You can always return to the settings overview by navigating through the "
|
6577 |
"breadcrumb navigation."
|
6580 |
"indem du die Breadcrumb-Navigation nutzt."
|
6581 |
|
6582 |
# @ woocommerce-germanized
|
6583 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:356
|
6584 |
msgid "Sections"
|
6585 |
msgstr "Rubriken"
|
6586 |
|
6587 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:357
|
6588 |
msgid ""
|
6589 |
"Each setting tab might have sub sections containing more specific options."
|
6590 |
msgstr ""
|
6591 |
"Jeder Tab kann weitere Unterbereiche mit spezifischen Optionen beinhalten."
|
6592 |
|
6593 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:371
|
6594 |
msgid ""
|
6595 |
"Adjust legal pages e.g. terms and conditions. These pages are used to add "
|
6596 |
"links within checkboxes and text attachments to emails."
|
7363 |
#: woocommerce-germanized/includes/admin/settings/views/html-admin-page-checkboxes.php:12
|
7364 |
#: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:29
|
7365 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:800
|
7366 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:896
|
7367 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:124
|
7368 |
msgid "Description"
|
7369 |
msgstr "Beschreibung"
|
7763 |
"Passe Germanized an deine Bedürfnisse an. Die Einstellungen kannst du später "
|
7764 |
"jederzeit ändern."
|
7765 |
|
7766 |
+
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:152
|
7767 |
+
msgid "Has been activated via DOI?"
|
7768 |
+
msgstr "Aktiviert via DOI?"
|
7769 |
+
|
7770 |
# @ woocommerce-germanized
|
7771 |
+
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:160
|
7772 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:159
|
7773 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:39
|
7774 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:892
|
7775 |
#: woocommerce-germanized/includes/gateways/direct-debit/views/html-export.php:30
|
7776 |
msgid "Direct Debit"
|
7777 |
msgstr "Lastschrift"
|
7778 |
|
7779 |
# @ woocommerce-germanized
|
7780 |
+
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:165
|
7781 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:164
|
7782 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:85
|
7783 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:117
|
7784 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:166
|
7785 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:117
|
7786 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:608
|
7787 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:918
|
7788 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1064
|
7789 |
msgid "Account Holder"
|
7790 |
msgstr "Kontoinhaber"
|
7791 |
|
7792 |
# @ woocommerce-germanized
|
7793 |
+
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:170
|
7794 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:169
|
7795 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:86
|
7796 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:118
|
7797 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:167
|
7798 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:124
|
7799 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:609
|
7800 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:926
|
7801 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1068
|
7802 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1198
|
7803 |
msgid "IBAN"
|
7804 |
msgstr "IBAN"
|
7805 |
|
7806 |
# @ woocommerce-germanized
|
7807 |
+
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:175
|
7808 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:174
|
7809 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:87
|
7810 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:119
|
7811 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:168
|
7812 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:131
|
7813 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:610
|
7814 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1072
|
7815 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1199
|
7816 |
msgid "BIC/SWIFT"
|
7817 |
msgstr "BIC/SWIFT"
|
7818 |
|
7823 |
# @ woocommerce-germanized
|
7824 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:179
|
7825 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:138
|
7826 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:614
|
7827 |
msgid "Mandate Reference ID"
|
7828 |
msgstr "Mandat-Referenznummer"
|
7829 |
|
8033 |
"Vielen Dank. Wir haben deinen Widerruf erhalten. Du bekommst in Kürze eine E-"
|
8034 |
"Mail mit deinen Daten als Bestätigung."
|
8035 |
|
8036 |
+
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:142
|
8037 |
msgid ""
|
8038 |
"Sorry, but differential taxed products cannot be purchased with normal "
|
8039 |
"products at the same time."
|
8041 |
"Entschuldigung, differenzbesteuerte Produkte können nicht gemeinsam mit "
|
8042 |
"normalen Produkten gekauft werden."
|
8043 |
|
8044 |
+
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:148
|
8045 |
msgid ""
|
8046 |
"Sorry, but normal products cannot be purchased together with differential "
|
8047 |
"taxed products at the same time."
|
8049 |
"Entschuldigung, normale Produkte können nicht gemeinsam mit "
|
8050 |
"differenzbesteuerten Produkten gekauft werden."
|
8051 |
|
8052 |
+
# @ woocommerce-germanized
|
8053 |
+
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:873
|
8054 |
+
#: woocommerce-germanized/includes/class-wc-gzd-revocation.php:52
|
8055 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:541
|
8056 |
+
msgid "Mr."
|
8057 |
+
msgstr "Herr"
|
8058 |
+
|
8059 |
+
# @ woocommerce-germanized
|
8060 |
+
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:874
|
8061 |
+
msgctxt "customer-title-male-address"
|
8062 |
+
msgid "Mr."
|
8063 |
+
msgstr "Herrn"
|
8064 |
+
|
8065 |
#: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:257
|
8066 |
msgid "Is voucher?"
|
8067 |
msgstr "Wertgutschein?"
|
8079 |
"\">hier</a>."
|
8080 |
|
8081 |
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:118
|
8082 |
+
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:230
|
8083 |
+
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:350
|
8084 |
msgid ""
|
8085 |
"Please activate your account through clicking on the activation link "
|
8086 |
"received via email."
|
8087 |
msgstr ""
|
8088 |
"Bitte aktiviere dein Kundenkonto indem du auf den Link in der E-Mail klickst."
|
8089 |
|
8090 |
+
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:240
|
8091 |
#, php-format
|
8092 |
msgid "Continue without creating an account? <a href=\"%s\">Click here</a>"
|
8093 |
msgstr "Weiter zur Kasse ohne Kundenkonto? <a href=\"%s\">Hier klicken</a>"
|
8094 |
|
8095 |
+
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:242
|
8096 |
msgid "Please create an account or login before continuing to checkout"
|
8097 |
msgstr ""
|
8098 |
"Bitte erstelle ein Kundenkonto oder logge dich ein, bevor du zur Kasse gehst"
|
8099 |
|
8100 |
+
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:382
|
8101 |
msgid ""
|
8102 |
"This activation code has expired. We have sent you a new activation code via "
|
8103 |
"e-mail."
|
8106 |
"Code per E-Mail geschickt."
|
8107 |
|
8108 |
# @ woocommerce-germanized
|
8109 |
+
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:384
|
8110 |
msgid "Sorry, but this activation code cannot be found."
|
8111 |
msgstr "Sorry, dieser Aktivierungscode ist uns leider nicht bekannt."
|
8112 |
|
8113 |
# @ woocommerce-germanized
|
8114 |
+
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:388
|
8115 |
msgid "Thank you. You have successfully activated your account."
|
8116 |
msgstr "Vielen Dank. Dein Benutzerkonto wurde erfolgreich aktiviert."
|
8117 |
|
8118 |
+
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:574
|
8119 |
msgid "Expired activation key"
|
8120 |
msgstr "Abgelaufener Aktivierungscode"
|
8121 |
|
8122 |
+
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:579
|
8123 |
msgid "Invalid activation key"
|
8124 |
msgstr "Aktivierungscode ungültig"
|
8125 |
|
8170 |
msgstr "Deinen Widerruf online erklären"
|
8171 |
|
8172 |
# @ woocommerce-germanized
|
8173 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:166
|
8174 |
#, php-format
|
8175 |
msgid ""
|
8176 |
"Please install <a href=\"%s\" target=\"_blank\">WooCommerce</a> before "
|
8179 |
"Bitte installiere <a href=\"%s\" target=\"_blank\">WooCommerce</a> bevor du "
|
8180 |
"WooCommerce Germanized installierst. Vielen Dank!"
|
8181 |
|
8182 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:481
|
8183 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:495
|
8184 |
msgid "Reduced rate"
|
8185 |
msgstr "Ermäßigter Steuersatz"
|
8186 |
|
8187 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:537
|
8188 |
#, php-format
|
8189 |
msgctxt "vat-rate-import"
|
8190 |
msgid "VAT %s"
|
8191 |
msgstr "MwSt. %s"
|
8192 |
|
8193 |
# @ woocommerce-germanized
|
8194 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:650
|
8195 |
msgctxt "Page slug"
|
8196 |
msgid "data-security"
|
8197 |
msgstr "datenschutzerklaerung"
|
8198 |
|
8199 |
# @ woocommerce-germanized
|
8200 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:651
|
8201 |
msgctxt "Page title"
|
8202 |
msgid "Data Security Statement"
|
8203 |
msgstr "Datenschutzerklärung"
|
8204 |
|
8205 |
# @ woocommerce-germanized
|
8206 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:655
|
8207 |
msgctxt "Page slug"
|
8208 |
msgid "imprint"
|
8209 |
msgstr "impressum"
|
8210 |
|
8211 |
# @ woocommerce-germanized
|
8212 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:656
|
8213 |
msgctxt "Page title"
|
8214 |
msgid "Imprint"
|
8215 |
msgstr "Impressum"
|
8216 |
|
8217 |
# @ woocommerce-germanized
|
8218 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:660
|
8219 |
msgctxt "Page slug"
|
8220 |
msgid "terms"
|
8221 |
msgstr "agb"
|
8222 |
|
8223 |
# @ woocommerce-germanized
|
8224 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:661
|
8225 |
msgctxt "Page title"
|
8226 |
msgid "Terms & Conditions"
|
8227 |
msgstr "AGB"
|
8228 |
|
8229 |
# @ woocommerce-germanized
|
8230 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:665
|
8231 |
msgctxt "Page slug"
|
8232 |
msgid "revocation"
|
8233 |
msgstr "widerrufsbelehrung"
|
8234 |
|
8235 |
# @ woocommerce-germanized
|
8236 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:666
|
8237 |
msgctxt "Page title"
|
8238 |
msgid "Power of Revocation"
|
8239 |
msgstr "Widerrufsbelehrung"
|
8240 |
|
8241 |
# @ woocommerce-germanized
|
8242 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:670
|
8243 |
msgctxt "Page slug"
|
8244 |
msgid "shipping-methods"
|
8245 |
msgstr "versandarten"
|
8246 |
|
8247 |
# @ woocommerce-germanized
|
8248 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:671
|
8249 |
msgctxt "Page title"
|
8250 |
msgid "Shipping Methods"
|
8251 |
msgstr "Versandarten"
|
8252 |
|
8253 |
# @ woocommerce-germanized
|
8254 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:675
|
8255 |
msgctxt "Page slug"
|
8256 |
msgid "payment-methods"
|
8257 |
msgstr "bezahlmoeglichkeiten"
|
8258 |
|
8259 |
# @ woocommerce-germanized
|
8260 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:676
|
8261 |
msgctxt "Page title"
|
8262 |
msgid "Payment Methods"
|
8263 |
msgstr "Zahlungsarten"
|
8427 |
|
8428 |
# @ woocommerce-germanized
|
8429 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:209
|
8430 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:983
|
8431 |
msgid "I hereby agree to the {link}direct debit mandate{/link}."
|
8432 |
msgstr "Hiermit erteile ich das {link}SEPA Lastschriftmandat{/link}."
|
8433 |
|
8821 |
msgid "Title"
|
8822 |
msgstr "Anrede"
|
8823 |
|
|
|
|
|
|
|
|
|
|
|
|
|
8824 |
# @ woocommerce-germanized
|
8825 |
#: woocommerce-germanized/includes/class-wc-gzd-revocation.php:53
|
8826 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:542
|
8827 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:559
|
8828 |
msgid "Ms."
|
8829 |
msgstr "Frau"
|
8830 |
|
9199 |
msgstr "SEPA XML Export"
|
9200 |
|
9201 |
# @ woocommerce-germanized
|
9202 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:509
|
9203 |
#, php-format
|
9204 |
msgid "Order %s"
|
9205 |
msgstr "Bestellung %s"
|
9206 |
|
9207 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:540
|
9208 |
msgid "Will be notified separately"
|
9209 |
msgstr "Wird separat mitgeteilt"
|
9210 |
|
9211 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:629
|
9212 |
#, php-format
|
9213 |
msgid ""
|
9214 |
"We will debit %s from your account by direct debit on or shortly after %s."
|
9217 |
"%s ein."
|
9218 |
|
9219 |
# @ woocommerce-germanized
|
9220 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:767
|
9221 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:799
|
9222 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:832
|
9223 |
msgid "a single payment"
|
9224 |
msgstr "eine einmalige Zahlung"
|
9225 |
|
9226 |
# @ woocommerce-germanized
|
9227 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:883
|
9228 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:111
|
9229 |
msgid "Enable/Disable"
|
9230 |
msgstr "Aktivieren/Deaktivieren"
|
9231 |
|
9232 |
# @ woocommerce-germanized
|
9233 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:885
|
9234 |
msgid "Enable Direct Debit Payment"
|
9235 |
msgstr "Bezahlung per Lastschrift aktivieren"
|
9236 |
|
9237 |
# @ woocommerce-germanized
|
9238 |
# @ woocommerce
|
9239 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:889
|
9240 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:117
|
9241 |
msgctxt "gateway"
|
9242 |
msgid "Title"
|
9243 |
msgstr "Bezeichnung"
|
9244 |
|
9245 |
# @ woocommerce-germanized
|
9246 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:891
|
9247 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:119
|
9248 |
msgid "This controls the title which the user sees during checkout."
|
9249 |
msgstr ""
|
9250 |
"Beschreibungstext, den Benutzer bei der Auswahl dieser Zahlungsart sehen."
|
9251 |
|
9252 |
# @ woocommerce-germanized
|
9253 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:898
|
9254 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:126
|
9255 |
msgid "Payment method description that the customer will see on your checkout."
|
9256 |
msgstr "Beschreibung der Zahlungsart, die Kunden auf deiner Website sehen."
|
9257 |
|
9258 |
# @ woocommerce-germanized
|
9259 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:899
|
9260 |
msgid "The order amount will be debited directly from your bank account."
|
9261 |
msgstr ""
|
9262 |
"Der Gesamtbestellbetrag wird per SEPA-Lastschrift direkt von deinem Konto "
|
9263 |
"abgebucht."
|
9264 |
|
9265 |
# @ woocommerce-germanized
|
9266 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:903
|
9267 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:131
|
9268 |
msgid "Instructions"
|
9269 |
msgstr "Anweisungen"
|
9270 |
|
9271 |
# @ woocommerce-germanized
|
9272 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:905
|
9273 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:133
|
9274 |
msgid "Instructions that will be added to the thank you page and emails."
|
9275 |
msgstr "Anweisung, die zur „Danke“-Seite und zu E-Mails hinzugefügt werden."
|
9276 |
|
9277 |
# @ woocommerce-germanized
|
9278 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:910
|
9279 |
msgid "Debtee"
|
9280 |
msgstr "Gläubiger Informationen"
|
9281 |
|
9282 |
# @ woocommerce-germanized
|
9283 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:912
|
9284 |
msgid "Insert your company information."
|
9285 |
msgstr "Füge hier die Informationen zu deinem Unternehmen ein."
|
9286 |
|
9287 |
# @ woocommerce-germanized
|
9288 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:914
|
9289 |
msgid "Company Inc, John Doe Street, New York"
|
9290 |
msgstr "Musterfirma GmbH, Musterstraße 12, 12203 Musterstadt"
|
9291 |
|
9292 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:920
|
9293 |
msgid "Insert the bank account holder name."
|
9294 |
msgstr "Füge hier den Namen des Kontoinhabers ein."
|
9295 |
|
9296 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:922
|
9297 |
msgid "Company Inc"
|
9298 |
msgstr "Muster GmbH"
|
9299 |
|
9300 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:928
|
9301 |
msgid "Insert the bank account IBAN."
|
9302 |
msgstr "Füge hier den IBAN deines Kontos ein."
|
9303 |
|
9304 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:933
|
9305 |
msgid "BIC"
|
9306 |
msgstr "BIC"
|
9307 |
|
9308 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:935
|
9309 |
msgid "Insert the bank account BIC."
|
9310 |
msgstr "Füge hier den BIC deines Kontos ein."
|
9311 |
|
9312 |
# @ woocommerce-germanized
|
9313 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:940
|
9314 |
msgid "Debtee identification number"
|
9315 |
msgstr "Identifikationsnummer"
|
9316 |
|
9317 |
# @ woocommerce-germanized
|
9318 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:942
|
9319 |
#, php-format
|
9320 |
msgid ""
|
9321 |
"Insert your debtee indentification number. More information can be found <a "
|
9325 |
"Weitere Informationen zu dieser Nummer erhältst du <a href=\"%s\">hier</a>."
|
9326 |
|
9327 |
# @ woocommerce-germanized
|
9328 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:946
|
9329 |
msgid "Generate Mandate ID"
|
9330 |
msgstr "Mandat-Referenz generieren"
|
9331 |
|
9332 |
# @ woocommerce-germanized
|
9333 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:948
|
9334 |
msgid "Automatically generate Mandate ID."
|
9335 |
msgstr "Mandat-Referenznummer automatisch generieren."
|
9336 |
|
9337 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:949
|
9338 |
msgid ""
|
9339 |
"Automatically generate Mandate ID after order completion (based on Order ID)."
|
9340 |
msgstr ""
|
9342 |
"basierend auf der Bestellnummer."
|
9343 |
|
9344 |
# @ woocommerce-germanized
|
9345 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:953
|
9346 |
msgid "XML Pain Format"
|
9347 |
msgstr "XML Pain Format"
|
9348 |
|
9349 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:955
|
9350 |
msgid ""
|
9351 |
"You may adjust the XML Export Pain Schema to your banks needs. Some banks "
|
9352 |
"may require pain.001.003.03."
|
9355 |
"Banken benötigen z.B. pain.001.003.03."
|
9356 |
|
9357 |
# @ woocommerce-germanized
|
9358 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:959
|
9359 |
msgid "Mandate ID Format"
|
9360 |
msgstr "Mandat-Referenz Format"
|
9361 |
|
9362 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:961
|
9363 |
msgid ""
|
9364 |
"You may extend the Mandate ID format by adding a prefix and/or suffix. Use "
|
9365 |
"{id} as placeholder to insert the automatically generated ID."
|
9368 |
"{id} als Platzhalter um die automatisch generierte Referenznummer einzufügen."
|
9369 |
|
9370 |
# @ woocommerce-germanized
|
9371 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:965
|
9372 |
msgid "Mandate Text"
|
9373 |
msgstr "Lastschriftmandat"
|
9374 |
|
9375 |
# @ woocommerce-germanized
|
9376 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:967
|
9377 |
msgid ""
|
9378 |
"This text will be populated with live order/checkout data. Will be used as "
|
9379 |
"preview direct debit mandate and as email template text."
|
9384 |
"Verfügung gestellt."
|
9385 |
|
9386 |
# @ woocommerce-germanized
|
9387 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:973
|
9388 |
msgid "Checkbox"
|
9389 |
msgstr "Checkbox"
|
9390 |
|
9391 |
# @ woocommerce-germanized
|
9392 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:974
|
9393 |
msgid "Enable \"agree to SEPA mandate\" checkbox"
|
9394 |
msgstr "Aktiviere die Checkbox zur Bestätigung des Lastschriftmandates"
|
9395 |
|
9396 |
# @ woocommerce-germanized
|
9397 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:976
|
9398 |
msgid "Enable a checkbox linking to a SEPA direct debit mandate preview."
|
9399 |
msgstr ""
|
9400 |
"Aktiviere eine Checkbox, die zu einer Vorschau des Lastschrift-Mandats führt."
|
9401 |
|
9402 |
# @ woocommerce-germanized
|
9403 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:980
|
9404 |
msgid "Checkbox label"
|
9405 |
msgstr "Checkbox Text"
|
9406 |
|
9407 |
# @ woocommerce-germanized
|
9408 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:982
|
9409 |
msgid ""
|
9410 |
"Customize the checkbox label. Use {link}link name{/link} to insert the "
|
9411 |
"preview link."
|
9413 |
"Passe den Checkbox Text an. Verwende {link}SEPA Lastschriftmandat{/link} um "
|
9414 |
"auf die Vorschau zu verlinken."
|
9415 |
|
9416 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:987
|
9417 |
msgid "Enable pre-notification"
|
9418 |
msgstr "Vorankündigung aktivieren"
|
9419 |
|
9420 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:988
|
9421 |
msgid "Insert pre-notification text within the order confirmation email."
|
9422 |
msgstr ""
|
9423 |
"Fügt einen Standard-Text zur Vorankündigung des SEPA-Einzugs in die "
|
9424 |
"Bestellbestätigung ein."
|
9425 |
|
9426 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:990
|
9427 |
msgid ""
|
9428 |
"This option inserts a standard text containing a pre-notification for the "
|
9429 |
"customer."
|
9432 |
"die Bestellbestätigung ein. In der Ankündigung wird u.a. ein konkreter "
|
9433 |
"Fälligkeitstermin genannt."
|
9434 |
|
9435 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:994
|
9436 |
msgid "Debit days"
|
9437 |
msgstr "Fälligkeitstage"
|
9438 |
|
9439 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:996
|
9440 |
msgid ""
|
9441 |
"This option is used to calculate the debit date and is added to the order "
|
9442 |
"date."
|
9446 |
"hier eingestellten Anzahl Tage."
|
9447 |
|
9448 |
# @ woocommerce-germanized
|
9449 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1000
|
9450 |
msgid "Mask IBAN"
|
9451 |
msgstr "IBAN maskieren"
|
9452 |
|
9453 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1001
|
9454 |
msgid "Mask the IBAN within emails."
|
9455 |
msgstr "IBAN in E-Mails maskieren."
|
9456 |
|
9457 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1003
|
9458 |
msgid ""
|
9459 |
"This will lead to masked IBANs within emails (replaced by *). All but last 4 "
|
9460 |
"digits will be masked."
|
9462 |
"Der IBAN wird in E-Mails (abgesehen von den letzten 4 Stellen) mit * "
|
9463 |
"maskiert."
|
9464 |
|
9465 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1013
|
9466 |
msgid "Remember"
|
9467 |
msgstr "Bankdaten merken"
|
9468 |
|
9469 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1014
|
9470 |
msgid "Remember account data for returning customers."
|
9471 |
msgstr "Bankverbindung für registrierte Kunden speichern."
|
9472 |
|
9473 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1016
|
9474 |
msgid "Save account data as user meta if user has/creates a customer account."
|
9475 |
msgstr ""
|
9476 |
"Speichert die Bankverbindung für registrierte Kunden in der user_meta "
|
9478 |
"eigenständig aus."
|
9479 |
|
9480 |
# @ woocommerce-germanized
|
9481 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1126
|
9482 |
msgid "Please insert your SEPA account data."
|
9483 |
msgstr "Bitte füge deine SEPA Kontoinformationen ein."
|
9484 |
|
9485 |
# @ woocommerce-germanized
|
9486 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1148
|
9487 |
msgid "Your IBAN seems to be invalid."
|
9488 |
msgstr "Dein IBAN scheint nicht gültig zu sein."
|
9489 |
|
9490 |
# @ woocommerce-germanized
|
9491 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1150
|
9492 |
msgid "Your IBAN's country code doesn’t match with your billing country."
|
9493 |
msgstr "Der Ländercode des IBANs stimmt nicht mit dem Rechnungsland überein."
|
9494 |
|
9495 |
# @ woocommerce-germanized
|
9496 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1155
|
9497 |
msgid "Your BIC seems to be invalid."
|
9498 |
msgstr "Dein BIC/SWIFT scheint nicht gültig zu sein."
|
9499 |
|
9500 |
# @ woocommerce-germanized
|
9501 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1200
|
9502 |
msgid "is invalid"
|
9503 |
msgstr "ist ungültig"
|
9504 |
|
9505 |
# @ woocommerce-germanized
|
9506 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1247
|
9507 |
msgid "Awaiting Direct Debit Payment"
|
9508 |
msgstr "Zahlung per Lastschrift ausstehend"
|
9509 |
|
10056 |
msgid "upgrade"
|
10057 |
msgstr "Upgrade"
|
10058 |
|
10059 |
+
#: woocommerce-germanized/woocommerce-germanized.php:980
|
10060 |
msgid "Pease wait while we are trying to redirect you to the payment provider."
|
10061 |
msgstr "Einen Moment - wir versuchen dich zum Zahlungsanbieter weiterzuleiten."
|
10062 |
|
11292 |
msgid "https://vendidero.de"
|
11293 |
msgstr "https://vendidero.de"
|
11294 |
|
11295 |
+
# @ woocommerce-germanized
|
11296 |
+
#~ msgid "No VAT notice"
|
11297 |
+
#~ msgstr "Umsatzsteuerbefreiung"
|
11298 |
+
|
11299 |
+
# @ woocommerce-germanized
|
11300 |
+
#~ msgid "Show no VAT §19 UStG notice on single product page."
|
11301 |
+
#~ msgstr ""
|
11302 |
+
#~ "Hinweis zur Umsatzsteuerbefreiung gemäß §19 UStG auf der "
|
11303 |
+
#~ "Produktseite anzeigen."
|
11304 |
+
|
11305 |
#~ msgid "install"
|
11306 |
#~ msgstr "installiere"
|
11307 |
|
i18n/languages/woocommerce-germanized-de_DE_formal.mo
CHANGED
Binary file
|
i18n/languages/woocommerce-germanized-de_DE_formal.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce Germanized\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2020-
|
6 |
-
"PO-Revision-Date: 2020-
|
7 |
"Last-Translator: holzhannes <holzhannes@posteo.de>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE@formal\n"
|
@@ -106,7 +106,7 @@ msgstr "Firma"
|
|
106 |
|
107 |
# @ woocommerce-germanized
|
108 |
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:139
|
109 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
110 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:747
|
111 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:816
|
112 |
msgctxt "dhl"
|
@@ -121,7 +121,7 @@ msgstr "Hausnummer"
|
|
121 |
|
122 |
# @ woocommerce-germanized
|
123 |
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:159
|
124 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
125 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:768
|
126 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:837
|
127 |
#: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:27
|
@@ -131,7 +131,7 @@ msgstr "Postleitzahl"
|
|
131 |
|
132 |
# @ woocommerce-germanized
|
133 |
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:168
|
134 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
135 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:761
|
136 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:830
|
137 |
#: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:30
|
@@ -174,57 +174,57 @@ msgctxt "dhl"
|
|
174 |
msgid "Age check"
|
175 |
msgstr "Alterssichtprüfung"
|
176 |
|
177 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:
|
178 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:
|
179 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:531
|
180 |
msgctxt "dhl"
|
181 |
msgid "GoGreen"
|
182 |
msgstr "GoGreen"
|
183 |
|
184 |
# @ woocommerce-germanized
|
185 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:
|
186 |
msgctxt "dhl"
|
187 |
msgid "Additional insurance"
|
188 |
msgstr "Transportversicherung"
|
189 |
|
190 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:
|
191 |
msgctxt "dhl"
|
192 |
msgid "Retail outlet routing"
|
193 |
msgstr "Filialrouting"
|
194 |
|
195 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:
|
196 |
msgctxt "dhl"
|
197 |
msgid "No neighbor"
|
198 |
msgstr "Keine Nachbarschaftszustellung"
|
199 |
|
200 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:
|
201 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:559
|
202 |
msgctxt "dhl"
|
203 |
msgid "Named person only"
|
204 |
msgstr "Persönliche Übergabe"
|
205 |
|
206 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:
|
207 |
msgctxt "dhl"
|
208 |
msgid "Bulky goods"
|
209 |
msgstr "Sperrgut"
|
210 |
|
211 |
# @ woocommerce-germanized
|
212 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:
|
213 |
msgctxt "dhl"
|
214 |
msgid "Identity check"
|
215 |
msgstr "Ident-Check"
|
216 |
|
217 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:
|
218 |
msgctxt "dhl"
|
219 |
msgid "Date of Birth"
|
220 |
msgstr "Geburtsdatum"
|
221 |
|
222 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:
|
223 |
msgctxt "dhl"
|
224 |
msgid "Minimum age"
|
225 |
msgstr "Mindestalter"
|
226 |
|
227 |
-
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:
|
228 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:580
|
229 |
msgctxt "dhl"
|
230 |
msgid "Premium"
|
@@ -382,7 +382,7 @@ msgstr "Retourensendung #{shipment_id} zur Bestellung #{order_id}"
|
|
382 |
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:224
|
383 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:184
|
384 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:485
|
385 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
386 |
#: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:38
|
387 |
msgctxt "dhl"
|
388 |
msgid "Packstation"
|
@@ -400,52 +400,52 @@ msgctxt "dhl"
|
|
400 |
msgid "Receiver is missing or does not exist."
|
401 |
msgstr "Empfänger fehlt oder existiert nicht."
|
402 |
|
403 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
404 |
#, php-format
|
405 |
msgctxt "dhl"
|
406 |
msgid "Shipment order #%s does not exist"
|
407 |
msgstr "Bestellung zur Sendung #%s existiert nicht"
|
408 |
|
409 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
410 |
#, php-format
|
411 |
msgctxt "dhl"
|
412 |
msgid "%s of the return address is a mandatory field."
|
413 |
msgstr "%s der Rücksendeadresse ist ein Pflichtfeld."
|
414 |
|
415 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
416 |
msgctxt "dhl"
|
417 |
msgid "Please either add a return company or name."
|
418 |
msgstr ""
|
419 |
"Bitte geben Sie entweder einen Firmennamen oder Namen für die "
|
420 |
"Rücksendeadresse an."
|
421 |
|
422 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
423 |
msgctxt "dhl"
|
424 |
msgid "Error while parsing preferred day."
|
425 |
msgstr "Fehler beim Einlesen des Wunschtags."
|
426 |
|
427 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
428 |
msgctxt "dhl"
|
429 |
msgid "Error while parsing preferred time."
|
430 |
msgstr "Fehler beim Einlesen der Wunschzeit."
|
431 |
|
432 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
433 |
msgctxt "dhl"
|
434 |
msgid "The visual min age check is invalid."
|
435 |
msgstr "Das Alter der Alterssichtprüfung ist ungültig."
|
436 |
|
437 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
438 |
msgctxt "dhl"
|
439 |
msgid "The ident min age check is invalid."
|
440 |
msgstr "Das Alter des Ident-Checks ist ungültig."
|
441 |
|
442 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
443 |
msgctxt "dhl"
|
444 |
msgid "There was an error parsing the date of birth for the identity check."
|
445 |
msgstr ""
|
446 |
"Beim Einlesen des Geburtsdatums für den Ident-Check trat ein Problem auf."
|
447 |
|
448 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
449 |
msgctxt "dhl"
|
450 |
msgid ""
|
451 |
"Either a minimum age or a date of birth must be added to the ident check."
|
@@ -454,151 +454,151 @@ msgstr ""
|
|
454 |
"hinzugefügt werden."
|
455 |
|
456 |
# @ woocommerce-germanized
|
457 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
458 |
#, php-format
|
459 |
msgctxt "dhl"
|
460 |
msgid "%s duties element does not exist."
|
461 |
msgstr "%s Zollabgabe existiert nicht."
|
462 |
|
463 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:879
|
464 |
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:954
|
|
|
465 |
msgctxt "dhl"
|
466 |
msgid "Invalid shipment"
|
467 |
msgstr "Ungültige Sendung"
|
468 |
|
469 |
# @ woocommerce-germanized
|
470 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:883
|
471 |
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:958
|
|
|
472 |
msgctxt "dhl"
|
473 |
msgid "Order does not exist"
|
474 |
msgstr "Bestellung existiert nicht"
|
475 |
|
476 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
477 |
msgctxt "dhl"
|
478 |
msgid "Error while creating the label instance"
|
479 |
msgstr "Fehler beim Erstellen der Label-Instanz"
|
480 |
|
481 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
482 |
msgctxt "dhl"
|
483 |
msgid "Invalid label"
|
484 |
msgstr "Ungültiges Label"
|
485 |
|
486 |
# @ woocommerce-germanized
|
487 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
488 |
msgctxt "dhl"
|
489 |
msgid "DHL Retoure International A"
|
490 |
msgstr "DHL Retoure International A"
|
491 |
|
492 |
# @ woocommerce-germanized
|
493 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
494 |
msgctxt "dhl"
|
495 |
msgid "DHL Retoure International B"
|
496 |
msgstr "DHL Retoure International B"
|
497 |
|
498 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
499 |
msgctxt "dhl"
|
500 |
msgid "DHL Retoure Online"
|
501 |
msgstr "DHL Retoure Online"
|
502 |
|
503 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
504 |
msgctxt "dhl"
|
505 |
msgid "DHL Paket Connect"
|
506 |
msgstr "DHL Paket Connect"
|
507 |
|
508 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
509 |
msgctxt "dhl"
|
510 |
msgid "DHL Europaket (B2B)"
|
511 |
msgstr "DHL Europaket (B2B)"
|
512 |
|
513 |
# @ woocommerce-germanized
|
514 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
515 |
msgctxt "dhl"
|
516 |
msgid "DHL Paket International"
|
517 |
msgstr "DHL Paket International"
|
518 |
|
519 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
520 |
msgctxt "dhl"
|
521 |
msgid "DHL Paket"
|
522 |
msgstr "DHL Paket"
|
523 |
|
524 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
525 |
msgctxt "dhl"
|
526 |
msgid "DHL Paket PRIO"
|
527 |
msgstr "DHL Paket PRIO"
|
528 |
|
529 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
530 |
msgctxt "dhl"
|
531 |
msgid "DHL Paket Taggleich"
|
532 |
msgstr "DHL Paket Taggleich"
|
533 |
|
534 |
-
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:
|
535 |
msgctxt "dhl"
|
536 |
msgid "Error while uploading label."
|
537 |
msgstr "Fehler beim Hochladen des Labels."
|
538 |
|
539 |
# @ woocommerce-germanized
|
540 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
541 |
msgctxt "dhl"
|
542 |
msgid "Receiver Ids"
|
543 |
msgstr "Empfänger IDs"
|
544 |
|
545 |
# @ woocommerce-germanized
|
546 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
547 |
msgctxt "dhl"
|
548 |
msgid "Receiver Id"
|
549 |
msgstr "Empfänger ID"
|
550 |
|
551 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
552 |
msgctxt "dhl"
|
553 |
msgid "Find your Receiver Ids within your DHL contract data."
|
554 |
msgstr "Die Empfänger IDs finden Sie im DHL Geschäftskundenportal."
|
555 |
|
556 |
# @ woocommerce-germanized
|
557 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
558 |
msgctxt "dhl"
|
559 |
msgid "Country Code"
|
560 |
msgstr "Ländercode"
|
561 |
|
562 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
563 |
msgctxt "dhl"
|
564 |
msgid "Leave empty to use the Receiver Id as fallback."
|
565 |
msgstr "Leer lassen, um diese Empfänger ID als Fallback zu verwenden."
|
566 |
|
567 |
# @ woocommerce-germanized
|
568 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
569 |
msgctxt "dhl"
|
570 |
msgid "+ Add receiver"
|
571 |
msgstr "+ Empfänger hinzufügen"
|
572 |
|
573 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
574 |
msgctxt "dhl"
|
575 |
msgid "Remove selected receiver(s)"
|
576 |
msgstr "Ausgewählte Empfänger löschen"
|
577 |
|
578 |
# @ woocommerce-germanized
|
579 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
580 |
msgctxt "dhl"
|
581 |
msgid "Select a country"
|
582 |
msgstr "Land auswählen"
|
583 |
|
584 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
585 |
msgctxt "dhl"
|
586 |
msgid "Harmonized Tariff Schedule (DHL)"
|
587 |
msgstr "Harmonized Tariff Schedule (DHL)"
|
588 |
|
589 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
590 |
msgctxt "dhl"
|
591 |
msgid "This code is needed for customs of international shipping."
|
592 |
msgstr ""
|
593 |
"Dieser Code wird für die Zollabwicklung bei internationalen Sendungen "
|
594 |
"benötigt."
|
595 |
|
596 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
597 |
msgctxt "dhl"
|
598 |
msgid "Country of manufacture (DHL)"
|
599 |
msgstr "Herstellungsland (DHL)"
|
600 |
|
601 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
602 |
msgctxt "dhl"
|
603 |
msgid ""
|
604 |
"The country of manufacture is needed for customs of international shipping."
|
@@ -606,7 +606,7 @@ msgstr ""
|
|
606 |
"Das Herstellungsland wird für die Zollabwicklung bei internationalen "
|
607 |
"Sendungen benötigt."
|
608 |
|
609 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
610 |
#, php-format
|
611 |
msgctxt "dhl"
|
612 |
msgid ""
|
@@ -616,18 +616,18 @@ msgstr ""
|
|
616 |
"Das Verzeichnis zum Speichern von DHL Labels fehlt. Bitte erstellen Sie den "
|
617 |
"Ordner %s manuell und stellen Sie sicher, dass der Ordner beschreibbar ist."
|
618 |
|
619 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
620 |
#: woocommerce-germanized-dhl/src/ShippingProviderDHL.php:34
|
621 |
msgctxt "dhl"
|
622 |
msgid "DHL"
|
623 |
msgstr "DHL"
|
624 |
|
625 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
626 |
msgctxt "dhl"
|
627 |
msgid "DHL Label"
|
628 |
msgstr "DHL Label"
|
629 |
|
630 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
631 |
msgctxt "dhl"
|
632 |
msgid ""
|
633 |
"This label has been generated by the DHL for WooCommerce Plugin and is shown "
|
@@ -637,7 +637,7 @@ msgstr ""
|
|
637 |
"Kompatibilitäts-Gründen angezeigt."
|
638 |
|
639 |
# @ woocommerce-germanized
|
640 |
-
#: woocommerce-germanized-dhl/src/Admin/Admin.php:
|
641 |
msgctxt "dhl"
|
642 |
msgid "Download label"
|
643 |
msgstr "Label downloaden"
|
@@ -1890,8 +1890,8 @@ msgstr "Deutschland"
|
|
1890 |
|
1891 |
# @ woocommerce-germanized
|
1892 |
#: woocommerce-germanized-dhl/src/ParcelLocator.php:89
|
1893 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1894 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1895 |
msgctxt "dhl"
|
1896 |
msgid "Address Type"
|
1897 |
msgstr "Adresstyp"
|
@@ -1917,30 +1917,30 @@ msgstr ""
|
|
1917 |
"eintragen."
|
1918 |
|
1919 |
#: woocommerce-germanized-dhl/src/ParcelLocator.php:185
|
1920 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1921 |
msgctxt "dhl"
|
1922 |
msgid "Invalid address type."
|
1923 |
msgstr "Ungültiger Adresstyp."
|
1924 |
|
1925 |
# @ woocommerce-germanized
|
1926 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1927 |
msgctxt "dhl"
|
1928 |
msgid "Sorry, but delivery to packstation is not available."
|
1929 |
msgstr ""
|
1930 |
"Entschuldigung, die Lieferung an eine Packstation steht nicht zur Verfügung."
|
1931 |
|
1932 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1933 |
msgctxt "dhl"
|
1934 |
msgid "Sorry, but delivery to parcel shops is not available."
|
1935 |
msgstr ""
|
1936 |
"Entschuldigung, die Lieferung an einen Paketshop steht nicht zur Verfügung."
|
1937 |
|
1938 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1939 |
msgctxt "dhl"
|
1940 |
msgid "Sorry, but delivery to post offices is not available."
|
1941 |
msgstr "Entschuldigung, die Lieferung an Postfilialen ist nicht verfügbar."
|
1942 |
|
1943 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1944 |
#, php-format
|
1945 |
msgctxt "dhl"
|
1946 |
msgid "Please indicate shipment to %s by one of the following values: %s."
|
@@ -1948,7 +1948,7 @@ msgstr ""
|
|
1948 |
"Bitte identifizieren Sie die Lieferung an %s durch die Eingabe einer der "
|
1949 |
"folgenden Werte: %s."
|
1950 |
|
1951 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1952 |
msgctxt "dhl"
|
1953 |
msgid ""
|
1954 |
"Your DHL customer number (Post number) is not valid. Please check your "
|
@@ -1957,7 +1957,7 @@ msgstr ""
|
|
1957 |
"Ihre DHL Kundennummer (Postnummer) ist nicht gültig. Bitte überprüfen Sie "
|
1958 |
"Ihre Eingabe."
|
1959 |
|
1960 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1961 |
msgctxt "dhl"
|
1962 |
msgid ""
|
1963 |
"Your DHL customer number (Post number) is needed to ship to a packstation."
|
@@ -1965,64 +1965,64 @@ msgstr ""
|
|
1965 |
"Ihre DHL Kundennummer (Postnummer) wird für den Versand an eine Packstation "
|
1966 |
"benötigt."
|
1967 |
|
1968 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1969 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1970 |
msgctxt "dhl"
|
1971 |
msgid "Branch"
|
1972 |
msgstr "Filiale"
|
1973 |
|
1974 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1975 |
msgctxt "dhl"
|
1976 |
msgid "Postnumber "
|
1977 |
msgstr "Postnummer "
|
1978 |
|
1979 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1980 |
#, php-format
|
1981 |
msgctxt "dhl"
|
1982 |
msgid "e.g. %s 456"
|
1983 |
msgstr "z.B. %s 456"
|
1984 |
|
1985 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1986 |
msgctxt "dhl"
|
1987 |
msgid "Branches"
|
1988 |
msgstr "Filialen"
|
1989 |
|
1990 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1991 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1992 |
msgctxt "dhl"
|
1993 |
msgid "DHL customer number (Post number)"
|
1994 |
msgstr "DHL Kundennummer (Postnummer)"
|
1995 |
|
1996 |
# @ woocommerce-germanized
|
1997 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
1998 |
msgctxt "dhl"
|
1999 |
msgid "Regular Address"
|
2000 |
msgstr "Normale Adresse"
|
2001 |
|
2002 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2003 |
msgctxt "dhl"
|
2004 |
msgid "Not yet a DHL customer?"
|
2005 |
msgstr "Noch kein DHL Kunde?"
|
2006 |
|
2007 |
# @ woocommerce-germanized
|
2008 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2009 |
msgctxt "dhl"
|
2010 |
msgid "Register now"
|
2011 |
msgstr "Jetzt registrieren"
|
2012 |
|
2013 |
# @ woocommerce-germanized
|
2014 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2015 |
#, php-format
|
2016 |
msgctxt "dhl"
|
2017 |
msgid "Search %s"
|
2018 |
msgstr "%s suchen"
|
2019 |
|
2020 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2021 |
msgctxt "dhl"
|
2022 |
msgid "No DHL locations found"
|
2023 |
msgstr "Keine DHL Standorte gefunden"
|
2024 |
|
2025 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2026 |
#, php-format
|
2027 |
msgctxt "dhl"
|
2028 |
msgid ""
|
@@ -2033,12 +2033,12 @@ msgstr ""
|
|
2033 |
"einen %s oder %s."
|
2034 |
|
2035 |
# @ woocommerce-germanized
|
2036 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2037 |
msgctxt "dhl"
|
2038 |
msgid "DHL location"
|
2039 |
msgstr "DHL Standort"
|
2040 |
|
2041 |
-
#: woocommerce-germanized-dhl/src/ParcelLocator.php:
|
2042 |
msgctxt "dhl"
|
2043 |
msgid "retry"
|
2044 |
msgstr "Erneut versuchen"
|
@@ -2272,7 +2272,7 @@ msgstr "LxBxH in dezimaler Form."
|
|
2272 |
|
2273 |
# @ woocommerce-germanized
|
2274 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:47
|
2275 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2276 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:24
|
2277 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:688
|
2278 |
msgctxt "shipments"
|
@@ -2318,14 +2318,14 @@ msgstr "Position hinzufügen"
|
|
2318 |
|
2319 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:178
|
2320 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:45
|
2321 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2322 |
msgctxt "shipments"
|
2323 |
msgid "Item"
|
2324 |
msgstr "Position"
|
2325 |
|
2326 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:179
|
2327 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:46
|
2328 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2329 |
#: woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:55
|
2330 |
#: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:37
|
2331 |
#: woocommerce-germanized-shipments/templates/shipment/shipment-details.php:60
|
@@ -2405,9 +2405,9 @@ msgstr "Löschen"
|
|
2405 |
|
2406 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-list.php:22
|
2407 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:76
|
2408 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2409 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2410 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2411 |
#: woocommerce-germanized-shipments/src/Admin/Settings.php:80
|
2412 |
#: woocommerce-germanized-shipments/src/Admin/Settings.php:177
|
2413 |
#: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:36
|
@@ -2424,10 +2424,10 @@ msgstr "%s #%s"
|
|
2424 |
# @ woocommerce-germanized
|
2425 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:19
|
2426 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:69
|
2427 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2428 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2429 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2430 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2431 |
#: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:20
|
2432 |
msgctxt "shipments"
|
2433 |
msgid "Shipments"
|
@@ -2521,7 +2521,7 @@ msgid "Download"
|
|
2521 |
msgstr "Download"
|
2522 |
|
2523 |
#: woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:39
|
2524 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2525 |
msgctxt "shipments"
|
2526 |
msgid "Create new label"
|
2527 |
msgstr "Neues Label erstellen"
|
@@ -2689,8 +2689,8 @@ msgid "Text to appear below the main email content."
|
|
2689 |
msgstr "Text der unterhalb des Inhalts der E-Mail angezeigt werden soll."
|
2690 |
|
2691 |
#: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:356
|
2692 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2693 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2694 |
#: woocommerce-germanized-shipments/templates/shipment/shipment-details-address.php:28
|
2695 |
msgctxt "shipments"
|
2696 |
msgid "N/A"
|
@@ -2707,7 +2707,7 @@ msgid "Choose which format of email to send."
|
|
2707 |
msgstr "Format für E-Mail-Versand auswählen."
|
2708 |
|
2709 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:68
|
2710 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2711 |
msgctxt "shipments"
|
2712 |
msgid "Shipment"
|
2713 |
msgstr "Sendung"
|
@@ -2729,7 +2729,7 @@ msgstr "Teilweise versandt"
|
|
2729 |
|
2730 |
# @ woocommerce-germanized
|
2731 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:104
|
2732 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2733 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:854
|
2734 |
msgctxt "shipments"
|
2735 |
msgid "Shipped"
|
@@ -2750,49 +2750,49 @@ msgctxt "shipments"
|
|
2750 |
msgid "Returned"
|
2751 |
msgstr "Retourniert"
|
2752 |
|
2753 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2754 |
msgctxt "shipments"
|
2755 |
msgid "Draft"
|
2756 |
msgstr "Entwurf"
|
2757 |
|
2758 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2759 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:846
|
2760 |
msgctxt "shipments"
|
2761 |
msgid "Processing"
|
2762 |
msgstr "In Bearbeitung"
|
2763 |
|
2764 |
# @ woocommerce-germanized
|
2765 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2766 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:50
|
2767 |
msgctxt "shipments"
|
2768 |
msgid "Delivered"
|
2769 |
msgstr "Geliefert"
|
2770 |
|
2771 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2772 |
msgctxt "shipments"
|
2773 |
msgid "Requested"
|
2774 |
msgstr "Beantragt"
|
2775 |
|
2776 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2777 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:81
|
2778 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:135
|
2779 |
msgctxt "shipments"
|
2780 |
msgid "Invalid order."
|
2781 |
msgstr "Ungültige Bestellung."
|
2782 |
|
2783 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2784 |
msgctxt "shipments"
|
2785 |
msgid "This order is already fully returned."
|
2786 |
msgstr "Diese Bestellung wurde bereits vollständig zurückgesendet."
|
2787 |
|
2788 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2789 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2790 |
msgctxt "shipments"
|
2791 |
msgid "Error while creating the shipment instance"
|
2792 |
msgstr "Fehler beim Erstellen der Sendungsinstanz"
|
2793 |
|
2794 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2795 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2796 |
#: woocommerce-germanized-shipments/src/ReturnShipment.php:429
|
2797 |
#: woocommerce-germanized-shipments/src/ReturnShipment.php:489
|
2798 |
#: woocommerce-germanized-shipments/src/SimpleShipment.php:118
|
@@ -2801,57 +2801,57 @@ msgctxt "shipments"
|
|
2801 |
msgid "Invalid shipment order"
|
2802 |
msgstr "Ungültige Bestellung zur Sendung"
|
2803 |
|
2804 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2805 |
msgctxt "shipments"
|
2806 |
msgid "Invalid order item"
|
2807 |
msgstr "Ungültige Bestellposition"
|
2808 |
|
2809 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2810 |
msgctxt "shipments"
|
2811 |
msgid "Invalid shipment item"
|
2812 |
msgstr "Ungültige Sendungsposition"
|
2813 |
|
2814 |
# @ woocommerce-germanized
|
2815 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2816 |
msgctxt "shipments"
|
2817 |
msgid "None"
|
2818 |
msgstr "Keiner"
|
2819 |
|
2820 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2821 |
msgctxt "shipments"
|
2822 |
msgid "Error while uploading file."
|
2823 |
msgstr "Fehler beim Hochladen der Datei."
|
2824 |
|
2825 |
# @ woocommerce-germanized
|
2826 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2827 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:23
|
2828 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:687
|
2829 |
msgctxt "shipments"
|
2830 |
msgid "Date"
|
2831 |
msgstr "Datum"
|
2832 |
|
2833 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2834 |
#: woocommerce-germanized-shipments/templates/shipment/shipment-details-tracking.php:23
|
2835 |
msgctxt "shipments"
|
2836 |
msgid "Tracking"
|
2837 |
msgstr "Sendungsverfolgung"
|
2838 |
|
2839 |
# @ woocommerce-germanized
|
2840 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2841 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2842 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:30
|
2843 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:694
|
2844 |
msgctxt "shipments"
|
2845 |
msgid "Actions"
|
2846 |
msgstr "Aktionen"
|
2847 |
|
2848 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2849 |
msgctxt "shipments"
|
2850 |
msgid "View"
|
2851 |
msgstr "Anzeigen"
|
2852 |
|
2853 |
# @ woocommerce-germanized
|
2854 |
-
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:
|
2855 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:865
|
2856 |
#: woocommerce-germanized-shipments/src/Ajax.php:336
|
2857 |
msgctxt "shipments"
|
@@ -2890,25 +2890,25 @@ msgid "View order"
|
|
2890 |
msgstr "Bestellung ansehen"
|
2891 |
|
2892 |
# @ woocommerce-germanized
|
2893 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2894 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2895 |
#: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:36
|
2896 |
msgctxt "shipments"
|
2897 |
msgid "Reason"
|
2898 |
msgstr "Rücksendegrund"
|
2899 |
|
2900 |
# @ woocommerce-germanized
|
2901 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2902 |
msgctxt "shipments"
|
2903 |
msgid "Return reasons"
|
2904 |
msgstr "Rücksendegründe"
|
2905 |
|
2906 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2907 |
msgctxt "shipments"
|
2908 |
msgid "Reason code"
|
2909 |
msgstr "Rücksendegrund (Code)"
|
2910 |
|
2911 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2912 |
msgctxt "shipments"
|
2913 |
msgid "The reason code is used to identify the reason."
|
2914 |
msgstr ""
|
@@ -2916,56 +2916,56 @@ msgstr ""
|
|
2916 |
"identifizieren zu können."
|
2917 |
|
2918 |
# @ woocommerce-germanized
|
2919 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2920 |
msgctxt "shipments"
|
2921 |
msgid "Choose a reason text."
|
2922 |
msgstr "Beschreibung für den Grund."
|
2923 |
|
2924 |
# @ woocommerce-germanized
|
2925 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2926 |
msgctxt "shipments"
|
2927 |
msgid "+ Add reason"
|
2928 |
msgstr "+ Grund hinzufügen"
|
2929 |
|
2930 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2931 |
msgctxt "shipments"
|
2932 |
msgid "Remove selected reason(s)"
|
2933 |
msgstr "Ausgewählte Gründe löschen"
|
2934 |
|
2935 |
# @ woocommerce-germanized
|
2936 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2937 |
msgctxt "shipments"
|
2938 |
msgid "Create shipments"
|
2939 |
msgstr "Sendungen erstellen"
|
2940 |
|
2941 |
# @ woocommerce-germanized
|
2942 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2943 |
msgctxt "shipments"
|
2944 |
msgid "Search shipments"
|
2945 |
msgstr "Sendungen suchen"
|
2946 |
|
2947 |
# @ woocommerce-germanized
|
2948 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2949 |
msgctxt "shipments"
|
2950 |
msgid "Search returns"
|
2951 |
msgstr "Retouren suchen"
|
2952 |
|
2953 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2954 |
msgctxt "shipments"
|
2955 |
msgid "Do you really want to delete the shipment?"
|
2956 |
msgstr "Möchten Sie die Sendung wirklich löschen?"
|
2957 |
|
2958 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2959 |
msgctxt "shipments"
|
2960 |
msgid "Do you really want to delete the label?"
|
2961 |
msgstr "Möchten Sie das Label wirklich löschen?"
|
2962 |
|
2963 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2964 |
msgctxt "shipments"
|
2965 |
msgid "Please save the shipment before creating a new label"
|
2966 |
msgstr "Bitte speichern Sie die Sendung bevor Sie ein neues Label erstellen"
|
2967 |
|
2968 |
-
#: woocommerce-germanized-shipments/src/Admin/Admin.php:
|
2969 |
msgctxt "shipments"
|
2970 |
msgid ""
|
2971 |
"Do you really want to delete the shipping provider? Some of your existing "
|
@@ -4478,8 +4478,9 @@ msgstr "l"
|
|
4478 |
# @ woocommerce-germanized
|
4479 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:549
|
4480 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:559
|
4481 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
4482 |
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:546
|
|
|
4483 |
msgid "incl. VAT"
|
4484 |
msgstr "inkl. MwSt."
|
4485 |
|
@@ -4490,7 +4491,7 @@ msgstr "exkl. MwSt."
|
|
4490 |
|
4491 |
# @ woocommerce-germanized
|
4492 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:551
|
4493 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
4494 |
#, php-format
|
4495 |
msgid "incl. %s%% VAT"
|
4496 |
msgstr "inkl. %s %% MwSt."
|
@@ -4734,7 +4735,7 @@ msgstr "Germanize"
|
|
4734 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:73
|
4735 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:141
|
4736 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:79
|
4737 |
-
#: woocommerce-germanized/woocommerce-germanized.php:
|
4738 |
msgid "Settings"
|
4739 |
msgstr "Einstellungen"
|
4740 |
|
@@ -4914,7 +4915,7 @@ msgid "Welcome to Germanized"
|
|
4914 |
msgstr "Willkommen bei Germanized"
|
4915 |
|
4916 |
# @ woocommerce-germanized
|
4917 |
-
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-welcome.php:
|
4918 |
msgid "Go to Germanized Settings"
|
4919 |
msgstr "Germanized Einstellungen"
|
4920 |
|
@@ -6022,13 +6023,13 @@ msgstr ""
|
|
6022 |
# @ woocommerce-germanized
|
6023 |
# @ woocommerce
|
6024 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:164
|
6025 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6026 |
-
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:
|
6027 |
-
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:
|
6028 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:138
|
6029 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:145
|
6030 |
-
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:
|
6031 |
-
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:
|
6032 |
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:131
|
6033 |
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:139
|
6034 |
msgid "Title"
|
@@ -6129,7 +6130,7 @@ msgstr ""
|
|
6129 |
|
6130 |
# @ woocommerce-germanized
|
6131 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:30
|
6132 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6133 |
#: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:174
|
6134 |
msgid "Legal Pages"
|
6135 |
msgstr "Rechtlich relevante Seiten"
|
@@ -6366,62 +6367,50 @@ msgstr "Jetzt hinzufügen"
|
|
6366 |
|
6367 |
# @ woocommerce-germanized
|
6368 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:209
|
6369 |
-
msgid "No VAT notice"
|
6370 |
-
msgstr "Umsatzsteuerbefreiung"
|
6371 |
-
|
6372 |
-
# @ woocommerce-germanized
|
6373 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:210
|
6374 |
-
msgid "Show no VAT §19 UStG notice on single product page."
|
6375 |
-
msgstr ""
|
6376 |
-
"Hinweis zur Umsatzsteuerbefreiung gemäß §19 UStG auf der Produktseite "
|
6377 |
-
"anzeigen."
|
6378 |
-
|
6379 |
-
# @ woocommerce-germanized
|
6380 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:219
|
6381 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:367
|
6382 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:161
|
6383 |
msgid "Notice Text"
|
6384 |
msgstr "Hinweistext"
|
6385 |
|
6386 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6387 |
msgid ""
|
6388 |
"You may want to adjust the small buisness notice text to meet your criteria."
|
6389 |
msgstr ""
|
6390 |
"Passen Sie hier, falls notwending, den Kleinunternehmer Hinweistext an."
|
6391 |
|
6392 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6393 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
6394 |
msgid ""
|
6395 |
"Value added tax is not collected, as small businesses according to §19 (1) "
|
6396 |
"UStG."
|
6397 |
msgstr "Kein Mehrwertsteuerausweis, da Kleinunternehmer nach §19 (1) UStG."
|
6398 |
|
6399 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6400 |
msgid "Phone"
|
6401 |
msgstr "Telefon"
|
6402 |
|
6403 |
# @ woocommerce-germanized
|
6404 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6405 |
msgid "Mark phone number as non-required within checkout."
|
6406 |
msgstr "Telefonnummer in der Kasse nicht als Pflichtfeld abfragen."
|
6407 |
|
6408 |
# @ woocommerce-germanized
|
6409 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6410 |
msgid "Add a title field to the address within checkout."
|
6411 |
msgstr "Lasse Kunden eine Anrede auswählen."
|
6412 |
|
6413 |
# @ woocommerce-germanized
|
6414 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6415 |
msgid "Disallow cancellations"
|
6416 |
msgstr "Stornierungen verhindern"
|
6417 |
|
6418 |
# @ woocommerce-germanized
|
6419 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6420 |
msgid "Don't allow customers to manually cancel orders."
|
6421 |
msgstr "Stornierung von Bestellungen durch den Kunden verhindern."
|
6422 |
|
6423 |
# @ woocommerce-germanized
|
6424 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6425 |
msgid ""
|
6426 |
"By default payment methods like PayPal allow order cancellation by clicking "
|
6427 |
"the abort link. This option will stop customers from manually cancel orders."
|
@@ -6430,17 +6419,17 @@ msgstr ""
|
|
6430 |
"Kunden den Abbrechen-Link verwendet. Diese Option verhindert den manuellen "
|
6431 |
"Abbruch einer Bestellung durch den Kunden."
|
6432 |
|
6433 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6434 |
msgid "Disallow gateway choosing"
|
6435 |
msgstr "Wechsel der Zahlungsart"
|
6436 |
|
6437 |
# @ woocommerce-germanized
|
6438 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6439 |
msgid "Don't allow customers to change the payment gateway after ordering."
|
6440 |
msgstr ""
|
6441 |
"Wechsel der Zahlungsart nach der Bestellung durch den Kunden verhindern."
|
6442 |
|
6443 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6444 |
msgid ""
|
6445 |
"Customers paying through a gateway which allows later payment (e.g. PayPal) "
|
6446 |
"will find a link within their customer account which redirects them to a pay "
|
@@ -6459,17 +6448,17 @@ msgstr ""
|
|
6459 |
"PayPal weiter."
|
6460 |
|
6461 |
# @ woocommerce-germanized
|
6462 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6463 |
msgid "Free shipping"
|
6464 |
msgstr "Kostenloser Versand"
|
6465 |
|
6466 |
# @ woocommerce-germanized
|
6467 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6468 |
msgid "Force free shipping method if available."
|
6469 |
msgstr "Erzwinge kostenlosen Versand wenn die Methode zur Verfügung steht."
|
6470 |
|
6471 |
# @ woocommerce-germanized
|
6472 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6473 |
msgid ""
|
6474 |
"By default WooCommerce will let customers choose other shipping methods than "
|
6475 |
"free shipping (if available). This option will force free shipping if "
|
@@ -6480,11 +6469,11 @@ msgstr ""
|
|
6480 |
"Versand, sobald dieser verfügbar ist."
|
6481 |
|
6482 |
# @ woocommerce-germanized
|
6483 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6484 |
msgid "Exclude Methods"
|
6485 |
msgstr "Deaktivierte Methoden"
|
6486 |
|
6487 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6488 |
msgid ""
|
6489 |
"Optionally choose methods which should be excluded from hiding when free "
|
6490 |
"shipping is available (e.g. express shipping options)."
|
@@ -6493,11 +6482,11 @@ msgstr ""
|
|
6493 |
"wenn kostenloser Versand verfügbar ist (z.B. Express-Versandmethoden)."
|
6494 |
|
6495 |
# @ woocommerce-germanized
|
6496 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6497 |
msgid "Price Range Format"
|
6498 |
msgstr "Preisspannen-Format"
|
6499 |
|
6500 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6501 |
msgid ""
|
6502 |
"Adjust the price range format e.g. for variable products. Use {min_price} as "
|
6503 |
"placeholder for the minimum price. Use {max_price} as placeholder for the "
|
@@ -6507,23 +6496,23 @@ msgstr ""
|
|
6507 |
"Sie {min_price} als Platzhalter für den minimalen Preis und {max_price} als "
|
6508 |
"Platzhalter für den höchsten Preis."
|
6509 |
|
6510 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6511 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
6512 |
msgid "{min_price} – {max_price}"
|
6513 |
msgstr "{min_price} – {max_price}"
|
6514 |
|
6515 |
# @ woocommerce-germanized
|
6516 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6517 |
msgid "Add to Cart"
|
6518 |
msgstr "Zum Warenkorb Button"
|
6519 |
|
6520 |
# @ woocommerce-germanized
|
6521 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6522 |
msgid "Show add to cart button on listings."
|
6523 |
msgstr "Zeige den „zum Warenkorb“ Button in Produktlisten an."
|
6524 |
|
6525 |
# @ woocommerce-germanized
|
6526 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6527 |
msgid ""
|
6528 |
"unset this option if you don't want to show the add to cart button within "
|
6529 |
"the product listings"
|
@@ -6531,19 +6520,19 @@ msgstr ""
|
|
6531 |
"Deaktivieren Sie diese Option, wenn Sie den zum Warenkorb Button nicht "
|
6532 |
"innerhalb von Produktauflistungen darstellen möchten"
|
6533 |
|
6534 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6535 |
msgid "Link"
|
6536 |
msgstr "Verlinkung"
|
6537 |
|
6538 |
# @ woocommerce-germanized
|
6539 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6540 |
msgid "Link to product details page instead of add to cart within listings."
|
6541 |
msgstr ""
|
6542 |
"Ersetze den zum-Warenkorb-Link durch einen Link zur Produktdetailseite in "
|
6543 |
"Produktlisten."
|
6544 |
|
6545 |
# @ woocommerce-germanized
|
6546 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6547 |
msgid ""
|
6548 |
"Decide whether you like to link to your product's details page instead of "
|
6549 |
"displaying an add to cart button within product listings."
|
@@ -6553,17 +6542,17 @@ msgstr ""
|
|
6553 |
"einfach diese Option."
|
6554 |
|
6555 |
# @ woocommerce-germanized
|
6556 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6557 |
msgid "Product Details Text"
|
6558 |
msgstr "Produktdetails Text"
|
6559 |
|
6560 |
# @ woocommerce-germanized
|
6561 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6562 |
msgid "Details"
|
6563 |
msgstr "Details"
|
6564 |
|
6565 |
# @ woocommerce-germanized
|
6566 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6567 |
msgid ""
|
6568 |
"If you have chosen to link to product details page instead of add to cart "
|
6569 |
"URL you may want to change the button text."
|
@@ -6573,11 +6562,11 @@ msgstr ""
|
|
6573 |
"einen Button-Text vergeben."
|
6574 |
|
6575 |
# @ woocommerce-germanized
|
6576 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6577 |
msgid "Overview"
|
6578 |
msgstr "Übersicht"
|
6579 |
|
6580 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6581 |
msgid ""
|
6582 |
"You can always return to the settings overview by navigating through the "
|
6583 |
"breadcrumb navigation."
|
@@ -6586,17 +6575,17 @@ msgstr ""
|
|
6586 |
"indem Sie die Breadcrumb-Navigation nutzten."
|
6587 |
|
6588 |
# @ woocommerce-germanized
|
6589 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6590 |
msgid "Sections"
|
6591 |
msgstr "Rubriken"
|
6592 |
|
6593 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6594 |
msgid ""
|
6595 |
"Each setting tab might have sub sections containing more specific options."
|
6596 |
msgstr ""
|
6597 |
"Jeder Tab kann weitere Unterbereiche mit spezifischen Optionen beinhalten."
|
6598 |
|
6599 |
-
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:
|
6600 |
msgid ""
|
6601 |
"Adjust legal pages e.g. terms and conditions. These pages are used to add "
|
6602 |
"links within checkboxes and text attachments to emails."
|
@@ -7371,7 +7360,7 @@ msgstr "Name"
|
|
7371 |
#: woocommerce-germanized/includes/admin/settings/views/html-admin-page-checkboxes.php:12
|
7372 |
#: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:29
|
7373 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:800
|
7374 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7375 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:124
|
7376 |
msgid "Description"
|
7377 |
msgstr "Beschreibung"
|
@@ -7772,52 +7761,56 @@ msgstr ""
|
|
7772 |
"Passen Sie Germanized an Ihre Bedürfnisse an. Die Einstellungen können Sie "
|
7773 |
"später jederzeit ändern."
|
7774 |
|
|
|
|
|
|
|
|
|
7775 |
# @ woocommerce-germanized
|
7776 |
-
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:
|
7777 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:159
|
7778 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:39
|
7779 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7780 |
#: woocommerce-germanized/includes/gateways/direct-debit/views/html-export.php:30
|
7781 |
msgid "Direct Debit"
|
7782 |
msgstr "Lastschrift"
|
7783 |
|
7784 |
# @ woocommerce-germanized
|
7785 |
-
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:
|
7786 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:164
|
7787 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:85
|
7788 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:117
|
7789 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:166
|
7790 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:117
|
7791 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7792 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7793 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7794 |
msgid "Account Holder"
|
7795 |
msgstr "Kontoinhaber"
|
7796 |
|
7797 |
# @ woocommerce-germanized
|
7798 |
-
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:
|
7799 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:169
|
7800 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:86
|
7801 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:118
|
7802 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:167
|
7803 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:124
|
7804 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7805 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7806 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7807 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7808 |
msgid "IBAN"
|
7809 |
msgstr "IBAN"
|
7810 |
|
7811 |
# @ woocommerce-germanized
|
7812 |
-
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:
|
7813 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:174
|
7814 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:87
|
7815 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:119
|
7816 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:168
|
7817 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:131
|
7818 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7819 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7820 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7821 |
msgid "BIC/SWIFT"
|
7822 |
msgstr "BIC/SWIFT"
|
7823 |
|
@@ -7828,7 +7821,7 @@ msgstr "Paketdienstleister Datenweitergabe"
|
|
7828 |
# @ woocommerce-germanized
|
7829 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:179
|
7830 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:138
|
7831 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7832 |
msgid "Mandate Reference ID"
|
7833 |
msgstr "Mandat-Referenznummer"
|
7834 |
|
@@ -8038,7 +8031,7 @@ msgstr ""
|
|
8038 |
"Vielen Dank. Wir haben Ihren Widerruf erhalten. Sie bekommen in Kürze eine E-"
|
8039 |
"Mail mit Ihren Daten als Bestätigung."
|
8040 |
|
8041 |
-
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:
|
8042 |
msgid ""
|
8043 |
"Sorry, but differential taxed products cannot be purchased with normal "
|
8044 |
"products at the same time."
|
@@ -8046,7 +8039,7 @@ msgstr ""
|
|
8046 |
"Entschuldigung, differenzbesteuerte Produkte können nicht gemeinsam mit "
|
8047 |
"normalen Produkten gekauft werden."
|
8048 |
|
8049 |
-
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:
|
8050 |
msgid ""
|
8051 |
"Sorry, but normal products cannot be purchased together with differential "
|
8052 |
"taxed products at the same time."
|
@@ -8054,6 +8047,19 @@ msgstr ""
|
|
8054 |
"Entschuldigung, normale Produkte können nicht gemeinsam mit "
|
8055 |
"differenzbesteuerten Produkten gekauft werden."
|
8056 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8057 |
#: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:257
|
8058 |
msgid "Is voucher?"
|
8059 |
msgstr "Wertgutschein?"
|
@@ -8071,8 +8077,8 @@ msgstr ""
|
|
8071 |
"\">hier</a>."
|
8072 |
|
8073 |
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:118
|
8074 |
-
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:
|
8075 |
-
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:
|
8076 |
msgid ""
|
8077 |
"Please activate your account through clicking on the activation link "
|
8078 |
"received via email."
|
@@ -8080,18 +8086,18 @@ msgstr ""
|
|
8080 |
"Bitte aktivieren Sie Ihr Kundenkonto indem Sie auf den Link in der E-Mail "
|
8081 |
"klicken."
|
8082 |
|
8083 |
-
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:
|
8084 |
#, php-format
|
8085 |
msgid "Continue without creating an account? <a href=\"%s\">Click here</a>"
|
8086 |
msgstr "Weiter zur Kasse ohne Kundenkonto? <a href=\"%s\">Hier klicken</a>"
|
8087 |
|
8088 |
-
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:
|
8089 |
msgid "Please create an account or login before continuing to checkout"
|
8090 |
msgstr ""
|
8091 |
"Bitte erstellen Sie ein Kundenkonto oder loggen Sie sich ein, bevor Sie zur "
|
8092 |
"Kasse gehen"
|
8093 |
|
8094 |
-
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:
|
8095 |
msgid ""
|
8096 |
"This activation code has expired. We have sent you a new activation code via "
|
8097 |
"e-mail."
|
@@ -8100,20 +8106,20 @@ msgstr ""
|
|
8100 |
"Code per E-Mail geschickt."
|
8101 |
|
8102 |
# @ woocommerce-germanized
|
8103 |
-
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:
|
8104 |
msgid "Sorry, but this activation code cannot be found."
|
8105 |
msgstr "Sorry, dieser Aktivierungscode ist uns leider nicht bekannt."
|
8106 |
|
8107 |
# @ woocommerce-germanized
|
8108 |
-
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:
|
8109 |
msgid "Thank you. You have successfully activated your account."
|
8110 |
msgstr "Vielen Dank. Ihr Benutzerkonto wurde erfolgreich aktiviert."
|
8111 |
|
8112 |
-
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:
|
8113 |
msgid "Expired activation key"
|
8114 |
msgstr "Abgelaufener Aktivierungscode"
|
8115 |
|
8116 |
-
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:
|
8117 |
msgid "Invalid activation key"
|
8118 |
msgstr "Aktivierungscode ungültig"
|
8119 |
|
@@ -8163,7 +8169,7 @@ msgid "Forward your Revocation online"
|
|
8163 |
msgstr "Widerruf online erklären"
|
8164 |
|
8165 |
# @ woocommerce-germanized
|
8166 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8167 |
#, php-format
|
8168 |
msgid ""
|
8169 |
"Please install <a href=\"%s\" target=\"_blank\">WooCommerce</a> before "
|
@@ -8172,85 +8178,85 @@ msgstr ""
|
|
8172 |
"Bitte installieren Sie <a href=\"%s\" target=\"_blank\">WooCommerce</a> "
|
8173 |
"bevor Sie WooCommerce Germanized installieren. Vielen Dank!"
|
8174 |
|
8175 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8176 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8177 |
msgid "Reduced rate"
|
8178 |
msgstr "Ermäßigter Steuersatz"
|
8179 |
|
8180 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8181 |
#, php-format
|
8182 |
msgctxt "vat-rate-import"
|
8183 |
msgid "VAT %s"
|
8184 |
msgstr "MwSt. %s"
|
8185 |
|
8186 |
# @ woocommerce-germanized
|
8187 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8188 |
msgctxt "Page slug"
|
8189 |
msgid "data-security"
|
8190 |
msgstr "datenschutzerklaerung"
|
8191 |
|
8192 |
# @ woocommerce-germanized
|
8193 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8194 |
msgctxt "Page title"
|
8195 |
msgid "Data Security Statement"
|
8196 |
msgstr "Datenschutzerklärung"
|
8197 |
|
8198 |
# @ woocommerce-germanized
|
8199 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8200 |
msgctxt "Page slug"
|
8201 |
msgid "imprint"
|
8202 |
msgstr "impressum"
|
8203 |
|
8204 |
# @ woocommerce-germanized
|
8205 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8206 |
msgctxt "Page title"
|
8207 |
msgid "Imprint"
|
8208 |
msgstr "Impressum"
|
8209 |
|
8210 |
# @ woocommerce-germanized
|
8211 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8212 |
msgctxt "Page slug"
|
8213 |
msgid "terms"
|
8214 |
msgstr "agb"
|
8215 |
|
8216 |
# @ woocommerce-germanized
|
8217 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8218 |
msgctxt "Page title"
|
8219 |
msgid "Terms & Conditions"
|
8220 |
msgstr "AGB"
|
8221 |
|
8222 |
# @ woocommerce-germanized
|
8223 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8224 |
msgctxt "Page slug"
|
8225 |
msgid "revocation"
|
8226 |
msgstr "widerrufsbelehrung"
|
8227 |
|
8228 |
# @ woocommerce-germanized
|
8229 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8230 |
msgctxt "Page title"
|
8231 |
msgid "Power of Revocation"
|
8232 |
msgstr "Widerrufsbelehrung"
|
8233 |
|
8234 |
# @ woocommerce-germanized
|
8235 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8236 |
msgctxt "Page slug"
|
8237 |
msgid "shipping-methods"
|
8238 |
msgstr "versandarten"
|
8239 |
|
8240 |
# @ woocommerce-germanized
|
8241 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8242 |
msgctxt "Page title"
|
8243 |
msgid "Shipping Methods"
|
8244 |
msgstr "Versandarten"
|
8245 |
|
8246 |
# @ woocommerce-germanized
|
8247 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8248 |
msgctxt "Page slug"
|
8249 |
msgid "payment-methods"
|
8250 |
msgstr "bezahlmoeglichkeiten"
|
8251 |
|
8252 |
# @ woocommerce-germanized
|
8253 |
-
#: woocommerce-germanized/includes/class-wc-gzd-install.php:
|
8254 |
msgctxt "Page title"
|
8255 |
msgid "Payment Methods"
|
8256 |
msgstr "Zahlungsarten"
|
@@ -8421,7 +8427,7 @@ msgstr ""
|
|
8421 |
|
8422 |
# @ woocommerce-germanized
|
8423 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:209
|
8424 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
8425 |
msgid "I hereby agree to the {link}direct debit mandate{/link}."
|
8426 |
msgstr "Hiermit erteile ich das {link}SEPA Lastschriftmandat{/link}."
|
8427 |
|
@@ -8816,16 +8822,10 @@ msgctxt "revocation-form"
|
|
8816 |
msgid "Title"
|
8817 |
msgstr "Anrede"
|
8818 |
|
8819 |
-
# @ woocommerce-germanized
|
8820 |
-
#: woocommerce-germanized/includes/class-wc-gzd-revocation.php:52
|
8821 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:500
|
8822 |
-
msgid "Mr."
|
8823 |
-
msgstr "Herr"
|
8824 |
-
|
8825 |
# @ woocommerce-germanized
|
8826 |
#: woocommerce-germanized/includes/class-wc-gzd-revocation.php:53
|
8827 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
8828 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
8829 |
msgid "Ms."
|
8830 |
msgstr "Frau"
|
8831 |
|
@@ -9200,16 +9200,16 @@ msgid "SEPA XML Export"
|
|
9200 |
msgstr "SEPA XML Export"
|
9201 |
|
9202 |
# @ woocommerce-germanized
|
9203 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9204 |
#, php-format
|
9205 |
msgid "Order %s"
|
9206 |
msgstr "Bestellung %s"
|
9207 |
|
9208 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9209 |
msgid "Will be notified separately"
|
9210 |
msgstr "Wird separat mitgeteilt"
|
9211 |
|
9212 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9213 |
#, php-format
|
9214 |
msgid ""
|
9215 |
"We will debit %s from your account by direct debit on or shortly after %s."
|
@@ -9218,105 +9218,105 @@ msgstr ""
|
|
9218 |
"%s ein."
|
9219 |
|
9220 |
# @ woocommerce-germanized
|
9221 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9222 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9223 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9224 |
msgid "a single payment"
|
9225 |
msgstr "eine einmalige Zahlung"
|
9226 |
|
9227 |
# @ woocommerce-germanized
|
9228 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9229 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:111
|
9230 |
msgid "Enable/Disable"
|
9231 |
msgstr "Aktivieren/Deaktivieren"
|
9232 |
|
9233 |
# @ woocommerce-germanized
|
9234 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9235 |
msgid "Enable Direct Debit Payment"
|
9236 |
msgstr "Bezahlung per Lastschrift aktivieren"
|
9237 |
|
9238 |
# @ woocommerce-germanized
|
9239 |
# @ woocommerce
|
9240 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9241 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:117
|
9242 |
msgctxt "gateway"
|
9243 |
msgid "Title"
|
9244 |
msgstr "Bezeichnung"
|
9245 |
|
9246 |
# @ woocommerce-germanized
|
9247 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9248 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:119
|
9249 |
msgid "This controls the title which the user sees during checkout."
|
9250 |
msgstr ""
|
9251 |
"Beschreibungstext, den Benutzer bei der Auswahl dieser Zahlungsart sehen."
|
9252 |
|
9253 |
# @ woocommerce-germanized
|
9254 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9255 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:126
|
9256 |
msgid "Payment method description that the customer will see on your checkout."
|
9257 |
msgstr "Beschreibung der Zahlungsart, die Kunden auf ihrer Website sehen."
|
9258 |
|
9259 |
# @ woocommerce-germanized
|
9260 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9261 |
msgid "The order amount will be debited directly from your bank account."
|
9262 |
msgstr ""
|
9263 |
"Der Gesamtbestellbetrag wird per SEPA-Lastschrift direkt von Ihrem Konto "
|
9264 |
"abgebucht."
|
9265 |
|
9266 |
# @ woocommerce-germanized
|
9267 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9268 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:131
|
9269 |
msgid "Instructions"
|
9270 |
msgstr "Anweisungen"
|
9271 |
|
9272 |
# @ woocommerce-germanized
|
9273 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9274 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:133
|
9275 |
msgid "Instructions that will be added to the thank you page and emails."
|
9276 |
msgstr "Anweisung, die zur „Danke“-Seite und zu E-Mails hinzugefügt werden."
|
9277 |
|
9278 |
# @ woocommerce-germanized
|
9279 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9280 |
msgid "Debtee"
|
9281 |
msgstr "Gläubiger Informationen"
|
9282 |
|
9283 |
# @ woocommerce-germanized
|
9284 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9285 |
msgid "Insert your company information."
|
9286 |
msgstr "Fügen Sie hier die Informationen zu ihrem Unternehmen ein."
|
9287 |
|
9288 |
# @ woocommerce-germanized
|
9289 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9290 |
msgid "Company Inc, John Doe Street, New York"
|
9291 |
msgstr "Musterfirma GmbH, Musterstraße 12, 12203 Musterstadt"
|
9292 |
|
9293 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9294 |
msgid "Insert the bank account holder name."
|
9295 |
msgstr "Fügen Sie hier den Namen des Kontoinhabers ein."
|
9296 |
|
9297 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9298 |
msgid "Company Inc"
|
9299 |
msgstr "Muster GmbH"
|
9300 |
|
9301 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9302 |
msgid "Insert the bank account IBAN."
|
9303 |
msgstr "Fügen Sie hier den IBAN ihres Kontos ein."
|
9304 |
|
9305 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9306 |
msgid "BIC"
|
9307 |
msgstr "BIC"
|
9308 |
|
9309 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9310 |
msgid "Insert the bank account BIC."
|
9311 |
msgstr "Fügen Sie hier den BIC ihres Kontos ein."
|
9312 |
|
9313 |
# @ woocommerce-germanized
|
9314 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9315 |
msgid "Debtee identification number"
|
9316 |
msgstr "Identifikationsnummer"
|
9317 |
|
9318 |
# @ woocommerce-germanized
|
9319 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9320 |
#, php-format
|
9321 |
msgid ""
|
9322 |
"Insert your debtee indentification number. More information can be found <a "
|
@@ -9326,16 +9326,16 @@ msgstr ""
|
|
9326 |
"Weitere Informationen zu dieser Nummer erhalten Sie <a href=\"%s\">hier</a>."
|
9327 |
|
9328 |
# @ woocommerce-germanized
|
9329 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9330 |
msgid "Generate Mandate ID"
|
9331 |
msgstr "Mandat-Referenz generieren"
|
9332 |
|
9333 |
# @ woocommerce-germanized
|
9334 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9335 |
msgid "Automatically generate Mandate ID."
|
9336 |
msgstr "Mandat-Referenznummer automatisch generieren."
|
9337 |
|
9338 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9339 |
msgid ""
|
9340 |
"Automatically generate Mandate ID after order completion (based on Order ID)."
|
9341 |
msgstr ""
|
@@ -9343,11 +9343,11 @@ msgstr ""
|
|
9343 |
"basierend auf der Bestellnummer generieren."
|
9344 |
|
9345 |
# @ woocommerce-germanized
|
9346 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9347 |
msgid "XML Pain Format"
|
9348 |
msgstr "XML Pain Format"
|
9349 |
|
9350 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9351 |
msgid ""
|
9352 |
"You may adjust the XML Export Pain Schema to your banks needs. Some banks "
|
9353 |
"may require pain.001.003.03."
|
@@ -9356,11 +9356,11 @@ msgstr ""
|
|
9356 |
"Einige Banken benötigen z.B. pain.001.003.03."
|
9357 |
|
9358 |
# @ woocommerce-germanized
|
9359 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9360 |
msgid "Mandate ID Format"
|
9361 |
msgstr "Mandat-Referenz Format"
|
9362 |
|
9363 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9364 |
msgid ""
|
9365 |
"You may extend the Mandate ID format by adding a prefix and/or suffix. Use "
|
9366 |
"{id} as placeholder to insert the automatically generated ID."
|
@@ -9370,12 +9370,12 @@ msgstr ""
|
|
9370 |
"einzufügen."
|
9371 |
|
9372 |
# @ woocommerce-germanized
|
9373 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9374 |
msgid "Mandate Text"
|
9375 |
msgstr "Lastschriftmandat"
|
9376 |
|
9377 |
# @ woocommerce-germanized
|
9378 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9379 |
msgid ""
|
9380 |
"This text will be populated with live order/checkout data. Will be used as "
|
9381 |
"preview direct debit mandate and as email template text."
|
@@ -9386,29 +9386,29 @@ msgstr ""
|
|
9386 |
"Verfügung gestellt."
|
9387 |
|
9388 |
# @ woocommerce-germanized
|
9389 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9390 |
msgid "Checkbox"
|
9391 |
msgstr "Checkbox"
|
9392 |
|
9393 |
# @ woocommerce-germanized
|
9394 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9395 |
msgid "Enable \"agree to SEPA mandate\" checkbox"
|
9396 |
msgstr "Aktivieren Sie die Checkbox zur Bestätigung des Lastschriftmandates"
|
9397 |
|
9398 |
# @ woocommerce-germanized
|
9399 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9400 |
msgid "Enable a checkbox linking to a SEPA direct debit mandate preview."
|
9401 |
msgstr ""
|
9402 |
"Aktivieren Sie eine Checkbox, die zu einer Vorschau des Lastschrift-Mandats "
|
9403 |
"führt."
|
9404 |
|
9405 |
# @ woocommerce-germanized
|
9406 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9407 |
msgid "Checkbox label"
|
9408 |
msgstr "Checkbox Text"
|
9409 |
|
9410 |
# @ woocommerce-germanized
|
9411 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9412 |
msgid ""
|
9413 |
"Customize the checkbox label. Use {link}link name{/link} to insert the "
|
9414 |
"preview link."
|
@@ -9416,17 +9416,17 @@ msgstr ""
|
|
9416 |
"Passt den Checkbox Text an. Verwenden Sie {link}SEPA Lastschriftmandat{/"
|
9417 |
"link} um auf die Vorschau zu verlinken."
|
9418 |
|
9419 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9420 |
msgid "Enable pre-notification"
|
9421 |
msgstr "Vorankündigung aktivieren"
|
9422 |
|
9423 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9424 |
msgid "Insert pre-notification text within the order confirmation email."
|
9425 |
msgstr ""
|
9426 |
"Fügt einen Standard-Text zur Vorankündigung des SEPA-Einzugs in die "
|
9427 |
"Bestellbestätigung ein."
|
9428 |
|
9429 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9430 |
msgid ""
|
9431 |
"This option inserts a standard text containing a pre-notification for the "
|
9432 |
"customer."
|
@@ -9435,11 +9435,11 @@ msgstr ""
|
|
9435 |
"die Bestellbestätigung ein. In der Ankündigung wird u.a. ein konkreter "
|
9436 |
"Fälligkeitstermin genannt."
|
9437 |
|
9438 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9439 |
msgid "Debit days"
|
9440 |
msgstr "Fälligkeitstage"
|
9441 |
|
9442 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9443 |
msgid ""
|
9444 |
"This option is used to calculate the debit date and is added to the order "
|
9445 |
"date."
|
@@ -9449,15 +9449,15 @@ msgstr ""
|
|
9449 |
"hier eingestellten Anzahl Tage."
|
9450 |
|
9451 |
# @ woocommerce-germanized
|
9452 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9453 |
msgid "Mask IBAN"
|
9454 |
msgstr "IBAN maskieren"
|
9455 |
|
9456 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9457 |
msgid "Mask the IBAN within emails."
|
9458 |
msgstr "IBAN in E-Mails maskieren."
|
9459 |
|
9460 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9461 |
msgid ""
|
9462 |
"This will lead to masked IBANs within emails (replaced by *). All but last 4 "
|
9463 |
"digits will be masked."
|
@@ -9465,15 +9465,15 @@ msgstr ""
|
|
9465 |
"Der IBAN wird in E-Mails (abgesehen von den letzten 4 Stellen) mit * "
|
9466 |
"maskiert."
|
9467 |
|
9468 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9469 |
msgid "Remember"
|
9470 |
msgstr "Bankdaten merken"
|
9471 |
|
9472 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9473 |
msgid "Remember account data for returning customers."
|
9474 |
msgstr "Bankverbindung für registrierte Kunden speichern."
|
9475 |
|
9476 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9477 |
msgid "Save account data as user meta if user has/creates a customer account."
|
9478 |
msgstr ""
|
9479 |
"Speichert die Bankverbindung für registrierte Kunden in der user_meta "
|
@@ -9481,32 +9481,32 @@ msgstr ""
|
|
9481 |
"eigenständig aus."
|
9482 |
|
9483 |
# @ woocommerce-germanized
|
9484 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9485 |
msgid "Please insert your SEPA account data."
|
9486 |
msgstr "Bitte fügen Sie Ihre SEPA Kontoinformationen ein."
|
9487 |
|
9488 |
# @ woocommerce-germanized
|
9489 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9490 |
msgid "Your IBAN seems to be invalid."
|
9491 |
msgstr "Ihr IBAN scheint nicht gültig zu sein."
|
9492 |
|
9493 |
# @ woocommerce-germanized
|
9494 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9495 |
msgid "Your IBAN's country code doesn’t match with your billing country."
|
9496 |
msgstr "Der Ländercode des IBANs stimmt nicht mit dem Rechnungsland überein."
|
9497 |
|
9498 |
# @ woocommerce-germanized
|
9499 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9500 |
msgid "Your BIC seems to be invalid."
|
9501 |
msgstr "Ihr BIC/SWIFT scheint nicht gültig zu sein."
|
9502 |
|
9503 |
# @ woocommerce-germanized
|
9504 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9505 |
msgid "is invalid"
|
9506 |
msgstr "ist ungültig"
|
9507 |
|
9508 |
# @ woocommerce-germanized
|
9509 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9510 |
msgid "Awaiting Direct Debit Payment"
|
9511 |
msgstr "Zahlung per Lastschrift ausstehend"
|
9512 |
|
@@ -10061,7 +10061,7 @@ msgstr "Germanized benötigt mindestens PHP 5.6. Bitte %s Sie Ihre PHP-Version."
|
|
10061 |
msgid "upgrade"
|
10062 |
msgstr "aktualisieren"
|
10063 |
|
10064 |
-
#: woocommerce-germanized/woocommerce-germanized.php:
|
10065 |
msgid "Pease wait while we are trying to redirect you to the payment provider."
|
10066 |
msgstr "Einen Moment - wir versuchen Sie zum Zahlungsanbieter weiterzuleiten."
|
10067 |
|
@@ -11302,6 +11302,16 @@ msgstr "vendidero"
|
|
11302 |
msgid "https://vendidero.de"
|
11303 |
msgstr "https://vendidero.de"
|
11304 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11305 |
#, fuzzy
|
11306 |
#~| msgctxt "trusted-shops"
|
11307 |
#~| msgid "Install %s"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce Germanized\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-06-28 11:04+0200\n"
|
6 |
+
"PO-Revision-Date: 2020-06-28 11:05+0200\n"
|
7 |
"Last-Translator: holzhannes <holzhannes@posteo.de>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE@formal\n"
|
106 |
|
107 |
# @ woocommerce-germanized
|
108 |
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:139
|
109 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:379
|
110 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:747
|
111 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:816
|
112 |
msgctxt "dhl"
|
121 |
|
122 |
# @ woocommerce-germanized
|
123 |
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:159
|
124 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:380
|
125 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:768
|
126 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:837
|
127 |
#: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:27
|
131 |
|
132 |
# @ woocommerce-germanized
|
133 |
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:168
|
134 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:381
|
135 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:761
|
136 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:830
|
137 |
#: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:30
|
174 |
msgid "Age check"
|
175 |
msgstr "Alterssichtprüfung"
|
176 |
|
177 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:228
|
178 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:331
|
179 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:531
|
180 |
msgctxt "dhl"
|
181 |
msgid "GoGreen"
|
182 |
msgstr "GoGreen"
|
183 |
|
184 |
# @ woocommerce-germanized
|
185 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:237
|
186 |
msgctxt "dhl"
|
187 |
msgid "Additional insurance"
|
188 |
msgstr "Transportversicherung"
|
189 |
|
190 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:248
|
191 |
msgctxt "dhl"
|
192 |
msgid "Retail outlet routing"
|
193 |
msgstr "Filialrouting"
|
194 |
|
195 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:261
|
196 |
msgctxt "dhl"
|
197 |
msgid "No neighbor"
|
198 |
msgstr "Keine Nachbarschaftszustellung"
|
199 |
|
200 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:272
|
201 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:559
|
202 |
msgctxt "dhl"
|
203 |
msgid "Named person only"
|
204 |
msgstr "Persönliche Übergabe"
|
205 |
|
206 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:281
|
207 |
msgctxt "dhl"
|
208 |
msgid "Bulky goods"
|
209 |
msgstr "Sperrgut"
|
210 |
|
211 |
# @ woocommerce-germanized
|
212 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:290
|
213 |
msgctxt "dhl"
|
214 |
msgid "Identity check"
|
215 |
msgstr "Ident-Check"
|
216 |
|
217 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:301
|
218 |
msgctxt "dhl"
|
219 |
msgid "Date of Birth"
|
220 |
msgstr "Geburtsdatum"
|
221 |
|
222 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:311
|
223 |
msgctxt "dhl"
|
224 |
msgid "Minimum age"
|
225 |
msgstr "Mindestalter"
|
226 |
|
227 |
+
#: woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php:322
|
228 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:580
|
229 |
msgctxt "dhl"
|
230 |
msgid "Premium"
|
382 |
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:224
|
383 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:184
|
384 |
#: woocommerce-germanized-dhl/src/Admin/Settings.php:485
|
385 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:835
|
386 |
#: woocommerce-germanized-dhl/templates/checkout/dhl/parcel-finder.php:38
|
387 |
msgctxt "dhl"
|
388 |
msgid "Packstation"
|
400 |
msgid "Receiver is missing or does not exist."
|
401 |
msgstr "Empfänger fehlt oder existiert nicht."
|
402 |
|
403 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:344
|
404 |
#, php-format
|
405 |
msgctxt "dhl"
|
406 |
msgid "Shipment order #%s does not exist"
|
407 |
msgstr "Bestellung zur Sendung #%s existiert nicht"
|
408 |
|
409 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:386
|
410 |
#, php-format
|
411 |
msgctxt "dhl"
|
412 |
msgid "%s of the return address is a mandatory field."
|
413 |
msgstr "%s der Rücksendeadresse ist ein Pflichtfeld."
|
414 |
|
415 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:391
|
416 |
msgctxt "dhl"
|
417 |
msgid "Please either add a return company or name."
|
418 |
msgstr ""
|
419 |
"Bitte geben Sie entweder einen Firmennamen oder Namen für die "
|
420 |
"Rücksendeadresse an."
|
421 |
|
422 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:410
|
423 |
msgctxt "dhl"
|
424 |
msgid "Error while parsing preferred day."
|
425 |
msgstr "Fehler beim Einlesen des Wunschtags."
|
426 |
|
427 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:421
|
428 |
msgctxt "dhl"
|
429 |
msgid "Error while parsing preferred time."
|
430 |
msgstr "Fehler beim Einlesen der Wunschzeit."
|
431 |
|
432 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:446
|
433 |
msgctxt "dhl"
|
434 |
msgid "The visual min age check is invalid."
|
435 |
msgstr "Das Alter der Alterssichtprüfung ist ungültig."
|
436 |
|
437 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:465
|
438 |
msgctxt "dhl"
|
439 |
msgid "The ident min age check is invalid."
|
440 |
msgstr "Das Alter des Ident-Checks ist ungültig."
|
441 |
|
442 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:472
|
443 |
msgctxt "dhl"
|
444 |
msgid "There was an error parsing the date of birth for the identity check."
|
445 |
msgstr ""
|
446 |
"Beim Einlesen des Geburtsdatums für den Ident-Check trat ein Problem auf."
|
447 |
|
448 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:477
|
449 |
msgctxt "dhl"
|
450 |
msgid ""
|
451 |
"Either a minimum age or a date of birth must be added to the ident check."
|
454 |
"hinzugefügt werden."
|
455 |
|
456 |
# @ woocommerce-germanized
|
457 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:490
|
458 |
#, php-format
|
459 |
msgctxt "dhl"
|
460 |
msgid "%s duties element does not exist."
|
461 |
msgstr "%s Zollabgabe existiert nicht."
|
462 |
|
|
|
463 |
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:954
|
464 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1029
|
465 |
msgctxt "dhl"
|
466 |
msgid "Invalid shipment"
|
467 |
msgstr "Ungültige Sendung"
|
468 |
|
469 |
# @ woocommerce-germanized
|
|
|
470 |
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:958
|
471 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1033
|
472 |
msgctxt "dhl"
|
473 |
msgid "Order does not exist"
|
474 |
msgstr "Bestellung existiert nicht"
|
475 |
|
476 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:981
|
477 |
msgctxt "dhl"
|
478 |
msgid "Error while creating the label instance"
|
479 |
msgstr "Fehler beim Erstellen der Label-Instanz"
|
480 |
|
481 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1101
|
482 |
msgctxt "dhl"
|
483 |
msgid "Invalid label"
|
484 |
msgstr "Ungültiges Label"
|
485 |
|
486 |
# @ woocommerce-germanized
|
487 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1189
|
488 |
msgctxt "dhl"
|
489 |
msgid "DHL Retoure International A"
|
490 |
msgstr "DHL Retoure International A"
|
491 |
|
492 |
# @ woocommerce-germanized
|
493 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1190
|
494 |
msgctxt "dhl"
|
495 |
msgid "DHL Retoure International B"
|
496 |
msgstr "DHL Retoure International B"
|
497 |
|
498 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1199
|
499 |
msgctxt "dhl"
|
500 |
msgid "DHL Retoure Online"
|
501 |
msgstr "DHL Retoure Online"
|
502 |
|
503 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1210
|
504 |
msgctxt "dhl"
|
505 |
msgid "DHL Paket Connect"
|
506 |
msgstr "DHL Paket Connect"
|
507 |
|
508 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1211
|
509 |
msgctxt "dhl"
|
510 |
msgid "DHL Europaket (B2B)"
|
511 |
msgstr "DHL Europaket (B2B)"
|
512 |
|
513 |
# @ woocommerce-germanized
|
514 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1212
|
515 |
msgctxt "dhl"
|
516 |
msgid "DHL Paket International"
|
517 |
msgstr "DHL Paket International"
|
518 |
|
519 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1278
|
520 |
msgctxt "dhl"
|
521 |
msgid "DHL Paket"
|
522 |
msgstr "DHL Paket"
|
523 |
|
524 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1279
|
525 |
msgctxt "dhl"
|
526 |
msgid "DHL Paket PRIO"
|
527 |
msgstr "DHL Paket PRIO"
|
528 |
|
529 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1280
|
530 |
msgctxt "dhl"
|
531 |
msgid "DHL Paket Taggleich"
|
532 |
msgstr "DHL Paket Taggleich"
|
533 |
|
534 |
+
#: woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php:1367
|
535 |
msgctxt "dhl"
|
536 |
msgid "Error while uploading label."
|
537 |
msgstr "Fehler beim Hochladen des Labels."
|
538 |
|
539 |
# @ woocommerce-germanized
|
540 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:109
|
541 |
msgctxt "dhl"
|
542 |
msgid "Receiver Ids"
|
543 |
msgstr "Empfänger IDs"
|
544 |
|
545 |
# @ woocommerce-germanized
|
546 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:116
|
547 |
msgctxt "dhl"
|
548 |
msgid "Receiver Id"
|
549 |
msgstr "Empfänger ID"
|
550 |
|
551 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:116
|
552 |
msgctxt "dhl"
|
553 |
msgid "Find your Receiver Ids within your DHL contract data."
|
554 |
msgstr "Die Empfänger IDs finden Sie im DHL Geschäftskundenportal."
|
555 |
|
556 |
# @ woocommerce-germanized
|
557 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:117
|
558 |
msgctxt "dhl"
|
559 |
msgid "Country Code"
|
560 |
msgstr "Ländercode"
|
561 |
|
562 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:117
|
563 |
msgctxt "dhl"
|
564 |
msgid "Leave empty to use the Receiver Id as fallback."
|
565 |
msgstr "Leer lassen, um diese Empfänger ID als Fallback zu verwenden."
|
566 |
|
567 |
# @ woocommerce-germanized
|
568 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:137
|
569 |
msgctxt "dhl"
|
570 |
msgid "+ Add receiver"
|
571 |
msgstr "+ Empfänger hinzufügen"
|
572 |
|
573 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:137
|
574 |
msgctxt "dhl"
|
575 |
msgid "Remove selected receiver(s)"
|
576 |
msgstr "Ausgewählte Empfänger löschen"
|
577 |
|
578 |
# @ woocommerce-germanized
|
579 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:173
|
580 |
msgctxt "dhl"
|
581 |
msgid "Select a country"
|
582 |
msgstr "Land auswählen"
|
583 |
|
584 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:175
|
585 |
msgctxt "dhl"
|
586 |
msgid "Harmonized Tariff Schedule (DHL)"
|
587 |
msgstr "Harmonized Tariff Schedule (DHL)"
|
588 |
|
589 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:175
|
590 |
msgctxt "dhl"
|
591 |
msgid "This code is needed for customs of international shipping."
|
592 |
msgstr ""
|
593 |
"Dieser Code wird für die Zollabwicklung bei internationalen Sendungen "
|
594 |
"benötigt."
|
595 |
|
596 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:176
|
597 |
msgctxt "dhl"
|
598 |
msgid "Country of manufacture (DHL)"
|
599 |
msgstr "Herstellungsland (DHL)"
|
600 |
|
601 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:176
|
602 |
msgctxt "dhl"
|
603 |
msgid ""
|
604 |
"The country of manufacture is needed for customs of international shipping."
|
606 |
"Das Herstellungsland wird für die Zollabwicklung bei internationalen "
|
607 |
"Sendungen benötigt."
|
608 |
|
609 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:197
|
610 |
#, php-format
|
611 |
msgctxt "dhl"
|
612 |
msgid ""
|
616 |
"Das Verzeichnis zum Speichern von DHL Labels fehlt. Bitte erstellen Sie den "
|
617 |
"Ordner %s manuell und stellen Sie sicher, dass der Ordner beschreibbar ist."
|
618 |
|
619 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:204
|
620 |
#: woocommerce-germanized-dhl/src/ShippingProviderDHL.php:34
|
621 |
msgctxt "dhl"
|
622 |
msgid "DHL"
|
623 |
msgstr "DHL"
|
624 |
|
625 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:219
|
626 |
msgctxt "dhl"
|
627 |
msgid "DHL Label"
|
628 |
msgstr "DHL Label"
|
629 |
|
630 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:231
|
631 |
msgctxt "dhl"
|
632 |
msgid ""
|
633 |
"This label has been generated by the DHL for WooCommerce Plugin and is shown "
|
637 |
"Kompatibilitäts-Gründen angezeigt."
|
638 |
|
639 |
# @ woocommerce-germanized
|
640 |
+
#: woocommerce-germanized-dhl/src/Admin/Admin.php:232
|
641 |
msgctxt "dhl"
|
642 |
msgid "Download label"
|
643 |
msgstr "Label downloaden"
|
1890 |
|
1891 |
# @ woocommerce-germanized
|
1892 |
#: woocommerce-germanized-dhl/src/ParcelLocator.php:89
|
1893 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:848
|
1894 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:877
|
1895 |
msgctxt "dhl"
|
1896 |
msgid "Address Type"
|
1897 |
msgstr "Adresstyp"
|
1917 |
"eintragen."
|
1918 |
|
1919 |
#: woocommerce-germanized-dhl/src/ParcelLocator.php:185
|
1920 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:564
|
1921 |
msgctxt "dhl"
|
1922 |
msgid "Invalid address type."
|
1923 |
msgstr "Ungültiger Adresstyp."
|
1924 |
|
1925 |
# @ woocommerce-germanized
|
1926 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:636
|
1927 |
msgctxt "dhl"
|
1928 |
msgid "Sorry, but delivery to packstation is not available."
|
1929 |
msgstr ""
|
1930 |
"Entschuldigung, die Lieferung an eine Packstation steht nicht zur Verfügung."
|
1931 |
|
1932 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:641
|
1933 |
msgctxt "dhl"
|
1934 |
msgid "Sorry, but delivery to parcel shops is not available."
|
1935 |
msgstr ""
|
1936 |
"Entschuldigung, die Lieferung an einen Paketshop steht nicht zur Verfügung."
|
1937 |
|
1938 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:645
|
1939 |
msgctxt "dhl"
|
1940 |
msgid "Sorry, but delivery to post offices is not available."
|
1941 |
msgstr "Entschuldigung, die Lieferung an Postfilialen ist nicht verfügbar."
|
1942 |
|
1943 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:652
|
1944 |
#, php-format
|
1945 |
msgctxt "dhl"
|
1946 |
msgid "Please indicate shipment to %s by one of the following values: %s."
|
1948 |
"Bitte identifizieren Sie die Lieferung an %s durch die Eingabe einer der "
|
1949 |
"folgenden Werte: %s."
|
1950 |
|
1951 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:660
|
1952 |
msgctxt "dhl"
|
1953 |
msgid ""
|
1954 |
"Your DHL customer number (Post number) is not valid. Please check your "
|
1957 |
"Ihre DHL Kundennummer (Postnummer) ist nicht gültig. Bitte überprüfen Sie "
|
1958 |
"Ihre Eingabe."
|
1959 |
|
1960 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:663
|
1961 |
msgctxt "dhl"
|
1962 |
msgid ""
|
1963 |
"Your DHL customer number (Post number) is needed to ship to a packstation."
|
1965 |
"Ihre DHL Kundennummer (Postnummer) wird für den Versand an eine Packstation "
|
1966 |
"benötigt."
|
1967 |
|
1968 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:712
|
1969 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:839
|
1970 |
msgctxt "dhl"
|
1971 |
msgid "Branch"
|
1972 |
msgstr "Filiale"
|
1973 |
|
1974 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:713
|
1975 |
msgctxt "dhl"
|
1976 |
msgid "Postnumber "
|
1977 |
msgstr "Postnummer "
|
1978 |
|
1979 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:814
|
1980 |
#, php-format
|
1981 |
msgctxt "dhl"
|
1982 |
msgid "e.g. %s 456"
|
1983 |
msgstr "z.B. %s 456"
|
1984 |
|
1985 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:839
|
1986 |
msgctxt "dhl"
|
1987 |
msgid "Branches"
|
1988 |
msgstr "Filialen"
|
1989 |
|
1990 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:855
|
1991 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:887
|
1992 |
msgctxt "dhl"
|
1993 |
msgid "DHL customer number (Post number)"
|
1994 |
msgstr "DHL Kundennummer (Postnummer)"
|
1995 |
|
1996 |
# @ woocommerce-germanized
|
1997 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:865
|
1998 |
msgctxt "dhl"
|
1999 |
msgid "Regular Address"
|
2000 |
msgstr "Normale Adresse"
|
2001 |
|
2002 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:891
|
2003 |
msgctxt "dhl"
|
2004 |
msgid "Not yet a DHL customer?"
|
2005 |
msgstr "Noch kein DHL Kunde?"
|
2006 |
|
2007 |
# @ woocommerce-germanized
|
2008 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:891
|
2009 |
msgctxt "dhl"
|
2010 |
msgid "Register now"
|
2011 |
msgstr "Jetzt registrieren"
|
2012 |
|
2013 |
# @ woocommerce-germanized
|
2014 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:940
|
2015 |
#, php-format
|
2016 |
msgctxt "dhl"
|
2017 |
msgid "Search %s"
|
2018 |
msgstr "%s suchen"
|
2019 |
|
2020 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:1045
|
2021 |
msgctxt "dhl"
|
2022 |
msgid "No DHL locations found"
|
2023 |
msgstr "Keine DHL Standorte gefunden"
|
2024 |
|
2025 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:1060
|
2026 |
#, php-format
|
2027 |
msgctxt "dhl"
|
2028 |
msgid ""
|
2033 |
"einen %s oder %s."
|
2034 |
|
2035 |
# @ woocommerce-germanized
|
2036 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:1060
|
2037 |
msgctxt "dhl"
|
2038 |
msgid "DHL location"
|
2039 |
msgstr "DHL Standort"
|
2040 |
|
2041 |
+
#: woocommerce-germanized-dhl/src/ParcelLocator.php:1060
|
2042 |
msgctxt "dhl"
|
2043 |
msgid "retry"
|
2044 |
msgstr "Erneut versuchen"
|
2272 |
|
2273 |
# @ woocommerce-germanized
|
2274 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:47
|
2275 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1027
|
2276 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:24
|
2277 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:688
|
2278 |
msgctxt "shipments"
|
2318 |
|
2319 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:178
|
2320 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:45
|
2321 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:84
|
2322 |
msgctxt "shipments"
|
2323 |
msgid "Item"
|
2324 |
msgstr "Position"
|
2325 |
|
2326 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-content.php:179
|
2327 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:46
|
2328 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:89
|
2329 |
#: woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:55
|
2330 |
#: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:37
|
2331 |
#: woocommerce-germanized-shipments/templates/shipment/shipment-details.php:60
|
2405 |
|
2406 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipment-list.php:22
|
2407 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:76
|
2408 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:71
|
2409 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:325
|
2410 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:446
|
2411 |
#: woocommerce-germanized-shipments/src/Admin/Settings.php:80
|
2412 |
#: woocommerce-germanized-shipments/src/Admin/Settings.php:177
|
2413 |
#: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:36
|
2424 |
# @ woocommerce-germanized
|
2425 |
#: woocommerce-germanized-shipments/includes/admin/views/html-order-shipments.php:19
|
2426 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:69
|
2427 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:255
|
2428 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:324
|
2429 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:412
|
2430 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:479
|
2431 |
#: woocommerce-germanized-shipments/templates/myaccount/order-shipments.php:20
|
2432 |
msgctxt "shipments"
|
2433 |
msgid "Shipments"
|
2521 |
msgstr "Download"
|
2522 |
|
2523 |
#: woocommerce-germanized-shipments/includes/admin/views/label/html-shipment-label.php:39
|
2524 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:537
|
2525 |
msgctxt "shipments"
|
2526 |
msgid "Create new label"
|
2527 |
msgstr "Neues Label erstellen"
|
2689 |
msgstr "Text der unterhalb des Inhalts der E-Mail angezeigt werden soll."
|
2690 |
|
2691 |
#: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-customer-shipment.php:356
|
2692 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:959
|
2693 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:989
|
2694 |
#: woocommerce-germanized-shipments/templates/shipment/shipment-details-address.php:28
|
2695 |
msgctxt "shipments"
|
2696 |
msgid "N/A"
|
2707 |
msgstr "Format für E-Mail-Versand auswählen."
|
2708 |
|
2709 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:68
|
2710 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1025
|
2711 |
msgctxt "shipments"
|
2712 |
msgid "Shipment"
|
2713 |
msgstr "Sendung"
|
2729 |
|
2730 |
# @ woocommerce-germanized
|
2731 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:104
|
2732 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:321
|
2733 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:854
|
2734 |
msgctxt "shipments"
|
2735 |
msgid "Shipped"
|
2750 |
msgid "Returned"
|
2751 |
msgstr "Retourniert"
|
2752 |
|
2753 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:319
|
2754 |
msgctxt "shipments"
|
2755 |
msgid "Draft"
|
2756 |
msgstr "Entwurf"
|
2757 |
|
2758 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:320
|
2759 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:846
|
2760 |
msgctxt "shipments"
|
2761 |
msgid "Processing"
|
2762 |
msgstr "In Bearbeitung"
|
2763 |
|
2764 |
# @ woocommerce-germanized
|
2765 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:322
|
2766 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:50
|
2767 |
msgctxt "shipments"
|
2768 |
msgid "Delivered"
|
2769 |
msgstr "Geliefert"
|
2770 |
|
2771 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:323
|
2772 |
msgctxt "shipments"
|
2773 |
msgid "Requested"
|
2774 |
msgstr "Beantragt"
|
2775 |
|
2776 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:372
|
2777 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:81
|
2778 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipments-template-functions.php:135
|
2779 |
msgctxt "shipments"
|
2780 |
msgid "Invalid order."
|
2781 |
msgstr "Ungültige Bestellung."
|
2782 |
|
2783 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:376
|
2784 |
msgctxt "shipments"
|
2785 |
msgid "This order is already fully returned."
|
2786 |
msgstr "Diese Bestellung wurde bereits vollständig zurückgesendet."
|
2787 |
|
2788 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:387
|
2789 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:428
|
2790 |
msgctxt "shipments"
|
2791 |
msgid "Error while creating the shipment instance"
|
2792 |
msgstr "Fehler beim Erstellen der Sendungsinstanz"
|
2793 |
|
2794 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:413
|
2795 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:417
|
2796 |
#: woocommerce-germanized-shipments/src/ReturnShipment.php:429
|
2797 |
#: woocommerce-germanized-shipments/src/ReturnShipment.php:489
|
2798 |
#: woocommerce-germanized-shipments/src/SimpleShipment.php:118
|
2801 |
msgid "Invalid shipment order"
|
2802 |
msgstr "Ungültige Bestellung zur Sendung"
|
2803 |
|
2804 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:447
|
2805 |
msgctxt "shipments"
|
2806 |
msgid "Invalid order item"
|
2807 |
msgstr "Ungültige Bestellposition"
|
2808 |
|
2809 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:569
|
2810 |
msgctxt "shipments"
|
2811 |
msgid "Invalid shipment item"
|
2812 |
msgstr "Ungültige Sendungsposition"
|
2813 |
|
2814 |
# @ woocommerce-germanized
|
2815 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:642
|
2816 |
msgctxt "shipments"
|
2817 |
msgid "None"
|
2818 |
msgstr "Keiner"
|
2819 |
|
2820 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:715
|
2821 |
msgctxt "shipments"
|
2822 |
msgid "Error while uploading file."
|
2823 |
msgstr "Fehler beim Hochladen der Datei."
|
2824 |
|
2825 |
# @ woocommerce-germanized
|
2826 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1026
|
2827 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:23
|
2828 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:687
|
2829 |
msgctxt "shipments"
|
2830 |
msgid "Date"
|
2831 |
msgstr "Datum"
|
2832 |
|
2833 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1028
|
2834 |
#: woocommerce-germanized-shipments/templates/shipment/shipment-details-tracking.php:23
|
2835 |
msgctxt "shipments"
|
2836 |
msgid "Tracking"
|
2837 |
msgstr "Sendungsverfolgung"
|
2838 |
|
2839 |
# @ woocommerce-germanized
|
2840 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1029
|
2841 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:94
|
2842 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:30
|
2843 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:694
|
2844 |
msgctxt "shipments"
|
2845 |
msgid "Actions"
|
2846 |
msgstr "Aktionen"
|
2847 |
|
2848 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1265
|
2849 |
msgctxt "shipments"
|
2850 |
msgid "View"
|
2851 |
msgstr "Anzeigen"
|
2852 |
|
2853 |
# @ woocommerce-germanized
|
2854 |
+
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1272
|
2855 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:865
|
2856 |
#: woocommerce-germanized-shipments/src/Ajax.php:336
|
2857 |
msgctxt "shipments"
|
2890 |
msgstr "Bestellung ansehen"
|
2891 |
|
2892 |
# @ woocommerce-germanized
|
2893 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:102
|
2894 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:176
|
2895 |
#: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:36
|
2896 |
msgctxt "shipments"
|
2897 |
msgid "Reason"
|
2898 |
msgstr "Rücksendegrund"
|
2899 |
|
2900 |
# @ woocommerce-germanized
|
2901 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:168
|
2902 |
msgctxt "shipments"
|
2903 |
msgid "Return reasons"
|
2904 |
msgstr "Rücksendegründe"
|
2905 |
|
2906 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:175
|
2907 |
msgctxt "shipments"
|
2908 |
msgid "Reason code"
|
2909 |
msgstr "Rücksendegrund (Code)"
|
2910 |
|
2911 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:175
|
2912 |
msgctxt "shipments"
|
2913 |
msgid "The reason code is used to identify the reason."
|
2914 |
msgstr ""
|
2916 |
"identifizieren zu können."
|
2917 |
|
2918 |
# @ woocommerce-germanized
|
2919 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:176
|
2920 |
msgctxt "shipments"
|
2921 |
msgid "Choose a reason text."
|
2922 |
msgstr "Beschreibung für den Grund."
|
2923 |
|
2924 |
# @ woocommerce-germanized
|
2925 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:195
|
2926 |
msgctxt "shipments"
|
2927 |
msgid "+ Add reason"
|
2928 |
msgstr "+ Grund hinzufügen"
|
2929 |
|
2930 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:195
|
2931 |
msgctxt "shipments"
|
2932 |
msgid "Remove selected reason(s)"
|
2933 |
msgstr "Ausgewählte Gründe löschen"
|
2934 |
|
2935 |
# @ woocommerce-germanized
|
2936 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:309
|
2937 |
msgctxt "shipments"
|
2938 |
msgid "Create shipments"
|
2939 |
msgstr "Sendungen erstellen"
|
2940 |
|
2941 |
# @ woocommerce-germanized
|
2942 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:424
|
2943 |
msgctxt "shipments"
|
2944 |
msgid "Search shipments"
|
2945 |
msgstr "Sendungen suchen"
|
2946 |
|
2947 |
# @ woocommerce-germanized
|
2948 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:458
|
2949 |
msgctxt "shipments"
|
2950 |
msgid "Search returns"
|
2951 |
msgstr "Retouren suchen"
|
2952 |
|
2953 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:531
|
2954 |
msgctxt "shipments"
|
2955 |
msgid "Do you really want to delete the shipment?"
|
2956 |
msgstr "Möchten Sie die Sendung wirklich löschen?"
|
2957 |
|
2958 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:536
|
2959 |
msgctxt "shipments"
|
2960 |
msgid "Do you really want to delete the label?"
|
2961 |
msgstr "Möchten Sie das Label wirklich löschen?"
|
2962 |
|
2963 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:538
|
2964 |
msgctxt "shipments"
|
2965 |
msgid "Please save the shipment before creating a new label"
|
2966 |
msgstr "Bitte speichern Sie die Sendung bevor Sie ein neues Label erstellen"
|
2967 |
|
2968 |
+
#: woocommerce-germanized-shipments/src/Admin/Admin.php:588
|
2969 |
msgctxt "shipments"
|
2970 |
msgid ""
|
2971 |
"Do you really want to delete the shipping provider? Some of your existing "
|
4478 |
# @ woocommerce-germanized
|
4479 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:549
|
4480 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:559
|
4481 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:404
|
4482 |
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:546
|
4483 |
+
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:554
|
4484 |
msgid "incl. VAT"
|
4485 |
msgstr "inkl. MwSt."
|
4486 |
|
4491 |
|
4492 |
# @ woocommerce-germanized
|
4493 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:551
|
4494 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:404
|
4495 |
#, php-format
|
4496 |
msgid "incl. %s%% VAT"
|
4497 |
msgstr "inkl. %s %% MwSt."
|
4735 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:73
|
4736 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:141
|
4737 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:79
|
4738 |
+
#: woocommerce-germanized/woocommerce-germanized.php:831
|
4739 |
msgid "Settings"
|
4740 |
msgstr "Einstellungen"
|
4741 |
|
4915 |
msgstr "Willkommen bei Germanized"
|
4916 |
|
4917 |
# @ woocommerce-germanized
|
4918 |
+
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-welcome.php:281
|
4919 |
msgid "Go to Germanized Settings"
|
4920 |
msgstr "Germanized Einstellungen"
|
4921 |
|
6023 |
# @ woocommerce-germanized
|
6024 |
# @ woocommerce
|
6025 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-emails.php:164
|
6026 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:239
|
6027 |
+
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:137
|
6028 |
+
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:144
|
6029 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:138
|
6030 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:145
|
6031 |
+
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:556
|
6032 |
+
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:567
|
6033 |
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:131
|
6034 |
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:139
|
6035 |
msgid "Title"
|
6130 |
|
6131 |
# @ woocommerce-germanized
|
6132 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:30
|
6133 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:370
|
6134 |
#: woocommerce-germanized/includes/admin/views/html-page-status-germanized.php:174
|
6135 |
msgid "Legal Pages"
|
6136 |
msgstr "Rechtlich relevante Seiten"
|
6367 |
|
6368 |
# @ woocommerce-germanized
|
6369 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:209
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6370 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-shopmarks.php:367
|
6371 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-taxes.php:161
|
6372 |
msgid "Notice Text"
|
6373 |
msgstr "Hinweistext"
|
6374 |
|
6375 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:210
|
6376 |
msgid ""
|
6377 |
"You may want to adjust the small buisness notice text to meet your criteria."
|
6378 |
msgstr ""
|
6379 |
"Passen Sie hier, falls notwending, den Kleinunternehmer Hinweistext an."
|
6380 |
|
6381 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:217
|
6382 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:319
|
6383 |
msgid ""
|
6384 |
"Value added tax is not collected, as small businesses according to §19 (1) "
|
6385 |
"UStG."
|
6386 |
msgstr "Kein Mehrwertsteuerausweis, da Kleinunternehmer nach §19 (1) UStG."
|
6387 |
|
6388 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:232
|
6389 |
msgid "Phone"
|
6390 |
msgstr "Telefon"
|
6391 |
|
6392 |
# @ woocommerce-germanized
|
6393 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:233
|
6394 |
msgid "Mark phone number as non-required within checkout."
|
6395 |
msgstr "Telefonnummer in der Kasse nicht als Pflichtfeld abfragen."
|
6396 |
|
6397 |
# @ woocommerce-germanized
|
6398 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:240
|
6399 |
msgid "Add a title field to the address within checkout."
|
6400 |
msgstr "Lasse Kunden eine Anrede auswählen."
|
6401 |
|
6402 |
# @ woocommerce-germanized
|
6403 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:246
|
6404 |
msgid "Disallow cancellations"
|
6405 |
msgstr "Stornierungen verhindern"
|
6406 |
|
6407 |
# @ woocommerce-germanized
|
6408 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:247
|
6409 |
msgid "Don't allow customers to manually cancel orders."
|
6410 |
msgstr "Stornierung von Bestellungen durch den Kunden verhindern."
|
6411 |
|
6412 |
# @ woocommerce-germanized
|
6413 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:247
|
6414 |
msgid ""
|
6415 |
"By default payment methods like PayPal allow order cancellation by clicking "
|
6416 |
"the abort link. This option will stop customers from manually cancel orders."
|
6419 |
"Kunden den Abbrechen-Link verwendet. Diese Option verhindert den manuellen "
|
6420 |
"Abbruch einer Bestellung durch den Kunden."
|
6421 |
|
6422 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:253
|
6423 |
msgid "Disallow gateway choosing"
|
6424 |
msgstr "Wechsel der Zahlungsart"
|
6425 |
|
6426 |
# @ woocommerce-germanized
|
6427 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:254
|
6428 |
msgid "Don't allow customers to change the payment gateway after ordering."
|
6429 |
msgstr ""
|
6430 |
"Wechsel der Zahlungsart nach der Bestellung durch den Kunden verhindern."
|
6431 |
|
6432 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:254
|
6433 |
msgid ""
|
6434 |
"Customers paying through a gateway which allows later payment (e.g. PayPal) "
|
6435 |
"will find a link within their customer account which redirects them to a pay "
|
6448 |
"PayPal weiter."
|
6449 |
|
6450 |
# @ woocommerce-germanized
|
6451 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:260
|
6452 |
msgid "Free shipping"
|
6453 |
msgstr "Kostenloser Versand"
|
6454 |
|
6455 |
# @ woocommerce-germanized
|
6456 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:261
|
6457 |
msgid "Force free shipping method if available."
|
6458 |
msgstr "Erzwinge kostenlosen Versand wenn die Methode zur Verfügung steht."
|
6459 |
|
6460 |
# @ woocommerce-germanized
|
6461 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:261
|
6462 |
msgid ""
|
6463 |
"By default WooCommerce will let customers choose other shipping methods than "
|
6464 |
"free shipping (if available). This option will force free shipping if "
|
6469 |
"Versand, sobald dieser verfügbar ist."
|
6470 |
|
6471 |
# @ woocommerce-germanized
|
6472 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:268
|
6473 |
msgid "Exclude Methods"
|
6474 |
msgstr "Deaktivierte Methoden"
|
6475 |
|
6476 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:277
|
6477 |
msgid ""
|
6478 |
"Optionally choose methods which should be excluded from hiding when free "
|
6479 |
"shipping is available (e.g. express shipping options)."
|
6482 |
"wenn kostenloser Versand verfügbar ist (z.B. Express-Versandmethoden)."
|
6483 |
|
6484 |
# @ woocommerce-germanized
|
6485 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:289
|
6486 |
msgid "Price Range Format"
|
6487 |
msgstr "Preisspannen-Format"
|
6488 |
|
6489 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:290
|
6490 |
msgid ""
|
6491 |
"Adjust the price range format e.g. for variable products. Use {min_price} as "
|
6492 |
"placeholder for the minimum price. Use {max_price} as placeholder for the "
|
6496 |
"Sie {min_price} als Platzhalter für den minimalen Preis und {max_price} als "
|
6497 |
"Platzhalter für den höchsten Preis."
|
6498 |
|
6499 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:294
|
6500 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:787
|
6501 |
msgid "{min_price} – {max_price}"
|
6502 |
msgstr "{min_price} – {max_price}"
|
6503 |
|
6504 |
# @ woocommerce-germanized
|
6505 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:298
|
6506 |
msgid "Add to Cart"
|
6507 |
msgstr "Zum Warenkorb Button"
|
6508 |
|
6509 |
# @ woocommerce-germanized
|
6510 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:299
|
6511 |
msgid "Show add to cart button on listings."
|
6512 |
msgstr "Zeige den „zum Warenkorb“ Button in Produktlisten an."
|
6513 |
|
6514 |
# @ woocommerce-germanized
|
6515 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:303
|
6516 |
msgid ""
|
6517 |
"unset this option if you don't want to show the add to cart button within "
|
6518 |
"the product listings"
|
6520 |
"Deaktivieren Sie diese Option, wenn Sie den zum Warenkorb Button nicht "
|
6521 |
"innerhalb von Produktauflistungen darstellen möchten"
|
6522 |
|
6523 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:306
|
6524 |
msgid "Link"
|
6525 |
msgstr "Verlinkung"
|
6526 |
|
6527 |
# @ woocommerce-germanized
|
6528 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:307
|
6529 |
msgid "Link to product details page instead of add to cart within listings."
|
6530 |
msgstr ""
|
6531 |
"Ersetze den zum-Warenkorb-Link durch einen Link zur Produktdetailseite in "
|
6532 |
"Produktlisten."
|
6533 |
|
6534 |
# @ woocommerce-germanized
|
6535 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:311
|
6536 |
msgid ""
|
6537 |
"Decide whether you like to link to your product's details page instead of "
|
6538 |
"displaying an add to cart button within product listings."
|
6542 |
"einfach diese Option."
|
6543 |
|
6544 |
# @ woocommerce-germanized
|
6545 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:314
|
6546 |
msgid "Product Details Text"
|
6547 |
msgstr "Produktdetails Text"
|
6548 |
|
6549 |
# @ woocommerce-germanized
|
6550 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:316
|
6551 |
msgid "Details"
|
6552 |
msgstr "Details"
|
6553 |
|
6554 |
# @ woocommerce-germanized
|
6555 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:321
|
6556 |
msgid ""
|
6557 |
"If you have chosen to link to product details page instead of add to cart "
|
6558 |
"URL you may want to change the button text."
|
6562 |
"einen Button-Text vergeben."
|
6563 |
|
6564 |
# @ woocommerce-germanized
|
6565 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:342
|
6566 |
msgid "Overview"
|
6567 |
msgstr "Übersicht"
|
6568 |
|
6569 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:343
|
6570 |
msgid ""
|
6571 |
"You can always return to the settings overview by navigating through the "
|
6572 |
"breadcrumb navigation."
|
6575 |
"indem Sie die Breadcrumb-Navigation nutzten."
|
6576 |
|
6577 |
# @ woocommerce-germanized
|
6578 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:356
|
6579 |
msgid "Sections"
|
6580 |
msgstr "Rubriken"
|
6581 |
|
6582 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:357
|
6583 |
msgid ""
|
6584 |
"Each setting tab might have sub sections containing more specific options."
|
6585 |
msgstr ""
|
6586 |
"Jeder Tab kann weitere Unterbereiche mit spezifischen Optionen beinhalten."
|
6587 |
|
6588 |
+
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:371
|
6589 |
msgid ""
|
6590 |
"Adjust legal pages e.g. terms and conditions. These pages are used to add "
|
6591 |
"links within checkboxes and text attachments to emails."
|
7360 |
#: woocommerce-germanized/includes/admin/settings/views/html-admin-page-checkboxes.php:12
|
7361 |
#: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:29
|
7362 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:800
|
7363 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:896
|
7364 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:124
|
7365 |
msgid "Description"
|
7366 |
msgstr "Beschreibung"
|
7761 |
"Passen Sie Germanized an Ihre Bedürfnisse an. Die Einstellungen können Sie "
|
7762 |
"später jederzeit ändern."
|
7763 |
|
7764 |
+
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:152
|
7765 |
+
msgid "Has been activated via DOI?"
|
7766 |
+
msgstr "Aktiviert via DOI?"
|
7767 |
+
|
7768 |
# @ woocommerce-germanized
|
7769 |
+
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:160
|
7770 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:159
|
7771 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:39
|
7772 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:892
|
7773 |
#: woocommerce-germanized/includes/gateways/direct-debit/views/html-export.php:30
|
7774 |
msgid "Direct Debit"
|
7775 |
msgstr "Lastschrift"
|
7776 |
|
7777 |
# @ woocommerce-germanized
|
7778 |
+
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:165
|
7779 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:164
|
7780 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:85
|
7781 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:117
|
7782 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:166
|
7783 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:117
|
7784 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:608
|
7785 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:918
|
7786 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1064
|
7787 |
msgid "Account Holder"
|
7788 |
msgstr "Kontoinhaber"
|
7789 |
|
7790 |
# @ woocommerce-germanized
|
7791 |
+
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:170
|
7792 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:169
|
7793 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:86
|
7794 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:118
|
7795 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:167
|
7796 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:124
|
7797 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:609
|
7798 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:926
|
7799 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1068
|
7800 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1198
|
7801 |
msgid "IBAN"
|
7802 |
msgstr "IBAN"
|
7803 |
|
7804 |
# @ woocommerce-germanized
|
7805 |
+
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:175
|
7806 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:174
|
7807 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:87
|
7808 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:119
|
7809 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:168
|
7810 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:131
|
7811 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:610
|
7812 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1072
|
7813 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1199
|
7814 |
msgid "BIC/SWIFT"
|
7815 |
msgstr "BIC/SWIFT"
|
7816 |
|
7821 |
# @ woocommerce-germanized
|
7822 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:179
|
7823 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:138
|
7824 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:614
|
7825 |
msgid "Mandate Reference ID"
|
7826 |
msgstr "Mandat-Referenznummer"
|
7827 |
|
8031 |
"Vielen Dank. Wir haben Ihren Widerruf erhalten. Sie bekommen in Kürze eine E-"
|
8032 |
"Mail mit Ihren Daten als Bestätigung."
|
8033 |
|
8034 |
+
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:142
|
8035 |
msgid ""
|
8036 |
"Sorry, but differential taxed products cannot be purchased with normal "
|
8037 |
"products at the same time."
|
8039 |
"Entschuldigung, differenzbesteuerte Produkte können nicht gemeinsam mit "
|
8040 |
"normalen Produkten gekauft werden."
|
8041 |
|
8042 |
+
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:148
|
8043 |
msgid ""
|
8044 |
"Sorry, but normal products cannot be purchased together with differential "
|
8045 |
"taxed products at the same time."
|
8047 |
"Entschuldigung, normale Produkte können nicht gemeinsam mit "
|
8048 |
"differenzbesteuerten Produkten gekauft werden."
|
8049 |
|
8050 |
+
# @ woocommerce-germanized
|
8051 |
+
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:873
|
8052 |
+
#: woocommerce-germanized/includes/class-wc-gzd-revocation.php:52
|
8053 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:541
|
8054 |
+
msgid "Mr."
|
8055 |
+
msgstr "Herr"
|
8056 |
+
|
8057 |
+
# @ woocommerce-germanized
|
8058 |
+
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:874
|
8059 |
+
msgctxt "customer-title-male-address"
|
8060 |
+
msgid "Mr."
|
8061 |
+
msgstr "Herrn"
|
8062 |
+
|
8063 |
#: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:257
|
8064 |
msgid "Is voucher?"
|
8065 |
msgstr "Wertgutschein?"
|
8077 |
"\">hier</a>."
|
8078 |
|
8079 |
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:118
|
8080 |
+
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:230
|
8081 |
+
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:350
|
8082 |
msgid ""
|
8083 |
"Please activate your account through clicking on the activation link "
|
8084 |
"received via email."
|
8086 |
"Bitte aktivieren Sie Ihr Kundenkonto indem Sie auf den Link in der E-Mail "
|
8087 |
"klicken."
|
8088 |
|
8089 |
+
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:240
|
8090 |
#, php-format
|
8091 |
msgid "Continue without creating an account? <a href=\"%s\">Click here</a>"
|
8092 |
msgstr "Weiter zur Kasse ohne Kundenkonto? <a href=\"%s\">Hier klicken</a>"
|
8093 |
|
8094 |
+
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:242
|
8095 |
msgid "Please create an account or login before continuing to checkout"
|
8096 |
msgstr ""
|
8097 |
"Bitte erstellen Sie ein Kundenkonto oder loggen Sie sich ein, bevor Sie zur "
|
8098 |
"Kasse gehen"
|
8099 |
|
8100 |
+
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:382
|
8101 |
msgid ""
|
8102 |
"This activation code has expired. We have sent you a new activation code via "
|
8103 |
"e-mail."
|
8106 |
"Code per E-Mail geschickt."
|
8107 |
|
8108 |
# @ woocommerce-germanized
|
8109 |
+
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:384
|
8110 |
msgid "Sorry, but this activation code cannot be found."
|
8111 |
msgstr "Sorry, dieser Aktivierungscode ist uns leider nicht bekannt."
|
8112 |
|
8113 |
# @ woocommerce-germanized
|
8114 |
+
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:388
|
8115 |
msgid "Thank you. You have successfully activated your account."
|
8116 |
msgstr "Vielen Dank. Ihr Benutzerkonto wurde erfolgreich aktiviert."
|
8117 |
|
8118 |
+
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:574
|
8119 |
msgid "Expired activation key"
|
8120 |
msgstr "Abgelaufener Aktivierungscode"
|
8121 |
|
8122 |
+
#: woocommerce-germanized/includes/class-wc-gzd-customer-helper.php:579
|
8123 |
msgid "Invalid activation key"
|
8124 |
msgstr "Aktivierungscode ungültig"
|
8125 |
|
8169 |
msgstr "Widerruf online erklären"
|
8170 |
|
8171 |
# @ woocommerce-germanized
|
8172 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:166
|
8173 |
#, php-format
|
8174 |
msgid ""
|
8175 |
"Please install <a href=\"%s\" target=\"_blank\">WooCommerce</a> before "
|
8178 |
"Bitte installieren Sie <a href=\"%s\" target=\"_blank\">WooCommerce</a> "
|
8179 |
"bevor Sie WooCommerce Germanized installieren. Vielen Dank!"
|
8180 |
|
8181 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:481
|
8182 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:495
|
8183 |
msgid "Reduced rate"
|
8184 |
msgstr "Ermäßigter Steuersatz"
|
8185 |
|
8186 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:537
|
8187 |
#, php-format
|
8188 |
msgctxt "vat-rate-import"
|
8189 |
msgid "VAT %s"
|
8190 |
msgstr "MwSt. %s"
|
8191 |
|
8192 |
# @ woocommerce-germanized
|
8193 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:650
|
8194 |
msgctxt "Page slug"
|
8195 |
msgid "data-security"
|
8196 |
msgstr "datenschutzerklaerung"
|
8197 |
|
8198 |
# @ woocommerce-germanized
|
8199 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:651
|
8200 |
msgctxt "Page title"
|
8201 |
msgid "Data Security Statement"
|
8202 |
msgstr "Datenschutzerklärung"
|
8203 |
|
8204 |
# @ woocommerce-germanized
|
8205 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:655
|
8206 |
msgctxt "Page slug"
|
8207 |
msgid "imprint"
|
8208 |
msgstr "impressum"
|
8209 |
|
8210 |
# @ woocommerce-germanized
|
8211 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:656
|
8212 |
msgctxt "Page title"
|
8213 |
msgid "Imprint"
|
8214 |
msgstr "Impressum"
|
8215 |
|
8216 |
# @ woocommerce-germanized
|
8217 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:660
|
8218 |
msgctxt "Page slug"
|
8219 |
msgid "terms"
|
8220 |
msgstr "agb"
|
8221 |
|
8222 |
# @ woocommerce-germanized
|
8223 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:661
|
8224 |
msgctxt "Page title"
|
8225 |
msgid "Terms & Conditions"
|
8226 |
msgstr "AGB"
|
8227 |
|
8228 |
# @ woocommerce-germanized
|
8229 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:665
|
8230 |
msgctxt "Page slug"
|
8231 |
msgid "revocation"
|
8232 |
msgstr "widerrufsbelehrung"
|
8233 |
|
8234 |
# @ woocommerce-germanized
|
8235 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:666
|
8236 |
msgctxt "Page title"
|
8237 |
msgid "Power of Revocation"
|
8238 |
msgstr "Widerrufsbelehrung"
|
8239 |
|
8240 |
# @ woocommerce-germanized
|
8241 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:670
|
8242 |
msgctxt "Page slug"
|
8243 |
msgid "shipping-methods"
|
8244 |
msgstr "versandarten"
|
8245 |
|
8246 |
# @ woocommerce-germanized
|
8247 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:671
|
8248 |
msgctxt "Page title"
|
8249 |
msgid "Shipping Methods"
|
8250 |
msgstr "Versandarten"
|
8251 |
|
8252 |
# @ woocommerce-germanized
|
8253 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:675
|
8254 |
msgctxt "Page slug"
|
8255 |
msgid "payment-methods"
|
8256 |
msgstr "bezahlmoeglichkeiten"
|
8257 |
|
8258 |
# @ woocommerce-germanized
|
8259 |
+
#: woocommerce-germanized/includes/class-wc-gzd-install.php:676
|
8260 |
msgctxt "Page title"
|
8261 |
msgid "Payment Methods"
|
8262 |
msgstr "Zahlungsarten"
|
8427 |
|
8428 |
# @ woocommerce-germanized
|
8429 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:209
|
8430 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:983
|
8431 |
msgid "I hereby agree to the {link}direct debit mandate{/link}."
|
8432 |
msgstr "Hiermit erteile ich das {link}SEPA Lastschriftmandat{/link}."
|
8433 |
|
8822 |
msgid "Title"
|
8823 |
msgstr "Anrede"
|
8824 |
|
|
|
|
|
|
|
|
|
|
|
|
|
8825 |
# @ woocommerce-germanized
|
8826 |
#: woocommerce-germanized/includes/class-wc-gzd-revocation.php:53
|
8827 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:542
|
8828 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:559
|
8829 |
msgid "Ms."
|
8830 |
msgstr "Frau"
|
8831 |
|
9200 |
msgstr "SEPA XML Export"
|
9201 |
|
9202 |
# @ woocommerce-germanized
|
9203 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:509
|
9204 |
#, php-format
|
9205 |
msgid "Order %s"
|
9206 |
msgstr "Bestellung %s"
|
9207 |
|
9208 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:540
|
9209 |
msgid "Will be notified separately"
|
9210 |
msgstr "Wird separat mitgeteilt"
|
9211 |
|
9212 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:629
|
9213 |
#, php-format
|
9214 |
msgid ""
|
9215 |
"We will debit %s from your account by direct debit on or shortly after %s."
|
9218 |
"%s ein."
|
9219 |
|
9220 |
# @ woocommerce-germanized
|
9221 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:767
|
9222 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:799
|
9223 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:832
|
9224 |
msgid "a single payment"
|
9225 |
msgstr "eine einmalige Zahlung"
|
9226 |
|
9227 |
# @ woocommerce-germanized
|
9228 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:883
|
9229 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:111
|
9230 |
msgid "Enable/Disable"
|
9231 |
msgstr "Aktivieren/Deaktivieren"
|
9232 |
|
9233 |
# @ woocommerce-germanized
|
9234 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:885
|
9235 |
msgid "Enable Direct Debit Payment"
|
9236 |
msgstr "Bezahlung per Lastschrift aktivieren"
|
9237 |
|
9238 |
# @ woocommerce-germanized
|
9239 |
# @ woocommerce
|
9240 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:889
|
9241 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:117
|
9242 |
msgctxt "gateway"
|
9243 |
msgid "Title"
|
9244 |
msgstr "Bezeichnung"
|
9245 |
|
9246 |
# @ woocommerce-germanized
|
9247 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:891
|
9248 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:119
|
9249 |
msgid "This controls the title which the user sees during checkout."
|
9250 |
msgstr ""
|
9251 |
"Beschreibungstext, den Benutzer bei der Auswahl dieser Zahlungsart sehen."
|
9252 |
|
9253 |
# @ woocommerce-germanized
|
9254 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:898
|
9255 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:126
|
9256 |
msgid "Payment method description that the customer will see on your checkout."
|
9257 |
msgstr "Beschreibung der Zahlungsart, die Kunden auf ihrer Website sehen."
|
9258 |
|
9259 |
# @ woocommerce-germanized
|
9260 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:899
|
9261 |
msgid "The order amount will be debited directly from your bank account."
|
9262 |
msgstr ""
|
9263 |
"Der Gesamtbestellbetrag wird per SEPA-Lastschrift direkt von Ihrem Konto "
|
9264 |
"abgebucht."
|
9265 |
|
9266 |
# @ woocommerce-germanized
|
9267 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:903
|
9268 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:131
|
9269 |
msgid "Instructions"
|
9270 |
msgstr "Anweisungen"
|
9271 |
|
9272 |
# @ woocommerce-germanized
|
9273 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:905
|
9274 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:133
|
9275 |
msgid "Instructions that will be added to the thank you page and emails."
|
9276 |
msgstr "Anweisung, die zur „Danke“-Seite und zu E-Mails hinzugefügt werden."
|
9277 |
|
9278 |
# @ woocommerce-germanized
|
9279 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:910
|
9280 |
msgid "Debtee"
|
9281 |
msgstr "Gläubiger Informationen"
|
9282 |
|
9283 |
# @ woocommerce-germanized
|
9284 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:912
|
9285 |
msgid "Insert your company information."
|
9286 |
msgstr "Fügen Sie hier die Informationen zu ihrem Unternehmen ein."
|
9287 |
|
9288 |
# @ woocommerce-germanized
|
9289 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:914
|
9290 |
msgid "Company Inc, John Doe Street, New York"
|
9291 |
msgstr "Musterfirma GmbH, Musterstraße 12, 12203 Musterstadt"
|
9292 |
|
9293 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:920
|
9294 |
msgid "Insert the bank account holder name."
|
9295 |
msgstr "Fügen Sie hier den Namen des Kontoinhabers ein."
|
9296 |
|
9297 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:922
|
9298 |
msgid "Company Inc"
|
9299 |
msgstr "Muster GmbH"
|
9300 |
|
9301 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:928
|
9302 |
msgid "Insert the bank account IBAN."
|
9303 |
msgstr "Fügen Sie hier den IBAN ihres Kontos ein."
|
9304 |
|
9305 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:933
|
9306 |
msgid "BIC"
|
9307 |
msgstr "BIC"
|
9308 |
|
9309 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:935
|
9310 |
msgid "Insert the bank account BIC."
|
9311 |
msgstr "Fügen Sie hier den BIC ihres Kontos ein."
|
9312 |
|
9313 |
# @ woocommerce-germanized
|
9314 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:940
|
9315 |
msgid "Debtee identification number"
|
9316 |
msgstr "Identifikationsnummer"
|
9317 |
|
9318 |
# @ woocommerce-germanized
|
9319 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:942
|
9320 |
#, php-format
|
9321 |
msgid ""
|
9322 |
"Insert your debtee indentification number. More information can be found <a "
|
9326 |
"Weitere Informationen zu dieser Nummer erhalten Sie <a href=\"%s\">hier</a>."
|
9327 |
|
9328 |
# @ woocommerce-germanized
|
9329 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:946
|
9330 |
msgid "Generate Mandate ID"
|
9331 |
msgstr "Mandat-Referenz generieren"
|
9332 |
|
9333 |
# @ woocommerce-germanized
|
9334 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:948
|
9335 |
msgid "Automatically generate Mandate ID."
|
9336 |
msgstr "Mandat-Referenznummer automatisch generieren."
|
9337 |
|
9338 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:949
|
9339 |
msgid ""
|
9340 |
"Automatically generate Mandate ID after order completion (based on Order ID)."
|
9341 |
msgstr ""
|
9343 |
"basierend auf der Bestellnummer generieren."
|
9344 |
|
9345 |
# @ woocommerce-germanized
|
9346 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:953
|
9347 |
msgid "XML Pain Format"
|
9348 |
msgstr "XML Pain Format"
|
9349 |
|
9350 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:955
|
9351 |
msgid ""
|
9352 |
"You may adjust the XML Export Pain Schema to your banks needs. Some banks "
|
9353 |
"may require pain.001.003.03."
|
9356 |
"Einige Banken benötigen z.B. pain.001.003.03."
|
9357 |
|
9358 |
# @ woocommerce-germanized
|
9359 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:959
|
9360 |
msgid "Mandate ID Format"
|
9361 |
msgstr "Mandat-Referenz Format"
|
9362 |
|
9363 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:961
|
9364 |
msgid ""
|
9365 |
"You may extend the Mandate ID format by adding a prefix and/or suffix. Use "
|
9366 |
"{id} as placeholder to insert the automatically generated ID."
|
9370 |
"einzufügen."
|
9371 |
|
9372 |
# @ woocommerce-germanized
|
9373 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:965
|
9374 |
msgid "Mandate Text"
|
9375 |
msgstr "Lastschriftmandat"
|
9376 |
|
9377 |
# @ woocommerce-germanized
|
9378 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:967
|
9379 |
msgid ""
|
9380 |
"This text will be populated with live order/checkout data. Will be used as "
|
9381 |
"preview direct debit mandate and as email template text."
|
9386 |
"Verfügung gestellt."
|
9387 |
|
9388 |
# @ woocommerce-germanized
|
9389 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:973
|
9390 |
msgid "Checkbox"
|
9391 |
msgstr "Checkbox"
|
9392 |
|
9393 |
# @ woocommerce-germanized
|
9394 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:974
|
9395 |
msgid "Enable \"agree to SEPA mandate\" checkbox"
|
9396 |
msgstr "Aktivieren Sie die Checkbox zur Bestätigung des Lastschriftmandates"
|
9397 |
|
9398 |
# @ woocommerce-germanized
|
9399 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:976
|
9400 |
msgid "Enable a checkbox linking to a SEPA direct debit mandate preview."
|
9401 |
msgstr ""
|
9402 |
"Aktivieren Sie eine Checkbox, die zu einer Vorschau des Lastschrift-Mandats "
|
9403 |
"führt."
|
9404 |
|
9405 |
# @ woocommerce-germanized
|
9406 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:980
|
9407 |
msgid "Checkbox label"
|
9408 |
msgstr "Checkbox Text"
|
9409 |
|
9410 |
# @ woocommerce-germanized
|
9411 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:982
|
9412 |
msgid ""
|
9413 |
"Customize the checkbox label. Use {link}link name{/link} to insert the "
|
9414 |
"preview link."
|
9416 |
"Passt den Checkbox Text an. Verwenden Sie {link}SEPA Lastschriftmandat{/"
|
9417 |
"link} um auf die Vorschau zu verlinken."
|
9418 |
|
9419 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:987
|
9420 |
msgid "Enable pre-notification"
|
9421 |
msgstr "Vorankündigung aktivieren"
|
9422 |
|
9423 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:988
|
9424 |
msgid "Insert pre-notification text within the order confirmation email."
|
9425 |
msgstr ""
|
9426 |
"Fügt einen Standard-Text zur Vorankündigung des SEPA-Einzugs in die "
|
9427 |
"Bestellbestätigung ein."
|
9428 |
|
9429 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:990
|
9430 |
msgid ""
|
9431 |
"This option inserts a standard text containing a pre-notification for the "
|
9432 |
"customer."
|
9435 |
"die Bestellbestätigung ein. In der Ankündigung wird u.a. ein konkreter "
|
9436 |
"Fälligkeitstermin genannt."
|
9437 |
|
9438 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:994
|
9439 |
msgid "Debit days"
|
9440 |
msgstr "Fälligkeitstage"
|
9441 |
|
9442 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:996
|
9443 |
msgid ""
|
9444 |
"This option is used to calculate the debit date and is added to the order "
|
9445 |
"date."
|
9449 |
"hier eingestellten Anzahl Tage."
|
9450 |
|
9451 |
# @ woocommerce-germanized
|
9452 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1000
|
9453 |
msgid "Mask IBAN"
|
9454 |
msgstr "IBAN maskieren"
|
9455 |
|
9456 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1001
|
9457 |
msgid "Mask the IBAN within emails."
|
9458 |
msgstr "IBAN in E-Mails maskieren."
|
9459 |
|
9460 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1003
|
9461 |
msgid ""
|
9462 |
"This will lead to masked IBANs within emails (replaced by *). All but last 4 "
|
9463 |
"digits will be masked."
|
9465 |
"Der IBAN wird in E-Mails (abgesehen von den letzten 4 Stellen) mit * "
|
9466 |
"maskiert."
|
9467 |
|
9468 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1013
|
9469 |
msgid "Remember"
|
9470 |
msgstr "Bankdaten merken"
|
9471 |
|
9472 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1014
|
9473 |
msgid "Remember account data for returning customers."
|
9474 |
msgstr "Bankverbindung für registrierte Kunden speichern."
|
9475 |
|
9476 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1016
|
9477 |
msgid "Save account data as user meta if user has/creates a customer account."
|
9478 |
msgstr ""
|
9479 |
"Speichert die Bankverbindung für registrierte Kunden in der user_meta "
|
9481 |
"eigenständig aus."
|
9482 |
|
9483 |
# @ woocommerce-germanized
|
9484 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1126
|
9485 |
msgid "Please insert your SEPA account data."
|
9486 |
msgstr "Bitte fügen Sie Ihre SEPA Kontoinformationen ein."
|
9487 |
|
9488 |
# @ woocommerce-germanized
|
9489 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1148
|
9490 |
msgid "Your IBAN seems to be invalid."
|
9491 |
msgstr "Ihr IBAN scheint nicht gültig zu sein."
|
9492 |
|
9493 |
# @ woocommerce-germanized
|
9494 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1150
|
9495 |
msgid "Your IBAN's country code doesn’t match with your billing country."
|
9496 |
msgstr "Der Ländercode des IBANs stimmt nicht mit dem Rechnungsland überein."
|
9497 |
|
9498 |
# @ woocommerce-germanized
|
9499 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1155
|
9500 |
msgid "Your BIC seems to be invalid."
|
9501 |
msgstr "Ihr BIC/SWIFT scheint nicht gültig zu sein."
|
9502 |
|
9503 |
# @ woocommerce-germanized
|
9504 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1200
|
9505 |
msgid "is invalid"
|
9506 |
msgstr "ist ungültig"
|
9507 |
|
9508 |
# @ woocommerce-germanized
|
9509 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1247
|
9510 |
msgid "Awaiting Direct Debit Payment"
|
9511 |
msgstr "Zahlung per Lastschrift ausstehend"
|
9512 |
|
10061 |
msgid "upgrade"
|
10062 |
msgstr "aktualisieren"
|
10063 |
|
10064 |
+
#: woocommerce-germanized/woocommerce-germanized.php:980
|
10065 |
msgid "Pease wait while we are trying to redirect you to the payment provider."
|
10066 |
msgstr "Einen Moment - wir versuchen Sie zum Zahlungsanbieter weiterzuleiten."
|
10067 |
|
11302 |
msgid "https://vendidero.de"
|
11303 |
msgstr "https://vendidero.de"
|
11304 |
|
11305 |
+
# @ woocommerce-germanized
|
11306 |
+
#~ msgid "No VAT notice"
|
11307 |
+
#~ msgstr "Umsatzsteuerbefreiung"
|
11308 |
+
|
11309 |
+
# @ woocommerce-germanized
|
11310 |
+
#~ msgid "Show no VAT §19 UStG notice on single product page."
|
11311 |
+
#~ msgstr ""
|
11312 |
+
#~ "Hinweis zur Umsatzsteuerbefreiung gemäß §19 UStG auf der "
|
11313 |
+
#~ "Produktseite anzeigen."
|
11314 |
+
|
11315 |
#, fuzzy
|
11316 |
#~| msgctxt "trusted-shops"
|
11317 |
#~| msgid "Install %s"
|
includes/abstracts/abstract-wc-gzd-product.php
CHANGED
@@ -595,27 +595,11 @@ class WC_GZD_Product {
|
|
595 |
* @return string
|
596 |
*/
|
597 |
public function get_unit_base_html() {
|
598 |
-
|
599 |
-
* Filter that allows changing the amount which is used to determine whether
|
600 |
-
* the base for the unit price should be skipped or not. Defaults to 1.
|
601 |
-
*
|
602 |
-
* @param int $amount The amount.
|
603 |
-
*
|
604 |
-
* @since 1.0.0
|
605 |
-
*
|
606 |
-
*/
|
607 |
-
$hide_amount = apply_filters( 'woocommerce_gzd_unit_base_hide_amount', 1 );
|
608 |
-
|
609 |
-
return ( $this->get_unit_base() !== '' ) ? ( $this->get_unit_base() != $hide_amount ? '<span class="unit-base">' . $this->get_unit_base() . '</span>' : '' ) : '';
|
610 |
}
|
611 |
|
612 |
public function get_unit_html() {
|
613 |
-
|
614 |
-
if ( $this->get_unit() !== '' ) {
|
615 |
-
return '<span class="unit">' . $this->get_unit_name() . '</span>';
|
616 |
-
}
|
617 |
-
|
618 |
-
return '';
|
619 |
}
|
620 |
|
621 |
public function get_unit_term( $context = 'view' ) {
|
@@ -807,7 +791,6 @@ class WC_GZD_Product {
|
|
807 |
$html = '';
|
808 |
|
809 |
if ( $this->has_unit() ) {
|
810 |
-
|
811 |
/**
|
812 |
* Before retrieving unit price HTML.
|
813 |
*
|
@@ -820,46 +803,12 @@ class WC_GZD_Product {
|
|
820 |
*/
|
821 |
do_action( 'woocommerce_gzd_before_get_unit_price_html', $this );
|
822 |
|
823 |
-
$display_price
|
824 |
-
|
825 |
$display_regular_price = $this->get_formatted_unit_price( 1, $this->get_unit_price_regular() );
|
826 |
$display_sale_price = $this->get_formatted_unit_price( 1, $this->get_unit_price_sale() );
|
827 |
|
828 |
-
$price_html
|
829 |
-
$
|
830 |
-
$replacements = array();
|
831 |
-
|
832 |
-
/**
|
833 |
-
* Filter to adjust the unit price base separator.
|
834 |
-
*
|
835 |
-
* @param string $separator The separator.
|
836 |
-
*
|
837 |
-
* @since 1.0.0
|
838 |
-
*
|
839 |
-
*/
|
840 |
-
$separator = apply_filters( 'wc_gzd_unit_price_base_seperator', ' ' );
|
841 |
-
|
842 |
-
if ( strpos( $text, '{price}' ) !== false ) {
|
843 |
-
$replacements = array(
|
844 |
-
/**
|
845 |
-
* Filter to adjust the unit price separator.
|
846 |
-
*
|
847 |
-
* @param string $separator The separator.
|
848 |
-
*
|
849 |
-
* @since 1.0.0
|
850 |
-
*
|
851 |
-
*/
|
852 |
-
'{price}' => $price_html . apply_filters( 'wc_gzd_unit_price_seperator', ' / ' ) . $this->get_unit_base_html() . $separator . $this->get_unit_html(),
|
853 |
-
);
|
854 |
-
} else {
|
855 |
-
$replacements = array(
|
856 |
-
'{base_price}' => $price_html,
|
857 |
-
'{unit}' => $this->get_unit_html(),
|
858 |
-
'{base}' => $this->get_unit_base_html()
|
859 |
-
);
|
860 |
-
}
|
861 |
-
|
862 |
-
$html = wc_gzd_replace_label_shortcodes( $text, $replacements );
|
863 |
}
|
864 |
|
865 |
/**
|
595 |
* @return string
|
596 |
*/
|
597 |
public function get_unit_base_html() {
|
598 |
+
return wc_gzd_format_unit_base( $this->get_unit_base() );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
599 |
}
|
600 |
|
601 |
public function get_unit_html() {
|
602 |
+
return wc_gzd_format_unit( $this->get_unit_name() );
|
|
|
|
|
|
|
|
|
|
|
603 |
}
|
604 |
|
605 |
public function get_unit_term( $context = 'view' ) {
|
791 |
$html = '';
|
792 |
|
793 |
if ( $this->has_unit() ) {
|
|
|
794 |
/**
|
795 |
* Before retrieving unit price HTML.
|
796 |
*
|
803 |
*/
|
804 |
do_action( 'woocommerce_gzd_before_get_unit_price_html', $this );
|
805 |
|
806 |
+
$display_price = $this->get_formatted_unit_price();
|
|
|
807 |
$display_regular_price = $this->get_formatted_unit_price( 1, $this->get_unit_price_regular() );
|
808 |
$display_sale_price = $this->get_formatted_unit_price( 1, $this->get_unit_price_sale() );
|
809 |
|
810 |
+
$price_html = ( ( $this->is_on_unit_sale() && $show_sale ) ? $this->get_price_html_from_to( $display_regular_price, $display_sale_price, false ) : wc_price( $display_price ) );
|
811 |
+
$html = wc_gzd_format_unit_price( $price_html, $this->get_unit_html(), $this->get_unit_base_html() );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
812 |
}
|
813 |
|
814 |
/**
|
includes/admin/class-wc-gzd-admin-welcome.php
CHANGED
@@ -109,21 +109,22 @@ class WC_GZD_Admin_Welcome {
|
|
109 |
<div class="wc-gzd-news <?php echo( WC_germanized()->is_pro() ? 'wc-gzd-admin-welcome-hide-pro' : '' ); ?>">
|
110 |
|
111 |
<h1>Willkommen bei Germanized</h1>
|
112 |
-
<
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
|
|
127 |
</div>
|
128 |
|
129 |
<p class="woocommerce-actions wc-gzd-actions">
|
109 |
<div class="wc-gzd-news <?php echo( WC_germanized()->is_pro() ? 'wc-gzd-admin-welcome-hide-pro' : '' ); ?>">
|
110 |
|
111 |
<h1>Willkommen bei Germanized</h1>
|
112 |
+
<div class="about-logo-wrapper">
|
113 |
+
<a class="wc-gzd-logo" href="https://vendidero.de/woocommerce-germanized" target="_blank"></a>
|
114 |
+
<div class="about-text woocommerce-about-text">
|
115 |
+
<?php
|
116 |
+
if ( ! empty( $_GET['wc-gzd-installed'] ) ) {
|
117 |
+
$message = 'Super, alles erledigt!';
|
118 |
+
} elseif ( ! empty( $_GET['wc-gzd-updated'] ) ) {
|
119 |
+
$message = 'Danke, dass du auf die neueste Version aktualisiert hast!';
|
120 |
+
} else {
|
121 |
+
$message = 'Danke für die Installation!';
|
122 |
+
}
|
123 |
+
echo $message . '<br/>';
|
124 |
+
?>
|
125 |
+
Germanized <?php echo $major_version; ?> erweitert deine WooCommerce Installation um wichtige Funktionen
|
126 |
+
für den deutschen Markt.
|
127 |
+
</div>
|
128 |
</div>
|
129 |
|
130 |
<p class="woocommerce-actions wc-gzd-actions">
|
includes/api/class-wc-gzd-rest-customers-controller.php
CHANGED
@@ -59,6 +59,10 @@ class WC_GZD_REST_Customers_Controller {
|
|
59 |
'bic' => $bic
|
60 |
);
|
61 |
|
|
|
|
|
|
|
|
|
62 |
$response->set_data( $response_customer_data );
|
63 |
|
64 |
return $response;
|
@@ -143,6 +147,15 @@ class WC_GZD_REST_Customers_Controller {
|
|
143 |
'enum' => array( 1, 2 )
|
144 |
);
|
145 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
$schema_properties['direct_debit'] = array(
|
147 |
'description' => __( 'Direct Debit', 'woocommerce-germanized' ),
|
148 |
'type' => 'array',
|
@@ -168,5 +181,4 @@ class WC_GZD_REST_Customers_Controller {
|
|
168 |
|
169 |
return $schema_properties;
|
170 |
}
|
171 |
-
|
172 |
}
|
59 |
'bic' => $bic
|
60 |
);
|
61 |
|
62 |
+
if ( WC_GZD_Customer_Helper::instance()->is_double_opt_in_enabled() ) {
|
63 |
+
$response_customer_data['is_activated'] = wc_gzd_is_customer_activated( $customer->get_id() );
|
64 |
+
}
|
65 |
+
|
66 |
$response->set_data( $response_customer_data );
|
67 |
|
68 |
return $response;
|
147 |
'enum' => array( 1, 2 )
|
148 |
);
|
149 |
|
150 |
+
if ( WC_GZD_Customer_Helper::instance()->is_double_opt_in_enabled() ) {
|
151 |
+
$schema_properties['is_activated'] = array(
|
152 |
+
'description' => __( 'Has been activated via DOI?', 'woocommerce-germanized' ),
|
153 |
+
'type' => 'boolean',
|
154 |
+
'context' => array( 'view', 'edit' ),
|
155 |
+
'readonly' => true
|
156 |
+
);
|
157 |
+
}
|
158 |
+
|
159 |
$schema_properties['direct_debit'] = array(
|
160 |
'description' => __( 'Direct Debit', 'woocommerce-germanized' ),
|
161 |
'type' => 'array',
|
181 |
|
182 |
return $schema_properties;
|
183 |
}
|
|
|
184 |
}
|
includes/api/class-wc-gzd-rest-products-controller.php
CHANGED
@@ -181,7 +181,7 @@ class WC_GZD_REST_Products_Controller {
|
|
181 |
'default' => false,
|
182 |
'context' => array( 'view', 'edit' ),
|
183 |
);
|
184 |
-
$schema_properties['
|
185 |
'description' => __( 'Age verification minimum age.', 'woocommerce-germanized' ),
|
186 |
'type' => 'string',
|
187 |
'enum' => array_merge( array( '' ), array_keys( wc_gzd_get_age_verification_min_ages() ) ),
|
181 |
'default' => false,
|
182 |
'context' => array( 'view', 'edit' ),
|
183 |
);
|
184 |
+
$schema_properties['min_age'] = array(
|
185 |
'description' => __( 'Age verification minimum age.', 'woocommerce-germanized' ),
|
186 |
'type' => 'string',
|
187 |
'enum' => array_merge( array( '' ), array_keys( wc_gzd_get_age_verification_min_ages() ) ),
|
includes/class-wc-gzd-checkout.php
CHANGED
@@ -46,6 +46,11 @@ class WC_GZD_Checkout {
|
|
46 |
add_filter( 'woocommerce_admin_billing_fields', array( $this, 'set_custom_fields_admin_billing' ), 0, 1 );
|
47 |
add_filter( 'woocommerce_admin_shipping_fields', array( $this, 'set_custom_fields_admin_shipping' ), 0, 1 );
|
48 |
|
|
|
|
|
|
|
|
|
|
|
49 |
// Save Fields on order
|
50 |
add_action( 'woocommerce_checkout_create_order', array( $this, 'save_fields' ) );
|
51 |
|
@@ -130,6 +135,14 @@ class WC_GZD_Checkout {
|
|
130 |
add_filter( 'woocommerce_update_order_review_fragments', array( $this, 'refresh_order_submit' ), 150, 1 );
|
131 |
}
|
132 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
public function prevent_differential_mixed_carts( $has_passed, $product_id, $quantity ) {
|
134 |
if ( $gzd_product = wc_gzd_get_gzd_product( $product_id ) ) {
|
135 |
|
@@ -408,15 +421,22 @@ class WC_GZD_Checkout {
|
|
408 |
}
|
409 |
|
410 |
public function add_payment_link( $order_id ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
411 |
|
412 |
$enabled = true;
|
413 |
|
414 |
if ( get_option( 'woocommerce_gzd_order_pay_now_button' ) === 'no' ) {
|
415 |
$enabled = false;
|
416 |
}
|
417 |
-
|
418 |
-
$order = wc_get_order( $order_id );
|
419 |
-
|
420 |
if ( ! $order->needs_payment() ) {
|
421 |
$enabled = false;
|
422 |
}
|
@@ -772,41 +792,34 @@ class WC_GZD_Checkout {
|
|
772 |
* @param $order
|
773 |
*/
|
774 |
public function set_order_item_meta_crud( $item, $cart_item_key, $values, $order ) {
|
775 |
-
if ( is_a( $item, '
|
|
|
|
|
776 |
|
777 |
-
|
778 |
-
|
|
|
779 |
|
780 |
-
|
781 |
-
* Add order item meta.
|
782 |
-
*
|
783 |
-
* Fires when Germanized adds order item meta.
|
784 |
-
*
|
785 |
-
* @param WC_Order_Item $item The order item.
|
786 |
-
* @param WC_Order $order The order.
|
787 |
-
* @param WC_GZD_Product $gzd_product The product object.
|
788 |
-
*
|
789 |
-
* @since 1.8.9
|
790 |
-
*
|
791 |
-
*/
|
792 |
-
do_action( 'woocommerce_gzd_add_order_item_meta', $item, $order, $gzd_product );
|
793 |
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
|
|
|
|
810 |
}
|
811 |
}
|
812 |
|
@@ -820,6 +833,14 @@ class WC_GZD_Checkout {
|
|
820 |
array_push( $metas, '_units' );
|
821 |
array_push( $metas, '_delivery_time' );
|
822 |
array_push( $metas, '_unit_price' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
823 |
|
824 |
return $metas;
|
825 |
}
|
@@ -856,6 +877,20 @@ class WC_GZD_Checkout {
|
|
856 |
|
857 |
public function set_formatted_address( $placeholder, $args ) {
|
858 |
if ( isset( $args['title'] ) ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
859 |
$placeholder['{title}'] = $args['title'];
|
860 |
$placeholder['{title_upper}'] = strtoupper( $args['title'] );
|
861 |
|
46 |
add_filter( 'woocommerce_admin_billing_fields', array( $this, 'set_custom_fields_admin_billing' ), 0, 1 );
|
47 |
add_filter( 'woocommerce_admin_shipping_fields', array( $this, 'set_custom_fields_admin_shipping' ), 0, 1 );
|
48 |
|
49 |
+
/**
|
50 |
+
* Recalculate order item unit price after tax adjustments.
|
51 |
+
*/
|
52 |
+
add_action( 'woocommerce_order_item_after_calculate_taxes', array( $this, 'recalculate_order_item_unit_price' ), 60, 1 );
|
53 |
+
|
54 |
// Save Fields on order
|
55 |
add_action( 'woocommerce_checkout_create_order', array( $this, 'save_fields' ) );
|
56 |
|
135 |
add_filter( 'woocommerce_update_order_review_fragments', array( $this, 'refresh_order_submit' ), 150, 1 );
|
136 |
}
|
137 |
|
138 |
+
public function recalculate_order_item_unit_price( $order_item ) {
|
139 |
+
if ( is_a( $order_item, 'WC_Order_Item_Product' ) ) {
|
140 |
+
if ( $gzd_item = wc_gzd_get_order_item( $order_item ) ) {
|
141 |
+
$gzd_item->recalculate_unit_price();
|
142 |
+
}
|
143 |
+
}
|
144 |
+
}
|
145 |
+
|
146 |
public function prevent_differential_mixed_carts( $has_passed, $product_id, $quantity ) {
|
147 |
if ( $gzd_product = wc_gzd_get_gzd_product( $product_id ) ) {
|
148 |
|
421 |
}
|
422 |
|
423 |
public function add_payment_link( $order_id ) {
|
424 |
+
if ( is_a( $order_id, 'WC_Order' ) ) {
|
425 |
+
$order = $order_id;
|
426 |
+
} else {
|
427 |
+
$order = wc_get_order( $order_id );
|
428 |
+
}
|
429 |
+
|
430 |
+
if ( ! $order ) {
|
431 |
+
return;
|
432 |
+
}
|
433 |
|
434 |
$enabled = true;
|
435 |
|
436 |
if ( get_option( 'woocommerce_gzd_order_pay_now_button' ) === 'no' ) {
|
437 |
$enabled = false;
|
438 |
}
|
439 |
+
|
|
|
|
|
440 |
if ( ! $order->needs_payment() ) {
|
441 |
$enabled = false;
|
442 |
}
|
792 |
* @param $order
|
793 |
*/
|
794 |
public function set_order_item_meta_crud( $item, $cart_item_key, $values, $order ) {
|
795 |
+
if ( is_a( $item, 'WC_Order_Item_Product' ) && ( $product = $item->get_product() ) ) {
|
796 |
+
if ( $gzd_item = wc_gzd_get_order_item( $item ) ) {
|
797 |
+
$gzd_product = wc_gzd_get_product( $product );
|
798 |
|
799 |
+
$gzd_item->set_unit( $gzd_product->get_unit_name() );
|
800 |
+
$gzd_item->set_unit_base( $gzd_product->get_unit_base() );
|
801 |
+
$gzd_item->set_unit_product( $gzd_product->get_unit_product() );
|
802 |
|
803 |
+
$gzd_item->recalculate_unit_price();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
804 |
|
805 |
+
$gzd_item->set_cart_description( $gzd_product->get_formatted_cart_description() );
|
806 |
+
$gzd_item->set_delivery_time( $gzd_product->get_delivery_time_html() );
|
807 |
+
$gzd_item->set_min_age( $gzd_product->get_min_age() );
|
808 |
|
809 |
+
/**
|
810 |
+
* Add order item meta.
|
811 |
+
*
|
812 |
+
* Fires when Germanized adds order item meta.
|
813 |
+
*
|
814 |
+
* @param WC_Order_Item $item The order item.
|
815 |
+
* @param WC_Order $order The order.
|
816 |
+
* @param WC_GZD_Product $gzd_product The product object.
|
817 |
+
* @param WC_GZD_Order_Item $gzd_item The order item object.
|
818 |
+
*
|
819 |
+
* @since 1.8.9
|
820 |
+
*/
|
821 |
+
do_action( 'woocommerce_gzd_add_order_item_meta', $item, $order, $gzd_product, $gzd_item );
|
822 |
+
}
|
823 |
}
|
824 |
}
|
825 |
|
833 |
array_push( $metas, '_units' );
|
834 |
array_push( $metas, '_delivery_time' );
|
835 |
array_push( $metas, '_unit_price' );
|
836 |
+
array_push( $metas, '_unit_price_raw' );
|
837 |
+
array_push( $metas, '_unit_price_subtotal_raw' );
|
838 |
+
array_push( $metas, '_unit_price_subtotal_net_raw' );
|
839 |
+
array_push( $metas, '_unit_price_net_raw' );
|
840 |
+
array_push( $metas, '_unit_product' );
|
841 |
+
array_push( $metas, '_unit' );
|
842 |
+
array_push( $metas, '_unit_base' );
|
843 |
+
array_push( $metas, '_min_age' );
|
844 |
|
845 |
return $metas;
|
846 |
}
|
877 |
|
878 |
public function set_formatted_address( $placeholder, $args ) {
|
879 |
if ( isset( $args['title'] ) ) {
|
880 |
+
|
881 |
+
if ( ! empty( $args['title'] ) ) {
|
882 |
+
$title = is_numeric( $args['title'] ) ? wc_gzd_get_customer_title( $args['title'] ) : $args['title'];
|
883 |
+
|
884 |
+
/**
|
885 |
+
* Ugly hack to force accusative in addresses
|
886 |
+
*/
|
887 |
+
if ( __( 'Mr.', 'woocommerce-germanized' ) === $title ) {
|
888 |
+
$title = _x( 'Mr.', 'customer-title-male-address', 'woocommerce-germanized' );
|
889 |
+
}
|
890 |
+
|
891 |
+
$args['title'] = $title;
|
892 |
+
}
|
893 |
+
|
894 |
$placeholder['{title}'] = $args['title'];
|
895 |
$placeholder['{title_upper}'] = strtoupper( $args['title'] );
|
896 |
|
includes/class-wc-gzd-customer-helper.php
CHANGED
@@ -191,6 +191,13 @@ class WC_GZD_Customer_Helper {
|
|
191 |
|
192 |
public function disable_checkout() {
|
193 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
$user_id = get_current_user_id();
|
195 |
|
196 |
if ( is_cart() ) {
|
191 |
|
192 |
public function disable_checkout() {
|
193 |
|
194 |
+
/**
|
195 |
+
* Prevent errors in case this is not a frontend request
|
196 |
+
*/
|
197 |
+
if ( ! WC()->session ) {
|
198 |
+
return;
|
199 |
+
}
|
200 |
+
|
201 |
$user_id = get_current_user_id();
|
202 |
|
203 |
if ( is_cart() ) {
|
includes/class-wc-gzd-emails.php
CHANGED
@@ -485,13 +485,14 @@ class WC_GZD_Emails {
|
|
485 |
$this->get_email_instance_by_id( 'customer_processing_order' ),
|
486 |
'trigger'
|
487 |
) );
|
|
|
488 |
remove_action( $status . '_notification', array(
|
489 |
$this->get_email_instance_by_id( 'new_order' ),
|
490 |
'trigger'
|
491 |
) );
|
492 |
|
493 |
if ( $this->get_email_instance_by_id( 'customer_on_hold_order' ) ) {
|
494 |
-
remove_action( '
|
495 |
$this->get_email_instance_by_id( 'customer_on_hold_order' ),
|
496 |
'trigger'
|
497 |
) );
|
485 |
$this->get_email_instance_by_id( 'customer_processing_order' ),
|
486 |
'trigger'
|
487 |
) );
|
488 |
+
|
489 |
remove_action( $status . '_notification', array(
|
490 |
$this->get_email_instance_by_id( 'new_order' ),
|
491 |
'trigger'
|
492 |
) );
|
493 |
|
494 |
if ( $this->get_email_instance_by_id( 'customer_on_hold_order' ) ) {
|
495 |
+
remove_action( $status . '_notification', array(
|
496 |
$this->get_email_instance_by_id( 'customer_on_hold_order' ),
|
497 |
'trigger'
|
498 |
) );
|
includes/class-wc-gzd-install.php
CHANGED
@@ -433,18 +433,15 @@ if ( ! class_exists( 'WC_GZD_Install' ) ) :
|
|
433 |
}
|
434 |
}
|
435 |
|
436 |
-
public static function create_virtual_tax_rates() {
|
437 |
global $wpdb;
|
438 |
|
439 |
-
|
440 |
-
$wpdb->delete( $wpdb->prefix . 'woocommerce_tax_rates', array( 'tax_rate_class' => 'virtual-rate' ), array( '%s' ) );
|
441 |
-
|
442 |
-
$rates = array(
|
443 |
'BE' => 21,
|
444 |
'BG' => 20,
|
445 |
'CZ' => 21,
|
446 |
'DK' => 25,
|
447 |
-
'DE' =>
|
448 |
'EE' => 20,
|
449 |
'GR' => 23,
|
450 |
'ES' => 21,
|
@@ -468,7 +465,10 @@ if ( ! class_exists( 'WC_GZD_Install' ) ) :
|
|
468 |
'FI' => 24,
|
469 |
'SE' => 25,
|
470 |
'GB' => 20,
|
471 |
-
);
|
|
|
|
|
|
|
472 |
|
473 |
self::import_rates( $rates, 'virtual-rate' );
|
474 |
self::import_rates( array(), 'virtual-reduced-rate' );
|
@@ -568,11 +568,11 @@ if ( ! class_exists( 'WC_GZD_Install' ) ) :
|
|
568 |
$countries = WC()->countries->get_european_union_countries();
|
569 |
|
570 |
if ( empty( $tax_rate ) || ! is_numeric( $tax_rate ) ) {
|
571 |
-
$tax_rate = WC()->countries->get_base_country() === 'AT' ? 20 :
|
572 |
}
|
573 |
|
574 |
if ( empty( $tax_rate_reduced ) || ! is_numeric( $tax_rate_reduced ) ) {
|
575 |
-
$tax_rate_reduced = WC()->countries->get_base_country() === 'AT' ? 10 :
|
576 |
}
|
577 |
|
578 |
foreach ( $countries as $key => $country ) {
|
433 |
}
|
434 |
}
|
435 |
|
436 |
+
public static function create_virtual_tax_rates( $rates = array() ) {
|
437 |
global $wpdb;
|
438 |
|
439 |
+
$rates = wp_parse_args( $rates, array(
|
|
|
|
|
|
|
440 |
'BE' => 21,
|
441 |
'BG' => 20,
|
442 |
'CZ' => 21,
|
443 |
'DK' => 25,
|
444 |
+
'DE' => 16,
|
445 |
'EE' => 20,
|
446 |
'GR' => 23,
|
447 |
'ES' => 21,
|
465 |
'FI' => 24,
|
466 |
'SE' => 25,
|
467 |
'GB' => 20,
|
468 |
+
) );
|
469 |
+
|
470 |
+
// Delete digital rates
|
471 |
+
$wpdb->delete( $wpdb->prefix . 'woocommerce_tax_rates', array( 'tax_rate_class' => 'virtual-rate' ), array( '%s' ) );
|
472 |
|
473 |
self::import_rates( $rates, 'virtual-rate' );
|
474 |
self::import_rates( array(), 'virtual-reduced-rate' );
|
568 |
$countries = WC()->countries->get_european_union_countries();
|
569 |
|
570 |
if ( empty( $tax_rate ) || ! is_numeric( $tax_rate ) ) {
|
571 |
+
$tax_rate = WC()->countries->get_base_country() === 'AT' ? 20 : 16;
|
572 |
}
|
573 |
|
574 |
if ( empty( $tax_rate_reduced ) || ! is_numeric( $tax_rate_reduced ) ) {
|
575 |
+
$tax_rate_reduced = WC()->countries->get_base_country() === 'AT' ? 10 : 5;
|
576 |
}
|
577 |
|
578 |
foreach ( $countries as $key => $country ) {
|
includes/class-wc-gzd-order-item-product.php
ADDED
@@ -0,0 +1,249 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
defined( 'ABSPATH' ) || exit;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* WooProduct class
|
7 |
+
*/
|
8 |
+
class WC_GZD_Order_Item_Product extends WC_GZD_Order_Item {
|
9 |
+
|
10 |
+
/**
|
11 |
+
* @var WC_Order_Item_Product
|
12 |
+
*/
|
13 |
+
public $order_item = null;
|
14 |
+
|
15 |
+
public function get_unit() {
|
16 |
+
return $this->order_item->get_meta( '_unit', true );
|
17 |
+
}
|
18 |
+
|
19 |
+
public function set_unit( $unit ) {
|
20 |
+
$this->order_item->update_meta_data( '_unit', $unit );
|
21 |
+
}
|
22 |
+
|
23 |
+
public function get_unit_base() {
|
24 |
+
return $this->order_item->get_meta( '_unit_base', true );
|
25 |
+
}
|
26 |
+
|
27 |
+
public function get_formatted_unit_base() {
|
28 |
+
return wc_gzd_format_unit_base( $this->get_unit_base() );
|
29 |
+
}
|
30 |
+
|
31 |
+
public function get_formatted_unit() {
|
32 |
+
return wc_gzd_format_unit( $this->get_unit() );
|
33 |
+
}
|
34 |
+
|
35 |
+
public function set_unit_base( $unit ) {
|
36 |
+
$this->order_item->update_meta_data( '_unit_base', $unit );
|
37 |
+
}
|
38 |
+
|
39 |
+
public function get_unit_product() {
|
40 |
+
return $this->order_item->get_meta( '_unit_product', true );
|
41 |
+
}
|
42 |
+
|
43 |
+
public function set_unit_product( $unit ) {
|
44 |
+
$this->order_item->update_meta_data( '_unit_product', $unit );
|
45 |
+
}
|
46 |
+
|
47 |
+
public function get_cart_description() {
|
48 |
+
return $this->order_item->get_meta( '_item_desc', true );
|
49 |
+
}
|
50 |
+
|
51 |
+
public function set_cart_description( $item_desc ) {
|
52 |
+
$this->order_item->update_meta_data( '_item_desc', $item_desc );
|
53 |
+
}
|
54 |
+
|
55 |
+
public function get_delivery_time() {
|
56 |
+
return $this->order_item->get_meta( '_delivery_time', true );
|
57 |
+
}
|
58 |
+
|
59 |
+
public function set_delivery_time( $delivery_time ) {
|
60 |
+
$this->order_item->update_meta_data( '_delivery_time', $delivery_time );
|
61 |
+
}
|
62 |
+
|
63 |
+
public function get_min_age() {
|
64 |
+
/**
|
65 |
+
* Legacy check
|
66 |
+
*/
|
67 |
+
if ( ! $this->order_item->meta_exists( '_min_age' ) ) {
|
68 |
+
if ( ( $product = $this->order_item->get_product() ) && ( $gzd_product = wc_gzd_get_gzd_product( $product ) ) ) {
|
69 |
+
return $gzd_product->get_min_age();
|
70 |
+
}
|
71 |
+
}
|
72 |
+
|
73 |
+
return $this->order_item->get_meta( '_min_age', true );
|
74 |
+
}
|
75 |
+
|
76 |
+
public function set_min_age( $min_age ) {
|
77 |
+
$this->order_item->update_meta_data( '_min_age', $min_age );
|
78 |
+
}
|
79 |
+
|
80 |
+
public function needs_age_verification() {
|
81 |
+
$min_age = $this->get_min_age();
|
82 |
+
|
83 |
+
/**
|
84 |
+
* Legacy check
|
85 |
+
*/
|
86 |
+
if ( ! $this->order_item->meta_exists( '_min_age' ) ) {
|
87 |
+
if ( $product = $this->order_item->get_product() ) {
|
88 |
+
return wc_gzd_needs_age_verification( $product );
|
89 |
+
}
|
90 |
+
}
|
91 |
+
|
92 |
+
return ! empty( $min_age ) ? true : false;
|
93 |
+
}
|
94 |
+
|
95 |
+
public function has_unit_price() {
|
96 |
+
$base = $this->get_unit_base();
|
97 |
+
$unit = $this->get_unit();
|
98 |
+
|
99 |
+
return ( ! empty( $base ) && ! empty( $unit ) ) ? true : false;
|
100 |
+
}
|
101 |
+
|
102 |
+
public function get_formatted_unit_price( $inc_tax = true, $after_discounts = false ) {
|
103 |
+
$legacy = $this->order_item->get_meta( '_unit_price', true );
|
104 |
+
|
105 |
+
if ( ! empty( $legacy ) ) {
|
106 |
+
return $legacy;
|
107 |
+
}
|
108 |
+
|
109 |
+
$html = '';
|
110 |
+
$price_args = array();
|
111 |
+
|
112 |
+
if ( $order = $this->order_item->get_order() ) {
|
113 |
+
$price_args['currency'] = $order->get_currency();
|
114 |
+
}
|
115 |
+
|
116 |
+
if ( $this->has_unit_price() ) {
|
117 |
+
$price = $after_discounts ? $this->get_unit_price() : $this->get_unit_price_subtotal();
|
118 |
+
|
119 |
+
if ( ! $inc_tax ) {
|
120 |
+
$price = $after_discounts ? $this->get_unit_price_net() : $this->get_unit_price_subtotal_net();
|
121 |
+
}
|
122 |
+
|
123 |
+
$html = wc_gzd_format_unit_price( wc_price( $price, $price_args ), $this->get_formatted_unit(), $this->get_formatted_unit_base() );
|
124 |
+
}
|
125 |
+
|
126 |
+
return $html;
|
127 |
+
}
|
128 |
+
|
129 |
+
public function get_formatted_product_units() {
|
130 |
+
$legacy = $this->order_item->get_meta( '_units', true );
|
131 |
+
|
132 |
+
if ( ! empty( $legacy ) ) {
|
133 |
+
return $legacy;
|
134 |
+
}
|
135 |
+
|
136 |
+
/**
|
137 |
+
* Format
|
138 |
+
*/
|
139 |
+
$html = '';
|
140 |
+
$text = get_option( 'woocommerce_gzd_product_units_text' );
|
141 |
+
|
142 |
+
if ( $this->has_unit_product() ) {
|
143 |
+
$replacements = array(
|
144 |
+
'{product_units}' => str_replace( '.', ',', $this->get_unit_product() ),
|
145 |
+
'{unit}' => $this->get_formatted_unit(),
|
146 |
+
'{unit_price}' => $this->get_formatted_unit_price(),
|
147 |
+
);
|
148 |
+
|
149 |
+
$html = wc_gzd_replace_label_shortcodes( $text, $replacements );
|
150 |
+
}
|
151 |
+
|
152 |
+
return $html;
|
153 |
+
}
|
154 |
+
|
155 |
+
public function has_unit_product() {
|
156 |
+
$products = $this->get_unit_product();
|
157 |
+
|
158 |
+
return ( $products && ! empty( $products ) && $this->get_unit() );
|
159 |
+
}
|
160 |
+
|
161 |
+
public function get_unit_price() {
|
162 |
+
return $this->order_item->get_meta( '_unit_price_raw', true );
|
163 |
+
}
|
164 |
+
|
165 |
+
public function set_unit_price( $price ) {
|
166 |
+
$this->order_item->update_meta_data( '_unit_price_raw', wc_format_decimal( $price, '' ) );
|
167 |
+
}
|
168 |
+
|
169 |
+
public function get_unit_price_subtotal() {
|
170 |
+
return $this->order_item->get_meta( '_unit_price_subtotal_raw', true );
|
171 |
+
}
|
172 |
+
|
173 |
+
public function set_unit_price_subtotal( $price ) {
|
174 |
+
$this->order_item->update_meta_data( '_unit_price_subtotal_raw', wc_format_decimal( $price, '' ) );
|
175 |
+
}
|
176 |
+
|
177 |
+
public function get_unit_price_net() {
|
178 |
+
return $this->order_item->get_meta( '_unit_price_net_raw', true );
|
179 |
+
}
|
180 |
+
|
181 |
+
public function set_unit_price_net( $price ) {
|
182 |
+
$this->order_item->update_meta_data( '_unit_price_net_raw', wc_format_decimal( $price, '' ) );
|
183 |
+
}
|
184 |
+
|
185 |
+
public function get_unit_price_subtotal_net() {
|
186 |
+
return $this->order_item->get_meta( '_unit_price_subtotal_net_raw', true );
|
187 |
+
}
|
188 |
+
|
189 |
+
public function set_unit_price_subtotal_net( $price ) {
|
190 |
+
$this->order_item->update_meta_data( '_unit_price_subtotal_net_raw', wc_format_decimal( $price, '' ) );
|
191 |
+
}
|
192 |
+
|
193 |
+
public function recalculate_unit_price() {
|
194 |
+
if ( ! $this->has_unit_price() ) {
|
195 |
+
return false;
|
196 |
+
}
|
197 |
+
|
198 |
+
$net_total = $this->order_item->get_total() / $this->order_item->get_quantity();
|
199 |
+
$gross_total = $net_total + ( $this->order_item->get_total_tax() / $this->order_item->get_quantity() );
|
200 |
+
$net_subtotal = $this->order_item->get_subtotal() / $this->order_item->get_quantity();
|
201 |
+
$gross_subtotal = $net_subtotal + ( $this->order_item->get_subtotal_tax() / $this->order_item->get_quantity() );
|
202 |
+
|
203 |
+
$net_total = round( $net_total, wc_get_price_decimals() );
|
204 |
+
$gross_total = round( $gross_total, wc_get_price_decimals() );
|
205 |
+
$net_subtotal = round( $net_subtotal, wc_get_price_decimals() );
|
206 |
+
$gross_subtotal = round( $gross_subtotal, wc_get_price_decimals() );
|
207 |
+
|
208 |
+
if ( $order = $this->order_item->get_order() ) {
|
209 |
+
$net_total = $order->get_item_total( $this->order_item, false );
|
210 |
+
$gross_total = $order->get_item_total( $this->order_item, true );
|
211 |
+
$net_subtotal = $order->get_item_subtotal( $this->order_item, false );
|
212 |
+
$gross_subtotal = $order->get_item_subtotal( $this->order_item, true );
|
213 |
+
}
|
214 |
+
|
215 |
+
$prices_net = wc_gzd_recalculate_unit_price( array(
|
216 |
+
'regular_price' => $net_total,
|
217 |
+
'sale_price' => $net_subtotal,
|
218 |
+
'base' => $this->get_unit_base(),
|
219 |
+
'products' => $this->get_unit_product(),
|
220 |
+
) );
|
221 |
+
|
222 |
+
$prices_gross = wc_gzd_recalculate_unit_price( array(
|
223 |
+
'regular_price' => $gross_total,
|
224 |
+
'sale_price' => $gross_subtotal,
|
225 |
+
'base' => $this->get_unit_base(),
|
226 |
+
'products' => $this->get_unit_product(),
|
227 |
+
) );
|
228 |
+
|
229 |
+
$this->set_unit_price( $prices_gross['regular'] );
|
230 |
+
$this->set_unit_price_subtotal( $prices_gross['sale'] );
|
231 |
+
|
232 |
+
$this->set_unit_price_net( $prices_net['regular'] );
|
233 |
+
$this->set_unit_price_subtotal_net( $prices_net['sale'] );
|
234 |
+
|
235 |
+
/**
|
236 |
+
* Order item unit price recalculation
|
237 |
+
*
|
238 |
+
* This action fires before recalculating unit price for a certain order item (e.g. when taxes are recalculated).
|
239 |
+
*
|
240 |
+
* @param WC_Order_Item_Product $order_item
|
241 |
+
* @param WC_GZD_Order_Item_Product $gzd_order_item
|
242 |
+
*
|
243 |
+
* @since 3.1.10
|
244 |
+
*/
|
245 |
+
do_action( 'woocommerce_gzd_recalculate_order_item_unit_price', $this->order_item, $this );
|
246 |
+
|
247 |
+
return true;
|
248 |
+
}
|
249 |
+
}
|
includes/class-wc-gzd-order-item.php
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
defined( 'ABSPATH' ) || exit;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* WooProduct class
|
7 |
+
*/
|
8 |
+
class WC_GZD_Order_Item {
|
9 |
+
|
10 |
+
/**
|
11 |
+
* The actual order item object
|
12 |
+
*
|
13 |
+
* @var WC_Order_Item
|
14 |
+
*/
|
15 |
+
protected $order_item;
|
16 |
+
|
17 |
+
/**
|
18 |
+
* @param WC_Order_Item $order_item
|
19 |
+
*/
|
20 |
+
public function __construct( $order_item ) {
|
21 |
+
$this->order_item = $order_item;
|
22 |
+
}
|
23 |
+
|
24 |
+
/**
|
25 |
+
* Returns the Woo Order Item original object
|
26 |
+
*
|
27 |
+
* @return WC_Order_Item
|
28 |
+
*/
|
29 |
+
public function get_order_item() {
|
30 |
+
return $this->order_item;
|
31 |
+
}
|
32 |
+
|
33 |
+
public function get_id() {
|
34 |
+
return $this->order_item->get_id();
|
35 |
+
}
|
36 |
+
|
37 |
+
public function save() {
|
38 |
+
return $this->order_item->save();
|
39 |
+
}
|
40 |
+
|
41 |
+
/**
|
42 |
+
* Call child methods if the method does not exist.
|
43 |
+
*
|
44 |
+
* @param $method
|
45 |
+
* @param $args
|
46 |
+
*
|
47 |
+
* @return bool|mixed
|
48 |
+
*/
|
49 |
+
public function __call( $method, $args ) {
|
50 |
+
if ( method_exists( $this->order_item, $method ) ) {
|
51 |
+
return call_user_func_array( array( $this->order_item, $method ), $args );
|
52 |
+
}
|
53 |
+
|
54 |
+
return false;
|
55 |
+
}
|
56 |
+
}
|
includes/compatibility/class-wc-gzd-compatibility-woocommerce-product-addons.php
CHANGED
@@ -18,10 +18,14 @@ class WC_GZD_Compatibility_WooCommerce_Product_Addons extends WC_GZD_Compatibili
|
|
18 |
}
|
19 |
|
20 |
public function load() {
|
21 |
-
add_action( 'woocommerce_product_addons_end', array( $this, 'shopmarks' ), 11 );
|
22 |
}
|
23 |
|
24 |
-
public function shopmarks() {
|
|
|
|
|
|
|
|
|
25 |
ob_start();
|
26 |
foreach ( wc_gzd_get_single_product_shopmarks() as $shopmark ) {
|
27 |
$callback = $shopmark->get_callback();
|
@@ -33,8 +37,20 @@ class WC_GZD_Compatibility_WooCommerce_Product_Addons extends WC_GZD_Compatibili
|
|
33 |
$html = ob_get_clean();
|
34 |
|
35 |
if ( ! empty( $html ) ) {
|
36 |
-
|
37 |
-
|
38 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
}
|
40 |
}
|
18 |
}
|
19 |
|
20 |
public function load() {
|
21 |
+
add_action( 'woocommerce_product_addons_end', array( $this, 'shopmarks' ), 11, 1 );
|
22 |
}
|
23 |
|
24 |
+
public function shopmarks( $post_id ) {
|
25 |
+
if ( ! $product = wc_get_product( $post_id ) ) {
|
26 |
+
return;
|
27 |
+
}
|
28 |
+
|
29 |
ob_start();
|
30 |
foreach ( wc_gzd_get_single_product_shopmarks() as $shopmark ) {
|
31 |
$callback = $shopmark->get_callback();
|
37 |
$html = ob_get_clean();
|
38 |
|
39 |
if ( ! empty( $html ) ) {
|
40 |
+
?>
|
41 |
+
<script type="text/javascript">
|
42 |
+
jQuery( function( $ ) {
|
43 |
+
$( 'form.variations_form' ).on( 'updated_addons', function() {
|
44 |
+
if ( $( this ).find( '.product-addon-totals:visible' ).length > 0 ) {
|
45 |
+
$( this ).find( '.wc-gzd-product-addons-shopmarks' ).show();
|
46 |
+
} else {
|
47 |
+
$( this ).find( '.wc-gzd-product-addons-shopmarks' ).hide();
|
48 |
+
}
|
49 |
+
} );
|
50 |
+
});
|
51 |
+
</script>
|
52 |
+
<style>div.product-addon-totals { border-bottom: none; padding-bottom: 0; } .wc-gzd-product-addons-shopmarks { margin-top: -40px; margin-bottom: 40px; border-bottom: 1px solid #eee; padding-bottom: 20px; font-size: .9em; text-align: right; }</style>
|
53 |
+
<div class="wc-gzd-product-addons-shopmarks" style="<?php echo ( $product->is_type( 'variable' ) ? 'display: none' : '' ); ?>"><?php echo $html; ?></div>
|
54 |
+
<?php }
|
55 |
}
|
56 |
}
|
includes/emails/class-wc-gzd-email-customer-on-hold-order.php
CHANGED
@@ -25,10 +25,12 @@ if ( ! class_exists( 'WC_GZD_Email_Customer_On_Hold_Order' ) ) :
|
|
25 |
// Remove Triggers for parent email.
|
26 |
wc_gzd_remove_class_action( 'woocommerce_order_status_pending_to_on-hold_notification', 'WC_Email_Customer_On_Hold_Order', 'trigger', 10 );
|
27 |
wc_gzd_remove_class_action( 'woocommerce_order_status_failed_to_on-hold_notification', 'WC_Email_Customer_On_Hold_Order', 'trigger', 10 );
|
|
|
28 |
|
29 |
// Triggers for this email.
|
30 |
remove_action( 'woocommerce_order_status_pending_to_on-hold_notification', array( $this, 'trigger' ), 10 );
|
31 |
remove_action( 'woocommerce_order_status_failed_to_on-hold_notification', array( $this, 'trigger' ), 10 );
|
|
|
32 |
}
|
33 |
|
34 |
public function trigger( $order_id, $order = false ) {
|
@@ -40,7 +42,6 @@ if ( ! class_exists( 'WC_GZD_Email_Customer_On_Hold_Order' ) ) :
|
|
40 |
* @param bool $disable Whether to disable the on-hold email or not.
|
41 |
*
|
42 |
* @since 1.0.0
|
43 |
-
*
|
44 |
*/
|
45 |
if ( apply_filters( 'woocommerce_gzd_disable_on_hold_email', true ) ) {
|
46 |
return;
|
25 |
// Remove Triggers for parent email.
|
26 |
wc_gzd_remove_class_action( 'woocommerce_order_status_pending_to_on-hold_notification', 'WC_Email_Customer_On_Hold_Order', 'trigger', 10 );
|
27 |
wc_gzd_remove_class_action( 'woocommerce_order_status_failed_to_on-hold_notification', 'WC_Email_Customer_On_Hold_Order', 'trigger', 10 );
|
28 |
+
wc_gzd_remove_class_action( 'woocommerce_order_status_cancelled_to_on-hold_notification', 'WC_Email_Customer_On_Hold_Order', 'trigger', 10 );
|
29 |
|
30 |
// Triggers for this email.
|
31 |
remove_action( 'woocommerce_order_status_pending_to_on-hold_notification', array( $this, 'trigger' ), 10 );
|
32 |
remove_action( 'woocommerce_order_status_failed_to_on-hold_notification', array( $this, 'trigger' ), 10 );
|
33 |
+
remove_action( 'woocommerce_order_status_cancelled_to_on-hold_notification', array( $this, 'trigger' ), 10 );
|
34 |
}
|
35 |
|
36 |
public function trigger( $order_id, $order = false ) {
|
42 |
* @param bool $disable Whether to disable the on-hold email or not.
|
43 |
*
|
44 |
* @since 1.0.0
|
|
|
45 |
*/
|
46 |
if ( apply_filters( 'woocommerce_gzd_disable_on_hold_email', true ) ) {
|
47 |
return;
|
includes/emails/class-wc-gzd-email-customer-processing-order.php
CHANGED
@@ -26,6 +26,7 @@ if ( ! class_exists( 'WC_GZD_Email_Customer_Processing_Order' ) ) :
|
|
26 |
wc_gzd_remove_class_action( 'woocommerce_order_status_on-hold_to_processing_notification', 'WC_Email_Customer_Processing_Order', 'trigger', 10 );
|
27 |
wc_gzd_remove_class_action( 'woocommerce_order_status_pending_to_processing_notification', 'WC_Email_Customer_Processing_Order', 'trigger', 10 );
|
28 |
wc_gzd_remove_class_action( 'woocommerce_order_status_failed_to_processing_notification', 'WC_Email_Customer_Processing_Order', 'trigger', 10 );
|
|
|
29 |
|
30 |
if ( wc_gzd_send_instant_order_confirmation() ) {
|
31 |
// Remove Triggers for this email.
|
26 |
wc_gzd_remove_class_action( 'woocommerce_order_status_on-hold_to_processing_notification', 'WC_Email_Customer_Processing_Order', 'trigger', 10 );
|
27 |
wc_gzd_remove_class_action( 'woocommerce_order_status_pending_to_processing_notification', 'WC_Email_Customer_Processing_Order', 'trigger', 10 );
|
28 |
wc_gzd_remove_class_action( 'woocommerce_order_status_failed_to_processing_notification', 'WC_Email_Customer_Processing_Order', 'trigger', 10 );
|
29 |
+
wc_gzd_remove_class_action( 'woocommerce_order_status_cancelled_to_processing_notification', 'WC_Email_Customer_Processing_Order', 'trigger', 10 );
|
30 |
|
31 |
if ( wc_gzd_send_instant_order_confirmation() ) {
|
32 |
// Remove Triggers for this email.
|
includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php
CHANGED
@@ -1182,7 +1182,7 @@ Please notice: Period for pre-information of the SEPA direct debit is shortened
|
|
1182 |
}
|
1183 |
|
1184 |
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
|
1185 |
-
$assets_path =
|
1186 |
|
1187 |
// Ensure that prettyPhoto is being loaded
|
1188 |
wp_register_script( 'prettyPhoto_debit', $assets_path . 'js/prettyPhoto/jquery.prettyPhoto' . $suffix . '.js', array( 'jquery' ), '3.1.6', true );
|
1182 |
}
|
1183 |
|
1184 |
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
|
1185 |
+
$assets_path = WC()->plugin_url() . '/assets/';
|
1186 |
|
1187 |
// Ensure that prettyPhoto is being loaded
|
1188 |
wp_register_script( 'prettyPhoto_debit', $assets_path . 'js/prettyPhoto/jquery.prettyPhoto' . $suffix . '.js', array( 'jquery' ), '3.1.6', true );
|
includes/wc-gzd-cart-functions.php
CHANGED
@@ -102,8 +102,8 @@ function wc_gzd_cart_product_item_desc( $title, $cart_item, $cart_item_key = ''
|
|
102 |
}
|
103 |
|
104 |
if ( is_a( $cart_item, 'WC_Order_Item_Product' ) ) {
|
105 |
-
if ( $
|
106 |
-
$product_desc = $
|
107 |
} elseif( ( $product = $cart_item->get_product() ) && wc_gzd_get_gzd_product( $product )->get_mini_desc() ) {
|
108 |
$product_desc = wc_gzd_get_gzd_product( $product )->get_formatted_cart_description();
|
109 |
}
|
@@ -192,8 +192,8 @@ function wc_gzd_cart_product_delivery_time( $title, $cart_item, $cart_item_key =
|
|
192 |
}
|
193 |
|
194 |
if ( is_a( $cart_item, 'WC_Order_Item_Product' ) ) {
|
195 |
-
if ( $
|
196 |
-
$delivery_time = $
|
197 |
} elseif( ( $product = $cart_item->get_product() ) && wc_gzd_get_product( $product )->get_delivery_time_term() ) {
|
198 |
$delivery_time = wc_gzd_get_product( $product )->get_delivery_time_html();
|
199 |
}
|
@@ -239,8 +239,8 @@ function wc_gzd_cart_product_unit_price( $price, $cart_item, $cart_item_key = ''
|
|
239 |
}
|
240 |
|
241 |
if ( is_a( $cart_item, 'WC_Order_Item_Product' ) ) {
|
242 |
-
|
243 |
-
$unit_price = $
|
244 |
} elseif( ( $product = $cart_item->get_product() ) && wc_gzd_get_product( $product )->has_unit() ) {
|
245 |
$unit_price = wc_gzd_get_product( $product )->get_unit_price_html( false );
|
246 |
}
|
@@ -285,8 +285,8 @@ function wc_gzd_cart_product_units( $title, $cart_item, $cart_item_key = '' ) {
|
|
285 |
}
|
286 |
|
287 |
if ( is_a( $cart_item, 'WC_Order_Item_Product' ) ) {
|
288 |
-
if ( $
|
289 |
-
|
290 |
} elseif( ( $product = $cart_item->get_product() ) && wc_gzd_get_product( $product )->has_unit_product() ) {
|
291 |
$units = wc_gzd_get_product( $product )->get_unit_product_html();
|
292 |
}
|
@@ -313,25 +313,28 @@ function wc_gzd_cart_product_units( $title, $cart_item, $cart_item_key = '' ) {
|
|
313 |
|
314 |
function wc_gzd_cart_needs_age_verification( $items = false ) {
|
315 |
$items = $items ? (array) $items : WC()->cart->get_cart();
|
316 |
-
$min_age = false;
|
317 |
$is_cart = true;
|
318 |
$needs_age_verification = false;
|
319 |
|
320 |
if ( ! empty( $items ) ) {
|
321 |
-
|
322 |
foreach ( $items as $cart_item_key => $values ) {
|
323 |
-
$
|
|
|
|
|
|
|
324 |
|
325 |
-
if ( is_a( $values, 'WC_Order_Item' ) ) {
|
326 |
-
$_product = $values->get_product();
|
327 |
$is_cart = false;
|
328 |
} elseif ( isset( $values['data'] ) ) {
|
329 |
$_product = apply_filters( 'woocommerce_cart_item_product', $values['data'], $values, $cart_item_key );
|
330 |
-
}
|
331 |
|
332 |
-
|
333 |
-
|
|
|
334 |
}
|
|
|
|
|
|
|
|
|
335 |
}
|
336 |
}
|
337 |
|
@@ -372,26 +375,35 @@ function wc_gzd_cart_get_age_verification_min_age( $items = false ) {
|
|
372 |
if ( ! empty( $items ) ) {
|
373 |
|
374 |
foreach ( $items as $cart_item_key => $values ) {
|
375 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
376 |
|
377 |
-
if ( is_a( $values, 'WC_Order_Item' ) ) {
|
378 |
-
$_product = $values->get_product();
|
379 |
$is_cart = false;
|
380 |
} elseif ( isset( $values['data'] ) ) {
|
381 |
$_product = apply_filters( 'woocommerce_cart_item_product', $values['data'], $values, $cart_item_key );
|
382 |
-
}
|
383 |
|
384 |
-
|
385 |
-
|
386 |
|
387 |
-
|
388 |
-
|
389 |
-
$min_age = (int) $_gzd_product->get_min_age();
|
390 |
-
} elseif ( (int) $_gzd_product->get_min_age() > $min_age ) {
|
391 |
-
$min_age = $_gzd_product->get_min_age();
|
392 |
}
|
393 |
}
|
394 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
395 |
}
|
396 |
}
|
397 |
|
102 |
}
|
103 |
|
104 |
if ( is_a( $cart_item, 'WC_Order_Item_Product' ) ) {
|
105 |
+
if ( $gzd_item = wc_gzd_get_order_item( $cart_item ) ) {
|
106 |
+
$product_desc = $gzd_item->get_cart_description();
|
107 |
} elseif( ( $product = $cart_item->get_product() ) && wc_gzd_get_gzd_product( $product )->get_mini_desc() ) {
|
108 |
$product_desc = wc_gzd_get_gzd_product( $product )->get_formatted_cart_description();
|
109 |
}
|
192 |
}
|
193 |
|
194 |
if ( is_a( $cart_item, 'WC_Order_Item_Product' ) ) {
|
195 |
+
if ( $gzd_item = wc_gzd_get_order_item( $cart_item ) ) {
|
196 |
+
$delivery_time = $gzd_item->get_delivery_time();
|
197 |
} elseif( ( $product = $cart_item->get_product() ) && wc_gzd_get_product( $product )->get_delivery_time_term() ) {
|
198 |
$delivery_time = wc_gzd_get_product( $product )->get_delivery_time_html();
|
199 |
}
|
239 |
}
|
240 |
|
241 |
if ( is_a( $cart_item, 'WC_Order_Item_Product' ) ) {
|
242 |
+
if ( $gzd_item = wc_gzd_get_order_item( $cart_item ) ) {
|
243 |
+
$unit_price = $gzd_item->get_formatted_unit_price();
|
244 |
} elseif( ( $product = $cart_item->get_product() ) && wc_gzd_get_product( $product )->has_unit() ) {
|
245 |
$unit_price = wc_gzd_get_product( $product )->get_unit_price_html( false );
|
246 |
}
|
285 |
}
|
286 |
|
287 |
if ( is_a( $cart_item, 'WC_Order_Item_Product' ) ) {
|
288 |
+
if ( $gzd_item = wc_gzd_get_order_item( $cart_item ) ) {
|
289 |
+
$units = $gzd_item->get_formatted_product_units();
|
290 |
} elseif( ( $product = $cart_item->get_product() ) && wc_gzd_get_product( $product )->has_unit_product() ) {
|
291 |
$units = wc_gzd_get_product( $product )->get_unit_product_html();
|
292 |
}
|
313 |
|
314 |
function wc_gzd_cart_needs_age_verification( $items = false ) {
|
315 |
$items = $items ? (array) $items : WC()->cart->get_cart();
|
|
|
316 |
$is_cart = true;
|
317 |
$needs_age_verification = false;
|
318 |
|
319 |
if ( ! empty( $items ) ) {
|
|
|
320 |
foreach ( $items as $cart_item_key => $values ) {
|
321 |
+
if ( is_a( $values, 'WC_Order_Item_Product' ) ) {
|
322 |
+
if ( $gzd_item = wc_gzd_get_order_item( $values ) ) {
|
323 |
+
$needs_age_verification = $gzd_item->needs_age_verification();
|
324 |
+
}
|
325 |
|
|
|
|
|
326 |
$is_cart = false;
|
327 |
} elseif ( isset( $values['data'] ) ) {
|
328 |
$_product = apply_filters( 'woocommerce_cart_item_product', $values['data'], $values, $cart_item_key );
|
|
|
329 |
|
330 |
+
if ( is_a( $_product, 'WC_Product' ) && wc_gzd_needs_age_verification( $_product ) ) {
|
331 |
+
$needs_age_verification = true;
|
332 |
+
}
|
333 |
}
|
334 |
+
|
335 |
+
if ( $needs_age_verification ) {
|
336 |
+
break;
|
337 |
+
}
|
338 |
}
|
339 |
}
|
340 |
|
375 |
if ( ! empty( $items ) ) {
|
376 |
|
377 |
foreach ( $items as $cart_item_key => $values ) {
|
378 |
+
$item_min_age = false;
|
379 |
+
|
380 |
+
if ( is_a( $values, 'WC_Order_Item_Product' ) ) {
|
381 |
+
if ( $gzd_item = wc_gzd_get_order_item( $values ) ) {
|
382 |
+
if ( $gzd_item->needs_age_verification() ) {
|
383 |
+
$item_min_age = (int) $gzd_item->get_min_age();
|
384 |
+
}
|
385 |
+
}
|
386 |
|
|
|
|
|
387 |
$is_cart = false;
|
388 |
} elseif ( isset( $values['data'] ) ) {
|
389 |
$_product = apply_filters( 'woocommerce_cart_item_product', $values['data'], $values, $cart_item_key );
|
|
|
390 |
|
391 |
+
if ( is_a( $_product, 'WC_Product' ) ) {
|
392 |
+
$_gzd_product = wc_gzd_get_gzd_product( $_product );
|
393 |
|
394 |
+
if ( wc_gzd_needs_age_verification( $_product ) ) {
|
395 |
+
$item_min_age = (int) $_gzd_product->get_min_age();
|
|
|
|
|
|
|
396 |
}
|
397 |
}
|
398 |
}
|
399 |
+
|
400 |
+
if ( false !== $item_min_age ) {
|
401 |
+
if ( false === $min_age ) {
|
402 |
+
$min_age = $item_min_age;
|
403 |
+
} elseif ( $item_min_age > $min_age ) {
|
404 |
+
$min_age = $item_min_age;
|
405 |
+
}
|
406 |
+
}
|
407 |
}
|
408 |
}
|
409 |
|
includes/wc-gzd-core-functions.php
CHANGED
@@ -892,4 +892,82 @@ function wc_gzd_restore_locale() {
|
|
892 |
WC_germanized_pro()->load_plugin_textdomain();
|
893 |
}
|
894 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
895 |
}
|
892 |
WC_germanized_pro()->load_plugin_textdomain();
|
893 |
}
|
894 |
}
|
895 |
+
}
|
896 |
+
|
897 |
+
function wc_gzd_format_unit( $unit ) {
|
898 |
+
$html = '';
|
899 |
+
|
900 |
+
if ( ! empty( $unit ) ) {
|
901 |
+
$html = '<span class="unit">' . $unit . '</span>';
|
902 |
+
}
|
903 |
+
|
904 |
+
return $html;
|
905 |
+
}
|
906 |
+
|
907 |
+
function wc_gzd_format_unit_base( $unit_base ) {
|
908 |
+
/**
|
909 |
+
* Filter that allows changing the amount which is used to determine whether
|
910 |
+
* the base for the unit price should be skipped or not. Defaults to 1.
|
911 |
+
*
|
912 |
+
* @param int $amount The amount.
|
913 |
+
*
|
914 |
+
* @since 1.0.0
|
915 |
+
*/
|
916 |
+
$hide_amount = apply_filters( 'woocommerce_gzd_unit_base_hide_amount', 1 );
|
917 |
+
$html = '';
|
918 |
+
|
919 |
+
if ( '' !== $unit_base ) {
|
920 |
+
$html = ( $unit_base != $hide_amount ? '<span class="unit-base">' . $unit_base . '</span>' : '' );
|
921 |
+
}
|
922 |
+
|
923 |
+
return $html;
|
924 |
+
}
|
925 |
+
|
926 |
+
function wc_gzd_format_unit_price( $price, $unit, $unit_base ) {
|
927 |
+
$text = get_option( 'woocommerce_gzd_unit_price_text' );
|
928 |
+
$replacements = array();
|
929 |
+
|
930 |
+
/**
|
931 |
+
* Filter to adjust the unit price base separator.
|
932 |
+
*
|
933 |
+
* @param string $separator The separator.
|
934 |
+
*
|
935 |
+
* @since 1.0.0
|
936 |
+
*
|
937 |
+
*/
|
938 |
+
$separator = apply_filters( 'wc_gzd_unit_price_base_seperator', ' ' );
|
939 |
+
|
940 |
+
if ( strpos( $text, '{price}' ) !== false ) {
|
941 |
+
$replacements = array(
|
942 |
+
/**
|
943 |
+
* Filter to adjust the unit price separator.
|
944 |
+
*
|
945 |
+
* @param string $separator The separator.
|
946 |
+
*
|
947 |
+
* @since 1.0.0
|
948 |
+
*
|
949 |
+
*/
|
950 |
+
'{price}' => $price . apply_filters( 'wc_gzd_unit_price_seperator', ' / ' ) . $unit_base . $separator . $unit,
|
951 |
+
);
|
952 |
+
} else {
|
953 |
+
$replacements = array(
|
954 |
+
'{base_price}' => $price,
|
955 |
+
'{unit}' => $unit,
|
956 |
+
'{base}' => $unit_base
|
957 |
+
);
|
958 |
+
}
|
959 |
+
|
960 |
+
$html = wc_gzd_replace_label_shortcodes( $text, $replacements );
|
961 |
+
|
962 |
+
/**
|
963 |
+
* Filter to adjust the formatted unit price.
|
964 |
+
*
|
965 |
+
* @param string $html The html output
|
966 |
+
* @param string $price The price html
|
967 |
+
* @param string $unit_base The unit base html
|
968 |
+
* @param string $unit The unit html
|
969 |
+
*
|
970 |
+
* @since 3.2.0
|
971 |
+
*/
|
972 |
+
return apply_filters( 'woocommerce_gzd_formatted_unit_price', $html, $price, $unit_base, $unit );
|
973 |
}
|
includes/wc-gzd-order-functions.php
CHANGED
@@ -120,4 +120,23 @@ function wc_gzd_get_order_customer_title( $order, $type = 'billing' ) {
|
|
120 |
}
|
121 |
|
122 |
return $title_formatted;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
}
|
120 |
}
|
121 |
|
122 |
return $title_formatted;
|
123 |
+
}
|
124 |
+
|
125 |
+
/**
|
126 |
+
* @param WC_Order_Item $order_item
|
127 |
+
*
|
128 |
+
* @return WC_GZD_Order_Item|WC_GZD_Order_Item_Product
|
129 |
+
*/
|
130 |
+
function wc_gzd_get_order_item( $order_item ) {
|
131 |
+
$classname = 'WC_GZD_Order_Item';
|
132 |
+
|
133 |
+
if ( is_a( $order_item, 'WC_Order_Item_Product' ) ) {
|
134 |
+
$classname = 'WC_GZD_Order_Item_Product';
|
135 |
+
}
|
136 |
+
|
137 |
+
if ( ! class_exists( $classname ) ) {
|
138 |
+
$classname = 'WC_GZD_Order_Item';
|
139 |
+
}
|
140 |
+
|
141 |
+
return new $classname( $order_item );
|
142 |
}
|
packages/woocommerce-germanized-dhl/assets/js/admin-label.js
ADDED
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
window.germanized = window.germanized || {};
|
2 |
+
window.germanized.admin = window.germanized.admin || {};
|
3 |
+
|
4 |
+
( function( $, admin ) {
|
5 |
+
|
6 |
+
/**
|
7 |
+
* Core
|
8 |
+
*/
|
9 |
+
admin.dhl_label = {
|
10 |
+
|
11 |
+
params: {},
|
12 |
+
|
13 |
+
init: function () {
|
14 |
+
var self = admin.dhl_label;
|
15 |
+
|
16 |
+
$( document ).on( 'change', '#dhl_label_dhl_product', self.onChangeProductId );
|
17 |
+
$( document.body ).on( 'wc_gzd_shipment_label_show_if', self.onShowIf );
|
18 |
+
},
|
19 |
+
|
20 |
+
onShowIf: function() {
|
21 |
+
var self = admin.dhl_label;
|
22 |
+
|
23 |
+
if ( $( '#dhl_label_dhl_product' ).length > 0 ) {
|
24 |
+
self.showOrHideServices( $( '#dhl_label_dhl_product' ).val() );
|
25 |
+
}
|
26 |
+
},
|
27 |
+
|
28 |
+
onChangeProductId: function() {
|
29 |
+
var self = admin.dhl_label;
|
30 |
+
|
31 |
+
self.showOrHideServices( $( this ).val() );
|
32 |
+
},
|
33 |
+
|
34 |
+
showOrHideServices: function( productId ) {
|
35 |
+
var $services = $( '.show-if-further-services' ).find( 'p.form-field' );
|
36 |
+
console.log($services);
|
37 |
+
|
38 |
+
$services.each( function() {
|
39 |
+
var $service = $( this ),
|
40 |
+
$serviceField = $service.find( ':input' ),
|
41 |
+
supported = $serviceField.data( 'products-supported' ) ? $serviceField.data( 'products-supported' ).split( ',' ) : [],
|
42 |
+
isHidden = false;
|
43 |
+
|
44 |
+
if ( $serviceField.data( 'products-supported' ) ) {
|
45 |
+
isHidden = true;
|
46 |
+
|
47 |
+
if ( $.inArray( productId, supported ) !== -1 ) {
|
48 |
+
isHidden = false;
|
49 |
+
}
|
50 |
+
}
|
51 |
+
|
52 |
+
if ( isHidden ) {
|
53 |
+
$service.hide();
|
54 |
+
} else {
|
55 |
+
$service.show();
|
56 |
+
}
|
57 |
+
} );
|
58 |
+
}
|
59 |
+
};
|
60 |
+
|
61 |
+
$( document ).ready( function() {
|
62 |
+
germanized.admin.dhl_label.init();
|
63 |
+
});
|
64 |
+
|
65 |
+
})( jQuery, window.germanized.admin );
|
packages/woocommerce-germanized-dhl/assets/js/admin-label.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
window.germanized=window.germanized||{},window.germanized.admin=window.germanized.admin||{},function(a,e){e.dhl_label={params:{},init:function(){var d=e.dhl_label;a(document).on("change","#dhl_label_dhl_product",d.onChangeProductId),a(document.body).on("wc_gzd_shipment_label_show_if",d.onShowIf)},onShowIf:function(){var d=e.dhl_label;0<a("#dhl_label_dhl_product").length&&d.showOrHideServices(a("#dhl_label_dhl_product").val())},onChangeProductId:function(){e.dhl_label.showOrHideServices(a(this).val())},showOrHideServices:function(o){var d=a(".show-if-further-services").find("p.form-field");console.log(d),d.each(function(){var d=a(this),e=d.find(":input"),n=e.data("products-supported")?e.data("products-supported").split(","):[],i=!1;e.data("products-supported")&&(i=!0,-1!==a.inArray(o,n)&&(i=!1)),i?d.hide():d.show()})}},a(document).ready(function(){germanized.admin.dhl_label.init()})}(jQuery,window.germanized.admin);
|
packages/woocommerce-germanized-dhl/includes/admin/views/html-shipment-label-backbone-form.php
CHANGED
@@ -220,6 +220,7 @@ $default_args = wc_gzd_dhl_get_label_default_args( $dhl_order, $shipment );
|
|
220 |
'description' => '',
|
221 |
'value' => isset( $default_args['visual_min_age'] ) ? $default_args['visual_min_age'] : '',
|
222 |
'options' => wc_gzd_dhl_get_visual_min_ages(),
|
|
|
223 |
) ); ?>
|
224 |
|
225 |
<?php woocommerce_wp_checkbox( array(
|
@@ -227,7 +228,8 @@ $default_args = wc_gzd_dhl_get_label_default_args( $dhl_order, $shipment );
|
|
227 |
'label' => _x( 'GoGreen', 'dhl', 'woocommerce-germanized' ),
|
228 |
'description' => '',
|
229 |
'value' => in_array( 'GoGreen', $default_args['services'] ) ? 'yes' : 'no',
|
230 |
-
'wrapper_class' => 'form-field-checkbox'
|
|
|
231 |
) ); ?>
|
232 |
|
233 |
<?php woocommerce_wp_checkbox( array(
|
@@ -235,7 +237,8 @@ $default_args = wc_gzd_dhl_get_label_default_args( $dhl_order, $shipment );
|
|
235 |
'label' => _x( 'Additional insurance', 'dhl', 'woocommerce-germanized' ),
|
236 |
'description' => '',
|
237 |
'value' => in_array( 'AdditionalInsurance', $default_args['services'] ) ? 'yes' : 'no',
|
238 |
-
'wrapper_class' => 'form-field-checkbox'
|
|
|
239 |
) ); ?>
|
240 |
|
241 |
<?php if ( $dhl_order->supports_email_notification() ) : ?>
|
@@ -245,8 +248,9 @@ $default_args = wc_gzd_dhl_get_label_default_args( $dhl_order, $shipment );
|
|
245 |
'label' => _x( 'Retail outlet routing', 'dhl', 'woocommerce-germanized' ),
|
246 |
'description' => '',
|
247 |
'value' => in_array( 'ParcelOutletRouting', $default_args['services'] ) ? 'yes' : 'no',
|
248 |
-
'wrapper_class' => 'form-field-checkbox'
|
249 |
-
|
|
|
250 |
|
251 |
<?php endif; ?>
|
252 |
|
@@ -257,8 +261,9 @@ $default_args = wc_gzd_dhl_get_label_default_args( $dhl_order, $shipment );
|
|
257 |
'label' => _x( 'No neighbor', 'dhl', 'woocommerce-germanized' ),
|
258 |
'description' => '',
|
259 |
'value' => in_array( 'NoNeighbourDelivery', $default_args['services'] ) ? 'yes' : 'no',
|
260 |
-
'wrapper_class' => 'form-field-checkbox'
|
261 |
-
|
|
|
262 |
|
263 |
<?php endif; ?>
|
264 |
|
@@ -267,7 +272,8 @@ $default_args = wc_gzd_dhl_get_label_default_args( $dhl_order, $shipment );
|
|
267 |
'label' => _x( 'Named person only', 'dhl', 'woocommerce-germanized' ),
|
268 |
'description' => '',
|
269 |
'value' => in_array( 'NamedPersonOnly', $default_args['services'] ) ? 'yes' : 'no',
|
270 |
-
'wrapper_class' => 'form-field-checkbox'
|
|
|
271 |
) ); ?>
|
272 |
|
273 |
<?php woocommerce_wp_checkbox( array(
|
@@ -275,7 +281,8 @@ $default_args = wc_gzd_dhl_get_label_default_args( $dhl_order, $shipment );
|
|
275 |
'label' => _x( 'Bulky goods', 'dhl', 'woocommerce-germanized' ),
|
276 |
'description' => '',
|
277 |
'value' => in_array( 'BulkyGoods', $default_args['services'] ) ? 'yes' : 'no',
|
278 |
-
'wrapper_class' => 'form-field-checkbox'
|
|
|
279 |
) ); ?>
|
280 |
|
281 |
<?php woocommerce_wp_checkbox( array(
|
@@ -284,8 +291,8 @@ $default_args = wc_gzd_dhl_get_label_default_args( $dhl_order, $shipment );
|
|
284 |
'description' => '',
|
285 |
'class' => 'checkbox show-if-trigger',
|
286 |
'value' => in_array( 'IdentCheck', $default_args['services'] ) ? 'yes' : 'no',
|
287 |
-
'custom_attributes' => array( 'data-show-if' => '.show-if-ident-check' ),
|
288 |
-
'wrapper_class' => 'form-field-checkbox'
|
289 |
) ); ?>
|
290 |
|
291 |
<div class="show-if show-if-ident-check">
|
@@ -315,7 +322,8 @@ $default_args = wc_gzd_dhl_get_label_default_args( $dhl_order, $shipment );
|
|
315 |
'label' => _x( 'Premium', 'dhl', 'woocommerce-germanized' ),
|
316 |
'description' => '',
|
317 |
'value' => in_array( 'Premium', $default_args['services'] ) ? 'yes' : 'no',
|
318 |
-
'wrapper_class' => 'form-field-checkbox'
|
|
|
319 |
) ); ?>
|
320 |
|
321 |
<?php woocommerce_wp_checkbox( array(
|
@@ -323,7 +331,8 @@ $default_args = wc_gzd_dhl_get_label_default_args( $dhl_order, $shipment );
|
|
323 |
'label' => _x( 'GoGreen', 'dhl', 'woocommerce-germanized' ),
|
324 |
'description' => '',
|
325 |
'value' => in_array( 'GoGreen', $default_args['services'] ) ? 'yes' : 'no',
|
326 |
-
'wrapper_class' => 'form-field-checkbox'
|
|
|
327 |
) ); ?>
|
328 |
|
329 |
<?php endif; ?>
|
220 |
'description' => '',
|
221 |
'value' => isset( $default_args['visual_min_age'] ) ? $default_args['visual_min_age'] : '',
|
222 |
'options' => wc_gzd_dhl_get_visual_min_ages(),
|
223 |
+
'custom_attributes' => wc_gzd_dhl_get_service_product_attributes( 'VisualCheckOfAge' )
|
224 |
) ); ?>
|
225 |
|
226 |
<?php woocommerce_wp_checkbox( array(
|
228 |
'label' => _x( 'GoGreen', 'dhl', 'woocommerce-germanized' ),
|
229 |
'description' => '',
|
230 |
'value' => in_array( 'GoGreen', $default_args['services'] ) ? 'yes' : 'no',
|
231 |
+
'wrapper_class' => 'form-field-checkbox',
|
232 |
+
'custom_attributes' => wc_gzd_dhl_get_service_product_attributes( 'GoGreen' )
|
233 |
) ); ?>
|
234 |
|
235 |
<?php woocommerce_wp_checkbox( array(
|
237 |
'label' => _x( 'Additional insurance', 'dhl', 'woocommerce-germanized' ),
|
238 |
'description' => '',
|
239 |
'value' => in_array( 'AdditionalInsurance', $default_args['services'] ) ? 'yes' : 'no',
|
240 |
+
'wrapper_class' => 'form-field-checkbox',
|
241 |
+
'custom_attributes' => wc_gzd_dhl_get_service_product_attributes( 'AdditionalInsurance' )
|
242 |
) ); ?>
|
243 |
|
244 |
<?php if ( $dhl_order->supports_email_notification() ) : ?>
|
248 |
'label' => _x( 'Retail outlet routing', 'dhl', 'woocommerce-germanized' ),
|
249 |
'description' => '',
|
250 |
'value' => in_array( 'ParcelOutletRouting', $default_args['services'] ) ? 'yes' : 'no',
|
251 |
+
'wrapper_class' => 'form-field-checkbox',
|
252 |
+
'custom_attributes' => wc_gzd_dhl_get_service_product_attributes( 'ParcelOutletRouting' )
|
253 |
+
) ); ?>
|
254 |
|
255 |
<?php endif; ?>
|
256 |
|
261 |
'label' => _x( 'No neighbor', 'dhl', 'woocommerce-germanized' ),
|
262 |
'description' => '',
|
263 |
'value' => in_array( 'NoNeighbourDelivery', $default_args['services'] ) ? 'yes' : 'no',
|
264 |
+
'wrapper_class' => 'form-field-checkbox',
|
265 |
+
'custom_attributes' => wc_gzd_dhl_get_service_product_attributes( 'NoNeighbourDelivery' )
|
266 |
+
) ); ?>
|
267 |
|
268 |
<?php endif; ?>
|
269 |
|
272 |
'label' => _x( 'Named person only', 'dhl', 'woocommerce-germanized' ),
|
273 |
'description' => '',
|
274 |
'value' => in_array( 'NamedPersonOnly', $default_args['services'] ) ? 'yes' : 'no',
|
275 |
+
'wrapper_class' => 'form-field-checkbox',
|
276 |
+
'custom_attributes' => wc_gzd_dhl_get_service_product_attributes( 'NamedPersonOnly' )
|
277 |
) ); ?>
|
278 |
|
279 |
<?php woocommerce_wp_checkbox( array(
|
281 |
'label' => _x( 'Bulky goods', 'dhl', 'woocommerce-germanized' ),
|
282 |
'description' => '',
|
283 |
'value' => in_array( 'BulkyGoods', $default_args['services'] ) ? 'yes' : 'no',
|
284 |
+
'wrapper_class' => 'form-field-checkbox',
|
285 |
+
'custom_attributes' => wc_gzd_dhl_get_service_product_attributes( 'BulkyGoods' )
|
286 |
) ); ?>
|
287 |
|
288 |
<?php woocommerce_wp_checkbox( array(
|
291 |
'description' => '',
|
292 |
'class' => 'checkbox show-if-trigger',
|
293 |
'value' => in_array( 'IdentCheck', $default_args['services'] ) ? 'yes' : 'no',
|
294 |
+
'custom_attributes' => array_merge( array( 'data-show-if' => '.show-if-ident-check' ), wc_gzd_dhl_get_service_product_attributes( 'IdentCheck' ) ),
|
295 |
+
'wrapper_class' => 'form-field-checkbox',
|
296 |
) ); ?>
|
297 |
|
298 |
<div class="show-if show-if-ident-check">
|
322 |
'label' => _x( 'Premium', 'dhl', 'woocommerce-germanized' ),
|
323 |
'description' => '',
|
324 |
'value' => in_array( 'Premium', $default_args['services'] ) ? 'yes' : 'no',
|
325 |
+
'wrapper_class' => 'form-field-checkbox',
|
326 |
+
'custom_attributes' => wc_gzd_dhl_get_service_product_attributes( 'Premium' )
|
327 |
) ); ?>
|
328 |
|
329 |
<?php woocommerce_wp_checkbox( array(
|
331 |
'label' => _x( 'GoGreen', 'dhl', 'woocommerce-germanized' ),
|
332 |
'description' => '',
|
333 |
'value' => in_array( 'GoGreen', $default_args['services'] ) ? 'yes' : 'no',
|
334 |
+
'wrapper_class' => 'form-field-checkbox',
|
335 |
+
'custom_attributes' => wc_gzd_dhl_get_service_product_attributes( 'GoGreen' )
|
336 |
) ); ?>
|
337 |
|
338 |
<?php endif; ?>
|
packages/woocommerce-germanized-dhl/includes/wc-gzd-dhl-core-functions.php
CHANGED
@@ -332,6 +332,7 @@ function wc_gzd_dhl_validate_label_args( $shipment, $args = array() ) {
|
|
332 |
'has_inlay_return' => 'no',
|
333 |
'codeable_address_only' => 'no',
|
334 |
'cod_total' => 0,
|
|
|
335 |
'duties' => '',
|
336 |
'services' => array(),
|
337 |
'return_address' => array(),
|
@@ -348,6 +349,17 @@ function wc_gzd_dhl_validate_label_args( $shipment, $args = array() ) {
|
|
348 |
// Do only allow valid services
|
349 |
if ( ! empty( $args['services'] ) ) {
|
350 |
$args['services'] = array_intersect( $args['services'], wc_gzd_dhl_get_services() );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
351 |
}
|
352 |
|
353 |
// Check if return address has empty mandatory fields
|
@@ -387,7 +399,7 @@ function wc_gzd_dhl_validate_label_args( $shipment, $args = array() ) {
|
|
387 |
$args['cod_total'] = 0;
|
388 |
}
|
389 |
|
390 |
-
if ( ! empty( $args['cod_total'] ) && $dhl_order->has_cod_payment() ) {
|
391 |
$args['services'] = array_merge( $args['services'], array( 'CashOnDelivery' ) );
|
392 |
}
|
393 |
|
@@ -426,14 +438,18 @@ function wc_gzd_dhl_validate_label_args( $shipment, $args = array() ) {
|
|
426 |
$args['services'] = array_diff( $args['services'], array( 'PreferredNeighbour' ) );
|
427 |
}
|
428 |
|
429 |
-
if (
|
430 |
-
$args['
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
|
|
435 |
|
436 |
-
|
|
|
|
|
|
|
437 |
$args['visual_min_age'] = '';
|
438 |
}
|
439 |
|
@@ -649,6 +665,54 @@ function wc_gzd_dhl_get_return_label_sender_street_number( $label ) {
|
|
649 |
return $street_number;
|
650 |
}
|
651 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
652 |
/**
|
653 |
* @param Order $dhl_order
|
654 |
* @param Shipment $shipment
|
@@ -670,7 +734,7 @@ function wc_gzd_dhl_get_label_default_args( $dhl_order, $shipment ) {
|
|
670 |
$defaults['email_notification'] = 'yes';
|
671 |
}
|
672 |
|
673 |
-
if ( $dhl_order->has_cod_payment() ) {
|
674 |
$defaults['cod_total'] = $shipment->get_total();
|
675 |
|
676 |
/**
|
@@ -722,20 +786,26 @@ function wc_gzd_dhl_get_label_default_args( $dhl_order, $shipment ) {
|
|
722 |
$defaults['preferred_neighbor'] = $dhl_order->get_preferred_neighbor_formatted_address();
|
723 |
}
|
724 |
|
725 |
-
|
|
|
726 |
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
|
732 |
-
|
733 |
-
|
734 |
-
|
|
|
735 |
}
|
736 |
|
737 |
foreach( wc_gzd_dhl_get_services() as $service ) {
|
738 |
|
|
|
|
|
|
|
|
|
739 |
// Combination is not available
|
740 |
if ( ! empty( $defaults['visual_min_age'] ) && 'NamedPersonOnly' === $service ) {
|
741 |
continue;
|
@@ -772,6 +842,11 @@ function wc_gzd_dhl_get_label_default_args( $dhl_order, $shipment ) {
|
|
772 |
if( ! Package::is_shipping_domestic( $shipment->get_country() ) ) {
|
773 |
|
774 |
foreach( wc_gzd_dhl_get_international_services() as $service ) {
|
|
|
|
|
|
|
|
|
|
|
775 |
if ( 'yes' === Package::get_setting( 'label_service_' . $service, $dhl_shipping_method ) ) {
|
776 |
$defaults['services'][] = $service;
|
777 |
}
|
@@ -1203,6 +1278,7 @@ function wc_gzd_dhl_get_products_domestic() {
|
|
1203 |
'V01PAK' => _x( 'DHL Paket', 'dhl', 'woocommerce-germanized' ),
|
1204 |
'V01PRIO' => _x( 'DHL Paket PRIO', 'dhl', 'woocommerce-germanized' ),
|
1205 |
'V06PAK' => _x( 'DHL Paket Taggleich', 'dhl', 'woocommerce-germanized' ),
|
|
|
1206 |
);
|
1207 |
|
1208 |
$dhl_prod_dom = array();
|
332 |
'has_inlay_return' => 'no',
|
333 |
'codeable_address_only' => 'no',
|
334 |
'cod_total' => 0,
|
335 |
+
'dhl_product' => '',
|
336 |
'duties' => '',
|
337 |
'services' => array(),
|
338 |
'return_address' => array(),
|
349 |
// Do only allow valid services
|
350 |
if ( ! empty( $args['services'] ) ) {
|
351 |
$args['services'] = array_intersect( $args['services'], wc_gzd_dhl_get_services() );
|
352 |
+
|
353 |
+
foreach( $args['services'] as $key => $service ) {
|
354 |
+
/**
|
355 |
+
* Remove services that are not supported for this product
|
356 |
+
*/
|
357 |
+
if ( ! wc_gzd_dhl_product_supports_service( $args['dhl_product'], $service ) ) {
|
358 |
+
unset( $args['services'][ $key ] );
|
359 |
+
}
|
360 |
+
}
|
361 |
+
|
362 |
+
$args['services'] = array_values( $args['services'] );
|
363 |
}
|
364 |
|
365 |
// Check if return address has empty mandatory fields
|
399 |
$args['cod_total'] = 0;
|
400 |
}
|
401 |
|
402 |
+
if ( ! empty( $args['cod_total'] ) && $dhl_order->has_cod_payment() && wc_gzd_dhl_product_supports_service( $args['dhl_product'], 'CashOnDelivery' ) ) {
|
403 |
$args['services'] = array_merge( $args['services'], array( 'CashOnDelivery' ) );
|
404 |
}
|
405 |
|
438 |
$args['services'] = array_diff( $args['services'], array( 'PreferredNeighbour' ) );
|
439 |
}
|
440 |
|
441 |
+
if ( wc_gzd_dhl_product_supports_service( $args['dhl_product'], 'VisualCheckOfAge' ) ) {
|
442 |
+
if ( ! empty( $args['visual_min_age'] ) && wc_gzd_dhl_is_valid_visual_min_age( $args['visual_min_age'] ) ) {
|
443 |
+
$args['services'] = array_merge( $args['services'], array( 'VisualCheckOfAge' ) );
|
444 |
+
} else {
|
445 |
+
if ( ! empty( $args['visual_min_age'] ) && ! wc_gzd_dhl_is_valid_visual_min_age( $args['visual_min_age'] ) ) {
|
446 |
+
$error->add( 500, _x( 'The visual min age check is invalid.', 'dhl', 'woocommerce-germanized' ) );
|
447 |
+
}
|
448 |
|
449 |
+
$args['services'] = array_diff( $args['services'], array( 'VisualCheckOfAge' ) );
|
450 |
+
$args['visual_min_age'] = '';
|
451 |
+
}
|
452 |
+
} else {
|
453 |
$args['visual_min_age'] = '';
|
454 |
}
|
455 |
|
665 |
return $street_number;
|
666 |
}
|
667 |
|
668 |
+
function wc_gzd_dhl_get_product_services( $product ) {
|
669 |
+
if ( in_array( $product, array_keys( wc_gzd_dhl_get_products_domestic() ) ) ) {
|
670 |
+
$services = wc_gzd_dhl_get_services();
|
671 |
+
} else {
|
672 |
+
$services = wc_gzd_dhl_get_international_services();
|
673 |
+
}
|
674 |
+
|
675 |
+
/**
|
676 |
+
* Warenpost does only support certain services
|
677 |
+
*/
|
678 |
+
if ( 'V62WP' === $product ) {
|
679 |
+
$services = array_intersect( $services, array(
|
680 |
+
'PreferredTime',
|
681 |
+
'PreferredLocation',
|
682 |
+
'PreferredNeighbour',
|
683 |
+
'PreferredDay',
|
684 |
+
'ParcelOutletRouting',
|
685 |
+
'GoGreen'
|
686 |
+
) );
|
687 |
+
}
|
688 |
+
|
689 |
+
return $services;
|
690 |
+
}
|
691 |
+
|
692 |
+
function wc_gzd_dhl_product_supports_service( $product, $service ) {
|
693 |
+
$services = wc_gzd_dhl_get_product_services( $product );
|
694 |
+
|
695 |
+
if ( ! in_array( $service, $services ) ) {
|
696 |
+
return false;
|
697 |
+
}
|
698 |
+
|
699 |
+
return true;
|
700 |
+
}
|
701 |
+
|
702 |
+
function wc_gzd_dhl_get_service_product_attributes( $service ) {
|
703 |
+
$products_supported = array();
|
704 |
+
|
705 |
+
foreach( array_keys( array_merge( wc_gzd_dhl_get_products_domestic(), wc_gzd_dhl_get_products_international() ) ) as $product ) {
|
706 |
+
if ( wc_gzd_dhl_product_supports_service( $product, $service ) ) {
|
707 |
+
$products_supported[] = $product;
|
708 |
+
}
|
709 |
+
}
|
710 |
+
|
711 |
+
return array(
|
712 |
+
'data-products-supported' => implode( ',', $products_supported )
|
713 |
+
);
|
714 |
+
}
|
715 |
+
|
716 |
/**
|
717 |
* @param Order $dhl_order
|
718 |
* @param Shipment $shipment
|
734 |
$defaults['email_notification'] = 'yes';
|
735 |
}
|
736 |
|
737 |
+
if ( $dhl_order->has_cod_payment() && wc_gzd_dhl_product_supports_service( $defaults['dhl_product'], 'CashOnDelivery' ) ) {
|
738 |
$defaults['cod_total'] = $shipment->get_total();
|
739 |
|
740 |
/**
|
786 |
$defaults['preferred_neighbor'] = $dhl_order->get_preferred_neighbor_formatted_address();
|
787 |
}
|
788 |
|
789 |
+
if ( wc_gzd_dhl_product_supports_service( $defaults['dhl_product'], 'VisualCheckOfAge' ) ) {
|
790 |
+
$visual_min_age = Package::get_setting( 'label_visual_min_age', $dhl_shipping_method );
|
791 |
|
792 |
+
if ( wc_gzd_dhl_is_valid_visual_min_age( $visual_min_age ) ) {
|
793 |
+
$defaults['services'][] = 'VisualCheckOfAge';
|
794 |
+
$defaults['visual_min_age'] = $visual_min_age;
|
795 |
+
}
|
796 |
|
797 |
+
if ( $dhl_order->needs_age_verification() && 'yes' === Package::get_setting( 'label_auto_age_check_sync', $dhl_shipping_method ) ) {
|
798 |
+
$defaults['services'][] = 'VisualCheckOfAge';
|
799 |
+
$defaults['visual_min_age'] = $dhl_order->get_min_age();
|
800 |
+
}
|
801 |
}
|
802 |
|
803 |
foreach( wc_gzd_dhl_get_services() as $service ) {
|
804 |
|
805 |
+
if ( ! wc_gzd_dhl_product_supports_service( $defaults['dhl_product'], $service ) ) {
|
806 |
+
continue;
|
807 |
+
}
|
808 |
+
|
809 |
// Combination is not available
|
810 |
if ( ! empty( $defaults['visual_min_age'] ) && 'NamedPersonOnly' === $service ) {
|
811 |
continue;
|
842 |
if( ! Package::is_shipping_domestic( $shipment->get_country() ) ) {
|
843 |
|
844 |
foreach( wc_gzd_dhl_get_international_services() as $service ) {
|
845 |
+
|
846 |
+
if ( ! wc_gzd_dhl_product_supports_service( $defaults['dhl_product'], $service ) ) {
|
847 |
+
continue;
|
848 |
+
}
|
849 |
+
|
850 |
if ( 'yes' === Package::get_setting( 'label_service_' . $service, $dhl_shipping_method ) ) {
|
851 |
$defaults['services'][] = $service;
|
852 |
}
|
1278 |
'V01PAK' => _x( 'DHL Paket', 'dhl', 'woocommerce-germanized' ),
|
1279 |
'V01PRIO' => _x( 'DHL Paket PRIO', 'dhl', 'woocommerce-germanized' ),
|
1280 |
'V06PAK' => _x( 'DHL Paket Taggleich', 'dhl', 'woocommerce-germanized' ),
|
1281 |
+
'V62WP' => _x( 'Warenpost', 'dhl', 'woocommerce-germanized' )
|
1282 |
);
|
1283 |
|
1284 |
$dhl_prod_dom = array();
|
packages/woocommerce-germanized-dhl/src/Admin/Admin.php
CHANGED
@@ -17,6 +17,8 @@ class Admin {
|
|
17 |
*/
|
18 |
public static function init() {
|
19 |
add_action( 'admin_enqueue_scripts', array( __CLASS__, 'admin_styles' ) );
|
|
|
|
|
20 |
add_action( 'admin_init', array( __CLASS__, 'download_label' ) );
|
21 |
|
22 |
// Legacy meta box
|
@@ -252,6 +254,20 @@ class Admin {
|
|
252 |
}
|
253 |
}
|
254 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
255 |
public static function admin_styles() {
|
256 |
global $wp_scripts;
|
257 |
|
17 |
*/
|
18 |
public static function init() {
|
19 |
add_action( 'admin_enqueue_scripts', array( __CLASS__, 'admin_styles' ) );
|
20 |
+
add_action( 'admin_enqueue_scripts', array( __CLASS__, 'admin_scripts' ), 30 );
|
21 |
+
|
22 |
add_action( 'admin_init', array( __CLASS__, 'download_label' ) );
|
23 |
|
24 |
// Legacy meta box
|
254 |
}
|
255 |
}
|
256 |
|
257 |
+
public static function admin_scripts() {
|
258 |
+
global $post;
|
259 |
+
|
260 |
+
$screen = get_current_screen();
|
261 |
+
$screen_id = $screen ? $screen->id : '';
|
262 |
+
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
|
263 |
+
|
264 |
+
wp_register_script( 'wc-gzd-admin-dhl-label', Package::get_assets_url() . '/js/admin-label' . $suffix . '.js', array( 'wc-gzd-admin-shipment-label-backbone' ), Package::get_version() );
|
265 |
+
|
266 |
+
if ( wp_script_is( 'wc-gzd-admin-shipment-label-backbone', 'enqueued' ) ) {
|
267 |
+
wp_enqueue_script( 'wc-gzd-admin-dhl-label' );
|
268 |
+
}
|
269 |
+
}
|
270 |
+
|
271 |
public static function admin_styles() {
|
272 |
global $wp_scripts;
|
273 |
|
packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php
CHANGED
@@ -15,7 +15,7 @@ defined( 'ABSPATH' ) || exit;
|
|
15 |
|
16 |
class LabelSoap extends Soap {
|
17 |
|
18 |
-
const DHL_MAX_ITEMS = '
|
19 |
|
20 |
const DHL_RETURN_PRODUCT = '07';
|
21 |
|
@@ -48,7 +48,7 @@ class LabelSoap extends Soap {
|
|
48 |
$soap_request = array(
|
49 |
'Version' => array(
|
50 |
'majorRelease' => '3',
|
51 |
-
'minorRelease' => '
|
52 |
),
|
53 |
'shipmentNumber' => $label->get_number(),
|
54 |
'labelResponseType' => 'B64',
|
@@ -250,7 +250,7 @@ class LabelSoap extends Soap {
|
|
250 |
$soap_request = array(
|
251 |
'Version' => array(
|
252 |
'majorRelease' => '3',
|
253 |
-
'minorRelease' => '
|
254 |
),
|
255 |
'shipmentNumber' => $label->get_number()
|
256 |
);
|
@@ -436,7 +436,7 @@ class LabelSoap extends Soap {
|
|
436 |
$dhl_label_body = array(
|
437 |
'Version' => array(
|
438 |
'majorRelease' => '3',
|
439 |
-
'minorRelease' => '
|
440 |
),
|
441 |
'labelResponseType' => 'B64',
|
442 |
'ShipmentOrder' => array (
|
15 |
|
16 |
class LabelSoap extends Soap {
|
17 |
|
18 |
+
const DHL_MAX_ITEMS = '99';
|
19 |
|
20 |
const DHL_RETURN_PRODUCT = '07';
|
21 |
|
48 |
$soap_request = array(
|
49 |
'Version' => array(
|
50 |
'majorRelease' => '3',
|
51 |
+
'minorRelease' => '1'
|
52 |
),
|
53 |
'shipmentNumber' => $label->get_number(),
|
54 |
'labelResponseType' => 'B64',
|
250 |
$soap_request = array(
|
251 |
'Version' => array(
|
252 |
'majorRelease' => '3',
|
253 |
+
'minorRelease' => '1'
|
254 |
),
|
255 |
'shipmentNumber' => $label->get_number()
|
256 |
);
|
436 |
$dhl_label_body = array(
|
437 |
'Version' => array(
|
438 |
'majorRelease' => '3',
|
439 |
+
'minorRelease' => '1'
|
440 |
),
|
441 |
'labelResponseType' => 'B64',
|
442 |
'ShipmentOrder' => array (
|
packages/woocommerce-germanized-dhl/src/Package.php
CHANGED
@@ -20,7 +20,7 @@ class Package {
|
|
20 |
*
|
21 |
* @var string
|
22 |
*/
|
23 |
-
const VERSION = '1.2.
|
24 |
|
25 |
public static $upload_dir_suffix = '';
|
26 |
|
20 |
*
|
21 |
* @var string
|
22 |
*/
|
23 |
+
const VERSION = '1.2.8';
|
24 |
|
25 |
public static $upload_dir_suffix = '';
|
26 |
|
packages/woocommerce-germanized-dhl/src/ParcelLocator.php
CHANGED
@@ -875,7 +875,7 @@ class ParcelLocator {
|
|
875 |
if ( self::is_available( false ) ) {
|
876 |
$fields['shipping_address_type'] = array(
|
877 |
'label' => _x( 'Address Type', 'dhl', 'woocommerce-germanized' ),
|
878 |
-
'required' =>
|
879 |
'type' => 'select',
|
880 |
'class' => array( 'shipping-dhl-address-type' ),
|
881 |
'clear' => true,
|
875 |
if ( self::is_available( false ) ) {
|
876 |
$fields['shipping_address_type'] = array(
|
877 |
'label' => _x( 'Address Type', 'dhl', 'woocommerce-germanized' ),
|
878 |
+
'required' => false,
|
879 |
'type' => 'select',
|
880 |
'class' => array( 'shipping-dhl-address-type' ),
|
881 |
'clear' => true,
|
packages/woocommerce-germanized-dhl/woocommerce-germanized-dhl.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: The Germanized DHL integration, installed as a feature plugin for development and testing purposes.
|
6 |
* Author: vendidero
|
7 |
* Author URI: https://vendidero.de
|
8 |
-
* Version: 1.2.
|
9 |
* Requires PHP: 5.6
|
10 |
* License: GPLv3
|
11 |
*
|
5 |
* Description: The Germanized DHL integration, installed as a feature plugin for development and testing purposes.
|
6 |
* Author: vendidero
|
7 |
* Author URI: https://vendidero.de
|
8 |
+
* Version: 1.2.8
|
9 |
* Requires PHP: 5.6
|
10 |
* License: GPLv3
|
11 |
*
|
packages/woocommerce-germanized-shipments/assets/js/admin-shipment-label-backbone.js
CHANGED
@@ -42,6 +42,8 @@ window.germanized.admin = window.germanized.admin || {};
|
|
42 |
} else {
|
43 |
$show.hide();
|
44 |
}
|
|
|
|
|
45 |
}
|
46 |
},
|
47 |
|
42 |
} else {
|
43 |
$show.hide();
|
44 |
}
|
45 |
+
|
46 |
+
$( document.body ).trigger( 'wc_gzd_shipment_label_show_if' );
|
47 |
}
|
48 |
},
|
49 |
|
packages/woocommerce-germanized-shipments/assets/js/admin-shipment-label-backbone.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
window.germanized=window.germanized||{},window.germanized.admin=window.germanized.admin||{},function(c){window.germanized.admin.shipment_label_backbone={params:{},init:function(){var e=germanized.admin.shipment_label_backbone;e.params=wc_gzd_admin_shipment_label_backbone_params,c(document).on("click",".germanized-create-label .show-further-services",e.onExpandServices).on("click",".germanized-create-label .show-fewer-services",e.onHideServices).on("change",".germanized-create-label input.show-if-trigger",e.onShowIf).on("click",".germanized-create-label .notice .notice-dismiss",e.onRemoveNotice),c(document.body).on("wc_backbone_modal_loaded",e.backbone.init).on("wc_backbone_modal_response",e.backbone.response)},onRemoveNotice:function(){c(this).parents(".notice").slideUp(150,function(){c(this).remove()})},onShowIf:function(){var e=c(this).parents(".germanized-create-label").find(c(this).data("show-if")),n=c(this);0<e.length&&(n.is(":checked")?e.show():e.hide())},onExpandServices:function(){var e=c(this).parents(".germanized-create-label").find(".show-if-further-services"),n=c(this).parents(".show-services-trigger");return e.show(),n.find(".show-further-services").hide(),n.find(".show-fewer-services").show(),!1},onHideServices:function(){var e=c(this).parents(".germanized-create-label").find(".show-if-further-services"),n=c(this).parents(".show-services-trigger");return e.hide(),n.find(".show-further-services").show(),n.find(".show-fewer-services").hide(),!1},backbone:{getShipmentId:function(e){return e.replace(/^\D+/g,"")},init:function(e,n){var a,i,t,o;-1!==n.indexOf("wc-gzd-modal-create-shipment-label")&&(a=germanized.admin.shipment_label_backbone.backbone,i=germanized.admin.shipment_label_backbone,t=c(".germanized-create-label").parents(".wc-backbone-modal-content"),o={action:"woocommerce_gzd_create_shipment_label_form",shipment_id:a.getShipmentId(n),security:i.params.create_label_form_nonce},a.doAjax(o,t,a.onInitForm))},onAjaxSuccess:function(e){},onAjaxError:function(e){},doAjax:function(e,n,a,i){var t=germanized.admin.shipment_label_backbone.backbone,o=germanized.admin.shipment_label_backbone,r=n.find(".germanized-create-label");a=a||t.onAjaxSuccess,i=i||t.onAjaxError,n.block({message:null,overlayCSS:{background:"#fff",opacity:.6}}),n.find(".notice-wrapper").empty(),c.ajax({type:"POST",url:o.params.ajax_url,data:e,success:function(e){e.success?(e.fragments&&c.each(e.fragments,function(e,n){c(e).replaceWith(n)}),n.unblock(),a.apply(r,[e])):(n.unblock(),i.apply(r,[e]),c.each(e.messages,function(e,n){t.addNotice(n,"error",r)}),r.animate({scrollTop:0},500))},error:function(e){},dataType:"json"})},onInitForm:function(e){var n=germanized.admin.shipment_label_backbone.backbone,a=e.shipment_id,i=c(".germanized-create-label");c(document.body).trigger("wc-enhanced-select-init"),c(document.body).trigger("wc-init-datepickers"),i.find("input.show-if-trigger").trigger("change"),i.parents(".wc-backbone-modal").on("click","#btn-ok",{shipmentId:a},n.onSubmit),i.parents(".wc-backbone-modal").on("touchstart","#btn-ok",{shipmentId:a},n.onSubmit),i.parents(".wc-backbone-modal").on("keydown",{shipmentId:a},n.onKeyDown)},getFormData:function(e){var a={};return c.each(e.serializeArray(),function(e,n){-1!==n.name.indexOf("[]")?(n.name=n.name.replace("[]",""),a[n.name]=c.makeArray(a[n.name]),a[n.name].push(n.value)):a[n.name]=n.value}),a},onSubmitSuccess:function(e){germanized.admin.shipment_label_backbone.backbone;var n=c(this).parents(".wc-backbone-modal-content"),a=e.shipment_id;n.find(".modal-close").trigger("click"),0<c("div#shipment-"+a).length&&germanized.admin.shipments.initShipment(a)},onKeyDown:function(e){var n=germanized.admin.shipment_label_backbone.backbone;13!==(e.keyCode||e.which)||e.target.tagName&&("input"===e.target.tagName.toLowerCase()||"textarea"===e.target.tagName.toLowerCase())||n.onSubmit.apply(c(this).find("button#btn-ok"),[e])},onSubmit:function(e){var n=germanized.admin.shipment_label_backbone.backbone,a=germanized.admin.shipment_label_backbone,i=e.data.shipmentId,t=c(this).parents(".wc-backbone-modal-content"),o=t.find(".germanized-create-label").find("form"),r=n.getFormData(o);r.security=a.params.create_label_nonce,r.shipment_id=i,r.action="woocommerce_gzd_create_shipment_label",n.doAjax(r,t,n.onSubmitSuccess),e.preventDefault(),e.stopPropagation()},addNotice:function(e,n,a){a.find(".notice-wrapper").append('<div class="notice is-dismissible notice-'+n+'"><p>'+e+'</p><button type="button" class="notice-dismiss"></button></div>')},response:function(e,n,a){n.indexOf("wc-gzd-modal-create-shipment-label")}}},c(document).ready(function(){germanized.admin.shipment_label_backbone.init()})}(jQuery);
|
1 |
+
window.germanized=window.germanized||{},window.germanized.admin=window.germanized.admin||{},function(c){window.germanized.admin.shipment_label_backbone={params:{},init:function(){var e=germanized.admin.shipment_label_backbone;e.params=wc_gzd_admin_shipment_label_backbone_params,c(document).on("click",".germanized-create-label .show-further-services",e.onExpandServices).on("click",".germanized-create-label .show-fewer-services",e.onHideServices).on("change",".germanized-create-label input.show-if-trigger",e.onShowIf).on("click",".germanized-create-label .notice .notice-dismiss",e.onRemoveNotice),c(document.body).on("wc_backbone_modal_loaded",e.backbone.init).on("wc_backbone_modal_response",e.backbone.response)},onRemoveNotice:function(){c(this).parents(".notice").slideUp(150,function(){c(this).remove()})},onShowIf:function(){var e=c(this).parents(".germanized-create-label").find(c(this).data("show-if")),n=c(this);0<e.length&&(n.is(":checked")?e.show():e.hide(),c(document.body).trigger("wc_gzd_shipment_label_show_if"))},onExpandServices:function(){var e=c(this).parents(".germanized-create-label").find(".show-if-further-services"),n=c(this).parents(".show-services-trigger");return e.show(),n.find(".show-further-services").hide(),n.find(".show-fewer-services").show(),!1},onHideServices:function(){var e=c(this).parents(".germanized-create-label").find(".show-if-further-services"),n=c(this).parents(".show-services-trigger");return e.hide(),n.find(".show-further-services").show(),n.find(".show-fewer-services").hide(),!1},backbone:{getShipmentId:function(e){return e.replace(/^\D+/g,"")},init:function(e,n){var a,i,t,o;-1!==n.indexOf("wc-gzd-modal-create-shipment-label")&&(a=germanized.admin.shipment_label_backbone.backbone,i=germanized.admin.shipment_label_backbone,t=c(".germanized-create-label").parents(".wc-backbone-modal-content"),o={action:"woocommerce_gzd_create_shipment_label_form",shipment_id:a.getShipmentId(n),security:i.params.create_label_form_nonce},a.doAjax(o,t,a.onInitForm))},onAjaxSuccess:function(e){},onAjaxError:function(e){},doAjax:function(e,n,a,i){var t=germanized.admin.shipment_label_backbone.backbone,o=germanized.admin.shipment_label_backbone,r=n.find(".germanized-create-label");a=a||t.onAjaxSuccess,i=i||t.onAjaxError,n.block({message:null,overlayCSS:{background:"#fff",opacity:.6}}),n.find(".notice-wrapper").empty(),c.ajax({type:"POST",url:o.params.ajax_url,data:e,success:function(e){e.success?(e.fragments&&c.each(e.fragments,function(e,n){c(e).replaceWith(n)}),n.unblock(),a.apply(r,[e])):(n.unblock(),i.apply(r,[e]),c.each(e.messages,function(e,n){t.addNotice(n,"error",r)}),r.animate({scrollTop:0},500))},error:function(e){},dataType:"json"})},onInitForm:function(e){var n=germanized.admin.shipment_label_backbone.backbone,a=e.shipment_id,i=c(".germanized-create-label");c(document.body).trigger("wc-enhanced-select-init"),c(document.body).trigger("wc-init-datepickers"),i.find("input.show-if-trigger").trigger("change"),i.parents(".wc-backbone-modal").on("click","#btn-ok",{shipmentId:a},n.onSubmit),i.parents(".wc-backbone-modal").on("touchstart","#btn-ok",{shipmentId:a},n.onSubmit),i.parents(".wc-backbone-modal").on("keydown",{shipmentId:a},n.onKeyDown)},getFormData:function(e){var a={};return c.each(e.serializeArray(),function(e,n){-1!==n.name.indexOf("[]")?(n.name=n.name.replace("[]",""),a[n.name]=c.makeArray(a[n.name]),a[n.name].push(n.value)):a[n.name]=n.value}),a},onSubmitSuccess:function(e){germanized.admin.shipment_label_backbone.backbone;var n=c(this).parents(".wc-backbone-modal-content"),a=e.shipment_id;n.find(".modal-close").trigger("click"),0<c("div#shipment-"+a).length&&germanized.admin.shipments.initShipment(a)},onKeyDown:function(e){var n=germanized.admin.shipment_label_backbone.backbone;13!==(e.keyCode||e.which)||e.target.tagName&&("input"===e.target.tagName.toLowerCase()||"textarea"===e.target.tagName.toLowerCase())||n.onSubmit.apply(c(this).find("button#btn-ok"),[e])},onSubmit:function(e){var n=germanized.admin.shipment_label_backbone.backbone,a=germanized.admin.shipment_label_backbone,i=e.data.shipmentId,t=c(this).parents(".wc-backbone-modal-content"),o=t.find(".germanized-create-label").find("form"),r=n.getFormData(o);r.security=a.params.create_label_nonce,r.shipment_id=i,r.action="woocommerce_gzd_create_shipment_label",n.doAjax(r,t,n.onSubmitSuccess),e.preventDefault(),e.stopPropagation()},addNotice:function(e,n,a){a.find(".notice-wrapper").append('<div class="notice is-dismissible notice-'+n+'"><p>'+e+'</p><button type="button" class="notice-dismiss"></button></div>')},response:function(e,n,a){n.indexOf("wc-gzd-modal-create-shipment-label")}}},c(document).ready(function(){germanized.admin.shipment_label_backbone.init()})}(jQuery);
|
packages/woocommerce-germanized-shipments/src/Admin/Admin.php
CHANGED
@@ -29,9 +29,12 @@ class Admin {
|
|
29 |
add_action( 'admin_menu', array( __CLASS__, 'shipments_menu' ), 15 );
|
30 |
add_action( 'load-woocommerce_page_wc-gzd-shipments', array( __CLASS__, 'setup_shipments_table' ), 0 );
|
31 |
add_action( 'load-woocommerce_page_wc-gzd-return-shipments', array( __CLASS__, 'setup_returns_table' ), 0 );
|
32 |
-
add_filter( 'set-screen-option', array( __CLASS__, 'set_screen_option' ), 10, 3 );
|
33 |
|
34 |
-
|
|
|
|
|
|
|
|
|
35 |
|
36 |
add_filter( 'handle_bulk_actions-edit-shop_order', array( __CLASS__, 'handle_order_bulk_actions' ), 10, 3 );
|
37 |
add_filter( 'bulk_actions-edit-shop_order', array( __CLASS__, 'define_order_bulk_actions' ), 10, 1 );
|
29 |
add_action( 'admin_menu', array( __CLASS__, 'shipments_menu' ), 15 );
|
30 |
add_action( 'load-woocommerce_page_wc-gzd-shipments', array( __CLASS__, 'setup_shipments_table' ), 0 );
|
31 |
add_action( 'load-woocommerce_page_wc-gzd-return-shipments', array( __CLASS__, 'setup_returns_table' ), 0 );
|
|
|
32 |
|
33 |
+
add_filter( 'set-screen-option', array( __CLASS__, 'set_screen_option' ), 10, 3 );
|
34 |
+
add_filter( 'set_screen_option_woocommerce_page_wc_gzd_shipments_per_page', array( __CLASS__, 'set_screen_option' ), 10, 3 );
|
35 |
+
add_filter( 'set_screen_option_woocommerce_page_wc_gzd_return_shipments_per_page', array( __CLASS__, 'set_screen_option' ), 10, 3 );
|
36 |
+
|
37 |
+
add_filter( 'woocommerce_screen_ids', array( __CLASS__, 'add_table_view' ), 10 );
|
38 |
|
39 |
add_filter( 'handle_bulk_actions-edit-shop_order', array( __CLASS__, 'handle_order_bulk_actions' ), 10, 3 );
|
40 |
add_filter( 'bulk_actions-edit-shop_order', array( __CLASS__, 'define_order_bulk_actions' ), 10, 1 );
|
packages/woocommerce-germanized-shipments/src/Package.php
CHANGED
@@ -17,7 +17,7 @@ class Package {
|
|
17 |
*
|
18 |
* @var string
|
19 |
*/
|
20 |
-
const VERSION = '1.2.
|
21 |
|
22 |
public static $upload_dir_suffix = '';
|
23 |
|
17 |
*
|
18 |
* @var string
|
19 |
*/
|
20 |
+
const VERSION = '1.2.9';
|
21 |
|
22 |
public static $upload_dir_suffix = '';
|
23 |
|
packages/woocommerce-germanized-shipments/woocommerce-germanized-shipments.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: The Germanized Shipments integration, installed as a feature plugin for development and testing purposes.
|
6 |
* Author: vendidero
|
7 |
* Author URI: https://vendidero.de
|
8 |
-
* Version: 1.2.
|
9 |
* Requires PHP: 5.6
|
10 |
* License: GPLv3
|
11 |
*
|
5 |
* Description: The Germanized Shipments integration, installed as a feature plugin for development and testing purposes.
|
6 |
* Author: vendidero
|
7 |
* Author URI: https://vendidero.de
|
8 |
+
* Version: 1.2.9
|
9 |
* Requires PHP: 5.6
|
10 |
* License: GPLv3
|
11 |
*
|
packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops-core.php
CHANGED
@@ -152,7 +152,7 @@ final class WooCommerce_Trusted_Shops {
|
|
152 |
* Add notices + styles if needed.
|
153 |
*/
|
154 |
public function add_notices() {
|
155 |
-
$screen = get_current_screen();
|
156 |
$screen_id = $screen ? $screen->id : '';
|
157 |
$show_on_screens = array(
|
158 |
'dashboard',
|
152 |
* Add notices + styles if needed.
|
153 |
*/
|
154 |
public function add_notices() {
|
155 |
+
$screen = function_exists( 'get_current_screen' ) ? get_current_screen() : false;
|
156 |
$screen_id = $screen ? $screen->id : '';
|
157 |
$show_on_screens = array(
|
158 |
'dashboard',
|
packages/woocommerce-trusted-shops/src/Package.php
CHANGED
@@ -16,7 +16,7 @@ class Package {
|
|
16 |
*
|
17 |
* @var string
|
18 |
*/
|
19 |
-
const VERSION = '4.0.
|
20 |
|
21 |
/**
|
22 |
* Init the package - load the REST API Server class.
|
16 |
*
|
17 |
* @var string
|
18 |
*/
|
19 |
+
const VERSION = '4.0.7';
|
20 |
|
21 |
/**
|
22 |
* Init the package - load the REST API Server class.
|
packages/woocommerce-trusted-shops/woocommerce-trusted-shops.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Trustbadge Reviews for WooCommerce
|
4 |
* Plugin URI: http://www.trustedshops.co.uk/
|
5 |
* Description: Adds Seller and Product Reviews or Trusted Shops Integration to your WooCommerce Shop.
|
6 |
-
* Version: 4.0.
|
7 |
* Author: vendidero
|
8 |
* Author URI: http://vendidero.de
|
9 |
* Requires at least: 4.9
|
3 |
* Plugin Name: Trustbadge Reviews for WooCommerce
|
4 |
* Plugin URI: http://www.trustedshops.co.uk/
|
5 |
* Description: Adds Seller and Product Reviews or Trusted Shops Integration to your WooCommerce Shop.
|
6 |
+
* Version: 4.0.7
|
7 |
* Author: vendidero
|
8 |
* Author URI: http://vendidero.de
|
9 |
* Requires at least: 4.9
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Tags: woocommerce, woocommerce german, woocommerce DE, woocommerce germany, wooc
|
|
4 |
Requires at least: 4.9
|
5 |
Tested up to: 5.4
|
6 |
WC requires at least: 3.4
|
7 |
-
WC tested up to: 4.
|
8 |
-
Stable tag: 3.1.
|
9 |
Requires PHP: 5.6
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -189,6 +189,19 @@ Bug reports may be filed via our [GitHub repository](https://github.com/vendider
|
|
189 |
5. Manage shipments for orders
|
190 |
|
191 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
192 |
= 3.1.9 =
|
193 |
* Feature: Trusted Shops - Allow selecting multiple order statuses to send review reminder
|
194 |
* Improvement: Added wc_gzd_is_small_business function
|
4 |
Requires at least: 4.9
|
5 |
Tested up to: 5.4
|
6 |
WC requires at least: 3.4
|
7 |
+
WC tested up to: 4.3
|
8 |
+
Stable tag: 3.1.10
|
9 |
Requires PHP: 5.6
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
189 |
5. Manage shipments for orders
|
190 |
|
191 |
== Changelog ==
|
192 |
+
= 3.1.10 =
|
193 |
+
* Feature: DHL - Warenpost integration
|
194 |
+
* Improvement: Insert 16%, 5% tax rates for DE on install
|
195 |
+
* Improvement: Order item meta handling and unit price (re-) calculation
|
196 |
+
* Improvement: Added min_age to wpml-config.xml
|
197 |
+
* Improvement: Added protocol to asset URLs
|
198 |
+
* Improvement: Added is_activated customer DOI field to REST API
|
199 |
+
* Improvement: Woo Product Addons compatibility
|
200 |
+
* Tweak: Use "Herrn" as title in formatted addresses
|
201 |
+
* Fix: Screen option settings for Shipments table
|
202 |
+
* Fix: Renamed wrong field in REST API (age_verification to min_age)
|
203 |
+
* Fix: Remove additional cancelled email notifications to prevent duplicate mail
|
204 |
+
|
205 |
= 3.1.9 =
|
206 |
* Feature: Trusted Shops - Allow selecting multiple order statuses to send review reminder
|
207 |
* Improvement: Added wc_gzd_is_small_business function
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInitf22b13e6beef6a47c6d5cf8b6006f6ad::getLoader();
|
vendor/autoload_packages.php
CHANGED
@@ -120,10 +120,10 @@ if ( ! function_exists( __NAMESPACE__ . '\autoloader' ) ) {
|
|
120 |
/**
|
121 |
* Prepare all the classes for autoloading.
|
122 |
*/
|
123 |
-
function
|
124 |
$class_map = require_once dirname( __FILE__ ) . '/composer/autoload_classmap_package.php';
|
125 |
foreach ( $class_map as $class_name => $class_info ) {
|
126 |
enqueue_package_class( $class_name, $class_info['version'], $class_info['path'] );
|
127 |
}
|
128 |
}
|
129 |
-
|
120 |
/**
|
121 |
* Prepare all the classes for autoloading.
|
122 |
*/
|
123 |
+
function enqueue_packages_9c98db9f500e82a29a2ff7ba23d54a2a() {
|
124 |
$class_map = require_once dirname( __FILE__ ) . '/composer/autoload_classmap_package.php';
|
125 |
foreach ( $class_map as $class_name => $class_info ) {
|
126 |
enqueue_package_class( $class_name, $class_info['version'], $class_info['path'] );
|
127 |
}
|
128 |
}
|
129 |
+
enqueue_packages_9c98db9f500e82a29a2ff7ba23d54a2a();
|
vendor/composer/autoload_classmap_package.php
CHANGED
@@ -195,275 +195,275 @@ return array(
|
|
195 |
'path' => $vendorDir . '/setasign/fpdi/src/FpdfTpl.php'
|
196 |
),
|
197 |
'Vendidero\\TrustedShops\\Package' => array(
|
198 |
-
'version' => '4.0.
|
199 |
'path' => $baseDir . '/packages/woocommerce-trusted-shops/src/Package.php'
|
200 |
),
|
201 |
'Vendidero\\Germanized\\Shipments\\Shipment' => array(
|
202 |
-
'version' => '1.2.
|
203 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Shipment.php'
|
204 |
),
|
205 |
'Vendidero\\Germanized\\Shipments\\Install' => array(
|
206 |
-
'version' => '1.2.
|
207 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Install.php'
|
208 |
),
|
209 |
'Vendidero\\Germanized\\Shipments\\SimpleShipment' => array(
|
210 |
-
'version' => '1.2.
|
211 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/SimpleShipment.php'
|
212 |
),
|
213 |
'Vendidero\\Germanized\\Shipments\\ShippingProviderMethod' => array(
|
214 |
-
'version' => '1.2.
|
215 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviderMethod.php'
|
216 |
),
|
217 |
'Vendidero\\Germanized\\Shipments\\Package' => array(
|
218 |
-
'version' => '1.2.
|
219 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Package.php'
|
220 |
),
|
221 |
'Vendidero\\Germanized\\Shipments\\Order' => array(
|
222 |
-
'version' => '1.2.
|
223 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Order.php'
|
224 |
),
|
225 |
'Vendidero\\Germanized\\Shipments\\DataStores\\Shipment' => array(
|
226 |
-
'version' => '1.2.
|
227 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/Shipment.php'
|
228 |
),
|
229 |
'Vendidero\\Germanized\\Shipments\\DataStores\\ShippingProvider' => array(
|
230 |
-
'version' => '1.2.
|
231 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/ShippingProvider.php'
|
232 |
),
|
233 |
'Vendidero\\Germanized\\Shipments\\DataStores\\ShipmentItem' => array(
|
234 |
-
'version' => '1.2.
|
235 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/ShipmentItem.php'
|
236 |
),
|
237 |
'Vendidero\\Germanized\\Shipments\\Ajax' => array(
|
238 |
-
'version' => '1.2.
|
239 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Ajax.php'
|
240 |
),
|
241 |
'Vendidero\\Germanized\\Shipments\\ReturnShipment' => array(
|
242 |
-
'version' => '1.2.
|
243 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ReturnShipment.php'
|
244 |
),
|
245 |
'Vendidero\\Germanized\\Shipments\\ShippingProvider' => array(
|
246 |
-
'version' => '1.2.
|
247 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProvider.php'
|
248 |
),
|
249 |
'Vendidero\\Germanized\\Shipments\\AddressSplitter' => array(
|
250 |
-
'version' => '1.2.
|
251 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/AddressSplitter.php'
|
252 |
),
|
253 |
'Vendidero\\Germanized\\Shipments\\Admin\\BulkLabel' => array(
|
254 |
-
'version' => '1.2.
|
255 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php'
|
256 |
),
|
257 |
'Vendidero\\Germanized\\Shipments\\Admin\\Settings' => array(
|
258 |
-
'version' => '1.2.
|
259 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Settings.php'
|
260 |
),
|
261 |
'Vendidero\\Germanized\\Shipments\\Admin\\MetaBox' => array(
|
262 |
-
'version' => '1.2.
|
263 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/MetaBox.php'
|
264 |
),
|
265 |
'Vendidero\\Germanized\\Shipments\\Admin\\DownloadHandler' => array(
|
266 |
-
'version' => '1.2.
|
267 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/DownloadHandler.php'
|
268 |
),
|
269 |
'Vendidero\\Germanized\\Shipments\\Admin\\ReturnTable' => array(
|
270 |
-
'version' => '1.2.
|
271 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php'
|
272 |
),
|
273 |
'Vendidero\\Germanized\\Shipments\\Admin\\BulkActionHandler' => array(
|
274 |
-
'version' => '1.2.
|
275 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/BulkActionHandler.php'
|
276 |
),
|
277 |
'Vendidero\\Germanized\\Shipments\\Admin\\Admin' => array(
|
278 |
-
'version' => '1.2.
|
279 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Admin.php'
|
280 |
),
|
281 |
'Vendidero\\Germanized\\Shipments\\Admin\\Table' => array(
|
282 |
-
'version' => '1.2.
|
283 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Table.php'
|
284 |
),
|
285 |
'Vendidero\\Germanized\\Shipments\\ShipmentQuery' => array(
|
286 |
-
'version' => '1.2.
|
287 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentQuery.php'
|
288 |
),
|
289 |
'Vendidero\\Germanized\\Shipments\\WPMLHelper' => array(
|
290 |
-
'version' => '1.2.
|
291 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/WPMLHelper.php'
|
292 |
),
|
293 |
'Vendidero\\Germanized\\Shipments\\ShipmentReturnItem' => array(
|
294 |
-
'version' => '1.2.
|
295 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentReturnItem.php'
|
296 |
),
|
297 |
'Vendidero\\Germanized\\Shipments\\FormHandler' => array(
|
298 |
-
'version' => '1.2.
|
299 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/FormHandler.php'
|
300 |
),
|
301 |
'Vendidero\\Germanized\\Shipments\\PDFMerger' => array(
|
302 |
-
'version' => '1.2.
|
303 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PDFMerger.php'
|
304 |
),
|
305 |
'Vendidero\\Germanized\\Shipments\\ShipmentFactory' => array(
|
306 |
-
'version' => '1.2.
|
307 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentFactory.php'
|
308 |
),
|
309 |
'Vendidero\\Germanized\\Shipments\\ShippingProviderMethodPlaceholder' => array(
|
310 |
-
'version' => '1.2.
|
311 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviderMethodPlaceholder.php'
|
312 |
),
|
313 |
'Vendidero\\Germanized\\Shipments\\Automation' => array(
|
314 |
-
'version' => '1.2.
|
315 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Automation.php'
|
316 |
),
|
317 |
'Vendidero\\Germanized\\Shipments\\ShippingProviders' => array(
|
318 |
-
'version' => '1.2.
|
319 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviders.php'
|
320 |
),
|
321 |
'Vendidero\\Germanized\\Shipments\\Api' => array(
|
322 |
-
'version' => '1.2.
|
323 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Api.php'
|
324 |
),
|
325 |
'Vendidero\\Germanized\\Shipments\\ShipmentItem' => array(
|
326 |
-
'version' => '1.2.
|
327 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentItem.php'
|
328 |
),
|
329 |
'Vendidero\\Germanized\\Shipments\\Validation' => array(
|
330 |
-
'version' => '1.2.
|
331 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Validation.php'
|
332 |
),
|
333 |
'Vendidero\\Germanized\\Shipments\\Emails' => array(
|
334 |
-
'version' => '1.2.
|
335 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Emails.php'
|
336 |
),
|
337 |
'Vendidero\\Germanized\\Shipments\\PDFSplitter' => array(
|
338 |
-
'version' => '1.2.
|
339 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PDFSplitter.php'
|
340 |
),
|
341 |
'Vendidero\\Germanized\\Shipments\\ReturnReason' => array(
|
342 |
-
'version' => '1.2.
|
343 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ReturnReason.php'
|
344 |
),
|
345 |
'Vendidero\\Germanized\\Shipments\\Interfaces\\ShipmentReturnLabel' => array(
|
346 |
-
'version' => '1.2.
|
347 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShipmenReturnLabel.php'
|
348 |
),
|
349 |
'Vendidero\\Germanized\\Shipments\\Interfaces\\ShipmentLabel' => array(
|
350 |
-
'version' => '1.2.
|
351 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShipmentLabel.php'
|
352 |
),
|
353 |
'Vendidero\\Germanized\\DHL\\ShippingProviderDHL' => array(
|
354 |
-
'version' => '1.2.
|
355 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProviderDHL.php'
|
356 |
),
|
357 |
'Vendidero\\Germanized\\DHL\\ShippingProviderMethodDHL' => array(
|
358 |
-
'version' => '1.2.
|
359 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProviderMethodDHL.php'
|
360 |
),
|
361 |
'Vendidero\\Germanized\\DHL\\Install' => array(
|
362 |
-
'version' => '1.2.
|
363 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Install.php'
|
364 |
),
|
365 |
'Vendidero\\Germanized\\DHL\\LabelQuery' => array(
|
366 |
-
'version' => '1.2.
|
367 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/LabelQuery.php'
|
368 |
),
|
369 |
'Vendidero\\Germanized\\DHL\\ShipmentLabelWatcher' => array(
|
370 |
-
'version' => '1.2.
|
371 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShipmentLabelWatcher.php'
|
372 |
),
|
373 |
'Vendidero\\Germanized\\DHL\\Package' => array(
|
374 |
-
'version' => '1.2.
|
375 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Package.php'
|
376 |
),
|
377 |
'Vendidero\\Germanized\\DHL\\Product' => array(
|
378 |
-
'version' => '1.2.
|
379 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Product.php'
|
380 |
),
|
381 |
'Vendidero\\Germanized\\DHL\\Order' => array(
|
382 |
-
'version' => '1.2.
|
383 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Order.php'
|
384 |
),
|
385 |
'Vendidero\\Germanized\\DHL\\DataStores\\Label' => array(
|
386 |
-
'version' => '1.2.
|
387 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DataStores/Label.php'
|
388 |
),
|
389 |
'Vendidero\\Germanized\\DHL\\Label' => array(
|
390 |
-
'version' => '1.2.
|
391 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Label.php'
|
392 |
),
|
393 |
'Vendidero\\Germanized\\DHL\\ParcelServices' => array(
|
394 |
-
'version' => '1.2.
|
395 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ParcelServices.php'
|
396 |
),
|
397 |
'Vendidero\\Germanized\\DHL\\Admin\\Importer' => array(
|
398 |
-
'version' => '1.2.
|
399 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Importer.php'
|
400 |
),
|
401 |
'Vendidero\\Germanized\\DHL\\Admin\\Settings' => array(
|
402 |
-
'version' => '1.2.
|
403 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Settings.php'
|
404 |
),
|
405 |
'Vendidero\\Germanized\\DHL\\Admin\\Admin' => array(
|
406 |
-
'version' => '1.2.
|
407 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Admin.php'
|
408 |
),
|
409 |
'Vendidero\\Germanized\\DHL\\ReturnLabel' => array(
|
410 |
-
'version' => '1.2.
|
411 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ReturnLabel.php'
|
412 |
),
|
413 |
'Vendidero\\Germanized\\DHL\\ParcelLocator' => array(
|
414 |
-
'version' => '1.2.
|
415 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ParcelLocator.php'
|
416 |
),
|
417 |
'Vendidero\\Germanized\\DHL\\SimpleLabel' => array(
|
418 |
-
'version' => '1.2.
|
419 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/SimpleLabel.php'
|
420 |
),
|
421 |
'Vendidero\\Germanized\\DHL\\Admin\\DownloadHandler' => array(
|
422 |
-
'version' => '1.2.
|
423 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DownloadHandler.php'
|
424 |
),
|
425 |
'Vendidero\\Germanized\\DHL\\Api\\ReturnRest' => array(
|
426 |
-
'version' => '1.2.
|
427 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ReturnRest.php'
|
428 |
),
|
429 |
'Vendidero\\Germanized\\DHL\\Api\\Paket' => array(
|
430 |
-
'version' => '1.2.
|
431 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Paket.php'
|
432 |
),
|
433 |
'Vendidero\\Germanized\\DHL\\Api\\LabelSoap' => array(
|
434 |
-
'version' => '1.2.
|
435 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php'
|
436 |
),
|
437 |
'Vendidero\\Germanized\\DHL\\Api\\AuthSoap' => array(
|
438 |
-
'version' => '1.2.
|
439 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/AuthSoap.php'
|
440 |
),
|
441 |
'Vendidero\\Germanized\\DHL\\Api\\ParcelRest' => array(
|
442 |
-
'version' => '1.2.
|
443 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ParcelRest.php'
|
444 |
),
|
445 |
'Vendidero\\Germanized\\DHL\\Api\\Soap' => array(
|
446 |
-
'version' => '1.2.
|
447 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Soap.php'
|
448 |
),
|
449 |
'Vendidero\\Germanized\\DHL\\Api\\Rest' => array(
|
450 |
-
'version' => '1.2.
|
451 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Rest.php'
|
452 |
),
|
453 |
'Vendidero\\Germanized\\DHL\\Api\\FinderSoap' => array(
|
454 |
-
'version' => '1.2.
|
455 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php'
|
456 |
),
|
457 |
'Vendidero\\Germanized\\DHL\\Automation' => array(
|
458 |
-
'version' => '1.2.
|
459 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Automation.php'
|
460 |
),
|
461 |
'Vendidero\\Germanized\\DHL\\LabelFactory' => array(
|
462 |
-
'version' => '1.2.
|
463 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/LabelFactory.php'
|
464 |
),
|
465 |
'Vendidero\\Germanized\\DHL\\LabelWatcher' => array(
|
466 |
-
'version' => '1.2.
|
467 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/LabelWatcher.php'
|
468 |
),
|
469 |
'Vendidero\\Germanized\\Shopmark' => array(
|
195 |
'path' => $vendorDir . '/setasign/fpdi/src/FpdfTpl.php'
|
196 |
),
|
197 |
'Vendidero\\TrustedShops\\Package' => array(
|
198 |
+
'version' => '4.0.7.0',
|
199 |
'path' => $baseDir . '/packages/woocommerce-trusted-shops/src/Package.php'
|
200 |
),
|
201 |
'Vendidero\\Germanized\\Shipments\\Shipment' => array(
|
202 |
+
'version' => '1.2.9.0',
|
203 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Shipment.php'
|
204 |
),
|
205 |
'Vendidero\\Germanized\\Shipments\\Install' => array(
|
206 |
+
'version' => '1.2.9.0',
|
207 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Install.php'
|
208 |
),
|
209 |
'Vendidero\\Germanized\\Shipments\\SimpleShipment' => array(
|
210 |
+
'version' => '1.2.9.0',
|
211 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/SimpleShipment.php'
|
212 |
),
|
213 |
'Vendidero\\Germanized\\Shipments\\ShippingProviderMethod' => array(
|
214 |
+
'version' => '1.2.9.0',
|
215 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviderMethod.php'
|
216 |
),
|
217 |
'Vendidero\\Germanized\\Shipments\\Package' => array(
|
218 |
+
'version' => '1.2.9.0',
|
219 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Package.php'
|
220 |
),
|
221 |
'Vendidero\\Germanized\\Shipments\\Order' => array(
|
222 |
+
'version' => '1.2.9.0',
|
223 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Order.php'
|
224 |
),
|
225 |
'Vendidero\\Germanized\\Shipments\\DataStores\\Shipment' => array(
|
226 |
+
'version' => '1.2.9.0',
|
227 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/Shipment.php'
|
228 |
),
|
229 |
'Vendidero\\Germanized\\Shipments\\DataStores\\ShippingProvider' => array(
|
230 |
+
'version' => '1.2.9.0',
|
231 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/ShippingProvider.php'
|
232 |
),
|
233 |
'Vendidero\\Germanized\\Shipments\\DataStores\\ShipmentItem' => array(
|
234 |
+
'version' => '1.2.9.0',
|
235 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/ShipmentItem.php'
|
236 |
),
|
237 |
'Vendidero\\Germanized\\Shipments\\Ajax' => array(
|
238 |
+
'version' => '1.2.9.0',
|
239 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Ajax.php'
|
240 |
),
|
241 |
'Vendidero\\Germanized\\Shipments\\ReturnShipment' => array(
|
242 |
+
'version' => '1.2.9.0',
|
243 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ReturnShipment.php'
|
244 |
),
|
245 |
'Vendidero\\Germanized\\Shipments\\ShippingProvider' => array(
|
246 |
+
'version' => '1.2.9.0',
|
247 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProvider.php'
|
248 |
),
|
249 |
'Vendidero\\Germanized\\Shipments\\AddressSplitter' => array(
|
250 |
+
'version' => '1.2.9.0',
|
251 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/AddressSplitter.php'
|
252 |
),
|
253 |
'Vendidero\\Germanized\\Shipments\\Admin\\BulkLabel' => array(
|
254 |
+
'version' => '1.2.9.0',
|
255 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php'
|
256 |
),
|
257 |
'Vendidero\\Germanized\\Shipments\\Admin\\Settings' => array(
|
258 |
+
'version' => '1.2.9.0',
|
259 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Settings.php'
|
260 |
),
|
261 |
'Vendidero\\Germanized\\Shipments\\Admin\\MetaBox' => array(
|
262 |
+
'version' => '1.2.9.0',
|
263 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/MetaBox.php'
|
264 |
),
|
265 |
'Vendidero\\Germanized\\Shipments\\Admin\\DownloadHandler' => array(
|
266 |
+
'version' => '1.2.9.0',
|
267 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/DownloadHandler.php'
|
268 |
),
|
269 |
'Vendidero\\Germanized\\Shipments\\Admin\\ReturnTable' => array(
|
270 |
+
'version' => '1.2.9.0',
|
271 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php'
|
272 |
),
|
273 |
'Vendidero\\Germanized\\Shipments\\Admin\\BulkActionHandler' => array(
|
274 |
+
'version' => '1.2.9.0',
|
275 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/BulkActionHandler.php'
|
276 |
),
|
277 |
'Vendidero\\Germanized\\Shipments\\Admin\\Admin' => array(
|
278 |
+
'version' => '1.2.9.0',
|
279 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Admin.php'
|
280 |
),
|
281 |
'Vendidero\\Germanized\\Shipments\\Admin\\Table' => array(
|
282 |
+
'version' => '1.2.9.0',
|
283 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Table.php'
|
284 |
),
|
285 |
'Vendidero\\Germanized\\Shipments\\ShipmentQuery' => array(
|
286 |
+
'version' => '1.2.9.0',
|
287 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentQuery.php'
|
288 |
),
|
289 |
'Vendidero\\Germanized\\Shipments\\WPMLHelper' => array(
|
290 |
+
'version' => '1.2.9.0',
|
291 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/WPMLHelper.php'
|
292 |
),
|
293 |
'Vendidero\\Germanized\\Shipments\\ShipmentReturnItem' => array(
|
294 |
+
'version' => '1.2.9.0',
|
295 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentReturnItem.php'
|
296 |
),
|
297 |
'Vendidero\\Germanized\\Shipments\\FormHandler' => array(
|
298 |
+
'version' => '1.2.9.0',
|
299 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/FormHandler.php'
|
300 |
),
|
301 |
'Vendidero\\Germanized\\Shipments\\PDFMerger' => array(
|
302 |
+
'version' => '1.2.9.0',
|
303 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PDFMerger.php'
|
304 |
),
|
305 |
'Vendidero\\Germanized\\Shipments\\ShipmentFactory' => array(
|
306 |
+
'version' => '1.2.9.0',
|
307 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentFactory.php'
|
308 |
),
|
309 |
'Vendidero\\Germanized\\Shipments\\ShippingProviderMethodPlaceholder' => array(
|
310 |
+
'version' => '1.2.9.0',
|
311 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviderMethodPlaceholder.php'
|
312 |
),
|
313 |
'Vendidero\\Germanized\\Shipments\\Automation' => array(
|
314 |
+
'version' => '1.2.9.0',
|
315 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Automation.php'
|
316 |
),
|
317 |
'Vendidero\\Germanized\\Shipments\\ShippingProviders' => array(
|
318 |
+
'version' => '1.2.9.0',
|
319 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviders.php'
|
320 |
),
|
321 |
'Vendidero\\Germanized\\Shipments\\Api' => array(
|
322 |
+
'version' => '1.2.9.0',
|
323 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Api.php'
|
324 |
),
|
325 |
'Vendidero\\Germanized\\Shipments\\ShipmentItem' => array(
|
326 |
+
'version' => '1.2.9.0',
|
327 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentItem.php'
|
328 |
),
|
329 |
'Vendidero\\Germanized\\Shipments\\Validation' => array(
|
330 |
+
'version' => '1.2.9.0',
|
331 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Validation.php'
|
332 |
),
|
333 |
'Vendidero\\Germanized\\Shipments\\Emails' => array(
|
334 |
+
'version' => '1.2.9.0',
|
335 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Emails.php'
|
336 |
),
|
337 |
'Vendidero\\Germanized\\Shipments\\PDFSplitter' => array(
|
338 |
+
'version' => '1.2.9.0',
|
339 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PDFSplitter.php'
|
340 |
),
|
341 |
'Vendidero\\Germanized\\Shipments\\ReturnReason' => array(
|
342 |
+
'version' => '1.2.9.0',
|
343 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ReturnReason.php'
|
344 |
),
|
345 |
'Vendidero\\Germanized\\Shipments\\Interfaces\\ShipmentReturnLabel' => array(
|
346 |
+
'version' => '1.2.9.0',
|
347 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShipmenReturnLabel.php'
|
348 |
),
|
349 |
'Vendidero\\Germanized\\Shipments\\Interfaces\\ShipmentLabel' => array(
|
350 |
+
'version' => '1.2.9.0',
|
351 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShipmentLabel.php'
|
352 |
),
|
353 |
'Vendidero\\Germanized\\DHL\\ShippingProviderDHL' => array(
|
354 |
+
'version' => '1.2.8.0',
|
355 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProviderDHL.php'
|
356 |
),
|
357 |
'Vendidero\\Germanized\\DHL\\ShippingProviderMethodDHL' => array(
|
358 |
+
'version' => '1.2.8.0',
|
359 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProviderMethodDHL.php'
|
360 |
),
|
361 |
'Vendidero\\Germanized\\DHL\\Install' => array(
|
362 |
+
'version' => '1.2.8.0',
|
363 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Install.php'
|
364 |
),
|
365 |
'Vendidero\\Germanized\\DHL\\LabelQuery' => array(
|
366 |
+
'version' => '1.2.8.0',
|
367 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/LabelQuery.php'
|
368 |
),
|
369 |
'Vendidero\\Germanized\\DHL\\ShipmentLabelWatcher' => array(
|
370 |
+
'version' => '1.2.8.0',
|
371 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShipmentLabelWatcher.php'
|
372 |
),
|
373 |
'Vendidero\\Germanized\\DHL\\Package' => array(
|
374 |
+
'version' => '1.2.8.0',
|
375 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Package.php'
|
376 |
),
|
377 |
'Vendidero\\Germanized\\DHL\\Product' => array(
|
378 |
+
'version' => '1.2.8.0',
|
379 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Product.php'
|
380 |
),
|
381 |
'Vendidero\\Germanized\\DHL\\Order' => array(
|
382 |
+
'version' => '1.2.8.0',
|
383 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Order.php'
|
384 |
),
|
385 |
'Vendidero\\Germanized\\DHL\\DataStores\\Label' => array(
|
386 |
+
'version' => '1.2.8.0',
|
387 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DataStores/Label.php'
|
388 |
),
|
389 |
'Vendidero\\Germanized\\DHL\\Label' => array(
|
390 |
+
'version' => '1.2.8.0',
|
391 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Label.php'
|
392 |
),
|
393 |
'Vendidero\\Germanized\\DHL\\ParcelServices' => array(
|
394 |
+
'version' => '1.2.8.0',
|
395 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ParcelServices.php'
|
396 |
),
|
397 |
'Vendidero\\Germanized\\DHL\\Admin\\Importer' => array(
|
398 |
+
'version' => '1.2.8.0',
|
399 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Importer.php'
|
400 |
),
|
401 |
'Vendidero\\Germanized\\DHL\\Admin\\Settings' => array(
|
402 |
+
'version' => '1.2.8.0',
|
403 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Settings.php'
|
404 |
),
|
405 |
'Vendidero\\Germanized\\DHL\\Admin\\Admin' => array(
|
406 |
+
'version' => '1.2.8.0',
|
407 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Admin.php'
|
408 |
),
|
409 |
'Vendidero\\Germanized\\DHL\\ReturnLabel' => array(
|
410 |
+
'version' => '1.2.8.0',
|
411 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ReturnLabel.php'
|
412 |
),
|
413 |
'Vendidero\\Germanized\\DHL\\ParcelLocator' => array(
|
414 |
+
'version' => '1.2.8.0',
|
415 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ParcelLocator.php'
|
416 |
),
|
417 |
'Vendidero\\Germanized\\DHL\\SimpleLabel' => array(
|
418 |
+
'version' => '1.2.8.0',
|
419 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/SimpleLabel.php'
|
420 |
),
|
421 |
'Vendidero\\Germanized\\DHL\\Admin\\DownloadHandler' => array(
|
422 |
+
'version' => '1.2.8.0',
|
423 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DownloadHandler.php'
|
424 |
),
|
425 |
'Vendidero\\Germanized\\DHL\\Api\\ReturnRest' => array(
|
426 |
+
'version' => '1.2.8.0',
|
427 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ReturnRest.php'
|
428 |
),
|
429 |
'Vendidero\\Germanized\\DHL\\Api\\Paket' => array(
|
430 |
+
'version' => '1.2.8.0',
|
431 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Paket.php'
|
432 |
),
|
433 |
'Vendidero\\Germanized\\DHL\\Api\\LabelSoap' => array(
|
434 |
+
'version' => '1.2.8.0',
|
435 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php'
|
436 |
),
|
437 |
'Vendidero\\Germanized\\DHL\\Api\\AuthSoap' => array(
|
438 |
+
'version' => '1.2.8.0',
|
439 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/AuthSoap.php'
|
440 |
),
|
441 |
'Vendidero\\Germanized\\DHL\\Api\\ParcelRest' => array(
|
442 |
+
'version' => '1.2.8.0',
|
443 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ParcelRest.php'
|
444 |
),
|
445 |
'Vendidero\\Germanized\\DHL\\Api\\Soap' => array(
|
446 |
+
'version' => '1.2.8.0',
|
447 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Soap.php'
|
448 |
),
|
449 |
'Vendidero\\Germanized\\DHL\\Api\\Rest' => array(
|
450 |
+
'version' => '1.2.8.0',
|
451 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Rest.php'
|
452 |
),
|
453 |
'Vendidero\\Germanized\\DHL\\Api\\FinderSoap' => array(
|
454 |
+
'version' => '1.2.8.0',
|
455 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php'
|
456 |
),
|
457 |
'Vendidero\\Germanized\\DHL\\Automation' => array(
|
458 |
+
'version' => '1.2.8.0',
|
459 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Automation.php'
|
460 |
),
|
461 |
'Vendidero\\Germanized\\DHL\\LabelFactory' => array(
|
462 |
+
'version' => '1.2.8.0',
|
463 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/LabelFactory.php'
|
464 |
),
|
465 |
'Vendidero\\Germanized\\DHL\\LabelWatcher' => array(
|
466 |
+
'version' => '1.2.8.0',
|
467 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/LabelWatcher.php'
|
468 |
),
|
469 |
'Vendidero\\Germanized\\Shopmark' => array(
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -19,15 +19,15 @@ class ComposerAutoloaderInitd1880e770d75e352cdfee55f84f3702e
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
-
call_user_func(\Composer\Autoload\
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInitf22b13e6beef6a47c6d5cf8b6006f6ad
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInitf22b13e6beef6a47c6d5cf8b6006f6ad', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInitf22b13e6beef6a47c6d5cf8b6006f6ad', 'loadClassLoader'));
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
+
call_user_func(\Composer\Autoload\ComposerStaticInitf22b13e6beef6a47c6d5cf8b6006f6ad::getInitializer($loader));
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
vendor/composer/autoload_static.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
-
class
|
8 |
{
|
9 |
public static $prefixLengthsPsr4 = array (
|
10 |
's' =>
|
@@ -66,9 +66,9 @@ class ComposerStaticInitd1880e770d75e352cdfee55f84f3702e
|
|
66 |
public static function getInitializer(ClassLoader $loader)
|
67 |
{
|
68 |
return \Closure::bind(function () use ($loader) {
|
69 |
-
$loader->prefixLengthsPsr4 =
|
70 |
-
$loader->prefixDirsPsr4 =
|
71 |
-
$loader->classMap =
|
72 |
|
73 |
}, null, ClassLoader::class);
|
74 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInitf22b13e6beef6a47c6d5cf8b6006f6ad
|
8 |
{
|
9 |
public static $prefixLengthsPsr4 = array (
|
10 |
's' =>
|
66 |
public static function getInitializer(ClassLoader $loader)
|
67 |
{
|
68 |
return \Closure::bind(function () use ($loader) {
|
69 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInitf22b13e6beef6a47c6d5cf8b6006f6ad::$prefixLengthsPsr4;
|
70 |
+
$loader->prefixDirsPsr4 = ComposerStaticInitf22b13e6beef6a47c6d5cf8b6006f6ad::$prefixDirsPsr4;
|
71 |
+
$loader->classMap = ComposerStaticInitf22b13e6beef6a47c6d5cf8b6006f6ad::$classMap;
|
72 |
|
73 |
}, null, ClassLoader::class);
|
74 |
}
|
vendor/composer/installed.json
CHANGED
@@ -309,17 +309,17 @@
|
|
309 |
},
|
310 |
{
|
311 |
"name": "vendidero/woocommerce-germanized-dhl",
|
312 |
-
"version": "v1.2.
|
313 |
-
"version_normalized": "1.2.
|
314 |
"source": {
|
315 |
"type": "git",
|
316 |
"url": "https://github.com/vendidero/woocommerce-germanized-dhl.git",
|
317 |
-
"reference": "
|
318 |
},
|
319 |
"dist": {
|
320 |
"type": "zip",
|
321 |
-
"url": "https://api.github.com/repos/vendidero/woocommerce-germanized-dhl/zipball/
|
322 |
-
"reference": "
|
323 |
"shasum": ""
|
324 |
},
|
325 |
"require": {
|
@@ -329,7 +329,7 @@
|
|
329 |
"phpunit/phpunit": "6.5.14",
|
330 |
"woocommerce/woocommerce-sniffs": "0.0.6"
|
331 |
},
|
332 |
-
"time": "2020-
|
333 |
"type": "wordpress-plugin",
|
334 |
"installation-source": "dist",
|
335 |
"autoload": {
|
@@ -353,23 +353,23 @@
|
|
353 |
"description": "The Germanized DHL implementation.",
|
354 |
"homepage": "https://github.com/vendidero/woocommerce-germanized-dhl",
|
355 |
"support": {
|
356 |
-
"source": "https://github.com/vendidero/woocommerce-germanized-dhl/tree/v1.2.
|
357 |
"issues": "https://github.com/vendidero/woocommerce-germanized-dhl/issues"
|
358 |
}
|
359 |
},
|
360 |
{
|
361 |
"name": "vendidero/woocommerce-germanized-shipments",
|
362 |
-
"version": "v1.2.
|
363 |
-
"version_normalized": "1.2.
|
364 |
"source": {
|
365 |
"type": "git",
|
366 |
"url": "https://github.com/vendidero/woocommerce-germanized-shipments.git",
|
367 |
-
"reference": "
|
368 |
},
|
369 |
"dist": {
|
370 |
"type": "zip",
|
371 |
-
"url": "https://api.github.com/repos/vendidero/woocommerce-germanized-shipments/zipball/
|
372 |
-
"reference": "
|
373 |
"shasum": ""
|
374 |
},
|
375 |
"require": {
|
@@ -380,7 +380,7 @@
|
|
380 |
"phpunit/phpunit": "6.5.14",
|
381 |
"woocommerce/woocommerce-sniffs": "0.0.6"
|
382 |
},
|
383 |
-
"time": "2020-
|
384 |
"type": "wordpress-plugin",
|
385 |
"installation-source": "dist",
|
386 |
"autoload": {
|
@@ -402,23 +402,23 @@
|
|
402 |
"description": "The Germanized Shipments implementation.",
|
403 |
"homepage": "https://github.com/vendidero/woocommerce-germanized-shipments",
|
404 |
"support": {
|
405 |
-
"source": "https://github.com/vendidero/woocommerce-germanized-shipments/tree/v1.2.
|
406 |
"issues": "https://github.com/vendidero/woocommerce-germanized-shipments/issues"
|
407 |
}
|
408 |
},
|
409 |
{
|
410 |
"name": "vendidero/woocommerce-trusted-shops",
|
411 |
-
"version": "v4.0.
|
412 |
-
"version_normalized": "4.0.
|
413 |
"source": {
|
414 |
"type": "git",
|
415 |
"url": "https://github.com/vendidero/woocommerce-trusted-shops.git",
|
416 |
-
"reference": "
|
417 |
},
|
418 |
"dist": {
|
419 |
"type": "zip",
|
420 |
-
"url": "https://api.github.com/repos/vendidero/woocommerce-trusted-shops/zipball/
|
421 |
-
"reference": "
|
422 |
"shasum": ""
|
423 |
},
|
424 |
"require": {
|
@@ -428,7 +428,7 @@
|
|
428 |
"phpunit/phpunit": "6.5.14",
|
429 |
"woocommerce/woocommerce-sniffs": "0.0.6"
|
430 |
},
|
431 |
-
"time": "2020-
|
432 |
"type": "wordpress-plugin",
|
433 |
"installation-source": "dist",
|
434 |
"autoload": {
|
@@ -450,7 +450,7 @@
|
|
450 |
"description": "Trustbadge Reviews for WooCommerce.",
|
451 |
"homepage": "https://github.com/vendidero/woocommerce-trusted-shops",
|
452 |
"support": {
|
453 |
-
"source": "https://github.com/vendidero/woocommerce-trusted-shops/tree/v4.0.
|
454 |
"issues": "https://github.com/vendidero/woocommerce-trusted-shops/issues"
|
455 |
}
|
456 |
}
|
309 |
},
|
310 |
{
|
311 |
"name": "vendidero/woocommerce-germanized-dhl",
|
312 |
+
"version": "v1.2.8",
|
313 |
+
"version_normalized": "1.2.8.0",
|
314 |
"source": {
|
315 |
"type": "git",
|
316 |
"url": "https://github.com/vendidero/woocommerce-germanized-dhl.git",
|
317 |
+
"reference": "ef4bbdae448d3b7720e6e1871201a6cacf8c91ef"
|
318 |
},
|
319 |
"dist": {
|
320 |
"type": "zip",
|
321 |
+
"url": "https://api.github.com/repos/vendidero/woocommerce-germanized-dhl/zipball/ef4bbdae448d3b7720e6e1871201a6cacf8c91ef",
|
322 |
+
"reference": "ef4bbdae448d3b7720e6e1871201a6cacf8c91ef",
|
323 |
"shasum": ""
|
324 |
},
|
325 |
"require": {
|
329 |
"phpunit/phpunit": "6.5.14",
|
330 |
"woocommerce/woocommerce-sniffs": "0.0.6"
|
331 |
},
|
332 |
+
"time": "2020-07-01T08:22:39+00:00",
|
333 |
"type": "wordpress-plugin",
|
334 |
"installation-source": "dist",
|
335 |
"autoload": {
|
353 |
"description": "The Germanized DHL implementation.",
|
354 |
"homepage": "https://github.com/vendidero/woocommerce-germanized-dhl",
|
355 |
"support": {
|
356 |
+
"source": "https://github.com/vendidero/woocommerce-germanized-dhl/tree/v1.2.8",
|
357 |
"issues": "https://github.com/vendidero/woocommerce-germanized-dhl/issues"
|
358 |
}
|
359 |
},
|
360 |
{
|
361 |
"name": "vendidero/woocommerce-germanized-shipments",
|
362 |
+
"version": "v1.2.9",
|
363 |
+
"version_normalized": "1.2.9.0",
|
364 |
"source": {
|
365 |
"type": "git",
|
366 |
"url": "https://github.com/vendidero/woocommerce-germanized-shipments.git",
|
367 |
+
"reference": "6b46603b784c547cddde684146b64eb9202538af"
|
368 |
},
|
369 |
"dist": {
|
370 |
"type": "zip",
|
371 |
+
"url": "https://api.github.com/repos/vendidero/woocommerce-germanized-shipments/zipball/6b46603b784c547cddde684146b64eb9202538af",
|
372 |
+
"reference": "6b46603b784c547cddde684146b64eb9202538af",
|
373 |
"shasum": ""
|
374 |
},
|
375 |
"require": {
|
380 |
"phpunit/phpunit": "6.5.14",
|
381 |
"woocommerce/woocommerce-sniffs": "0.0.6"
|
382 |
},
|
383 |
+
"time": "2020-07-01T08:21:40+00:00",
|
384 |
"type": "wordpress-plugin",
|
385 |
"installation-source": "dist",
|
386 |
"autoload": {
|
402 |
"description": "The Germanized Shipments implementation.",
|
403 |
"homepage": "https://github.com/vendidero/woocommerce-germanized-shipments",
|
404 |
"support": {
|
405 |
+
"source": "https://github.com/vendidero/woocommerce-germanized-shipments/tree/v1.2.9",
|
406 |
"issues": "https://github.com/vendidero/woocommerce-germanized-shipments/issues"
|
407 |
}
|
408 |
},
|
409 |
{
|
410 |
"name": "vendidero/woocommerce-trusted-shops",
|
411 |
+
"version": "v4.0.7",
|
412 |
+
"version_normalized": "4.0.7.0",
|
413 |
"source": {
|
414 |
"type": "git",
|
415 |
"url": "https://github.com/vendidero/woocommerce-trusted-shops.git",
|
416 |
+
"reference": "9680c1fbae709d3affd8e57630d1d7e3377a9469"
|
417 |
},
|
418 |
"dist": {
|
419 |
"type": "zip",
|
420 |
+
"url": "https://api.github.com/repos/vendidero/woocommerce-trusted-shops/zipball/9680c1fbae709d3affd8e57630d1d7e3377a9469",
|
421 |
+
"reference": "9680c1fbae709d3affd8e57630d1d7e3377a9469",
|
422 |
"shasum": ""
|
423 |
},
|
424 |
"require": {
|
428 |
"phpunit/phpunit": "6.5.14",
|
429 |
"woocommerce/woocommerce-sniffs": "0.0.6"
|
430 |
},
|
431 |
+
"time": "2020-07-01T09:31:37+00:00",
|
432 |
"type": "wordpress-plugin",
|
433 |
"installation-source": "dist",
|
434 |
"autoload": {
|
450 |
"description": "Trustbadge Reviews for WooCommerce.",
|
451 |
"homepage": "https://github.com/vendidero/woocommerce-trusted-shops",
|
452 |
"support": {
|
453 |
+
"source": "https://github.com/vendidero/woocommerce-trusted-shops/tree/v4.0.7",
|
454 |
"issues": "https://github.com/vendidero/woocommerce-trusted-shops/issues"
|
455 |
}
|
456 |
}
|
woocommerce-germanized.php
CHANGED
@@ -3,13 +3,13 @@
|
|
3 |
* Plugin Name: Germanized for WooCommerce
|
4 |
* Plugin URI: https://www.vendidero.de/woocommerce-germanized
|
5 |
* Description: Germanized for WooCommerce extends WooCommerce to become a legally compliant store in the german market.
|
6 |
-
* Version: 3.1.
|
7 |
* Author: vendidero
|
8 |
* Author URI: https://vendidero.de
|
9 |
* Requires at least: 4.9
|
10 |
* Tested up to: 5.4
|
11 |
* WC requires at least: 3.4
|
12 |
-
* WC tested up to: 4.
|
13 |
*
|
14 |
* Text Domain: woocommerce-germanized
|
15 |
* Domain Path: /i18n/languages/
|
@@ -69,7 +69,7 @@ if ( ! class_exists( 'WooCommerce_Germanized' ) ) :
|
|
69 |
*
|
70 |
* @var string
|
71 |
*/
|
72 |
-
public $version = '3.1.
|
73 |
|
74 |
/**
|
75 |
* @var WooCommerce_Germanized $instance of the plugin
|
@@ -195,6 +195,11 @@ if ( ! class_exists( 'WooCommerce_Germanized' ) ) :
|
|
195 |
add_action( 'woocommerce_note_updated', array( $this, 'on_update_admin_note' ) );
|
196 |
add_filter( 'woocommerce_note_statuses', array( $this, 'add_note_statuses' ), 10 );
|
197 |
|
|
|
|
|
|
|
|
|
|
|
198 |
add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'action_links' ) );
|
199 |
add_action( 'after_setup_theme', array( $this, 'include_template_functions' ), 12 );
|
200 |
|
@@ -263,7 +268,6 @@ if ( ! class_exists( 'WooCommerce_Germanized' ) ) :
|
|
263 |
add_action( 'wp_print_scripts', array( $this, 'localize_scripts' ), 5 );
|
264 |
add_action( 'wp_print_footer_scripts', array( $this, 'localize_scripts' ), 5 );
|
265 |
|
266 |
-
add_filter( 'woocommerce_email_classes', array( $this, 'add_emails' ), 1 );
|
267 |
add_filter( 'woocommerce_locate_core_template', array( $this, 'email_templates' ), 0, 3 );
|
268 |
add_action( 'woocommerce_email_order_meta', array( $this, 'email_small_business_notice' ), 1 );
|
269 |
|
@@ -839,10 +843,7 @@ if ( ! class_exists( 'WooCommerce_Germanized' ) ) :
|
|
839 |
global $post;
|
840 |
|
841 |
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
|
842 |
-
$assets_path =
|
843 |
-
'http:',
|
844 |
-
'https:'
|
845 |
-
), '', WC_germanized()->plugin_url() ) . '/assets/';
|
846 |
$frontend_script_path = $assets_path . 'js/';
|
847 |
|
848 |
wp_register_script( 'wc-gzd-revocation', $frontend_script_path . 'revocation' . $suffix . '.js', array(
|
@@ -924,11 +925,10 @@ if ( ! class_exists( 'WooCommerce_Germanized' ) ) :
|
|
924 |
public function localize_scripts() {
|
925 |
global $wp;
|
926 |
|
927 |
-
|
928 |
-
|
929 |
-
if ( wp_script_is( 'wc-gzd-revocation' ) && ! in_array( 'wc-gzd-revocation', $this->localized_scripts ) ) {
|
930 |
|
931 |
$this->localized_scripts[] = 'wc-gzd-revocation';
|
|
|
932 |
|
933 |
/**
|
934 |
* Filters script localization paramaters for the `wc-gzd-revocation` script.
|
@@ -936,12 +936,11 @@ if ( ! class_exists( 'WooCommerce_Germanized' ) ) :
|
|
936 |
* @param array $params Key => value array containing parameter name and value.
|
937 |
*
|
938 |
* @since 1.0.0
|
939 |
-
*
|
940 |
*/
|
941 |
wp_localize_script( 'wc-gzd-revocation', 'wc_gzd_revocation_params', apply_filters( 'wc_gzd_revocation_params', array(
|
942 |
'ajax_url' => WC()->ajax_url(),
|
943 |
'wc_ajax_url' => WC_AJAX::get_endpoint( "%%endpoint%%" ),
|
944 |
-
'ajax_loader_url' => apply_filters( 'woocommerce_ajax_loader_url', $
|
945 |
) ) );
|
946 |
}
|
947 |
|
@@ -1017,12 +1016,9 @@ if ( ! class_exists( 'WooCommerce_Germanized' ) ) :
|
|
1017 |
*
|
1018 |
* This hook fires after Germanized has localized it's scripts.
|
1019 |
*
|
1020 |
-
* @param string $assets_path The absolute URL to the plugins assets.
|
1021 |
-
*
|
1022 |
* @since 1.0.0
|
1023 |
-
*
|
1024 |
*/
|
1025 |
-
do_action( 'woocommerce_gzd_localized_scripts'
|
1026 |
}
|
1027 |
|
1028 |
/**
|
3 |
* Plugin Name: Germanized for WooCommerce
|
4 |
* Plugin URI: https://www.vendidero.de/woocommerce-germanized
|
5 |
* Description: Germanized for WooCommerce extends WooCommerce to become a legally compliant store in the german market.
|
6 |
+
* Version: 3.1.10
|
7 |
* Author: vendidero
|
8 |
* Author URI: https://vendidero.de
|
9 |
* Requires at least: 4.9
|
10 |
* Tested up to: 5.4
|
11 |
* WC requires at least: 3.4
|
12 |
+
* WC tested up to: 4.3
|
13 |
*
|
14 |
* Text Domain: woocommerce-germanized
|
15 |
* Domain Path: /i18n/languages/
|
69 |
*
|
70 |
* @var string
|
71 |
*/
|
72 |
+
public $version = '3.1.10';
|
73 |
|
74 |
/**
|
75 |
* @var WooCommerce_Germanized $instance of the plugin
|
195 |
add_action( 'woocommerce_note_updated', array( $this, 'on_update_admin_note' ) );
|
196 |
add_filter( 'woocommerce_note_statuses', array( $this, 'add_note_statuses' ), 10 );
|
197 |
|
198 |
+
/**
|
199 |
+
* Make sure to add emails globally.
|
200 |
+
*/
|
201 |
+
add_filter( 'woocommerce_email_classes', array( $this, 'add_emails' ), 1 );
|
202 |
+
|
203 |
add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'action_links' ) );
|
204 |
add_action( 'after_setup_theme', array( $this, 'include_template_functions' ), 12 );
|
205 |
|
268 |
add_action( 'wp_print_scripts', array( $this, 'localize_scripts' ), 5 );
|
269 |
add_action( 'wp_print_footer_scripts', array( $this, 'localize_scripts' ), 5 );
|
270 |
|
|
|
271 |
add_filter( 'woocommerce_locate_core_template', array( $this, 'email_templates' ), 0, 3 );
|
272 |
add_action( 'woocommerce_email_order_meta', array( $this, 'email_small_business_notice' ), 1 );
|
273 |
|
843 |
global $post;
|
844 |
|
845 |
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
|
846 |
+
$assets_path = WC_germanized()->plugin_url() . '/assets/';
|
|
|
|
|
|
|
847 |
$frontend_script_path = $assets_path . 'js/';
|
848 |
|
849 |
wp_register_script( 'wc-gzd-revocation', $frontend_script_path . 'revocation' . $suffix . '.js', array(
|
925 |
public function localize_scripts() {
|
926 |
global $wp;
|
927 |
|
928 |
+
if ( wp_script_is( 'wc-gzd-revocation' ) && ! in_array( 'wc-gzd-revocation', $this->localized_scripts ) && function_exists( 'WC' ) ) {
|
|
|
|
|
929 |
|
930 |
$this->localized_scripts[] = 'wc-gzd-revocation';
|
931 |
+
$wc_assets_path = str_replace( array( 'http:', 'https:' ), '', WC()->plugin_url() ) . '/assets/';
|
932 |
|
933 |
/**
|
934 |
* Filters script localization paramaters for the `wc-gzd-revocation` script.
|
936 |
* @param array $params Key => value array containing parameter name and value.
|
937 |
*
|
938 |
* @since 1.0.0
|
|
|
939 |
*/
|
940 |
wp_localize_script( 'wc-gzd-revocation', 'wc_gzd_revocation_params', apply_filters( 'wc_gzd_revocation_params', array(
|
941 |
'ajax_url' => WC()->ajax_url(),
|
942 |
'wc_ajax_url' => WC_AJAX::get_endpoint( "%%endpoint%%" ),
|
943 |
+
'ajax_loader_url' => apply_filters( 'woocommerce_ajax_loader_url', $wc_assets_path . 'images/wpspin-2x.gif' ),
|
944 |
) ) );
|
945 |
}
|
946 |
|
1016 |
*
|
1017 |
* This hook fires after Germanized has localized it's scripts.
|
1018 |
*
|
|
|
|
|
1019 |
* @since 1.0.0
|
|
|
1020 |
*/
|
1021 |
+
do_action( 'woocommerce_gzd_localized_scripts' );
|
1022 |
}
|
1023 |
|
1024 |
/**
|
wpml-config.xml
CHANGED
@@ -10,6 +10,7 @@
|
|
10 |
<custom-field action="copy">_sale_price_label</custom-field>
|
11 |
<custom-field action="copy">_sale_price_regular_label</custom-field>
|
12 |
<custom-field action="copy">_free_shipping</custom-field>
|
|
|
13 |
<custom-field action="translate">_mini_desc</custom-field>
|
14 |
<custom-field action="copy">_service</custom-field>
|
15 |
<custom-field action="copy">_differential_taxation</custom-field>
|
10 |
<custom-field action="copy">_sale_price_label</custom-field>
|
11 |
<custom-field action="copy">_sale_price_regular_label</custom-field>
|
12 |
<custom-field action="copy">_free_shipping</custom-field>
|
13 |
+
<custom-field action="copy">_min_age</custom-field>
|
14 |
<custom-field action="translate">_mini_desc</custom-field>
|
15 |
<custom-field action="copy">_service</custom-field>
|
16 |
<custom-field action="copy">_differential_taxation</custom-field>
|