Version Description
- Feature: Admin email notification for requested return shipments
- Improvement: Label PDF merger to respect size and orientation of individual labels
- Improvement: Prevent order item hook to run during post saving to prevent multiple shipment validations
- Improvement: Do not force invoice gateway description as default instruction
- Improvement: Email instance check for legal texts
- Fix: Default empty direct debit XML export variable
Fix: DHL surname vs givenName within ident check
Improvement: Added SKU display to admin for shipments/returns
Fix: Customer return label download permission
Fix: Store variation id in shipments instead of parent product id
Download this release
Release Info
Developer | vendidero |
Plugin | WooCommerce Germanized |
Version | 3.2.2 |
Comparing to | |
See all releases |
Code changes from version 3.2.1 to 3.2.2
- assets/css/layout.css +8 -1
- assets/css/layout.min.css +1 -1
- assets/css/layout.scss +10 -0
- assets/js/admin/settings.min.js +1 -1
- i18n/languages/woocommerce-germanized-de_DE.mo +0 -0
- i18n/languages/woocommerce-germanized-de_DE.po +176 -132
- i18n/languages/woocommerce-germanized-de_DE_formal.mo +0 -0
- i18n/languages/woocommerce-germanized-de_DE_formal.po +177 -127
- includes/admin/class-wc-gzd-admin.php +0 -1
- includes/class-wc-gzd-coupon-helper.php +27 -0
- includes/class-wc-gzd-dependencies.php +11 -1
- includes/class-wc-gzd-emails.php +50 -78
- includes/class-wc-gzd-payment-gateways.php +4 -0
- includes/class-wc-gzd-shortcodes.php +1 -1
- includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php +2 -10
- includes/gateways/invoice/class-wc-gzd-gateway-invoice.php +1 -1
- includes/wc-gzd-core-functions.php +46 -2
- packages/woocommerce-germanized-dhl/assets/js/admin-label.js +0 -1
- packages/woocommerce-germanized-dhl/assets/js/admin-label.min.js +1 -1
- packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php +2 -2
- packages/woocommerce-germanized-dhl/src/Package.php +1 -1
- packages/woocommerce-germanized-dhl/woocommerce-germanized-dhl.php +1 -1
- packages/woocommerce-germanized-shipments/assets/css/admin.css +1 -1
- packages/woocommerce-germanized-shipments/assets/css/admin.min.css +1 -1
- packages/woocommerce-germanized-shipments/assets/css/admin.scss +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/assets/js/admin-shipping-provider-method.js +2 -2
- packages/woocommerce-germanized-shipments/assets/js/admin-shipping-provider-method.min.js +1 -1
- packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php +216 -0
- packages/woocommerce-germanized-shipments/src/Admin/Table.php +1 -1
- packages/woocommerce-germanized-shipments/src/DataStores/ShipmentItem.php +4 -4
- packages/woocommerce-germanized-shipments/src/Emails.php +2 -1
- packages/woocommerce-germanized-shipments/src/PDFMerger.php +10 -2
- packages/woocommerce-germanized-shipments/src/Package.php +12 -1
- packages/woocommerce-germanized-shipments/src/ReturnShipment.php +0 -9
- packages/woocommerce-germanized-shipments/src/Shipment.php +16 -3
- packages/woocommerce-germanized-shipments/src/ShippingProvider.php +69 -44
- packages/woocommerce-germanized-shipments/src/Validation.php +11 -4
- packages/woocommerce-germanized-shipments/templates/emails/admin-new-return-shipment-request.php +60 -0
- packages/woocommerce-germanized-shipments/templates/emails/email-shipment-details.php +1 -1
- packages/woocommerce-germanized-shipments/templates/emails/plain/admin-new-return-shipment-request.php +41 -0
- packages/woocommerce-germanized-shipments/templates/emails/plain/email-shipment-details.php +1 -1
- packages/woocommerce-germanized-shipments/woocommerce-germanized-shipments.php +1 -1
- packages/woocommerce-trusted-shops/assets/js/admin.min.js +1 -1
- packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops.php +7 -1
- packages/woocommerce-trusted-shops/readme.txt +7 -3
- packages/woocommerce-trusted-shops/src/Package.php +1 -1
- packages/woocommerce-trusted-shops/templates/trusted-shops/thankyou.php +1 -1
- packages/woocommerce-trusted-shops/woocommerce-trusted-shops.php +2 -2
- 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 +3 -9
- wpml-config.xml +2 -2
assets/css/layout.css
CHANGED
@@ -140,4 +140,11 @@ table.product-details-inner tr td:last-child {
|
|
140 |
line-height: 1.5em; }
|
141 |
|
142 |
#shipping_parcelshop_post_number_field .optional {
|
143 |
-
display: none !important; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
line-height: 1.5em; }
|
141 |
|
142 |
#shipping_parcelshop_post_number_field .optional {
|
143 |
+
display: none !important; }
|
144 |
+
|
145 |
+
/**
|
146 |
+
* Twenty Twenty
|
147 |
+
*/
|
148 |
+
.theme-twentytwenty form.woocommerce-checkout #order_review_heading {
|
149 |
+
width: 100%;
|
150 |
+
padding-left: 0; }
|
assets/css/layout.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
#order_review .legal{text-align:left;padding:0 1em 0 0;float:left}#order_review .legal label{display:inline}.woocommerce-checkout .shop_table{background-color:#eee}.includes_tax,.tax_label{display:none!important}.wc-gzd-small-business-includes-tax{display:inline!important;font-size:.9em;padding-left:3px}#order_review_heading{display:none}.woocommerce-checkout .shop_table tr td p{margin-bottom:0}.woocommerce-checkout .shop_table td,.woocommerce-checkout .shop_table th{line-height:1.5}.shop_table .product-name-inner,.shop_table .product-name-inner tr td{border:none;padding:0;margin:0}.shop_table .product-name-inner tr td:last-child{text-align:right}.cart_totals .wc-gzd-additional-wrapper{text-align:right}.cart_totals p.wc-gzd-additional-info{font-size:.8em;width:60%;border-top:1px solid #ccc;padding-top:.5rem;display:inline-block}.entry-content .woocommerce #payment{margin-bottom:1em}.woocommerce #payment .wc-terms-and-conditions{display:none!important}.entry-content .woocommerce .checkout-btn-wrap{text-align:right}.woocommerce-checkout p.direct-debit-checkbox{display:none}.unit-price-cart{font-size:.9em;display:block;margin-top:5px}.product_list_widget .wc-gzd-additional-info,.products .wc-gzd-additional-info{font-size:.8em;margin:.7rem 0 .7rem 0;padding:0}.product_list_widget .wc-gzd-additional-info,.product_list_widget p.price-unit{margin:.2rem 0;line-height:1.8em}.product_list_widget .wc-gzd-additional-info a{display:inline!important}.product_list_widget .price-unit,.products .product .price-unit{font-size:.8em}.product_list_widget .price-unit{margin-bottom:.7em}.product p.wc-gzd-additional-info{margin-bottom:.5rem;font-size:.9em;clear:left}.product .product_meta{margin-top:1rem}p.footer-info{text-align:center;font-size:.9em;padding-bottom:.5rem}.wc-gzd-item-desc p{font-size:.9em}.wc-gzd-edit-data-notice{background:#eee;display:inline-block;padding:1em}.wc-gzd-edit-data-notice p.wc-gzd-info{margin:0;padding:0}table.product-details-inner{table-layout:fixed;margin:0;padding:0}table.product-details-inner,table.product-details-inner td,table.product-details-inner tr{padding-top:0;padding-bottom:0;margin-top:0;margin-bottom:0;border:none;background:0 0}table.product-details-inner tr td:last-child{text-align:right}.wc-gzd-product-name-left,.wc-gzd-product-name-right{float:left}.wc-gzd-product-name-left{max-width:15%;margin-right:1em}#eKomiSeal_default img{width:100%!important;height:100%!important}.wc-gzd-parcel-finder-open-button{display:inline;margin-left:5px}#order_review .blockMsg{line-height:1.5em}#shipping_parcelshop_post_number_field .optional{display:none!important}
|
1 |
+
#order_review .legal{text-align:left;padding:0 1em 0 0;float:left}#order_review .legal label{display:inline}.woocommerce-checkout .shop_table{background-color:#eee}.includes_tax,.tax_label{display:none!important}.wc-gzd-small-business-includes-tax{display:inline!important;font-size:.9em;padding-left:3px}#order_review_heading{display:none}.woocommerce-checkout .shop_table tr td p{margin-bottom:0}.woocommerce-checkout .shop_table td,.woocommerce-checkout .shop_table th{line-height:1.5}.shop_table .product-name-inner,.shop_table .product-name-inner tr td{border:none;padding:0;margin:0}.shop_table .product-name-inner tr td:last-child{text-align:right}.cart_totals .wc-gzd-additional-wrapper{text-align:right}.cart_totals p.wc-gzd-additional-info{font-size:.8em;width:60%;border-top:1px solid #ccc;padding-top:.5rem;display:inline-block}.entry-content .woocommerce #payment{margin-bottom:1em}.woocommerce #payment .wc-terms-and-conditions{display:none!important}.entry-content .woocommerce .checkout-btn-wrap{text-align:right}.woocommerce-checkout p.direct-debit-checkbox{display:none}.unit-price-cart{font-size:.9em;display:block;margin-top:5px}.product_list_widget .wc-gzd-additional-info,.products .wc-gzd-additional-info{font-size:.8em;margin:.7rem 0 .7rem 0;padding:0}.product_list_widget .wc-gzd-additional-info,.product_list_widget p.price-unit{margin:.2rem 0;line-height:1.8em}.product_list_widget .wc-gzd-additional-info a{display:inline!important}.product_list_widget .price-unit,.products .product .price-unit{font-size:.8em}.product_list_widget .price-unit{margin-bottom:.7em}.product p.wc-gzd-additional-info{margin-bottom:.5rem;font-size:.9em;clear:left}.product .product_meta{margin-top:1rem}p.footer-info{text-align:center;font-size:.9em;padding-bottom:.5rem}.wc-gzd-item-desc p{font-size:.9em}.wc-gzd-edit-data-notice{background:#eee;display:inline-block;padding:1em}.wc-gzd-edit-data-notice p.wc-gzd-info{margin:0;padding:0}table.product-details-inner{table-layout:fixed;margin:0;padding:0}table.product-details-inner,table.product-details-inner td,table.product-details-inner tr{padding-top:0;padding-bottom:0;margin-top:0;margin-bottom:0;border:none;background:0 0}table.product-details-inner tr td:last-child{text-align:right}.wc-gzd-product-name-left,.wc-gzd-product-name-right{float:left}.wc-gzd-product-name-left{max-width:15%;margin-right:1em}#eKomiSeal_default img{width:100%!important;height:100%!important}.wc-gzd-parcel-finder-open-button{display:inline;margin-left:5px}#order_review .blockMsg{line-height:1.5em}#shipping_parcelshop_post_number_field .optional{display:none!important}.theme-twentytwenty form.woocommerce-checkout #order_review_heading{width:100%;padding-left:0}
|
assets/css/layout.scss
CHANGED
@@ -146,4 +146,14 @@ table.product-details-inner tr td:last-child {
|
|
146 |
}
|
147 |
#shipping_parcelshop_post_number_field .optional {
|
148 |
display: none !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
}
|
146 |
}
|
147 |
#shipping_parcelshop_post_number_field .optional {
|
148 |
display: none !important;
|
149 |
+
}
|
150 |
+
|
151 |
+
/**
|
152 |
+
* Twenty Twenty
|
153 |
+
*/
|
154 |
+
.theme-twentytwenty {
|
155 |
+
form.woocommerce-checkout #order_review_heading {
|
156 |
+
width: 100%;
|
157 |
+
padding-left: 0;
|
158 |
+
}
|
159 |
}
|
assets/js/admin/settings.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
window.germanized=window.germanized||{},function(h,s){s.settings={params:{},init:function(){var e=this;this.params=wc_gzd_admin_settings_params;try{h(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)}h(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),h(document.body).on("woocommerce_gzd_setting_field_visible",this.onShowField).on("woocommerce_gzd_setting_field_invisible",this.onHideField),h(".wc-gzd-admin-settings :input").trigger("gzd_show_or_hide_fields"),h("input[name=woocommerce_gzd_dispute_resolution_type]:checked").trigger("change"),this.initMailSortable(),h(document.body).on("init_tooltips",function(){e.initTipTips()}),e.initTipTip()},initTipTip:function(){h(".wc-gzd-setting-tab-actions a.button").tipTip({fadeIn:50,fadeOut:50,delay:200})},onChangeTabStatus:function(){var e=h(this),t=s.settings,i=e.data("tab"),o=e.parents("td").find(".woocommerce-gzd-input-toggle"),n=o.parents("a"),e=e.is(":checked")?"yes":"no",i={action:"woocommerce_gzd_toggle_tab_enabled",security:t.params.tab_toggle_nonce,enable:e,tab:i};return o.addClass("woocommerce-input-toggle--loading"),h.ajax({url:t.params.ajax_url,data:i,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&&(h(".wc-gzd-setting-tabs").before('<div class="error inline" id="message"><p>'+e.message+"</p></div>"),h("html, body").animate({scrollTop:h("#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,i,o){t.parents("table").find(":input[data-show_if_"+i+"]").each(function(){h(this).trigger("gzd_show_or_hide_fields")})},onHideField:function(e,t,i,o){t.parents("table").find(":input[data-show_if_"+i+"]").each(function(){h(this).trigger("gzd_show_or_hide_fields")})},onChangeInput:function(){h(this).parents("tr").find(":input:not(.select2-focusser, .select2-input)").each(function(){var l,g,e,t=h(this),m=!1,i=h(this).attr("name");(t.is(":checked")||t.is(":selected"))&&(m=!0,t.parents("tr").is(":visible")||(m=!1)),void 0!==i&&!1!==i&&(l=i.replace(/[\[\]']+/g,""),g=t.val(),i=h(".wc-gzd-admin-settings").find(":input[data-show_if_"+l+"]"),t.is(":checkbox")&&(g=t.is(":checked")?"yes":"no",t.parents("tr").is(":visible")||(g="no")),i.each(function(){var e,t,i=h(this).data("show_if_"+l),o=h(this).data(),n=h(this).val(),s=h(this).attr("name").replace(/[\[\]']+/g,""),a=h(this).parents("tr"),c=!1,d=a.hasClass("wc-gzd-setting-visible"),r=[];for(e in o)
|
1 |
+
window.germanized=window.germanized||{},function(h,s){s.settings={params:{},init:function(){var e=this;this.params=wc_gzd_admin_settings_params;try{h(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)}h(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),h(document.body).on("woocommerce_gzd_setting_field_visible",this.onShowField).on("woocommerce_gzd_setting_field_invisible",this.onHideField),h(".wc-gzd-admin-settings :input").trigger("gzd_show_or_hide_fields"),h("input[name=woocommerce_gzd_dispute_resolution_type]:checked").trigger("change"),this.initMailSortable(),h(document.body).on("init_tooltips",function(){e.initTipTips()}),e.initTipTip()},initTipTip:function(){h(".wc-gzd-setting-tab-actions a.button").tipTip({fadeIn:50,fadeOut:50,delay:200})},onChangeTabStatus:function(){var e=h(this),t=s.settings,i=e.data("tab"),o=e.parents("td").find(".woocommerce-gzd-input-toggle"),n=o.parents("a"),e=e.is(":checked")?"yes":"no",i={action:"woocommerce_gzd_toggle_tab_enabled",security:t.params.tab_toggle_nonce,enable:e,tab:i};return o.addClass("woocommerce-input-toggle--loading"),h.ajax({url:t.params.ajax_url,data:i,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&&(h(".wc-gzd-setting-tabs").before('<div class="error inline" id="message"><p>'+e.message+"</p></div>"),h("html, body").animate({scrollTop:h("#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,i,o){t.parents("table").find(":input[data-show_if_"+i+"]").each(function(){h(this).trigger("gzd_show_or_hide_fields")})},onHideField:function(e,t,i,o){t.parents("table").find(":input[data-show_if_"+i+"]").each(function(){h(this).trigger("gzd_show_or_hide_fields")})},onChangeInput:function(){h(this).parents("tr").find(":input:not(.select2-focusser, .select2-input)").each(function(){var l,g,e,t=h(this),m=!1,i=h(this).attr("name");(t.is(":checked")||t.is(":selected"))&&(m=!0,t.parents("tr").is(":visible")||(m=!1)),void 0!==i&&!1!==i&&(l=i.replace(/[\[\]']+/g,""),g=t.val(),i=h(".wc-gzd-admin-settings").find(":input[data-show_if_"+l+"]"),t.is(":checkbox")&&(g=t.is(":checked")?"yes":"no",t.parents("tr").is(":visible")||(g="no")),i.each(function(){var e,t,i=h(this).data("show_if_"+l),o=h(this).data(),n=h(this).val(),s=h(this).attr("name").replace(/[\[\]']+/g,""),a=h(this).parents("tr"),c=!1,d=a.hasClass("wc-gzd-setting-visible"),r=[];for(e in o)o.hasOwnProperty(e)&&"show_if_"===e.substring(0,8)&&(t=e.replace("show_if_",""),r[h(".wc-gzd-admin-settings").find(":input#"+t).index(":input")]=t);1<(r=r.filter(function(){return!0})).length&&(d||(d=r.slice(-1)[0],l!==d?(c=!0,h(":input#"+d).parents("tr").is(":visible")&&h(".wc-gzd-admin-settings").find(":input#"+d).trigger("gzd_show_or_hide_fields")):h(":input#"+d).parents("tr").is(":visible")||(console.log(d),console.log(a),a.addClass("wc-gzd-setting-invisible"),h(document.body).trigger("woocommerce_gzd_setting_field_invisible",[a,s,n]),c=!0))),c||(a.removeClass("wc-gzd-setting-visible wc-gzd-setting-invisible"),void 0!==i&&0<i.length?g===i?(a.addClass("wc-gzd-setting-visible"),h(document.body).trigger("woocommerce_gzd_setting_field_visible",[a,s,n])):(a.addClass("wc-gzd-setting-invisible"),h(document.body).trigger("woocommerce_gzd_setting_field_invisible",[a,s,n])):m?(a.addClass("wc-gzd-setting-visible"),h(document.body).trigger("woocommerce_gzd_setting_field_visible",[a,s,n])):(a.addClass("wc-gzd-setting-invisible"),h(document.body).trigger("woocommerce_gzd_setting_field_invisible",[a,s,n])))}),i=h(this).parents(".form-table"),e=!1,i.find("tr").each(function(){if(!h(this).hasClass("wc-gzd-setting-invisible"))return!(e=!0)}),e?i.show():i.hide())})},onEnhancedSelectInit:function(){h(":input.wc-gzd-enhanced-tags").filter(":not(.enhanced)").each(function(){var e={minimumResultsForSearch:10,allowClear:!!h(this).data("allow_clear"),placeholder:h(this).data("placeholder"),tags:!0};h(this).selectWoo(e).addClass("enhanced")})},onParcelDeliveryShowSpecial:function(){"shipping_methods"===h(this).val()?h("select#woocommerce_gzd_checkboxes_parcel_delivery_show_shipping_methods").parents("tr").show():h("select#woocommerce_gzd_checkboxes_parcel_delivery_show_shipping_methods").parents("tr").hide()},onChangeDisputeResolutionType:function(){var e=h(this).val();h("#woocommerce_gzd_alternative_complaints_text_"+e);h("[id^=woocommerce_gzd_alternative_complaints_text_]").parents("tr").hide(),h("#woocommerce_gzd_alternative_complaints_text_"+e).parents("tr").show()},onInputToogleClick:function(){var e=h(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<h("#woocommerce_gzd_mail_attach_imprint").length&&(o=h("#woocommerce_gzd_mail_attach_imprint").parents("table"),h(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=[];h(o).find("tr select").each(function(){i.push(h(this).attr("id").replace("woocommerce_gzd_mail_attach_",""))}),h("#woocommerce_gzd_mail_attach_order").val(i.join())}}))}},h(document).ready(function(){s.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"
|
@@ -2485,14 +2485,14 @@ msgstr "Speichern"
|
|
2485 |
#: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:11
|
2486 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:22
|
2487 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:686
|
2488 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
2489 |
msgctxt "shipments"
|
2490 |
msgid "Title"
|
2491 |
msgstr "Titel"
|
2492 |
|
2493 |
# @ woocommerce-germanized
|
2494 |
#: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:12
|
2495 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
2496 |
msgctxt "shipments"
|
2497 |
msgid "Description"
|
2498 |
msgstr "Beschreibung"
|
@@ -2733,6 +2733,41 @@ msgctxt "shipments"
|
|
2733 |
msgid "Choose which format of email to send."
|
2734 |
msgstr "Format für E-Mail-Versand auswählen."
|
2735 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2736 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:68
|
2737 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1025
|
2738 |
msgctxt "shipments"
|
@@ -2821,8 +2856,8 @@ msgstr "Fehler beim Erstellen der Sendungsinstanz"
|
|
2821 |
|
2822 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:413
|
2823 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:417
|
2824 |
-
#: woocommerce-germanized-shipments/src/ReturnShipment.php:
|
2825 |
-
#: woocommerce-germanized-shipments/src/ReturnShipment.php:
|
2826 |
#: woocommerce-germanized-shipments/src/SimpleShipment.php:118
|
2827 |
#: woocommerce-germanized-shipments/src/SimpleShipment.php:202
|
2828 |
msgctxt "shipments"
|
@@ -3981,8 +4016,8 @@ msgctxt "shipments"
|
|
3981 |
msgid "Sorry, this order is invalid and cannot be returned."
|
3982 |
msgstr "Sorry, diese Bestellung existiert nicht."
|
3983 |
|
3984 |
-
#: woocommerce-germanized-shipments/src/ReturnShipment.php:
|
3985 |
-
#: woocommerce-germanized-shipments/src/Shipment.php:
|
3986 |
#, php-format
|
3987 |
msgctxt "full name"
|
3988 |
msgid "%1$s %2$s"
|
@@ -4002,34 +4037,34 @@ msgstr ""
|
|
4002 |
"die Paketverfolgungsdaten zum Zeitpunkt des Erhalts dieser E-Mail noch nicht "
|
4003 |
"den neuesten Stand wiedergeben."
|
4004 |
|
4005 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4006 |
#, php-format
|
4007 |
msgctxt "shipments"
|
4008 |
msgid "%s supports many more options. Explore %s."
|
4009 |
msgstr "%s unterstützt viele weitere Einstellungen. Schau dir %s an."
|
4010 |
|
4011 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4012 |
#, php-format
|
4013 |
msgctxt "shipments"
|
4014 |
msgid "%s specific settings"
|
4015 |
msgstr "%s spezifische Einstellungen"
|
4016 |
|
4017 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4018 |
msgctxt "shipments"
|
4019 |
msgid "Choose a title for the shipping provider."
|
4020 |
msgstr "Wähle einen Titel für den Versanddienstleister."
|
4021 |
|
4022 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4023 |
msgctxt "shipments"
|
4024 |
msgid "Choose a description for the shipping provider."
|
4025 |
msgstr "Wähle eine Beschreibung für den Versanddienstleister."
|
4026 |
|
4027 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4028 |
msgctxt "shipments"
|
4029 |
msgid "Tracking URL"
|
4030 |
msgstr "Sendungsverfolgung URL"
|
4031 |
|
4032 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4033 |
#, php-format
|
4034 |
msgctxt "shipments"
|
4035 |
msgid ""
|
@@ -4043,12 +4078,12 @@ msgstr ""
|
|
4043 |
"einzufügen: %s"
|
4044 |
|
4045 |
# @ woocommerce-germanized
|
4046 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4047 |
msgctxt "shipments"
|
4048 |
msgid "Tracking description"
|
4049 |
msgstr "Sendungsverfolgung Hinweis"
|
4050 |
|
4051 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4052 |
#, php-format
|
4053 |
msgctxt "shipments"
|
4054 |
msgid ""
|
@@ -4063,17 +4098,17 @@ msgstr ""
|
|
4063 |
"einzufügen: %s"
|
4064 |
|
4065 |
# @ woocommerce-germanized
|
4066 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4067 |
msgctxt "shipments"
|
4068 |
msgid "Customer returns"
|
4069 |
msgstr "Rücksendungen"
|
4070 |
|
4071 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4072 |
msgctxt "shipments"
|
4073 |
msgid "Allow customers to submit return requests to shipments."
|
4074 |
msgstr "Erlaube Kunden eine Rücksendung zu einer Sendung zu beantragen."
|
4075 |
|
4076 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4077 |
#, php-format
|
4078 |
msgctxt "shipments"
|
4079 |
msgid ""
|
@@ -4087,27 +4122,27 @@ msgstr ""
|
|
4087 |
"Gästen zu erfahren, lese bitte die %s."
|
4088 |
|
4089 |
# @ woocommerce-germanized
|
4090 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4091 |
msgctxt "shipments"
|
4092 |
msgid "Return Dashboard"
|
4093 |
msgstr "Retouren-Dashboard"
|
4094 |
|
4095 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4096 |
msgctxt "shipments"
|
4097 |
msgid "docs"
|
4098 |
msgstr "Dokumentation"
|
4099 |
|
4100 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4101 |
msgctxt "shipments"
|
4102 |
msgid "Guest returns"
|
4103 |
msgstr "Retouren für Gäste"
|
4104 |
|
4105 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4106 |
msgctxt "shipments"
|
4107 |
msgid "Allow guests to submit return requests to shipments."
|
4108 |
msgstr "Erlaube Gästen Rücksendeanträge zu Bestellungen zu beantragen."
|
4109 |
|
4110 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4111 |
#, php-format
|
4112 |
msgctxt "shipments"
|
4113 |
msgid ""
|
@@ -4121,18 +4156,18 @@ msgstr ""
|
|
4121 |
"Rücksende-Formular für Gäste auf deiner Seite zu platzieren."
|
4122 |
|
4123 |
# @ woocommerce-germanized
|
4124 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4125 |
msgctxt "shipments"
|
4126 |
msgid "Manual confirmation"
|
4127 |
msgstr "Manuelle Bestätigung"
|
4128 |
|
4129 |
# @ woocommerce-germanized
|
4130 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4131 |
msgctxt "shipments"
|
4132 |
msgid "Return requests need manual confirmation."
|
4133 |
msgstr "Rücksendeanträge benötigen eine manuelle Bestätigung."
|
4134 |
|
4135 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4136 |
msgctxt "shipments"
|
4137 |
msgid ""
|
4138 |
"By default return request need manual confirmation e.g. a shop manager needs "
|
@@ -4149,12 +4184,12 @@ msgstr ""
|
|
4149 |
"Mail-Bestätigung samt Retouren-Label."
|
4150 |
|
4151 |
# @ woocommerce-germanized
|
4152 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4153 |
msgctxt "shipments"
|
4154 |
msgid "Return instructions"
|
4155 |
msgstr "Rücksende-Anweisungen"
|
4156 |
|
4157 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4158 |
msgctxt "shipments"
|
4159 |
msgid ""
|
4160 |
"Provide your customer with instructions on how to return the shipment after "
|
@@ -4206,6 +4241,13 @@ msgctxt "shipments"
|
|
4206 |
msgid "%s return instructions"
|
4207 |
msgstr "%s Rücksende-Anweisungen"
|
4208 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4209 |
#: woocommerce-germanized-shipments/templates/emails/customer-guest-return-shipment-request.php:27
|
4210 |
#: woocommerce-germanized-shipments/templates/emails/customer-return-shipment-delivered.php:27
|
4211 |
#: woocommerce-germanized-shipments/templates/emails/customer-return-shipment.php:27
|
@@ -4311,6 +4353,13 @@ msgctxt "shipments"
|
|
4311 |
msgid "Details to your %s"
|
4312 |
msgstr "Details zu deiner %s"
|
4313 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4314 |
# @ woocommerce-germanized
|
4315 |
#: woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:54
|
4316 |
#: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:35
|
@@ -4520,7 +4569,7 @@ msgstr "l"
|
|
4520 |
# @ woocommerce-germanized
|
4521 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:549
|
4522 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:559
|
4523 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
4524 |
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:546
|
4525 |
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:554
|
4526 |
msgid "incl. VAT"
|
@@ -4533,7 +4582,7 @@ msgstr "exkl. MwSt."
|
|
4533 |
|
4534 |
# @ woocommerce-germanized
|
4535 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:551
|
4536 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
4537 |
#, php-format
|
4538 |
msgid "incl. %s%% VAT"
|
4539 |
msgstr "inkl. %s %% MwSt."
|
@@ -4777,7 +4826,7 @@ msgstr "Germanize"
|
|
4777 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:73
|
4778 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:141
|
4779 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:79
|
4780 |
-
#: woocommerce-germanized/woocommerce-germanized.php:
|
4781 |
msgid "Settings"
|
4782 |
msgstr "Einstellungen"
|
4783 |
|
@@ -6533,7 +6582,7 @@ msgstr ""
|
|
6533 |
"Platzhalter für den höchsten Preis."
|
6534 |
|
6535 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:294
|
6536 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
6537 |
msgid "{min_price} – {max_price}"
|
6538 |
msgstr "{min_price} – {max_price}"
|
6539 |
|
@@ -7414,7 +7463,7 @@ msgstr "Name"
|
|
7414 |
#: woocommerce-germanized/includes/admin/settings/views/html-admin-page-checkboxes.php:12
|
7415 |
#: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:29
|
7416 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:800
|
7417 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7418 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:124
|
7419 |
msgid "Description"
|
7420 |
msgstr "Beschreibung"
|
@@ -7822,7 +7871,7 @@ msgstr "Aktiviert via DOI?"
|
|
7822 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:160
|
7823 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:159
|
7824 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:39
|
7825 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7826 |
#: woocommerce-germanized/includes/gateways/direct-debit/views/html-export.php:30
|
7827 |
msgid "Direct Debit"
|
7828 |
msgstr "Lastschrift"
|
@@ -7834,9 +7883,9 @@ msgstr "Lastschrift"
|
|
7834 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:117
|
7835 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:166
|
7836 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:117
|
7837 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7838 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7839 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7840 |
msgid "Account Holder"
|
7841 |
msgstr "Kontoinhaber"
|
7842 |
|
@@ -7847,10 +7896,10 @@ msgstr "Kontoinhaber"
|
|
7847 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:118
|
7848 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:167
|
7849 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:124
|
7850 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7851 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7852 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7853 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7854 |
msgid "IBAN"
|
7855 |
msgstr "IBAN"
|
7856 |
|
@@ -7861,9 +7910,9 @@ msgstr "IBAN"
|
|
7861 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:119
|
7862 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:168
|
7863 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:131
|
7864 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7865 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7866 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7867 |
msgid "BIC/SWIFT"
|
7868 |
msgstr "BIC/SWIFT"
|
7869 |
|
@@ -7874,7 +7923,7 @@ msgstr "Paketdienstleister Datenweitergabe"
|
|
7874 |
# @ woocommerce-germanized
|
7875 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:179
|
7876 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:138
|
7877 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7878 |
msgid "Mandate Reference ID"
|
7879 |
msgstr "Mandat-Referenznummer"
|
7880 |
|
@@ -8103,7 +8152,7 @@ msgstr ""
|
|
8103 |
# @ woocommerce-germanized
|
8104 |
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:921
|
8105 |
#: woocommerce-germanized/includes/class-wc-gzd-revocation.php:52
|
8106 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
8107 |
msgid "Mr."
|
8108 |
msgstr "Herr"
|
8109 |
|
@@ -8113,11 +8162,11 @@ msgctxt "customer-title-male-address"
|
|
8113 |
msgid "Mr."
|
8114 |
msgstr "Herrn"
|
8115 |
|
8116 |
-
#: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:
|
8117 |
msgid "Is voucher?"
|
8118 |
msgstr "Wertgutschein?"
|
8119 |
|
8120 |
-
#: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:
|
8121 |
#, php-format
|
8122 |
msgid ""
|
8123 |
"Whether or not this coupon is a voucher which has been sold to a customer "
|
@@ -8174,20 +8223,20 @@ msgstr "Abgelaufener Aktivierungscode"
|
|
8174 |
msgid "Invalid activation key"
|
8175 |
msgstr "Aktivierungscode ungültig"
|
8176 |
|
8177 |
-
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:
|
8178 |
msgid "BCC recipients"
|
8179 |
msgstr "BCC Empfänger"
|
8180 |
|
8181 |
-
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:
|
8182 |
msgid "Enter blind-copy recipients (comma separated) for this email."
|
8183 |
msgstr "Füge Empfänger (kommasepariert) einer Blindkopie für diese E-Mail ein."
|
8184 |
|
8185 |
# @ woocommerce-germanized
|
8186 |
-
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:
|
8187 |
msgid "Confirmation text"
|
8188 |
msgstr "Bestätigung Text"
|
8189 |
|
8190 |
-
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:
|
8191 |
msgid ""
|
8192 |
"Your order has been received and is now being processed. Your order details "
|
8193 |
"are shown below for your reference:"
|
@@ -8196,7 +8245,7 @@ msgstr ""
|
|
8196 |
"deiner Bestellung kannst du der nachfolgenden Tabelle entnehmen:"
|
8197 |
|
8198 |
# @ woocommerce-germanized
|
8199 |
-
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:
|
8200 |
msgid ""
|
8201 |
"This text will be inserted within the order confirmation email. Use "
|
8202 |
"{order_number}, {site_title} or {order_date} as placeholder."
|
@@ -8204,7 +8253,7 @@ msgstr ""
|
|
8204 |
"Dieser Text wird in die Bestellbestätigung eingefügt. Verwende "
|
8205 |
"{order_number}, {site_title} oder {order_date} als Platzhalter."
|
8206 |
|
8207 |
-
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:
|
8208 |
msgid ""
|
8209 |
"Your order has been received and is now being processed. Your order details "
|
8210 |
"are shown below for your reference."
|
@@ -8212,18 +8261,18 @@ msgstr ""
|
|
8212 |
"Deine Bestellung ist eingegangen und wird nun bearbeitet. Die Einzelheiten "
|
8213 |
"deiner Bestellung kannst du der nachfolgenden Tabelle entnehmen."
|
8214 |
|
8215 |
-
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:
|
8216 |
msgid "Someone requested a password reset for your account."
|
8217 |
msgstr ""
|
8218 |
"Jemand hat das Zurücksetzen des Passworts für deinen Account beantragt."
|
8219 |
|
8220 |
-
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:
|
8221 |
#, php-format
|
8222 |
msgid "Thanks for creating an account on %s."
|
8223 |
msgstr "Danke, dass du ein Konto bei %s erstellt hast."
|
8224 |
|
8225 |
# @ woocommerce-germanized
|
8226 |
-
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:
|
8227 |
msgctxt "revocation-form"
|
8228 |
msgid "Forward your Revocation online"
|
8229 |
msgstr "Deinen Widerruf online erklären"
|
@@ -8486,7 +8535,7 @@ msgstr ""
|
|
8486 |
|
8487 |
# @ woocommerce-germanized
|
8488 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:215
|
8489 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
8490 |
msgid "I hereby agree to the {link}direct debit mandate{/link}."
|
8491 |
msgstr "Hiermit erteile ich das {link}SEPA Lastschriftmandat{/link}."
|
8492 |
|
@@ -8610,14 +8659,14 @@ msgid "Choose where to display your checkbox."
|
|
8610 |
msgstr "Wähle einen Ort aus, an dem die Checkbox platziert werden soll."
|
8611 |
|
8612 |
# @ woocommerce-germanized
|
8613 |
-
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:
|
8614 |
-
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:
|
8615 |
#, php-format
|
8616 |
msgid "%s payment charge"
|
8617 |
msgstr "%s Zahlungsgebühr"
|
8618 |
|
8619 |
# @ woocommerce-germanized
|
8620 |
-
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:
|
8621 |
#: woocommerce-germanized/includes/wc-gzd-order-functions.php:35
|
8622 |
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:472
|
8623 |
#, php-format
|
@@ -8625,12 +8674,12 @@ msgid "Plus %s forwarding fee (charged by the transport agent)"
|
|
8625 |
msgstr "Zzgl. %s Übermittlungsentgelt (direkt an den Zusteller)"
|
8626 |
|
8627 |
# @ woocommerce-germanized
|
8628 |
-
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:
|
8629 |
msgid "Fee"
|
8630 |
msgstr "Zahlungsgebühr"
|
8631 |
|
8632 |
# @ woocommerce-germanized
|
8633 |
-
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:
|
8634 |
msgid ""
|
8635 |
"This fee is being added if customer selects payment method within checkout."
|
8636 |
msgstr ""
|
@@ -8638,22 +8687,22 @@ msgstr ""
|
|
8638 |
"Zahlungsart aktiviert."
|
8639 |
|
8640 |
# @ woocommerce-germanized
|
8641 |
-
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:
|
8642 |
msgid "Fee is taxable?"
|
8643 |
msgstr "Mwst. berechnen?"
|
8644 |
|
8645 |
# @ woocommerce-germanized
|
8646 |
-
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:
|
8647 |
msgid "Check if fee is taxable."
|
8648 |
msgstr "MwSt.-Berechnung für Gebühr aktivieren."
|
8649 |
|
8650 |
# @ woocommerce-germanized
|
8651 |
-
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:
|
8652 |
msgid "Forwarding Fee"
|
8653 |
msgstr "Übermittlungsentgelt"
|
8654 |
|
8655 |
# @ woocommerce-germanized
|
8656 |
-
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:
|
8657 |
msgid ""
|
8658 |
"Forwarding fee will be charged by the transport agent in addition to the "
|
8659 |
"cash of delivery fee e.g. DHL - tax free."
|
@@ -8662,7 +8711,7 @@ msgstr ""
|
|
8662 |
"kassiert - z.B. DHL (steuerfrei)."
|
8663 |
|
8664 |
# @ woocommerce-germanized
|
8665 |
-
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:
|
8666 |
msgid "Payment charge"
|
8667 |
msgstr "Zahlungsgebühr"
|
8668 |
|
@@ -8882,8 +8931,8 @@ msgstr "Anrede"
|
|
8882 |
|
8883 |
# @ woocommerce-germanized
|
8884 |
#: woocommerce-germanized/includes/class-wc-gzd-revocation.php:53
|
8885 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
8886 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
8887 |
msgid "Ms."
|
8888 |
msgstr "Frau"
|
8889 |
|
@@ -9258,16 +9307,16 @@ msgid "SEPA XML Export"
|
|
9258 |
msgstr "SEPA XML Export"
|
9259 |
|
9260 |
# @ woocommerce-germanized
|
9261 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9262 |
#, php-format
|
9263 |
msgid "Order %s"
|
9264 |
msgstr "Bestellung %s"
|
9265 |
|
9266 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9267 |
msgid "Will be notified separately"
|
9268 |
msgstr "Wird separat mitgeteilt"
|
9269 |
|
9270 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9271 |
#, php-format
|
9272 |
msgid ""
|
9273 |
"We will debit %s from your account by direct debit on or shortly after %s."
|
@@ -9276,105 +9325,105 @@ msgstr ""
|
|
9276 |
"%s ein."
|
9277 |
|
9278 |
# @ woocommerce-germanized
|
9279 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9280 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9281 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9282 |
msgid "a single payment"
|
9283 |
msgstr "eine einmalige Zahlung"
|
9284 |
|
9285 |
# @ woocommerce-germanized
|
9286 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9287 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:111
|
9288 |
msgid "Enable/Disable"
|
9289 |
msgstr "Aktivieren/Deaktivieren"
|
9290 |
|
9291 |
# @ woocommerce-germanized
|
9292 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9293 |
msgid "Enable Direct Debit Payment"
|
9294 |
msgstr "Bezahlung per Lastschrift aktivieren"
|
9295 |
|
9296 |
# @ woocommerce-germanized
|
9297 |
# @ woocommerce
|
9298 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9299 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:117
|
9300 |
msgctxt "gateway"
|
9301 |
msgid "Title"
|
9302 |
msgstr "Bezeichnung"
|
9303 |
|
9304 |
# @ woocommerce-germanized
|
9305 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9306 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:119
|
9307 |
msgid "This controls the title which the user sees during checkout."
|
9308 |
msgstr ""
|
9309 |
"Beschreibungstext, den Benutzer bei der Auswahl dieser Zahlungsart sehen."
|
9310 |
|
9311 |
# @ woocommerce-germanized
|
9312 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9313 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:126
|
9314 |
msgid "Payment method description that the customer will see on your checkout."
|
9315 |
msgstr "Beschreibung der Zahlungsart, die Kunden auf deiner Website sehen."
|
9316 |
|
9317 |
# @ woocommerce-germanized
|
9318 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9319 |
msgid "The order amount will be debited directly from your bank account."
|
9320 |
msgstr ""
|
9321 |
"Der Gesamtbestellbetrag wird per SEPA-Lastschrift direkt von deinem Konto "
|
9322 |
"abgebucht."
|
9323 |
|
9324 |
# @ woocommerce-germanized
|
9325 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9326 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:131
|
9327 |
msgid "Instructions"
|
9328 |
msgstr "Anweisungen"
|
9329 |
|
9330 |
# @ woocommerce-germanized
|
9331 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9332 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:133
|
9333 |
msgid "Instructions that will be added to the thank you page and emails."
|
9334 |
msgstr "Anweisung, die zur „Danke“-Seite und zu E-Mails hinzugefügt werden."
|
9335 |
|
9336 |
# @ woocommerce-germanized
|
9337 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9338 |
msgid "Debtee"
|
9339 |
msgstr "Gläubiger Informationen"
|
9340 |
|
9341 |
# @ woocommerce-germanized
|
9342 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9343 |
msgid "Insert your company information."
|
9344 |
msgstr "Füge hier die Informationen zu deinem Unternehmen ein."
|
9345 |
|
9346 |
# @ woocommerce-germanized
|
9347 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9348 |
msgid "Company Inc, John Doe Street, New York"
|
9349 |
msgstr "Musterfirma GmbH, Musterstraße 12, 12203 Musterstadt"
|
9350 |
|
9351 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9352 |
msgid "Insert the bank account holder name."
|
9353 |
msgstr "Füge hier den Namen des Kontoinhabers ein."
|
9354 |
|
9355 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9356 |
msgid "Company Inc"
|
9357 |
msgstr "Muster GmbH"
|
9358 |
|
9359 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9360 |
msgid "Insert the bank account IBAN."
|
9361 |
msgstr "Füge hier den IBAN deines Kontos ein."
|
9362 |
|
9363 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9364 |
msgid "BIC"
|
9365 |
msgstr "BIC"
|
9366 |
|
9367 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9368 |
msgid "Insert the bank account BIC."
|
9369 |
msgstr "Füge hier den BIC deines Kontos ein."
|
9370 |
|
9371 |
# @ woocommerce-germanized
|
9372 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9373 |
msgid "Debtee identification number"
|
9374 |
msgstr "Identifikationsnummer"
|
9375 |
|
9376 |
# @ woocommerce-germanized
|
9377 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9378 |
#, php-format
|
9379 |
msgid ""
|
9380 |
"Insert your debtee indentification number. More information can be found <a "
|
@@ -9384,16 +9433,16 @@ msgstr ""
|
|
9384 |
"Weitere Informationen zu dieser Nummer erhältst du <a href=\"%s\">hier</a>."
|
9385 |
|
9386 |
# @ woocommerce-germanized
|
9387 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9388 |
msgid "Generate Mandate ID"
|
9389 |
msgstr "Mandat-Referenz generieren"
|
9390 |
|
9391 |
# @ woocommerce-germanized
|
9392 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9393 |
msgid "Automatically generate Mandate ID."
|
9394 |
msgstr "Mandat-Referenznummer automatisch generieren."
|
9395 |
|
9396 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9397 |
msgid ""
|
9398 |
"Automatically generate Mandate ID after order completion (based on Order ID)."
|
9399 |
msgstr ""
|
@@ -9401,11 +9450,11 @@ msgstr ""
|
|
9401 |
"basierend auf der Bestellnummer."
|
9402 |
|
9403 |
# @ woocommerce-germanized
|
9404 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9405 |
msgid "XML Pain Format"
|
9406 |
msgstr "XML Pain Format"
|
9407 |
|
9408 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9409 |
msgid ""
|
9410 |
"You may adjust the XML Export Pain Schema to your banks needs. Some banks "
|
9411 |
"may require pain.001.003.03."
|
@@ -9414,11 +9463,11 @@ msgstr ""
|
|
9414 |
"Banken benötigen z.B. pain.001.003.03."
|
9415 |
|
9416 |
# @ woocommerce-germanized
|
9417 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9418 |
msgid "Mandate ID Format"
|
9419 |
msgstr "Mandat-Referenz Format"
|
9420 |
|
9421 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9422 |
msgid ""
|
9423 |
"You may extend the Mandate ID format by adding a prefix and/or suffix. Use "
|
9424 |
"{id} as placeholder to insert the automatically generated ID."
|
@@ -9427,12 +9476,12 @@ msgstr ""
|
|
9427 |
"{id} als Platzhalter um die automatisch generierte Referenznummer einzufügen."
|
9428 |
|
9429 |
# @ woocommerce-germanized
|
9430 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9431 |
msgid "Mandate Text"
|
9432 |
msgstr "Lastschriftmandat"
|
9433 |
|
9434 |
# @ woocommerce-germanized
|
9435 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9436 |
msgid ""
|
9437 |
"This text will be populated with live order/checkout data. Will be used as "
|
9438 |
"preview direct debit mandate and as email template text."
|
@@ -9443,28 +9492,28 @@ msgstr ""
|
|
9443 |
"Verfügung gestellt."
|
9444 |
|
9445 |
# @ woocommerce-germanized
|
9446 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9447 |
msgid "Checkbox"
|
9448 |
msgstr "Checkbox"
|
9449 |
|
9450 |
# @ woocommerce-germanized
|
9451 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9452 |
msgid "Enable \"agree to SEPA mandate\" checkbox"
|
9453 |
msgstr "Aktiviere die Checkbox zur Bestätigung des Lastschriftmandates"
|
9454 |
|
9455 |
# @ woocommerce-germanized
|
9456 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9457 |
msgid "Enable a checkbox linking to a SEPA direct debit mandate preview."
|
9458 |
msgstr ""
|
9459 |
"Aktiviere eine Checkbox, die zu einer Vorschau des Lastschrift-Mandats führt."
|
9460 |
|
9461 |
# @ woocommerce-germanized
|
9462 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9463 |
msgid "Checkbox label"
|
9464 |
msgstr "Checkbox Text"
|
9465 |
|
9466 |
# @ woocommerce-germanized
|
9467 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9468 |
msgid ""
|
9469 |
"Customize the checkbox label. Use {link}link name{/link} to insert the "
|
9470 |
"preview link."
|
@@ -9472,17 +9521,17 @@ msgstr ""
|
|
9472 |
"Passe den Checkbox Text an. Verwende {link}SEPA Lastschriftmandat{/link} um "
|
9473 |
"auf die Vorschau zu verlinken."
|
9474 |
|
9475 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9476 |
msgid "Enable pre-notification"
|
9477 |
msgstr "Vorankündigung aktivieren"
|
9478 |
|
9479 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9480 |
msgid "Insert pre-notification text within the order confirmation email."
|
9481 |
msgstr ""
|
9482 |
"Fügt einen Standard-Text zur Vorankündigung des SEPA-Einzugs in die "
|
9483 |
"Bestellbestätigung ein."
|
9484 |
|
9485 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9486 |
msgid ""
|
9487 |
"This option inserts a standard text containing a pre-notification for the "
|
9488 |
"customer."
|
@@ -9491,11 +9540,11 @@ msgstr ""
|
|
9491 |
"die Bestellbestätigung ein. In der Ankündigung wird u.a. ein konkreter "
|
9492 |
"Fälligkeitstermin genannt."
|
9493 |
|
9494 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9495 |
msgid "Debit days"
|
9496 |
msgstr "Fälligkeitstage"
|
9497 |
|
9498 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9499 |
msgid ""
|
9500 |
"This option is used to calculate the debit date and is added to the order "
|
9501 |
"date."
|
@@ -9505,15 +9554,15 @@ msgstr ""
|
|
9505 |
"hier eingestellten Anzahl Tage."
|
9506 |
|
9507 |
# @ woocommerce-germanized
|
9508 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9509 |
msgid "Mask IBAN"
|
9510 |
msgstr "IBAN maskieren"
|
9511 |
|
9512 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9513 |
msgid "Mask the IBAN within emails."
|
9514 |
msgstr "IBAN in E-Mails maskieren."
|
9515 |
|
9516 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9517 |
msgid ""
|
9518 |
"This will lead to masked IBANs within emails (replaced by *). All but last 4 "
|
9519 |
"digits will be masked."
|
@@ -9521,15 +9570,15 @@ msgstr ""
|
|
9521 |
"Der IBAN wird in E-Mails (abgesehen von den letzten 4 Stellen) mit * "
|
9522 |
"maskiert."
|
9523 |
|
9524 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9525 |
msgid "Remember"
|
9526 |
msgstr "Bankdaten merken"
|
9527 |
|
9528 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9529 |
msgid "Remember account data for returning customers."
|
9530 |
msgstr "Bankverbindung für registrierte Kunden speichern."
|
9531 |
|
9532 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9533 |
msgid "Save account data as user meta if user has/creates a customer account."
|
9534 |
msgstr ""
|
9535 |
"Speichert die Bankverbindung für registrierte Kunden in der user_meta "
|
@@ -9537,32 +9586,32 @@ msgstr ""
|
|
9537 |
"eigenständig aus."
|
9538 |
|
9539 |
# @ woocommerce-germanized
|
9540 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9541 |
msgid "Please insert your SEPA account data."
|
9542 |
msgstr "Bitte füge deine SEPA Kontoinformationen ein."
|
9543 |
|
9544 |
# @ woocommerce-germanized
|
9545 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9546 |
msgid "Your IBAN seems to be invalid."
|
9547 |
msgstr "Dein IBAN scheint nicht gültig zu sein."
|
9548 |
|
9549 |
# @ woocommerce-germanized
|
9550 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9551 |
msgid "Your IBAN's country code doesn’t match with your billing country."
|
9552 |
msgstr "Der Ländercode des IBANs stimmt nicht mit dem Rechnungsland überein."
|
9553 |
|
9554 |
# @ woocommerce-germanized
|
9555 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9556 |
msgid "Your BIC seems to be invalid."
|
9557 |
msgstr "Dein BIC/SWIFT scheint nicht gültig zu sein."
|
9558 |
|
9559 |
# @ woocommerce-germanized
|
9560 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9561 |
msgid "is invalid"
|
9562 |
msgstr "ist ungültig"
|
9563 |
|
9564 |
# @ woocommerce-germanized
|
9565 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9566 |
msgid "Awaiting Direct Debit Payment"
|
9567 |
msgstr "Zahlung per Lastschrift ausstehend"
|
9568 |
|
@@ -10127,7 +10176,7 @@ msgstr ""
|
|
10127 |
"Bitte <a href=\"%s\">deaktiviere</a> das Plugin und lerne in unserem <a href="
|
10128 |
"\"%s\" target=\"_blank\">Blog-Post</a> wie du das Plugin austauschen kannst."
|
10129 |
|
10130 |
-
#: woocommerce-germanized/woocommerce-germanized.php:
|
10131 |
msgid "Pease wait while we are trying to redirect you to the payment provider."
|
10132 |
msgstr "Einen Moment - wir versuchen dich zum Zahlungsanbieter weiterzuleiten."
|
10133 |
|
@@ -11857,11 +11906,6 @@ msgstr "https://vendidero.de"
|
|
11857 |
#~ msgid "Invalid shipment."
|
11858 |
#~ msgstr "Versand kostenlos?"
|
11859 |
|
11860 |
-
#, php-format
|
11861 |
-
#~ msgctxt "shipments"
|
11862 |
-
#~ msgid "%s #%s"
|
11863 |
-
#~ msgstr "%s #%s"
|
11864 |
-
|
11865 |
# @ woocommerce-germanized
|
11866 |
#, fuzzy
|
11867 |
#~| msgid "End Date"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce Germanized\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-10-23 11:54+0200\n"
|
6 |
+
"PO-Revision-Date: 2020-10-23 11:58+0200\n"
|
7 |
"Last-Translator: holzhannes <holzhannes@posteo.de>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE\n"
|
2485 |
#: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:11
|
2486 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:22
|
2487 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:686
|
2488 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:551
|
2489 |
msgctxt "shipments"
|
2490 |
msgid "Title"
|
2491 |
msgstr "Titel"
|
2492 |
|
2493 |
# @ woocommerce-germanized
|
2494 |
#: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:12
|
2495 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:560
|
2496 |
msgctxt "shipments"
|
2497 |
msgid "Description"
|
2498 |
msgstr "Beschreibung"
|
2733 |
msgid "Choose which format of email to send."
|
2734 |
msgstr "Format für E-Mail-Versand auswählen."
|
2735 |
|
2736 |
+
#: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:42
|
2737 |
+
msgctxt "shipments"
|
2738 |
+
msgid "New order return request"
|
2739 |
+
msgstr "Neuer Rücksendeantrag"
|
2740 |
+
|
2741 |
+
#: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:43
|
2742 |
+
msgctxt "shipments"
|
2743 |
+
msgid ""
|
2744 |
+
"New order return request emails are sent to chosen recipient(s) when a new "
|
2745 |
+
"return is requested."
|
2746 |
+
msgstr ""
|
2747 |
+
"Benachrichtigungen über neue Rücksendeanträge werden an diese Empfänger "
|
2748 |
+
"verschickt, sobald ein neuer Antrag gestellt wurde."
|
2749 |
+
|
2750 |
+
#: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:73
|
2751 |
+
msgctxt "shipments"
|
2752 |
+
msgid "[{site_title}]: New return request to #{order_number}"
|
2753 |
+
msgstr "[{site_title}]: Neuer Rücksendeantrag zu #{order_number}"
|
2754 |
+
|
2755 |
+
#: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:83
|
2756 |
+
msgctxt "shipments"
|
2757 |
+
msgid "New return request to: #{order_number}"
|
2758 |
+
msgstr "Neuer Rücksendeantrag zu: #{order_number}"
|
2759 |
+
|
2760 |
+
#: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:202
|
2761 |
+
msgctxt "shipments"
|
2762 |
+
msgid "Recipient(s)"
|
2763 |
+
msgstr "Empfänger"
|
2764 |
+
|
2765 |
+
#: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:205
|
2766 |
+
#, php-format
|
2767 |
+
msgctxt "shipments"
|
2768 |
+
msgid "Enter recipients (comma separated) for this email. Defaults to %s."
|
2769 |
+
msgstr "Füge Empfänger (kommasepariert) für diese E-Mail ein. Standard: %s."
|
2770 |
+
|
2771 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:68
|
2772 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1025
|
2773 |
msgctxt "shipments"
|
2856 |
|
2857 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:413
|
2858 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:417
|
2859 |
+
#: woocommerce-germanized-shipments/src/ReturnShipment.php:420
|
2860 |
+
#: woocommerce-germanized-shipments/src/ReturnShipment.php:480
|
2861 |
#: woocommerce-germanized-shipments/src/SimpleShipment.php:118
|
2862 |
#: woocommerce-germanized-shipments/src/SimpleShipment.php:202
|
2863 |
msgctxt "shipments"
|
4016 |
msgid "Sorry, this order is invalid and cannot be returned."
|
4017 |
msgstr "Sorry, diese Bestellung existiert nicht."
|
4018 |
|
4019 |
+
#: woocommerce-germanized-shipments/src/ReturnShipment.php:356
|
4020 |
+
#: woocommerce-germanized-shipments/src/Shipment.php:864
|
4021 |
#, php-format
|
4022 |
msgctxt "full name"
|
4023 |
msgid "%1$s %2$s"
|
4037 |
"die Paketverfolgungsdaten zum Zeitpunkt des Erhalts dieser E-Mail noch nicht "
|
4038 |
"den neuesten Stand wiedergeben."
|
4039 |
|
4040 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:539
|
4041 |
#, php-format
|
4042 |
msgctxt "shipments"
|
4043 |
msgid "%s supports many more options. Explore %s."
|
4044 |
msgstr "%s unterstützt viele weitere Einstellungen. Schau dir %s an."
|
4045 |
|
4046 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:539
|
4047 |
#, php-format
|
4048 |
msgctxt "shipments"
|
4049 |
msgid "%s specific settings"
|
4050 |
msgstr "%s spezifische Einstellungen"
|
4051 |
|
4052 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:552
|
4053 |
msgctxt "shipments"
|
4054 |
msgid "Choose a title for the shipping provider."
|
4055 |
msgstr "Wähle einen Titel für den Versanddienstleister."
|
4056 |
|
4057 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:561
|
4058 |
msgctxt "shipments"
|
4059 |
msgid "Choose a description for the shipping provider."
|
4060 |
msgstr "Wähle eine Beschreibung für den Versanddienstleister."
|
4061 |
|
4062 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:575
|
4063 |
msgctxt "shipments"
|
4064 |
msgid "Tracking URL"
|
4065 |
msgstr "Sendungsverfolgung URL"
|
4066 |
|
4067 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:576
|
4068 |
#, php-format
|
4069 |
msgctxt "shipments"
|
4070 |
msgid ""
|
4078 |
"einzufügen: %s"
|
4079 |
|
4080 |
# @ woocommerce-germanized
|
4081 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:586
|
4082 |
msgctxt "shipments"
|
4083 |
msgid "Tracking description"
|
4084 |
msgstr "Sendungsverfolgung Hinweis"
|
4085 |
|
4086 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:587
|
4087 |
#, php-format
|
4088 |
msgctxt "shipments"
|
4089 |
msgid ""
|
4098 |
"einzufügen: %s"
|
4099 |
|
4100 |
# @ woocommerce-germanized
|
4101 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:600
|
4102 |
msgctxt "shipments"
|
4103 |
msgid "Customer returns"
|
4104 |
msgstr "Rücksendungen"
|
4105 |
|
4106 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:601
|
4107 |
msgctxt "shipments"
|
4108 |
msgid "Allow customers to submit return requests to shipments."
|
4109 |
msgstr "Erlaube Kunden eine Rücksendung zu einer Sendung zu beantragen."
|
4110 |
|
4111 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:601
|
4112 |
#, php-format
|
4113 |
msgctxt "shipments"
|
4114 |
msgid ""
|
4122 |
"Gästen zu erfahren, lese bitte die %s."
|
4123 |
|
4124 |
# @ woocommerce-germanized
|
4125 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:601
|
4126 |
msgctxt "shipments"
|
4127 |
msgid "Return Dashboard"
|
4128 |
msgstr "Retouren-Dashboard"
|
4129 |
|
4130 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:601
|
4131 |
msgctxt "shipments"
|
4132 |
msgid "docs"
|
4133 |
msgstr "Dokumentation"
|
4134 |
|
4135 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:610
|
4136 |
msgctxt "shipments"
|
4137 |
msgid "Guest returns"
|
4138 |
msgstr "Retouren für Gäste"
|
4139 |
|
4140 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:611
|
4141 |
msgctxt "shipments"
|
4142 |
msgid "Allow guests to submit return requests to shipments."
|
4143 |
msgstr "Erlaube Gästen Rücksendeanträge zu Bestellungen zu beantragen."
|
4144 |
|
4145 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:611
|
4146 |
#, php-format
|
4147 |
msgctxt "shipments"
|
4148 |
msgid ""
|
4156 |
"Rücksende-Formular für Gäste auf deiner Seite zu platzieren."
|
4157 |
|
4158 |
# @ woocommerce-germanized
|
4159 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:622
|
4160 |
msgctxt "shipments"
|
4161 |
msgid "Manual confirmation"
|
4162 |
msgstr "Manuelle Bestätigung"
|
4163 |
|
4164 |
# @ woocommerce-germanized
|
4165 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:623
|
4166 |
msgctxt "shipments"
|
4167 |
msgid "Return requests need manual confirmation."
|
4168 |
msgstr "Rücksendeanträge benötigen eine manuelle Bestätigung."
|
4169 |
|
4170 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:623
|
4171 |
msgctxt "shipments"
|
4172 |
msgid ""
|
4173 |
"By default return request need manual confirmation e.g. a shop manager needs "
|
4184 |
"Mail-Bestätigung samt Retouren-Label."
|
4185 |
|
4186 |
# @ woocommerce-germanized
|
4187 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:635
|
4188 |
msgctxt "shipments"
|
4189 |
msgid "Return instructions"
|
4190 |
msgstr "Rücksende-Anweisungen"
|
4191 |
|
4192 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:636
|
4193 |
msgctxt "shipments"
|
4194 |
msgid ""
|
4195 |
"Provide your customer with instructions on how to return the shipment after "
|
4241 |
msgid "%s return instructions"
|
4242 |
msgstr "%s Rücksende-Anweisungen"
|
4243 |
|
4244 |
+
#: woocommerce-germanized-shipments/templates/emails/admin-new-return-shipment-request.php:30
|
4245 |
+
#: woocommerce-germanized-shipments/templates/emails/plain/admin-new-return-shipment-request.php:24
|
4246 |
+
#, php-format
|
4247 |
+
msgctxt "shipments"
|
4248 |
+
msgid "You’ve received the following return request from %s:"
|
4249 |
+
msgstr "Du hast den folgenden Rücksendeantrag von %s erhalten:"
|
4250 |
+
|
4251 |
#: woocommerce-germanized-shipments/templates/emails/customer-guest-return-shipment-request.php:27
|
4252 |
#: woocommerce-germanized-shipments/templates/emails/customer-return-shipment-delivered.php:27
|
4253 |
#: woocommerce-germanized-shipments/templates/emails/customer-return-shipment.php:27
|
4353 |
msgid "Details to your %s"
|
4354 |
msgstr "Details zu deiner %s"
|
4355 |
|
4356 |
+
#: woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:46
|
4357 |
+
#: woocommerce-germanized-shipments/templates/emails/plain/email-shipment-details.php:23
|
4358 |
+
#, php-format
|
4359 |
+
msgctxt "shipments"
|
4360 |
+
msgid "[%s #%s]"
|
4361 |
+
msgstr "[%s #%s]"
|
4362 |
+
|
4363 |
# @ woocommerce-germanized
|
4364 |
#: woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:54
|
4365 |
#: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:35
|
4569 |
# @ woocommerce-germanized
|
4570 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:549
|
4571 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:559
|
4572 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:448
|
4573 |
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:546
|
4574 |
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:554
|
4575 |
msgid "incl. VAT"
|
4582 |
|
4583 |
# @ woocommerce-germanized
|
4584 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:551
|
4585 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:448
|
4586 |
#, php-format
|
4587 |
msgid "incl. %s%% VAT"
|
4588 |
msgstr "inkl. %s %% MwSt."
|
4826 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:73
|
4827 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:141
|
4828 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:79
|
4829 |
+
#: woocommerce-germanized/woocommerce-germanized.php:859
|
4830 |
msgid "Settings"
|
4831 |
msgstr "Einstellungen"
|
4832 |
|
6582 |
"Platzhalter für den höchsten Preis."
|
6583 |
|
6584 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:294
|
6585 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:845
|
6586 |
msgid "{min_price} – {max_price}"
|
6587 |
msgstr "{min_price} – {max_price}"
|
6588 |
|
7463 |
#: woocommerce-germanized/includes/admin/settings/views/html-admin-page-checkboxes.php:12
|
7464 |
#: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:29
|
7465 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:800
|
7466 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:888
|
7467 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:124
|
7468 |
msgid "Description"
|
7469 |
msgstr "Beschreibung"
|
7871 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:160
|
7872 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:159
|
7873 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:39
|
7874 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:884
|
7875 |
#: woocommerce-germanized/includes/gateways/direct-debit/views/html-export.php:30
|
7876 |
msgid "Direct Debit"
|
7877 |
msgstr "Lastschrift"
|
7883 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:117
|
7884 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:166
|
7885 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:117
|
7886 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:600
|
7887 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:910
|
7888 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1056
|
7889 |
msgid "Account Holder"
|
7890 |
msgstr "Kontoinhaber"
|
7891 |
|
7896 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:118
|
7897 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:167
|
7898 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:124
|
7899 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:601
|
7900 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:918
|
7901 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1060
|
7902 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1190
|
7903 |
msgid "IBAN"
|
7904 |
msgstr "IBAN"
|
7905 |
|
7910 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:119
|
7911 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:168
|
7912 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:131
|
7913 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:602
|
7914 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1064
|
7915 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1191
|
7916 |
msgid "BIC/SWIFT"
|
7917 |
msgstr "BIC/SWIFT"
|
7918 |
|
7923 |
# @ woocommerce-germanized
|
7924 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:179
|
7925 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:138
|
7926 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:606
|
7927 |
msgid "Mandate Reference ID"
|
7928 |
msgstr "Mandat-Referenznummer"
|
7929 |
|
8152 |
# @ woocommerce-germanized
|
8153 |
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:921
|
8154 |
#: woocommerce-germanized/includes/class-wc-gzd-revocation.php:52
|
8155 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:599
|
8156 |
msgid "Mr."
|
8157 |
msgstr "Herr"
|
8158 |
|
8162 |
msgid "Mr."
|
8163 |
msgstr "Herrn"
|
8164 |
|
8165 |
+
#: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:314
|
8166 |
msgid "Is voucher?"
|
8167 |
msgstr "Wertgutschein?"
|
8168 |
|
8169 |
+
#: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:315
|
8170 |
#, php-format
|
8171 |
msgid ""
|
8172 |
"Whether or not this coupon is a voucher which has been sold to a customer "
|
8223 |
msgid "Invalid activation key"
|
8224 |
msgstr "Aktivierungscode ungültig"
|
8225 |
|
8226 |
+
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:166
|
8227 |
msgid "BCC recipients"
|
8228 |
msgstr "BCC Empfänger"
|
8229 |
|
8230 |
+
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:168
|
8231 |
msgid "Enter blind-copy recipients (comma separated) for this email."
|
8232 |
msgstr "Füge Empfänger (kommasepariert) einer Blindkopie für diese E-Mail ein."
|
8233 |
|
8234 |
# @ woocommerce-germanized
|
8235 |
+
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:207
|
8236 |
msgid "Confirmation text"
|
8237 |
msgstr "Bestätigung Text"
|
8238 |
|
8239 |
+
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:208
|
8240 |
msgid ""
|
8241 |
"Your order has been received and is now being processed. Your order details "
|
8242 |
"are shown below for your reference:"
|
8245 |
"deiner Bestellung kannst du der nachfolgenden Tabelle entnehmen:"
|
8246 |
|
8247 |
# @ woocommerce-germanized
|
8248 |
+
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:209
|
8249 |
msgid ""
|
8250 |
"This text will be inserted within the order confirmation email. Use "
|
8251 |
"{order_number}, {site_title} or {order_date} as placeholder."
|
8253 |
"Dieser Text wird in die Bestellbestätigung eingefügt. Verwende "
|
8254 |
"{order_number}, {site_title} oder {order_date} als Platzhalter."
|
8255 |
|
8256 |
+
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:327
|
8257 |
msgid ""
|
8258 |
"Your order has been received and is now being processed. Your order details "
|
8259 |
"are shown below for your reference."
|
8261 |
"Deine Bestellung ist eingegangen und wird nun bearbeitet. Die Einzelheiten "
|
8262 |
"deiner Bestellung kannst du der nachfolgenden Tabelle entnehmen."
|
8263 |
|
8264 |
+
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:375
|
8265 |
msgid "Someone requested a password reset for your account."
|
8266 |
msgstr ""
|
8267 |
"Jemand hat das Zurücksetzen des Passworts für deinen Account beantragt."
|
8268 |
|
8269 |
+
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:390
|
8270 |
#, php-format
|
8271 |
msgid "Thanks for creating an account on %s."
|
8272 |
msgstr "Danke, dass du ein Konto bei %s erstellt hast."
|
8273 |
|
8274 |
# @ woocommerce-germanized
|
8275 |
+
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:1073
|
8276 |
msgctxt "revocation-form"
|
8277 |
msgid "Forward your Revocation online"
|
8278 |
msgstr "Deinen Widerruf online erklären"
|
8535 |
|
8536 |
# @ woocommerce-germanized
|
8537 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:215
|
8538 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:975
|
8539 |
msgid "I hereby agree to the {link}direct debit mandate{/link}."
|
8540 |
msgstr "Hiermit erteile ich das {link}SEPA Lastschriftmandat{/link}."
|
8541 |
|
8659 |
msgstr "Wähle einen Ort aus, an dem die Checkbox platziert werden soll."
|
8660 |
|
8661 |
# @ woocommerce-germanized
|
8662 |
+
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:150
|
8663 |
+
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:206
|
8664 |
#, php-format
|
8665 |
msgid "%s payment charge"
|
8666 |
msgstr "%s Zahlungsgebühr"
|
8667 |
|
8668 |
# @ woocommerce-germanized
|
8669 |
+
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:153
|
8670 |
#: woocommerce-germanized/includes/wc-gzd-order-functions.php:35
|
8671 |
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:472
|
8672 |
#, php-format
|
8674 |
msgstr "Zzgl. %s Übermittlungsentgelt (direkt an den Zusteller)"
|
8675 |
|
8676 |
# @ woocommerce-germanized
|
8677 |
+
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:240
|
8678 |
msgid "Fee"
|
8679 |
msgstr "Zahlungsgebühr"
|
8680 |
|
8681 |
# @ woocommerce-germanized
|
8682 |
+
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:242
|
8683 |
msgid ""
|
8684 |
"This fee is being added if customer selects payment method within checkout."
|
8685 |
msgstr ""
|
8687 |
"Zahlungsart aktiviert."
|
8688 |
|
8689 |
# @ woocommerce-germanized
|
8690 |
+
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:248
|
8691 |
msgid "Fee is taxable?"
|
8692 |
msgstr "Mwst. berechnen?"
|
8693 |
|
8694 |
# @ woocommerce-germanized
|
8695 |
+
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:250
|
8696 |
msgid "Check if fee is taxable."
|
8697 |
msgstr "MwSt.-Berechnung für Gebühr aktivieren."
|
8698 |
|
8699 |
# @ woocommerce-germanized
|
8700 |
+
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:256
|
8701 |
msgid "Forwarding Fee"
|
8702 |
msgstr "Übermittlungsentgelt"
|
8703 |
|
8704 |
# @ woocommerce-germanized
|
8705 |
+
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:259
|
8706 |
msgid ""
|
8707 |
"Forwarding fee will be charged by the transport agent in addition to the "
|
8708 |
"cash of delivery fee e.g. DHL - tax free."
|
8711 |
"kassiert - z.B. DHL (steuerfrei)."
|
8712 |
|
8713 |
# @ woocommerce-germanized
|
8714 |
+
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:304
|
8715 |
msgid "Payment charge"
|
8716 |
msgstr "Zahlungsgebühr"
|
8717 |
|
8931 |
|
8932 |
# @ woocommerce-germanized
|
8933 |
#: woocommerce-germanized/includes/class-wc-gzd-revocation.php:53
|
8934 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:600
|
8935 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:617
|
8936 |
msgid "Ms."
|
8937 |
msgstr "Frau"
|
8938 |
|
9307 |
msgstr "SEPA XML Export"
|
9308 |
|
9309 |
# @ woocommerce-germanized
|
9310 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:501
|
9311 |
#, php-format
|
9312 |
msgid "Order %s"
|
9313 |
msgstr "Bestellung %s"
|
9314 |
|
9315 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:532
|
9316 |
msgid "Will be notified separately"
|
9317 |
msgstr "Wird separat mitgeteilt"
|
9318 |
|
9319 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:621
|
9320 |
#, php-format
|
9321 |
msgid ""
|
9322 |
"We will debit %s from your account by direct debit on or shortly after %s."
|
9325 |
"%s ein."
|
9326 |
|
9327 |
# @ woocommerce-germanized
|
9328 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:759
|
9329 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:791
|
9330 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:824
|
9331 |
msgid "a single payment"
|
9332 |
msgstr "eine einmalige Zahlung"
|
9333 |
|
9334 |
# @ woocommerce-germanized
|
9335 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:875
|
9336 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:111
|
9337 |
msgid "Enable/Disable"
|
9338 |
msgstr "Aktivieren/Deaktivieren"
|
9339 |
|
9340 |
# @ woocommerce-germanized
|
9341 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:877
|
9342 |
msgid "Enable Direct Debit Payment"
|
9343 |
msgstr "Bezahlung per Lastschrift aktivieren"
|
9344 |
|
9345 |
# @ woocommerce-germanized
|
9346 |
# @ woocommerce
|
9347 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:881
|
9348 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:117
|
9349 |
msgctxt "gateway"
|
9350 |
msgid "Title"
|
9351 |
msgstr "Bezeichnung"
|
9352 |
|
9353 |
# @ woocommerce-germanized
|
9354 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:883
|
9355 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:119
|
9356 |
msgid "This controls the title which the user sees during checkout."
|
9357 |
msgstr ""
|
9358 |
"Beschreibungstext, den Benutzer bei der Auswahl dieser Zahlungsart sehen."
|
9359 |
|
9360 |
# @ woocommerce-germanized
|
9361 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:890
|
9362 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:126
|
9363 |
msgid "Payment method description that the customer will see on your checkout."
|
9364 |
msgstr "Beschreibung der Zahlungsart, die Kunden auf deiner Website sehen."
|
9365 |
|
9366 |
# @ woocommerce-germanized
|
9367 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:891
|
9368 |
msgid "The order amount will be debited directly from your bank account."
|
9369 |
msgstr ""
|
9370 |
"Der Gesamtbestellbetrag wird per SEPA-Lastschrift direkt von deinem Konto "
|
9371 |
"abgebucht."
|
9372 |
|
9373 |
# @ woocommerce-germanized
|
9374 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:895
|
9375 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:131
|
9376 |
msgid "Instructions"
|
9377 |
msgstr "Anweisungen"
|
9378 |
|
9379 |
# @ woocommerce-germanized
|
9380 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:897
|
9381 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:133
|
9382 |
msgid "Instructions that will be added to the thank you page and emails."
|
9383 |
msgstr "Anweisung, die zur „Danke“-Seite und zu E-Mails hinzugefügt werden."
|
9384 |
|
9385 |
# @ woocommerce-germanized
|
9386 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:902
|
9387 |
msgid "Debtee"
|
9388 |
msgstr "Gläubiger Informationen"
|
9389 |
|
9390 |
# @ woocommerce-germanized
|
9391 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:904
|
9392 |
msgid "Insert your company information."
|
9393 |
msgstr "Füge hier die Informationen zu deinem Unternehmen ein."
|
9394 |
|
9395 |
# @ woocommerce-germanized
|
9396 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:906
|
9397 |
msgid "Company Inc, John Doe Street, New York"
|
9398 |
msgstr "Musterfirma GmbH, Musterstraße 12, 12203 Musterstadt"
|
9399 |
|
9400 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:912
|
9401 |
msgid "Insert the bank account holder name."
|
9402 |
msgstr "Füge hier den Namen des Kontoinhabers ein."
|
9403 |
|
9404 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:914
|
9405 |
msgid "Company Inc"
|
9406 |
msgstr "Muster GmbH"
|
9407 |
|
9408 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:920
|
9409 |
msgid "Insert the bank account IBAN."
|
9410 |
msgstr "Füge hier den IBAN deines Kontos ein."
|
9411 |
|
9412 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:925
|
9413 |
msgid "BIC"
|
9414 |
msgstr "BIC"
|
9415 |
|
9416 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:927
|
9417 |
msgid "Insert the bank account BIC."
|
9418 |
msgstr "Füge hier den BIC deines Kontos ein."
|
9419 |
|
9420 |
# @ woocommerce-germanized
|
9421 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:932
|
9422 |
msgid "Debtee identification number"
|
9423 |
msgstr "Identifikationsnummer"
|
9424 |
|
9425 |
# @ woocommerce-germanized
|
9426 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:934
|
9427 |
#, php-format
|
9428 |
msgid ""
|
9429 |
"Insert your debtee indentification number. More information can be found <a "
|
9433 |
"Weitere Informationen zu dieser Nummer erhältst du <a href=\"%s\">hier</a>."
|
9434 |
|
9435 |
# @ woocommerce-germanized
|
9436 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:938
|
9437 |
msgid "Generate Mandate ID"
|
9438 |
msgstr "Mandat-Referenz generieren"
|
9439 |
|
9440 |
# @ woocommerce-germanized
|
9441 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:940
|
9442 |
msgid "Automatically generate Mandate ID."
|
9443 |
msgstr "Mandat-Referenznummer automatisch generieren."
|
9444 |
|
9445 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:941
|
9446 |
msgid ""
|
9447 |
"Automatically generate Mandate ID after order completion (based on Order ID)."
|
9448 |
msgstr ""
|
9450 |
"basierend auf der Bestellnummer."
|
9451 |
|
9452 |
# @ woocommerce-germanized
|
9453 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:945
|
9454 |
msgid "XML Pain Format"
|
9455 |
msgstr "XML Pain Format"
|
9456 |
|
9457 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:947
|
9458 |
msgid ""
|
9459 |
"You may adjust the XML Export Pain Schema to your banks needs. Some banks "
|
9460 |
"may require pain.001.003.03."
|
9463 |
"Banken benötigen z.B. pain.001.003.03."
|
9464 |
|
9465 |
# @ woocommerce-germanized
|
9466 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:951
|
9467 |
msgid "Mandate ID Format"
|
9468 |
msgstr "Mandat-Referenz Format"
|
9469 |
|
9470 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:953
|
9471 |
msgid ""
|
9472 |
"You may extend the Mandate ID format by adding a prefix and/or suffix. Use "
|
9473 |
"{id} as placeholder to insert the automatically generated ID."
|
9476 |
"{id} als Platzhalter um die automatisch generierte Referenznummer einzufügen."
|
9477 |
|
9478 |
# @ woocommerce-germanized
|
9479 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:957
|
9480 |
msgid "Mandate Text"
|
9481 |
msgstr "Lastschriftmandat"
|
9482 |
|
9483 |
# @ woocommerce-germanized
|
9484 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:959
|
9485 |
msgid ""
|
9486 |
"This text will be populated with live order/checkout data. Will be used as "
|
9487 |
"preview direct debit mandate and as email template text."
|
9492 |
"Verfügung gestellt."
|
9493 |
|
9494 |
# @ woocommerce-germanized
|
9495 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:965
|
9496 |
msgid "Checkbox"
|
9497 |
msgstr "Checkbox"
|
9498 |
|
9499 |
# @ woocommerce-germanized
|
9500 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:966
|
9501 |
msgid "Enable \"agree to SEPA mandate\" checkbox"
|
9502 |
msgstr "Aktiviere die Checkbox zur Bestätigung des Lastschriftmandates"
|
9503 |
|
9504 |
# @ woocommerce-germanized
|
9505 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:968
|
9506 |
msgid "Enable a checkbox linking to a SEPA direct debit mandate preview."
|
9507 |
msgstr ""
|
9508 |
"Aktiviere eine Checkbox, die zu einer Vorschau des Lastschrift-Mandats führt."
|
9509 |
|
9510 |
# @ woocommerce-germanized
|
9511 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:972
|
9512 |
msgid "Checkbox label"
|
9513 |
msgstr "Checkbox Text"
|
9514 |
|
9515 |
# @ woocommerce-germanized
|
9516 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:974
|
9517 |
msgid ""
|
9518 |
"Customize the checkbox label. Use {link}link name{/link} to insert the "
|
9519 |
"preview link."
|
9521 |
"Passe den Checkbox Text an. Verwende {link}SEPA Lastschriftmandat{/link} um "
|
9522 |
"auf die Vorschau zu verlinken."
|
9523 |
|
9524 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:979
|
9525 |
msgid "Enable pre-notification"
|
9526 |
msgstr "Vorankündigung aktivieren"
|
9527 |
|
9528 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:980
|
9529 |
msgid "Insert pre-notification text within the order confirmation email."
|
9530 |
msgstr ""
|
9531 |
"Fügt einen Standard-Text zur Vorankündigung des SEPA-Einzugs in die "
|
9532 |
"Bestellbestätigung ein."
|
9533 |
|
9534 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:982
|
9535 |
msgid ""
|
9536 |
"This option inserts a standard text containing a pre-notification for the "
|
9537 |
"customer."
|
9540 |
"die Bestellbestätigung ein. In der Ankündigung wird u.a. ein konkreter "
|
9541 |
"Fälligkeitstermin genannt."
|
9542 |
|
9543 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:986
|
9544 |
msgid "Debit days"
|
9545 |
msgstr "Fälligkeitstage"
|
9546 |
|
9547 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:988
|
9548 |
msgid ""
|
9549 |
"This option is used to calculate the debit date and is added to the order "
|
9550 |
"date."
|
9554 |
"hier eingestellten Anzahl Tage."
|
9555 |
|
9556 |
# @ woocommerce-germanized
|
9557 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:992
|
9558 |
msgid "Mask IBAN"
|
9559 |
msgstr "IBAN maskieren"
|
9560 |
|
9561 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:993
|
9562 |
msgid "Mask the IBAN within emails."
|
9563 |
msgstr "IBAN in E-Mails maskieren."
|
9564 |
|
9565 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:995
|
9566 |
msgid ""
|
9567 |
"This will lead to masked IBANs within emails (replaced by *). All but last 4 "
|
9568 |
"digits will be masked."
|
9570 |
"Der IBAN wird in E-Mails (abgesehen von den letzten 4 Stellen) mit * "
|
9571 |
"maskiert."
|
9572 |
|
9573 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1005
|
9574 |
msgid "Remember"
|
9575 |
msgstr "Bankdaten merken"
|
9576 |
|
9577 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1006
|
9578 |
msgid "Remember account data for returning customers."
|
9579 |
msgstr "Bankverbindung für registrierte Kunden speichern."
|
9580 |
|
9581 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1008
|
9582 |
msgid "Save account data as user meta if user has/creates a customer account."
|
9583 |
msgstr ""
|
9584 |
"Speichert die Bankverbindung für registrierte Kunden in der user_meta "
|
9586 |
"eigenständig aus."
|
9587 |
|
9588 |
# @ woocommerce-germanized
|
9589 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1118
|
9590 |
msgid "Please insert your SEPA account data."
|
9591 |
msgstr "Bitte füge deine SEPA Kontoinformationen ein."
|
9592 |
|
9593 |
# @ woocommerce-germanized
|
9594 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1140
|
9595 |
msgid "Your IBAN seems to be invalid."
|
9596 |
msgstr "Dein IBAN scheint nicht gültig zu sein."
|
9597 |
|
9598 |
# @ woocommerce-germanized
|
9599 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1142
|
9600 |
msgid "Your IBAN's country code doesn’t match with your billing country."
|
9601 |
msgstr "Der Ländercode des IBANs stimmt nicht mit dem Rechnungsland überein."
|
9602 |
|
9603 |
# @ woocommerce-germanized
|
9604 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1147
|
9605 |
msgid "Your BIC seems to be invalid."
|
9606 |
msgstr "Dein BIC/SWIFT scheint nicht gültig zu sein."
|
9607 |
|
9608 |
# @ woocommerce-germanized
|
9609 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1192
|
9610 |
msgid "is invalid"
|
9611 |
msgstr "ist ungültig"
|
9612 |
|
9613 |
# @ woocommerce-germanized
|
9614 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1239
|
9615 |
msgid "Awaiting Direct Debit Payment"
|
9616 |
msgstr "Zahlung per Lastschrift ausstehend"
|
9617 |
|
10176 |
"Bitte <a href=\"%s\">deaktiviere</a> das Plugin und lerne in unserem <a href="
|
10177 |
"\"%s\" target=\"_blank\">Blog-Post</a> wie du das Plugin austauschen kannst."
|
10178 |
|
10179 |
+
#: woocommerce-germanized/woocommerce-germanized.php:1008
|
10180 |
msgid "Pease wait while we are trying to redirect you to the payment provider."
|
10181 |
msgstr "Einen Moment - wir versuchen dich zum Zahlungsanbieter weiterzuleiten."
|
10182 |
|
11906 |
#~ msgid "Invalid shipment."
|
11907 |
#~ msgstr "Versand kostenlos?"
|
11908 |
|
|
|
|
|
|
|
|
|
|
|
11909 |
# @ woocommerce-germanized
|
11910 |
#, fuzzy
|
11911 |
#~| msgid "End Date"
|
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"
|
@@ -2491,14 +2491,14 @@ msgstr "Speichern"
|
|
2491 |
#: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:11
|
2492 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:22
|
2493 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:686
|
2494 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
2495 |
msgctxt "shipments"
|
2496 |
msgid "Title"
|
2497 |
msgstr "Titel"
|
2498 |
|
2499 |
# @ woocommerce-germanized
|
2500 |
#: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:12
|
2501 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
2502 |
msgctxt "shipments"
|
2503 |
msgid "Description"
|
2504 |
msgstr "Beschreibung"
|
@@ -2739,6 +2739,42 @@ msgctxt "shipments"
|
|
2739 |
msgid "Choose which format of email to send."
|
2740 |
msgstr "Format für E-Mail-Versand auswählen."
|
2741 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2742 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:68
|
2743 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1025
|
2744 |
msgctxt "shipments"
|
@@ -2826,8 +2862,8 @@ msgstr "Fehler beim Erstellen der Sendungsinstanz"
|
|
2826 |
|
2827 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:413
|
2828 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:417
|
2829 |
-
#: woocommerce-germanized-shipments/src/ReturnShipment.php:
|
2830 |
-
#: woocommerce-germanized-shipments/src/ReturnShipment.php:
|
2831 |
#: woocommerce-germanized-shipments/src/SimpleShipment.php:118
|
2832 |
#: woocommerce-germanized-shipments/src/SimpleShipment.php:202
|
2833 |
msgctxt "shipments"
|
@@ -3974,8 +4010,8 @@ msgctxt "shipments"
|
|
3974 |
msgid "Sorry, this order is invalid and cannot be returned."
|
3975 |
msgstr "Sorry, diese Bestellung existiert nicht."
|
3976 |
|
3977 |
-
#: woocommerce-germanized-shipments/src/ReturnShipment.php:
|
3978 |
-
#: woocommerce-germanized-shipments/src/Shipment.php:
|
3979 |
#, php-format
|
3980 |
msgctxt "full name"
|
3981 |
msgid "%1$s %2$s"
|
@@ -3995,34 +4031,34 @@ msgstr ""
|
|
3995 |
"die Paketverfolgungsdaten zum Zeitpunkt des Erhalts dieser E-Mail noch nicht "
|
3996 |
"den neuesten Stand wiedergeben."
|
3997 |
|
3998 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
3999 |
#, php-format
|
4000 |
msgctxt "shipments"
|
4001 |
msgid "%s supports many more options. Explore %s."
|
4002 |
msgstr "%s unterstützt viele weitere Einstellungen. Schauen Sie sich %s an."
|
4003 |
|
4004 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4005 |
#, php-format
|
4006 |
msgctxt "shipments"
|
4007 |
msgid "%s specific settings"
|
4008 |
msgstr "%s spezifische Einstellungen"
|
4009 |
|
4010 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4011 |
msgctxt "shipments"
|
4012 |
msgid "Choose a title for the shipping provider."
|
4013 |
msgstr "Wählen Sie einen Titel für den Versanddienstleister."
|
4014 |
|
4015 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4016 |
msgctxt "shipments"
|
4017 |
msgid "Choose a description for the shipping provider."
|
4018 |
msgstr "Wählen Sie eine Beschreibung für den Versanddienstleister."
|
4019 |
|
4020 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4021 |
msgctxt "shipments"
|
4022 |
msgid "Tracking URL"
|
4023 |
msgstr "Sendungsverfolgung URL"
|
4024 |
|
4025 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4026 |
#, php-format
|
4027 |
msgctxt "shipments"
|
4028 |
msgid ""
|
@@ -4036,12 +4072,12 @@ msgstr ""
|
|
4036 |
"einzufügen: %s"
|
4037 |
|
4038 |
# @ woocommerce-germanized
|
4039 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4040 |
msgctxt "shipments"
|
4041 |
msgid "Tracking description"
|
4042 |
msgstr "Sendungsverfolgung Hinweis"
|
4043 |
|
4044 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4045 |
#, php-format
|
4046 |
msgctxt "shipments"
|
4047 |
msgid ""
|
@@ -4056,17 +4092,17 @@ msgstr ""
|
|
4056 |
"dynamische Daten einzufügen: %s"
|
4057 |
|
4058 |
# @ woocommerce-germanized
|
4059 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4060 |
msgctxt "shipments"
|
4061 |
msgid "Customer returns"
|
4062 |
msgstr "Rücksendungen"
|
4063 |
|
4064 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4065 |
msgctxt "shipments"
|
4066 |
msgid "Allow customers to submit return requests to shipments."
|
4067 |
msgstr "Erlauben Sie Kunden eine Rücksendung zu einer Sendung zu beantragen."
|
4068 |
|
4069 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4070 |
#, php-format
|
4071 |
msgctxt "shipments"
|
4072 |
msgid ""
|
@@ -4080,27 +4116,27 @@ msgstr ""
|
|
4080 |
"Gästen zu erfahren, lesen Sie bitte die %s."
|
4081 |
|
4082 |
# @ woocommerce-germanized
|
4083 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4084 |
msgctxt "shipments"
|
4085 |
msgid "Return Dashboard"
|
4086 |
msgstr "Retouren-Dashboard"
|
4087 |
|
4088 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4089 |
msgctxt "shipments"
|
4090 |
msgid "docs"
|
4091 |
msgstr "Dokumentation"
|
4092 |
|
4093 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4094 |
msgctxt "shipments"
|
4095 |
msgid "Guest returns"
|
4096 |
msgstr "Retouren für Gäste"
|
4097 |
|
4098 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4099 |
msgctxt "shipments"
|
4100 |
msgid "Allow guests to submit return requests to shipments."
|
4101 |
msgstr "Erlauben Sie Gästen Rücksendeanträge zu Bestellungen zu beantragen."
|
4102 |
|
4103 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4104 |
#, php-format
|
4105 |
msgctxt "shipments"
|
4106 |
msgid ""
|
@@ -4114,18 +4150,18 @@ msgstr ""
|
|
4114 |
"Rücksende-Formular für Gäste auf Ihrer Seite zu platzieren."
|
4115 |
|
4116 |
# @ woocommerce-germanized
|
4117 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4118 |
msgctxt "shipments"
|
4119 |
msgid "Manual confirmation"
|
4120 |
msgstr "Manuelle Bestätigung"
|
4121 |
|
4122 |
# @ woocommerce-germanized
|
4123 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4124 |
msgctxt "shipments"
|
4125 |
msgid "Return requests need manual confirmation."
|
4126 |
msgstr "Rücksendeanträge benötigen eine manuelle Bestätigung."
|
4127 |
|
4128 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4129 |
msgctxt "shipments"
|
4130 |
msgid ""
|
4131 |
"By default return request need manual confirmation e.g. a shop manager needs "
|
@@ -4142,12 +4178,12 @@ msgstr ""
|
|
4142 |
"Mail-Bestätigung samt Retouren-Label."
|
4143 |
|
4144 |
# @ woocommerce-germanized
|
4145 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4146 |
msgctxt "shipments"
|
4147 |
msgid "Return instructions"
|
4148 |
msgstr "Rücksende-Anweisungen"
|
4149 |
|
4150 |
-
#: woocommerce-germanized-shipments/src/ShippingProvider.php:
|
4151 |
msgctxt "shipments"
|
4152 |
msgid ""
|
4153 |
"Provide your customer with instructions on how to return the shipment after "
|
@@ -4200,6 +4236,13 @@ msgctxt "shipments"
|
|
4200 |
msgid "%s return instructions"
|
4201 |
msgstr "%s Rücksende-Anweisungen"
|
4202 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4203 |
#: woocommerce-germanized-shipments/templates/emails/customer-guest-return-shipment-request.php:27
|
4204 |
#: woocommerce-germanized-shipments/templates/emails/customer-return-shipment-delivered.php:27
|
4205 |
#: woocommerce-germanized-shipments/templates/emails/customer-return-shipment.php:27
|
@@ -4304,6 +4347,13 @@ msgctxt "shipments"
|
|
4304 |
msgid "Details to your %s"
|
4305 |
msgstr "Details zu Ihrer %s"
|
4306 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4307 |
# @ woocommerce-germanized
|
4308 |
#: woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:54
|
4309 |
#: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:35
|
@@ -4511,7 +4561,7 @@ msgstr "l"
|
|
4511 |
# @ woocommerce-germanized
|
4512 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:549
|
4513 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:559
|
4514 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
4515 |
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:546
|
4516 |
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:554
|
4517 |
msgid "incl. VAT"
|
@@ -4524,7 +4574,7 @@ msgstr "exkl. MwSt."
|
|
4524 |
|
4525 |
# @ woocommerce-germanized
|
4526 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:551
|
4527 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
4528 |
#, php-format
|
4529 |
msgid "incl. %s%% VAT"
|
4530 |
msgstr "inkl. %s %% MwSt."
|
@@ -4768,7 +4818,7 @@ msgstr "Germanize"
|
|
4768 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:73
|
4769 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:141
|
4770 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:79
|
4771 |
-
#: woocommerce-germanized/woocommerce-germanized.php:
|
4772 |
msgid "Settings"
|
4773 |
msgstr "Einstellungen"
|
4774 |
|
@@ -6528,7 +6578,7 @@ msgstr ""
|
|
6528 |
"Platzhalter für den höchsten Preis."
|
6529 |
|
6530 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:294
|
6531 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
6532 |
msgid "{min_price} – {max_price}"
|
6533 |
msgstr "{min_price} – {max_price}"
|
6534 |
|
@@ -7411,7 +7461,7 @@ msgstr "Name"
|
|
7411 |
#: woocommerce-germanized/includes/admin/settings/views/html-admin-page-checkboxes.php:12
|
7412 |
#: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:29
|
7413 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:800
|
7414 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7415 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:124
|
7416 |
msgid "Description"
|
7417 |
msgstr "Beschreibung"
|
@@ -7820,7 +7870,7 @@ msgstr "Aktiviert via DOI?"
|
|
7820 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:160
|
7821 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:159
|
7822 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:39
|
7823 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7824 |
#: woocommerce-germanized/includes/gateways/direct-debit/views/html-export.php:30
|
7825 |
msgid "Direct Debit"
|
7826 |
msgstr "Lastschrift"
|
@@ -7832,9 +7882,9 @@ msgstr "Lastschrift"
|
|
7832 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:117
|
7833 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:166
|
7834 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:117
|
7835 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7836 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7837 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7838 |
msgid "Account Holder"
|
7839 |
msgstr "Kontoinhaber"
|
7840 |
|
@@ -7845,10 +7895,10 @@ msgstr "Kontoinhaber"
|
|
7845 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:118
|
7846 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:167
|
7847 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:124
|
7848 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7849 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7850 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7851 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7852 |
msgid "IBAN"
|
7853 |
msgstr "IBAN"
|
7854 |
|
@@ -7859,9 +7909,9 @@ msgstr "IBAN"
|
|
7859 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:119
|
7860 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:168
|
7861 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:131
|
7862 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7863 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7864 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7865 |
msgid "BIC/SWIFT"
|
7866 |
msgstr "BIC/SWIFT"
|
7867 |
|
@@ -7872,7 +7922,7 @@ msgstr "Paketdienstleister Datenweitergabe"
|
|
7872 |
# @ woocommerce-germanized
|
7873 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:179
|
7874 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:138
|
7875 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
7876 |
msgid "Mandate Reference ID"
|
7877 |
msgstr "Mandat-Referenznummer"
|
7878 |
|
@@ -8101,7 +8151,7 @@ msgstr ""
|
|
8101 |
# @ woocommerce-germanized
|
8102 |
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:921
|
8103 |
#: woocommerce-germanized/includes/class-wc-gzd-revocation.php:52
|
8104 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
8105 |
msgid "Mr."
|
8106 |
msgstr "Herr"
|
8107 |
|
@@ -8111,11 +8161,11 @@ msgctxt "customer-title-male-address"
|
|
8111 |
msgid "Mr."
|
8112 |
msgstr "Herrn"
|
8113 |
|
8114 |
-
#: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:
|
8115 |
msgid "Is voucher?"
|
8116 |
msgstr "Wertgutschein?"
|
8117 |
|
8118 |
-
#: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:
|
8119 |
#, php-format
|
8120 |
msgid ""
|
8121 |
"Whether or not this coupon is a voucher which has been sold to a customer "
|
@@ -8174,21 +8224,21 @@ msgstr "Abgelaufener Aktivierungscode"
|
|
8174 |
msgid "Invalid activation key"
|
8175 |
msgstr "Aktivierungscode ungültig"
|
8176 |
|
8177 |
-
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:
|
8178 |
msgid "BCC recipients"
|
8179 |
msgstr "BCC Empfänger"
|
8180 |
|
8181 |
-
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:
|
8182 |
msgid "Enter blind-copy recipients (comma separated) for this email."
|
8183 |
msgstr ""
|
8184 |
"Fügen Sie Empfänger (kommasepariert) einer Blindkopie für diese E-Mail ein."
|
8185 |
|
8186 |
# @ woocommerce-germanized
|
8187 |
-
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:
|
8188 |
msgid "Confirmation text"
|
8189 |
msgstr "Bestätigung Text"
|
8190 |
|
8191 |
-
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:
|
8192 |
msgid ""
|
8193 |
"Your order has been received and is now being processed. Your order details "
|
8194 |
"are shown below for your reference:"
|
@@ -8197,7 +8247,7 @@ msgstr ""
|
|
8197 |
"Ihrer Bestellung können Sie der nachfolgenden Tabelle entnehmen:"
|
8198 |
|
8199 |
# @ woocommerce-germanized
|
8200 |
-
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:
|
8201 |
msgid ""
|
8202 |
"This text will be inserted within the order confirmation email. Use "
|
8203 |
"{order_number}, {site_title} or {order_date} as placeholder."
|
@@ -8205,7 +8255,7 @@ msgstr ""
|
|
8205 |
"Dieser Text wird in die Bestellbestätigung eingefügt. Verwenden Sie "
|
8206 |
"{order_number}, {site_title} oder {order_date} als Platzhalter."
|
8207 |
|
8208 |
-
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:
|
8209 |
msgid ""
|
8210 |
"Your order has been received and is now being processed. Your order details "
|
8211 |
"are shown below for your reference."
|
@@ -8213,17 +8263,17 @@ msgstr ""
|
|
8213 |
"Ihre Bestellung ist eingegangen und wird nun bearbeitet. Die Einzelheiten "
|
8214 |
"Ihrer Bestellung können Sie der nachfolgenden Tabelle entnehmen."
|
8215 |
|
8216 |
-
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:
|
8217 |
msgid "Someone requested a password reset for your account."
|
8218 |
msgstr "Jemand hat das Zurücksetzen des Passworts für Ihren Account beantragt."
|
8219 |
|
8220 |
-
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:
|
8221 |
#, php-format
|
8222 |
msgid "Thanks for creating an account on %s."
|
8223 |
msgstr "Danke, dass Sie ein Konto bei %s erstellt haben."
|
8224 |
|
8225 |
# @ woocommerce-germanized
|
8226 |
-
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:
|
8227 |
msgctxt "revocation-form"
|
8228 |
msgid "Forward your Revocation online"
|
8229 |
msgstr "Widerruf online erklären"
|
@@ -8487,7 +8537,7 @@ msgstr ""
|
|
8487 |
|
8488 |
# @ woocommerce-germanized
|
8489 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:215
|
8490 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
8491 |
msgid "I hereby agree to the {link}direct debit mandate{/link}."
|
8492 |
msgstr "Hiermit erteile ich das {link}SEPA Lastschriftmandat{/link}."
|
8493 |
|
@@ -8612,14 +8662,14 @@ msgid "Choose where to display your checkbox."
|
|
8612 |
msgstr "Wählen Sie einen Ort aus, an dem die Checkbox platziert werden soll."
|
8613 |
|
8614 |
# @ woocommerce-germanized
|
8615 |
-
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:
|
8616 |
-
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:
|
8617 |
#, php-format
|
8618 |
msgid "%s payment charge"
|
8619 |
msgstr "%s Zahlungsgebühr"
|
8620 |
|
8621 |
# @ woocommerce-germanized
|
8622 |
-
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:
|
8623 |
#: woocommerce-germanized/includes/wc-gzd-order-functions.php:35
|
8624 |
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:472
|
8625 |
#, php-format
|
@@ -8627,12 +8677,12 @@ msgid "Plus %s forwarding fee (charged by the transport agent)"
|
|
8627 |
msgstr "Zzgl. %s Übermittlungsentgelt (direkt an den Zusteller)"
|
8628 |
|
8629 |
# @ woocommerce-germanized
|
8630 |
-
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:
|
8631 |
msgid "Fee"
|
8632 |
msgstr "Zahlungsgebühr"
|
8633 |
|
8634 |
# @ woocommerce-germanized
|
8635 |
-
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:
|
8636 |
msgid ""
|
8637 |
"This fee is being added if customer selects payment method within checkout."
|
8638 |
msgstr ""
|
@@ -8640,22 +8690,22 @@ msgstr ""
|
|
8640 |
"Zahlungsart aktiviert."
|
8641 |
|
8642 |
# @ woocommerce-germanized
|
8643 |
-
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:
|
8644 |
msgid "Fee is taxable?"
|
8645 |
msgstr "Mwst. berechnen?"
|
8646 |
|
8647 |
# @ woocommerce-germanized
|
8648 |
-
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:
|
8649 |
msgid "Check if fee is taxable."
|
8650 |
msgstr "MwSt.-Berechnung für Gebühr aktivieren."
|
8651 |
|
8652 |
# @ woocommerce-germanized
|
8653 |
-
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:
|
8654 |
msgid "Forwarding Fee"
|
8655 |
msgstr "Übermittlungsentgelt"
|
8656 |
|
8657 |
# @ woocommerce-germanized
|
8658 |
-
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:
|
8659 |
msgid ""
|
8660 |
"Forwarding fee will be charged by the transport agent in addition to the "
|
8661 |
"cash of delivery fee e.g. DHL - tax free."
|
@@ -8664,7 +8714,7 @@ msgstr ""
|
|
8664 |
"kassiert - z.B. DHL (steuerfrei)."
|
8665 |
|
8666 |
# @ woocommerce-germanized
|
8667 |
-
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:
|
8668 |
msgid "Payment charge"
|
8669 |
msgstr "Zahlungsgebühr"
|
8670 |
|
@@ -8884,8 +8934,8 @@ msgstr "Anrede"
|
|
8884 |
|
8885 |
# @ woocommerce-germanized
|
8886 |
#: woocommerce-germanized/includes/class-wc-gzd-revocation.php:53
|
8887 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
8888 |
-
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:
|
8889 |
msgid "Ms."
|
8890 |
msgstr "Frau"
|
8891 |
|
@@ -9260,16 +9310,16 @@ msgid "SEPA XML Export"
|
|
9260 |
msgstr "SEPA XML Export"
|
9261 |
|
9262 |
# @ woocommerce-germanized
|
9263 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9264 |
#, php-format
|
9265 |
msgid "Order %s"
|
9266 |
msgstr "Bestellung %s"
|
9267 |
|
9268 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9269 |
msgid "Will be notified separately"
|
9270 |
msgstr "Wird separat mitgeteilt"
|
9271 |
|
9272 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9273 |
#, php-format
|
9274 |
msgid ""
|
9275 |
"We will debit %s from your account by direct debit on or shortly after %s."
|
@@ -9278,105 +9328,105 @@ msgstr ""
|
|
9278 |
"%s ein."
|
9279 |
|
9280 |
# @ woocommerce-germanized
|
9281 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9282 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9283 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9284 |
msgid "a single payment"
|
9285 |
msgstr "eine einmalige Zahlung"
|
9286 |
|
9287 |
# @ woocommerce-germanized
|
9288 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9289 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:111
|
9290 |
msgid "Enable/Disable"
|
9291 |
msgstr "Aktivieren/Deaktivieren"
|
9292 |
|
9293 |
# @ woocommerce-germanized
|
9294 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9295 |
msgid "Enable Direct Debit Payment"
|
9296 |
msgstr "Bezahlung per Lastschrift aktivieren"
|
9297 |
|
9298 |
# @ woocommerce-germanized
|
9299 |
# @ woocommerce
|
9300 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9301 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:117
|
9302 |
msgctxt "gateway"
|
9303 |
msgid "Title"
|
9304 |
msgstr "Bezeichnung"
|
9305 |
|
9306 |
# @ woocommerce-germanized
|
9307 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9308 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:119
|
9309 |
msgid "This controls the title which the user sees during checkout."
|
9310 |
msgstr ""
|
9311 |
"Beschreibungstext, den Benutzer bei der Auswahl dieser Zahlungsart sehen."
|
9312 |
|
9313 |
# @ woocommerce-germanized
|
9314 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9315 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:126
|
9316 |
msgid "Payment method description that the customer will see on your checkout."
|
9317 |
msgstr "Beschreibung der Zahlungsart, die Kunden auf ihrer Website sehen."
|
9318 |
|
9319 |
# @ woocommerce-germanized
|
9320 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9321 |
msgid "The order amount will be debited directly from your bank account."
|
9322 |
msgstr ""
|
9323 |
"Der Gesamtbestellbetrag wird per SEPA-Lastschrift direkt von Ihrem Konto "
|
9324 |
"abgebucht."
|
9325 |
|
9326 |
# @ woocommerce-germanized
|
9327 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9328 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:131
|
9329 |
msgid "Instructions"
|
9330 |
msgstr "Anweisungen"
|
9331 |
|
9332 |
# @ woocommerce-germanized
|
9333 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9334 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:133
|
9335 |
msgid "Instructions that will be added to the thank you page and emails."
|
9336 |
msgstr "Anweisung, die zur „Danke“-Seite und zu E-Mails hinzugefügt werden."
|
9337 |
|
9338 |
# @ woocommerce-germanized
|
9339 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9340 |
msgid "Debtee"
|
9341 |
msgstr "Gläubiger Informationen"
|
9342 |
|
9343 |
# @ woocommerce-germanized
|
9344 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9345 |
msgid "Insert your company information."
|
9346 |
msgstr "Fügen Sie hier die Informationen zu ihrem Unternehmen ein."
|
9347 |
|
9348 |
# @ woocommerce-germanized
|
9349 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9350 |
msgid "Company Inc, John Doe Street, New York"
|
9351 |
msgstr "Musterfirma GmbH, Musterstraße 12, 12203 Musterstadt"
|
9352 |
|
9353 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9354 |
msgid "Insert the bank account holder name."
|
9355 |
msgstr "Fügen Sie hier den Namen des Kontoinhabers ein."
|
9356 |
|
9357 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9358 |
msgid "Company Inc"
|
9359 |
msgstr "Muster GmbH"
|
9360 |
|
9361 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9362 |
msgid "Insert the bank account IBAN."
|
9363 |
msgstr "Fügen Sie hier den IBAN ihres Kontos ein."
|
9364 |
|
9365 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9366 |
msgid "BIC"
|
9367 |
msgstr "BIC"
|
9368 |
|
9369 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9370 |
msgid "Insert the bank account BIC."
|
9371 |
msgstr "Fügen Sie hier den BIC ihres Kontos ein."
|
9372 |
|
9373 |
# @ woocommerce-germanized
|
9374 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9375 |
msgid "Debtee identification number"
|
9376 |
msgstr "Identifikationsnummer"
|
9377 |
|
9378 |
# @ woocommerce-germanized
|
9379 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9380 |
#, php-format
|
9381 |
msgid ""
|
9382 |
"Insert your debtee indentification number. More information can be found <a "
|
@@ -9386,16 +9436,16 @@ msgstr ""
|
|
9386 |
"Weitere Informationen zu dieser Nummer erhalten Sie <a href=\"%s\">hier</a>."
|
9387 |
|
9388 |
# @ woocommerce-germanized
|
9389 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9390 |
msgid "Generate Mandate ID"
|
9391 |
msgstr "Mandat-Referenz generieren"
|
9392 |
|
9393 |
# @ woocommerce-germanized
|
9394 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9395 |
msgid "Automatically generate Mandate ID."
|
9396 |
msgstr "Mandat-Referenznummer automatisch generieren."
|
9397 |
|
9398 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9399 |
msgid ""
|
9400 |
"Automatically generate Mandate ID after order completion (based on Order ID)."
|
9401 |
msgstr ""
|
@@ -9403,11 +9453,11 @@ msgstr ""
|
|
9403 |
"basierend auf der Bestellnummer generieren."
|
9404 |
|
9405 |
# @ woocommerce-germanized
|
9406 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9407 |
msgid "XML Pain Format"
|
9408 |
msgstr "XML Pain Format"
|
9409 |
|
9410 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9411 |
msgid ""
|
9412 |
"You may adjust the XML Export Pain Schema to your banks needs. Some banks "
|
9413 |
"may require pain.001.003.03."
|
@@ -9416,11 +9466,11 @@ msgstr ""
|
|
9416 |
"Einige Banken benötigen z.B. pain.001.003.03."
|
9417 |
|
9418 |
# @ woocommerce-germanized
|
9419 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9420 |
msgid "Mandate ID Format"
|
9421 |
msgstr "Mandat-Referenz Format"
|
9422 |
|
9423 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9424 |
msgid ""
|
9425 |
"You may extend the Mandate ID format by adding a prefix and/or suffix. Use "
|
9426 |
"{id} as placeholder to insert the automatically generated ID."
|
@@ -9430,12 +9480,12 @@ msgstr ""
|
|
9430 |
"einzufügen."
|
9431 |
|
9432 |
# @ woocommerce-germanized
|
9433 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9434 |
msgid "Mandate Text"
|
9435 |
msgstr "Lastschriftmandat"
|
9436 |
|
9437 |
# @ woocommerce-germanized
|
9438 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9439 |
msgid ""
|
9440 |
"This text will be populated with live order/checkout data. Will be used as "
|
9441 |
"preview direct debit mandate and as email template text."
|
@@ -9446,29 +9496,29 @@ msgstr ""
|
|
9446 |
"Verfügung gestellt."
|
9447 |
|
9448 |
# @ woocommerce-germanized
|
9449 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9450 |
msgid "Checkbox"
|
9451 |
msgstr "Checkbox"
|
9452 |
|
9453 |
# @ woocommerce-germanized
|
9454 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9455 |
msgid "Enable \"agree to SEPA mandate\" checkbox"
|
9456 |
msgstr "Aktivieren Sie die Checkbox zur Bestätigung des Lastschriftmandates"
|
9457 |
|
9458 |
# @ woocommerce-germanized
|
9459 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9460 |
msgid "Enable a checkbox linking to a SEPA direct debit mandate preview."
|
9461 |
msgstr ""
|
9462 |
"Aktivieren Sie eine Checkbox, die zu einer Vorschau des Lastschrift-Mandats "
|
9463 |
"führt."
|
9464 |
|
9465 |
# @ woocommerce-germanized
|
9466 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9467 |
msgid "Checkbox label"
|
9468 |
msgstr "Checkbox Text"
|
9469 |
|
9470 |
# @ woocommerce-germanized
|
9471 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9472 |
msgid ""
|
9473 |
"Customize the checkbox label. Use {link}link name{/link} to insert the "
|
9474 |
"preview link."
|
@@ -9476,17 +9526,17 @@ msgstr ""
|
|
9476 |
"Passt den Checkbox Text an. Verwenden Sie {link}SEPA Lastschriftmandat{/"
|
9477 |
"link} um auf die Vorschau zu verlinken."
|
9478 |
|
9479 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9480 |
msgid "Enable pre-notification"
|
9481 |
msgstr "Vorankündigung aktivieren"
|
9482 |
|
9483 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9484 |
msgid "Insert pre-notification text within the order confirmation email."
|
9485 |
msgstr ""
|
9486 |
"Fügt einen Standard-Text zur Vorankündigung des SEPA-Einzugs in die "
|
9487 |
"Bestellbestätigung ein."
|
9488 |
|
9489 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9490 |
msgid ""
|
9491 |
"This option inserts a standard text containing a pre-notification for the "
|
9492 |
"customer."
|
@@ -9495,11 +9545,11 @@ msgstr ""
|
|
9495 |
"die Bestellbestätigung ein. In der Ankündigung wird u.a. ein konkreter "
|
9496 |
"Fälligkeitstermin genannt."
|
9497 |
|
9498 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9499 |
msgid "Debit days"
|
9500 |
msgstr "Fälligkeitstage"
|
9501 |
|
9502 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9503 |
msgid ""
|
9504 |
"This option is used to calculate the debit date and is added to the order "
|
9505 |
"date."
|
@@ -9509,15 +9559,15 @@ msgstr ""
|
|
9509 |
"hier eingestellten Anzahl Tage."
|
9510 |
|
9511 |
# @ woocommerce-germanized
|
9512 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9513 |
msgid "Mask IBAN"
|
9514 |
msgstr "IBAN maskieren"
|
9515 |
|
9516 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9517 |
msgid "Mask the IBAN within emails."
|
9518 |
msgstr "IBAN in E-Mails maskieren."
|
9519 |
|
9520 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9521 |
msgid ""
|
9522 |
"This will lead to masked IBANs within emails (replaced by *). All but last 4 "
|
9523 |
"digits will be masked."
|
@@ -9525,15 +9575,15 @@ msgstr ""
|
|
9525 |
"Der IBAN wird in E-Mails (abgesehen von den letzten 4 Stellen) mit * "
|
9526 |
"maskiert."
|
9527 |
|
9528 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9529 |
msgid "Remember"
|
9530 |
msgstr "Bankdaten merken"
|
9531 |
|
9532 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9533 |
msgid "Remember account data for returning customers."
|
9534 |
msgstr "Bankverbindung für registrierte Kunden speichern."
|
9535 |
|
9536 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9537 |
msgid "Save account data as user meta if user has/creates a customer account."
|
9538 |
msgstr ""
|
9539 |
"Speichert die Bankverbindung für registrierte Kunden in der user_meta "
|
@@ -9541,32 +9591,32 @@ msgstr ""
|
|
9541 |
"eigenständig aus."
|
9542 |
|
9543 |
# @ woocommerce-germanized
|
9544 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9545 |
msgid "Please insert your SEPA account data."
|
9546 |
msgstr "Bitte fügen Sie Ihre SEPA Kontoinformationen ein."
|
9547 |
|
9548 |
# @ woocommerce-germanized
|
9549 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9550 |
msgid "Your IBAN seems to be invalid."
|
9551 |
msgstr "Ihr IBAN scheint nicht gültig zu sein."
|
9552 |
|
9553 |
# @ woocommerce-germanized
|
9554 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9555 |
msgid "Your IBAN's country code doesn’t match with your billing country."
|
9556 |
msgstr "Der Ländercode des IBANs stimmt nicht mit dem Rechnungsland überein."
|
9557 |
|
9558 |
# @ woocommerce-germanized
|
9559 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9560 |
msgid "Your BIC seems to be invalid."
|
9561 |
msgstr "Ihr BIC/SWIFT scheint nicht gültig zu sein."
|
9562 |
|
9563 |
# @ woocommerce-germanized
|
9564 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9565 |
msgid "is invalid"
|
9566 |
msgstr "ist ungültig"
|
9567 |
|
9568 |
# @ woocommerce-germanized
|
9569 |
-
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:
|
9570 |
msgid "Awaiting Direct Debit Payment"
|
9571 |
msgstr "Zahlung per Lastschrift ausstehend"
|
9572 |
|
@@ -10134,7 +10184,7 @@ msgstr ""
|
|
10134 |
"unserem <a href=\"%s\" target=\"_blank\">Blog-Post</a> wie Sie das Plugin "
|
10135 |
"austauschen können."
|
10136 |
|
10137 |
-
#: woocommerce-germanized/woocommerce-germanized.php:
|
10138 |
msgid "Pease wait while we are trying to redirect you to the payment provider."
|
10139 |
msgstr "Einen Moment - wir versuchen Sie zum Zahlungsanbieter weiterzuleiten."
|
10140 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WooCommerce Germanized\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-10-23 11:56+0200\n"
|
6 |
+
"PO-Revision-Date: 2020-10-23 11:57+0200\n"
|
7 |
"Last-Translator: holzhannes <holzhannes@posteo.de>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: de_DE@formal\n"
|
2491 |
#: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:11
|
2492 |
#: woocommerce-germanized-shipments/src/Admin/ReturnTable.php:22
|
2493 |
#: woocommerce-germanized-shipments/src/Admin/Table.php:686
|
2494 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:551
|
2495 |
msgctxt "shipments"
|
2496 |
msgid "Title"
|
2497 |
msgstr "Titel"
|
2498 |
|
2499 |
# @ woocommerce-germanized
|
2500 |
#: woocommerce-germanized-shipments/includes/admin/views/html-settings-provider-list.php:12
|
2501 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:560
|
2502 |
msgctxt "shipments"
|
2503 |
msgid "Description"
|
2504 |
msgstr "Beschreibung"
|
2739 |
msgid "Choose which format of email to send."
|
2740 |
msgstr "Format für E-Mail-Versand auswählen."
|
2741 |
|
2742 |
+
#: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:42
|
2743 |
+
msgctxt "shipments"
|
2744 |
+
msgid "New order return request"
|
2745 |
+
msgstr "Neuer Rücksendeantrag"
|
2746 |
+
|
2747 |
+
#: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:43
|
2748 |
+
msgctxt "shipments"
|
2749 |
+
msgid ""
|
2750 |
+
"New order return request emails are sent to chosen recipient(s) when a new "
|
2751 |
+
"return is requested."
|
2752 |
+
msgstr ""
|
2753 |
+
"Benachrichtigungen über neue Rücksendeanträge werden an diese Empfänger "
|
2754 |
+
"verschickt, sobald ein neuer Antrag gestellt wurde."
|
2755 |
+
|
2756 |
+
#: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:73
|
2757 |
+
msgctxt "shipments"
|
2758 |
+
msgid "[{site_title}]: New return request to #{order_number}"
|
2759 |
+
msgstr "[{site_title}]: Neuer Rücksendeantrag zu #{order_number}"
|
2760 |
+
|
2761 |
+
#: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:83
|
2762 |
+
msgctxt "shipments"
|
2763 |
+
msgid "New return request to: #{order_number}"
|
2764 |
+
msgstr "Neuer Rücksendeantrag zu: #{order_number}"
|
2765 |
+
|
2766 |
+
#: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:202
|
2767 |
+
msgctxt "shipments"
|
2768 |
+
msgid "Recipient(s)"
|
2769 |
+
msgstr "Empfänger"
|
2770 |
+
|
2771 |
+
#: woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php:205
|
2772 |
+
#, php-format
|
2773 |
+
msgctxt "shipments"
|
2774 |
+
msgid "Enter recipients (comma separated) for this email. Defaults to %s."
|
2775 |
+
msgstr ""
|
2776 |
+
"Fügen Sie Empfänger (kommasepariert) für diese E-Mail ein. Standard: %s."
|
2777 |
+
|
2778 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:68
|
2779 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:1025
|
2780 |
msgctxt "shipments"
|
2862 |
|
2863 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:413
|
2864 |
#: woocommerce-germanized-shipments/includes/wc-gzd-shipment-functions.php:417
|
2865 |
+
#: woocommerce-germanized-shipments/src/ReturnShipment.php:420
|
2866 |
+
#: woocommerce-germanized-shipments/src/ReturnShipment.php:480
|
2867 |
#: woocommerce-germanized-shipments/src/SimpleShipment.php:118
|
2868 |
#: woocommerce-germanized-shipments/src/SimpleShipment.php:202
|
2869 |
msgctxt "shipments"
|
4010 |
msgid "Sorry, this order is invalid and cannot be returned."
|
4011 |
msgstr "Sorry, diese Bestellung existiert nicht."
|
4012 |
|
4013 |
+
#: woocommerce-germanized-shipments/src/ReturnShipment.php:356
|
4014 |
+
#: woocommerce-germanized-shipments/src/Shipment.php:864
|
4015 |
#, php-format
|
4016 |
msgctxt "full name"
|
4017 |
msgid "%1$s %2$s"
|
4031 |
"die Paketverfolgungsdaten zum Zeitpunkt des Erhalts dieser E-Mail noch nicht "
|
4032 |
"den neuesten Stand wiedergeben."
|
4033 |
|
4034 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:539
|
4035 |
#, php-format
|
4036 |
msgctxt "shipments"
|
4037 |
msgid "%s supports many more options. Explore %s."
|
4038 |
msgstr "%s unterstützt viele weitere Einstellungen. Schauen Sie sich %s an."
|
4039 |
|
4040 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:539
|
4041 |
#, php-format
|
4042 |
msgctxt "shipments"
|
4043 |
msgid "%s specific settings"
|
4044 |
msgstr "%s spezifische Einstellungen"
|
4045 |
|
4046 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:552
|
4047 |
msgctxt "shipments"
|
4048 |
msgid "Choose a title for the shipping provider."
|
4049 |
msgstr "Wählen Sie einen Titel für den Versanddienstleister."
|
4050 |
|
4051 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:561
|
4052 |
msgctxt "shipments"
|
4053 |
msgid "Choose a description for the shipping provider."
|
4054 |
msgstr "Wählen Sie eine Beschreibung für den Versanddienstleister."
|
4055 |
|
4056 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:575
|
4057 |
msgctxt "shipments"
|
4058 |
msgid "Tracking URL"
|
4059 |
msgstr "Sendungsverfolgung URL"
|
4060 |
|
4061 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:576
|
4062 |
#, php-format
|
4063 |
msgctxt "shipments"
|
4064 |
msgid ""
|
4072 |
"einzufügen: %s"
|
4073 |
|
4074 |
# @ woocommerce-germanized
|
4075 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:586
|
4076 |
msgctxt "shipments"
|
4077 |
msgid "Tracking description"
|
4078 |
msgstr "Sendungsverfolgung Hinweis"
|
4079 |
|
4080 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:587
|
4081 |
#, php-format
|
4082 |
msgctxt "shipments"
|
4083 |
msgid ""
|
4092 |
"dynamische Daten einzufügen: %s"
|
4093 |
|
4094 |
# @ woocommerce-germanized
|
4095 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:600
|
4096 |
msgctxt "shipments"
|
4097 |
msgid "Customer returns"
|
4098 |
msgstr "Rücksendungen"
|
4099 |
|
4100 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:601
|
4101 |
msgctxt "shipments"
|
4102 |
msgid "Allow customers to submit return requests to shipments."
|
4103 |
msgstr "Erlauben Sie Kunden eine Rücksendung zu einer Sendung zu beantragen."
|
4104 |
|
4105 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:601
|
4106 |
#, php-format
|
4107 |
msgctxt "shipments"
|
4108 |
msgid ""
|
4116 |
"Gästen zu erfahren, lesen Sie bitte die %s."
|
4117 |
|
4118 |
# @ woocommerce-germanized
|
4119 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:601
|
4120 |
msgctxt "shipments"
|
4121 |
msgid "Return Dashboard"
|
4122 |
msgstr "Retouren-Dashboard"
|
4123 |
|
4124 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:601
|
4125 |
msgctxt "shipments"
|
4126 |
msgid "docs"
|
4127 |
msgstr "Dokumentation"
|
4128 |
|
4129 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:610
|
4130 |
msgctxt "shipments"
|
4131 |
msgid "Guest returns"
|
4132 |
msgstr "Retouren für Gäste"
|
4133 |
|
4134 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:611
|
4135 |
msgctxt "shipments"
|
4136 |
msgid "Allow guests to submit return requests to shipments."
|
4137 |
msgstr "Erlauben Sie Gästen Rücksendeanträge zu Bestellungen zu beantragen."
|
4138 |
|
4139 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:611
|
4140 |
#, php-format
|
4141 |
msgctxt "shipments"
|
4142 |
msgid ""
|
4150 |
"Rücksende-Formular für Gäste auf Ihrer Seite zu platzieren."
|
4151 |
|
4152 |
# @ woocommerce-germanized
|
4153 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:622
|
4154 |
msgctxt "shipments"
|
4155 |
msgid "Manual confirmation"
|
4156 |
msgstr "Manuelle Bestätigung"
|
4157 |
|
4158 |
# @ woocommerce-germanized
|
4159 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:623
|
4160 |
msgctxt "shipments"
|
4161 |
msgid "Return requests need manual confirmation."
|
4162 |
msgstr "Rücksendeanträge benötigen eine manuelle Bestätigung."
|
4163 |
|
4164 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:623
|
4165 |
msgctxt "shipments"
|
4166 |
msgid ""
|
4167 |
"By default return request need manual confirmation e.g. a shop manager needs "
|
4178 |
"Mail-Bestätigung samt Retouren-Label."
|
4179 |
|
4180 |
# @ woocommerce-germanized
|
4181 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:635
|
4182 |
msgctxt "shipments"
|
4183 |
msgid "Return instructions"
|
4184 |
msgstr "Rücksende-Anweisungen"
|
4185 |
|
4186 |
+
#: woocommerce-germanized-shipments/src/ShippingProvider.php:636
|
4187 |
msgctxt "shipments"
|
4188 |
msgid ""
|
4189 |
"Provide your customer with instructions on how to return the shipment after "
|
4236 |
msgid "%s return instructions"
|
4237 |
msgstr "%s Rücksende-Anweisungen"
|
4238 |
|
4239 |
+
#: woocommerce-germanized-shipments/templates/emails/admin-new-return-shipment-request.php:30
|
4240 |
+
#: woocommerce-germanized-shipments/templates/emails/plain/admin-new-return-shipment-request.php:24
|
4241 |
+
#, php-format
|
4242 |
+
msgctxt "shipments"
|
4243 |
+
msgid "You’ve received the following return request from %s:"
|
4244 |
+
msgstr "Sie haben den folgenden Rücksendeantrag von %s erhalten:"
|
4245 |
+
|
4246 |
#: woocommerce-germanized-shipments/templates/emails/customer-guest-return-shipment-request.php:27
|
4247 |
#: woocommerce-germanized-shipments/templates/emails/customer-return-shipment-delivered.php:27
|
4248 |
#: woocommerce-germanized-shipments/templates/emails/customer-return-shipment.php:27
|
4347 |
msgid "Details to your %s"
|
4348 |
msgstr "Details zu Ihrer %s"
|
4349 |
|
4350 |
+
#: woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:46
|
4351 |
+
#: woocommerce-germanized-shipments/templates/emails/plain/email-shipment-details.php:23
|
4352 |
+
#, php-format
|
4353 |
+
msgctxt "shipments"
|
4354 |
+
msgid "[%s #%s]"
|
4355 |
+
msgstr "[%s #%s]"
|
4356 |
+
|
4357 |
# @ woocommerce-germanized
|
4358 |
#: woocommerce-germanized-shipments/templates/emails/email-shipment-details.php:54
|
4359 |
#: woocommerce-germanized-shipments/templates/myaccount/add-return-shipment.php:35
|
4561 |
# @ woocommerce-germanized
|
4562 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:549
|
4563 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:559
|
4564 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:448
|
4565 |
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:546
|
4566 |
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:554
|
4567 |
msgid "incl. VAT"
|
4574 |
|
4575 |
# @ woocommerce-germanized
|
4576 |
#: woocommerce-germanized/includes/abstracts/abstract-wc-gzd-product.php:551
|
4577 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:448
|
4578 |
#, php-format
|
4579 |
msgid "incl. %s%% VAT"
|
4580 |
msgstr "inkl. %s %% MwSt."
|
4818 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:73
|
4819 |
#: woocommerce-germanized/includes/admin/class-wc-gzd-admin-setup-wizard.php:141
|
4820 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:79
|
4821 |
+
#: woocommerce-germanized/woocommerce-germanized.php:859
|
4822 |
msgid "Settings"
|
4823 |
msgstr "Einstellungen"
|
4824 |
|
6578 |
"Platzhalter für den höchsten Preis."
|
6579 |
|
6580 |
#: woocommerce-germanized/includes/admin/settings/class-wc-gzd-settings-tab-general.php:294
|
6581 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:845
|
6582 |
msgid "{min_price} – {max_price}"
|
6583 |
msgstr "{min_price} – {max_price}"
|
6584 |
|
7461 |
#: woocommerce-germanized/includes/admin/settings/views/html-admin-page-checkboxes.php:12
|
7462 |
#: woocommerce-germanized/includes/admin/settings/views/html-admin-settings-tabs.php:29
|
7463 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox.php:800
|
7464 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:888
|
7465 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:124
|
7466 |
msgid "Description"
|
7467 |
msgstr "Beschreibung"
|
7870 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-customers-controller.php:160
|
7871 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:159
|
7872 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:39
|
7873 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:884
|
7874 |
#: woocommerce-germanized/includes/gateways/direct-debit/views/html-export.php:30
|
7875 |
msgid "Direct Debit"
|
7876 |
msgstr "Lastschrift"
|
7882 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:117
|
7883 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:166
|
7884 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:117
|
7885 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:600
|
7886 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:910
|
7887 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1056
|
7888 |
msgid "Account Holder"
|
7889 |
msgstr "Kontoinhaber"
|
7890 |
|
7895 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:118
|
7896 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:167
|
7897 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:124
|
7898 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:601
|
7899 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:918
|
7900 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1060
|
7901 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1190
|
7902 |
msgid "IBAN"
|
7903 |
msgstr "IBAN"
|
7904 |
|
7909 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:119
|
7910 |
#: woocommerce-germanized/includes/class-wc-gzd-privacy.php:168
|
7911 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:131
|
7912 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:602
|
7913 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1064
|
7914 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1191
|
7915 |
msgid "BIC/SWIFT"
|
7916 |
msgstr "BIC/SWIFT"
|
7917 |
|
7922 |
# @ woocommerce-germanized
|
7923 |
#: woocommerce-germanized/includes/api/class-wc-gzd-rest-orders-controller.php:179
|
7924 |
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:138
|
7925 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:606
|
7926 |
msgid "Mandate Reference ID"
|
7927 |
msgstr "Mandat-Referenznummer"
|
7928 |
|
8151 |
# @ woocommerce-germanized
|
8152 |
#: woocommerce-germanized/includes/class-wc-gzd-checkout.php:921
|
8153 |
#: woocommerce-germanized/includes/class-wc-gzd-revocation.php:52
|
8154 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:599
|
8155 |
msgid "Mr."
|
8156 |
msgstr "Herr"
|
8157 |
|
8161 |
msgid "Mr."
|
8162 |
msgstr "Herrn"
|
8163 |
|
8164 |
+
#: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:314
|
8165 |
msgid "Is voucher?"
|
8166 |
msgstr "Wertgutschein?"
|
8167 |
|
8168 |
+
#: woocommerce-germanized/includes/class-wc-gzd-coupon-helper.php:315
|
8169 |
#, php-format
|
8170 |
msgid ""
|
8171 |
"Whether or not this coupon is a voucher which has been sold to a customer "
|
8224 |
msgid "Invalid activation key"
|
8225 |
msgstr "Aktivierungscode ungültig"
|
8226 |
|
8227 |
+
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:166
|
8228 |
msgid "BCC recipients"
|
8229 |
msgstr "BCC Empfänger"
|
8230 |
|
8231 |
+
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:168
|
8232 |
msgid "Enter blind-copy recipients (comma separated) for this email."
|
8233 |
msgstr ""
|
8234 |
"Fügen Sie Empfänger (kommasepariert) einer Blindkopie für diese E-Mail ein."
|
8235 |
|
8236 |
# @ woocommerce-germanized
|
8237 |
+
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:207
|
8238 |
msgid "Confirmation text"
|
8239 |
msgstr "Bestätigung Text"
|
8240 |
|
8241 |
+
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:208
|
8242 |
msgid ""
|
8243 |
"Your order has been received and is now being processed. Your order details "
|
8244 |
"are shown below for your reference:"
|
8247 |
"Ihrer Bestellung können Sie der nachfolgenden Tabelle entnehmen:"
|
8248 |
|
8249 |
# @ woocommerce-germanized
|
8250 |
+
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:209
|
8251 |
msgid ""
|
8252 |
"This text will be inserted within the order confirmation email. Use "
|
8253 |
"{order_number}, {site_title} or {order_date} as placeholder."
|
8255 |
"Dieser Text wird in die Bestellbestätigung eingefügt. Verwenden Sie "
|
8256 |
"{order_number}, {site_title} oder {order_date} als Platzhalter."
|
8257 |
|
8258 |
+
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:327
|
8259 |
msgid ""
|
8260 |
"Your order has been received and is now being processed. Your order details "
|
8261 |
"are shown below for your reference."
|
8263 |
"Ihre Bestellung ist eingegangen und wird nun bearbeitet. Die Einzelheiten "
|
8264 |
"Ihrer Bestellung können Sie der nachfolgenden Tabelle entnehmen."
|
8265 |
|
8266 |
+
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:375
|
8267 |
msgid "Someone requested a password reset for your account."
|
8268 |
msgstr "Jemand hat das Zurücksetzen des Passworts für Ihren Account beantragt."
|
8269 |
|
8270 |
+
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:390
|
8271 |
#, php-format
|
8272 |
msgid "Thanks for creating an account on %s."
|
8273 |
msgstr "Danke, dass Sie ein Konto bei %s erstellt haben."
|
8274 |
|
8275 |
# @ woocommerce-germanized
|
8276 |
+
#: woocommerce-germanized/includes/class-wc-gzd-emails.php:1073
|
8277 |
msgctxt "revocation-form"
|
8278 |
msgid "Forward your Revocation online"
|
8279 |
msgstr "Widerruf online erklären"
|
8537 |
|
8538 |
# @ woocommerce-germanized
|
8539 |
#: woocommerce-germanized/includes/class-wc-gzd-legal-checkbox-manager.php:215
|
8540 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:975
|
8541 |
msgid "I hereby agree to the {link}direct debit mandate{/link}."
|
8542 |
msgstr "Hiermit erteile ich das {link}SEPA Lastschriftmandat{/link}."
|
8543 |
|
8662 |
msgstr "Wählen Sie einen Ort aus, an dem die Checkbox platziert werden soll."
|
8663 |
|
8664 |
# @ woocommerce-germanized
|
8665 |
+
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:150
|
8666 |
+
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:206
|
8667 |
#, php-format
|
8668 |
msgid "%s payment charge"
|
8669 |
msgstr "%s Zahlungsgebühr"
|
8670 |
|
8671 |
# @ woocommerce-germanized
|
8672 |
+
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:153
|
8673 |
#: woocommerce-germanized/includes/wc-gzd-order-functions.php:35
|
8674 |
#: woocommerce-germanized/includes/wc-gzd-template-functions.php:472
|
8675 |
#, php-format
|
8677 |
msgstr "Zzgl. %s Übermittlungsentgelt (direkt an den Zusteller)"
|
8678 |
|
8679 |
# @ woocommerce-germanized
|
8680 |
+
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:240
|
8681 |
msgid "Fee"
|
8682 |
msgstr "Zahlungsgebühr"
|
8683 |
|
8684 |
# @ woocommerce-germanized
|
8685 |
+
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:242
|
8686 |
msgid ""
|
8687 |
"This fee is being added if customer selects payment method within checkout."
|
8688 |
msgstr ""
|
8690 |
"Zahlungsart aktiviert."
|
8691 |
|
8692 |
# @ woocommerce-germanized
|
8693 |
+
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:248
|
8694 |
msgid "Fee is taxable?"
|
8695 |
msgstr "Mwst. berechnen?"
|
8696 |
|
8697 |
# @ woocommerce-germanized
|
8698 |
+
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:250
|
8699 |
msgid "Check if fee is taxable."
|
8700 |
msgstr "MwSt.-Berechnung für Gebühr aktivieren."
|
8701 |
|
8702 |
# @ woocommerce-germanized
|
8703 |
+
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:256
|
8704 |
msgid "Forwarding Fee"
|
8705 |
msgstr "Übermittlungsentgelt"
|
8706 |
|
8707 |
# @ woocommerce-germanized
|
8708 |
+
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:259
|
8709 |
msgid ""
|
8710 |
"Forwarding fee will be charged by the transport agent in addition to the "
|
8711 |
"cash of delivery fee e.g. DHL - tax free."
|
8714 |
"kassiert - z.B. DHL (steuerfrei)."
|
8715 |
|
8716 |
# @ woocommerce-germanized
|
8717 |
+
#: woocommerce-germanized/includes/class-wc-gzd-payment-gateways.php:304
|
8718 |
msgid "Payment charge"
|
8719 |
msgstr "Zahlungsgebühr"
|
8720 |
|
8934 |
|
8935 |
# @ woocommerce-germanized
|
8936 |
#: woocommerce-germanized/includes/class-wc-gzd-revocation.php:53
|
8937 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:600
|
8938 |
+
#: woocommerce-germanized/includes/wc-gzd-core-functions.php:617
|
8939 |
msgid "Ms."
|
8940 |
msgstr "Frau"
|
8941 |
|
9310 |
msgstr "SEPA XML Export"
|
9311 |
|
9312 |
# @ woocommerce-germanized
|
9313 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:501
|
9314 |
#, php-format
|
9315 |
msgid "Order %s"
|
9316 |
msgstr "Bestellung %s"
|
9317 |
|
9318 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:532
|
9319 |
msgid "Will be notified separately"
|
9320 |
msgstr "Wird separat mitgeteilt"
|
9321 |
|
9322 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:621
|
9323 |
#, php-format
|
9324 |
msgid ""
|
9325 |
"We will debit %s from your account by direct debit on or shortly after %s."
|
9328 |
"%s ein."
|
9329 |
|
9330 |
# @ woocommerce-germanized
|
9331 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:759
|
9332 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:791
|
9333 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:824
|
9334 |
msgid "a single payment"
|
9335 |
msgstr "eine einmalige Zahlung"
|
9336 |
|
9337 |
# @ woocommerce-germanized
|
9338 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:875
|
9339 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:111
|
9340 |
msgid "Enable/Disable"
|
9341 |
msgstr "Aktivieren/Deaktivieren"
|
9342 |
|
9343 |
# @ woocommerce-germanized
|
9344 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:877
|
9345 |
msgid "Enable Direct Debit Payment"
|
9346 |
msgstr "Bezahlung per Lastschrift aktivieren"
|
9347 |
|
9348 |
# @ woocommerce-germanized
|
9349 |
# @ woocommerce
|
9350 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:881
|
9351 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:117
|
9352 |
msgctxt "gateway"
|
9353 |
msgid "Title"
|
9354 |
msgstr "Bezeichnung"
|
9355 |
|
9356 |
# @ woocommerce-germanized
|
9357 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:883
|
9358 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:119
|
9359 |
msgid "This controls the title which the user sees during checkout."
|
9360 |
msgstr ""
|
9361 |
"Beschreibungstext, den Benutzer bei der Auswahl dieser Zahlungsart sehen."
|
9362 |
|
9363 |
# @ woocommerce-germanized
|
9364 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:890
|
9365 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:126
|
9366 |
msgid "Payment method description that the customer will see on your checkout."
|
9367 |
msgstr "Beschreibung der Zahlungsart, die Kunden auf ihrer Website sehen."
|
9368 |
|
9369 |
# @ woocommerce-germanized
|
9370 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:891
|
9371 |
msgid "The order amount will be debited directly from your bank account."
|
9372 |
msgstr ""
|
9373 |
"Der Gesamtbestellbetrag wird per SEPA-Lastschrift direkt von Ihrem Konto "
|
9374 |
"abgebucht."
|
9375 |
|
9376 |
# @ woocommerce-germanized
|
9377 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:895
|
9378 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:131
|
9379 |
msgid "Instructions"
|
9380 |
msgstr "Anweisungen"
|
9381 |
|
9382 |
# @ woocommerce-germanized
|
9383 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:897
|
9384 |
#: woocommerce-germanized/includes/gateways/invoice/class-wc-gzd-gateway-invoice.php:133
|
9385 |
msgid "Instructions that will be added to the thank you page and emails."
|
9386 |
msgstr "Anweisung, die zur „Danke“-Seite und zu E-Mails hinzugefügt werden."
|
9387 |
|
9388 |
# @ woocommerce-germanized
|
9389 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:902
|
9390 |
msgid "Debtee"
|
9391 |
msgstr "Gläubiger Informationen"
|
9392 |
|
9393 |
# @ woocommerce-germanized
|
9394 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:904
|
9395 |
msgid "Insert your company information."
|
9396 |
msgstr "Fügen Sie hier die Informationen zu ihrem Unternehmen ein."
|
9397 |
|
9398 |
# @ woocommerce-germanized
|
9399 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:906
|
9400 |
msgid "Company Inc, John Doe Street, New York"
|
9401 |
msgstr "Musterfirma GmbH, Musterstraße 12, 12203 Musterstadt"
|
9402 |
|
9403 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:912
|
9404 |
msgid "Insert the bank account holder name."
|
9405 |
msgstr "Fügen Sie hier den Namen des Kontoinhabers ein."
|
9406 |
|
9407 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:914
|
9408 |
msgid "Company Inc"
|
9409 |
msgstr "Muster GmbH"
|
9410 |
|
9411 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:920
|
9412 |
msgid "Insert the bank account IBAN."
|
9413 |
msgstr "Fügen Sie hier den IBAN ihres Kontos ein."
|
9414 |
|
9415 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:925
|
9416 |
msgid "BIC"
|
9417 |
msgstr "BIC"
|
9418 |
|
9419 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:927
|
9420 |
msgid "Insert the bank account BIC."
|
9421 |
msgstr "Fügen Sie hier den BIC ihres Kontos ein."
|
9422 |
|
9423 |
# @ woocommerce-germanized
|
9424 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:932
|
9425 |
msgid "Debtee identification number"
|
9426 |
msgstr "Identifikationsnummer"
|
9427 |
|
9428 |
# @ woocommerce-germanized
|
9429 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:934
|
9430 |
#, php-format
|
9431 |
msgid ""
|
9432 |
"Insert your debtee indentification number. More information can be found <a "
|
9436 |
"Weitere Informationen zu dieser Nummer erhalten Sie <a href=\"%s\">hier</a>."
|
9437 |
|
9438 |
# @ woocommerce-germanized
|
9439 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:938
|
9440 |
msgid "Generate Mandate ID"
|
9441 |
msgstr "Mandat-Referenz generieren"
|
9442 |
|
9443 |
# @ woocommerce-germanized
|
9444 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:940
|
9445 |
msgid "Automatically generate Mandate ID."
|
9446 |
msgstr "Mandat-Referenznummer automatisch generieren."
|
9447 |
|
9448 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:941
|
9449 |
msgid ""
|
9450 |
"Automatically generate Mandate ID after order completion (based on Order ID)."
|
9451 |
msgstr ""
|
9453 |
"basierend auf der Bestellnummer generieren."
|
9454 |
|
9455 |
# @ woocommerce-germanized
|
9456 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:945
|
9457 |
msgid "XML Pain Format"
|
9458 |
msgstr "XML Pain Format"
|
9459 |
|
9460 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:947
|
9461 |
msgid ""
|
9462 |
"You may adjust the XML Export Pain Schema to your banks needs. Some banks "
|
9463 |
"may require pain.001.003.03."
|
9466 |
"Einige Banken benötigen z.B. pain.001.003.03."
|
9467 |
|
9468 |
# @ woocommerce-germanized
|
9469 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:951
|
9470 |
msgid "Mandate ID Format"
|
9471 |
msgstr "Mandat-Referenz Format"
|
9472 |
|
9473 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:953
|
9474 |
msgid ""
|
9475 |
"You may extend the Mandate ID format by adding a prefix and/or suffix. Use "
|
9476 |
"{id} as placeholder to insert the automatically generated ID."
|
9480 |
"einzufügen."
|
9481 |
|
9482 |
# @ woocommerce-germanized
|
9483 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:957
|
9484 |
msgid "Mandate Text"
|
9485 |
msgstr "Lastschriftmandat"
|
9486 |
|
9487 |
# @ woocommerce-germanized
|
9488 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:959
|
9489 |
msgid ""
|
9490 |
"This text will be populated with live order/checkout data. Will be used as "
|
9491 |
"preview direct debit mandate and as email template text."
|
9496 |
"Verfügung gestellt."
|
9497 |
|
9498 |
# @ woocommerce-germanized
|
9499 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:965
|
9500 |
msgid "Checkbox"
|
9501 |
msgstr "Checkbox"
|
9502 |
|
9503 |
# @ woocommerce-germanized
|
9504 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:966
|
9505 |
msgid "Enable \"agree to SEPA mandate\" checkbox"
|
9506 |
msgstr "Aktivieren Sie die Checkbox zur Bestätigung des Lastschriftmandates"
|
9507 |
|
9508 |
# @ woocommerce-germanized
|
9509 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:968
|
9510 |
msgid "Enable a checkbox linking to a SEPA direct debit mandate preview."
|
9511 |
msgstr ""
|
9512 |
"Aktivieren Sie eine Checkbox, die zu einer Vorschau des Lastschrift-Mandats "
|
9513 |
"führt."
|
9514 |
|
9515 |
# @ woocommerce-germanized
|
9516 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:972
|
9517 |
msgid "Checkbox label"
|
9518 |
msgstr "Checkbox Text"
|
9519 |
|
9520 |
# @ woocommerce-germanized
|
9521 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:974
|
9522 |
msgid ""
|
9523 |
"Customize the checkbox label. Use {link}link name{/link} to insert the "
|
9524 |
"preview link."
|
9526 |
"Passt den Checkbox Text an. Verwenden Sie {link}SEPA Lastschriftmandat{/"
|
9527 |
"link} um auf die Vorschau zu verlinken."
|
9528 |
|
9529 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:979
|
9530 |
msgid "Enable pre-notification"
|
9531 |
msgstr "Vorankündigung aktivieren"
|
9532 |
|
9533 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:980
|
9534 |
msgid "Insert pre-notification text within the order confirmation email."
|
9535 |
msgstr ""
|
9536 |
"Fügt einen Standard-Text zur Vorankündigung des SEPA-Einzugs in die "
|
9537 |
"Bestellbestätigung ein."
|
9538 |
|
9539 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:982
|
9540 |
msgid ""
|
9541 |
"This option inserts a standard text containing a pre-notification for the "
|
9542 |
"customer."
|
9545 |
"die Bestellbestätigung ein. In der Ankündigung wird u.a. ein konkreter "
|
9546 |
"Fälligkeitstermin genannt."
|
9547 |
|
9548 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:986
|
9549 |
msgid "Debit days"
|
9550 |
msgstr "Fälligkeitstage"
|
9551 |
|
9552 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:988
|
9553 |
msgid ""
|
9554 |
"This option is used to calculate the debit date and is added to the order "
|
9555 |
"date."
|
9559 |
"hier eingestellten Anzahl Tage."
|
9560 |
|
9561 |
# @ woocommerce-germanized
|
9562 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:992
|
9563 |
msgid "Mask IBAN"
|
9564 |
msgstr "IBAN maskieren"
|
9565 |
|
9566 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:993
|
9567 |
msgid "Mask the IBAN within emails."
|
9568 |
msgstr "IBAN in E-Mails maskieren."
|
9569 |
|
9570 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:995
|
9571 |
msgid ""
|
9572 |
"This will lead to masked IBANs within emails (replaced by *). All but last 4 "
|
9573 |
"digits will be masked."
|
9575 |
"Der IBAN wird in E-Mails (abgesehen von den letzten 4 Stellen) mit * "
|
9576 |
"maskiert."
|
9577 |
|
9578 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1005
|
9579 |
msgid "Remember"
|
9580 |
msgstr "Bankdaten merken"
|
9581 |
|
9582 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1006
|
9583 |
msgid "Remember account data for returning customers."
|
9584 |
msgstr "Bankverbindung für registrierte Kunden speichern."
|
9585 |
|
9586 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1008
|
9587 |
msgid "Save account data as user meta if user has/creates a customer account."
|
9588 |
msgstr ""
|
9589 |
"Speichert die Bankverbindung für registrierte Kunden in der user_meta "
|
9591 |
"eigenständig aus."
|
9592 |
|
9593 |
# @ woocommerce-germanized
|
9594 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1118
|
9595 |
msgid "Please insert your SEPA account data."
|
9596 |
msgstr "Bitte fügen Sie Ihre SEPA Kontoinformationen ein."
|
9597 |
|
9598 |
# @ woocommerce-germanized
|
9599 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1140
|
9600 |
msgid "Your IBAN seems to be invalid."
|
9601 |
msgstr "Ihr IBAN scheint nicht gültig zu sein."
|
9602 |
|
9603 |
# @ woocommerce-germanized
|
9604 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1142
|
9605 |
msgid "Your IBAN's country code doesn’t match with your billing country."
|
9606 |
msgstr "Der Ländercode des IBANs stimmt nicht mit dem Rechnungsland überein."
|
9607 |
|
9608 |
# @ woocommerce-germanized
|
9609 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1147
|
9610 |
msgid "Your BIC seems to be invalid."
|
9611 |
msgstr "Ihr BIC/SWIFT scheint nicht gültig zu sein."
|
9612 |
|
9613 |
# @ woocommerce-germanized
|
9614 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1192
|
9615 |
msgid "is invalid"
|
9616 |
msgstr "ist ungültig"
|
9617 |
|
9618 |
# @ woocommerce-germanized
|
9619 |
+
#: woocommerce-germanized/includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php:1239
|
9620 |
msgid "Awaiting Direct Debit Payment"
|
9621 |
msgstr "Zahlung per Lastschrift ausstehend"
|
9622 |
|
10184 |
"unserem <a href=\"%s\" target=\"_blank\">Blog-Post</a> wie Sie das Plugin "
|
10185 |
"austauschen können."
|
10186 |
|
10187 |
+
#: woocommerce-germanized/woocommerce-germanized.php:1008
|
10188 |
msgid "Pease wait while we are trying to redirect you to the payment provider."
|
10189 |
msgstr "Einen Moment - wir versuchen Sie zum Zahlungsanbieter weiterzuleiten."
|
10190 |
|
includes/admin/class-wc-gzd-admin.php
CHANGED
@@ -810,7 +810,6 @@ class WC_GZD_Admin {
|
|
810 |
}
|
811 |
|
812 |
public function get_shipping_method_instances_options() {
|
813 |
-
|
814 |
$methods = $this->get_shipping_method_instances();
|
815 |
$shipping_methods_options = array();
|
816 |
|
810 |
}
|
811 |
|
812 |
public function get_shipping_method_instances_options() {
|
|
|
813 |
$methods = $this->get_shipping_method_instances();
|
814 |
$shipping_methods_options = array();
|
815 |
|
includes/class-wc-gzd-coupon-helper.php
CHANGED
@@ -68,6 +68,33 @@ class WC_GZD_Coupon_Helper {
|
|
68 |
return $has_vouchers;
|
69 |
}
|
70 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
/**
|
72 |
* Adjust WooCommerce order recalculation to make it compatible with vouchers.
|
73 |
* Maybe some day we'll be able to hook into calculate_taxes or calculate_totals so that is not necessary anymore.
|
68 |
return $has_vouchers;
|
69 |
}
|
70 |
|
71 |
+
/**
|
72 |
+
* Checks whether an order has an voucher as coupon or not.
|
73 |
+
*
|
74 |
+
* @param $order
|
75 |
+
*
|
76 |
+
* @return bool
|
77 |
+
*/
|
78 |
+
public function order_voucher_total( $order, $inc_tax = true ) {
|
79 |
+
$order = is_numeric( $order ) ? $order = wc_get_order( $order ) : $order;
|
80 |
+
|
81 |
+
$total = 0;
|
82 |
+
|
83 |
+
if ( $coupons = $order->get_items( 'coupon' ) ) {
|
84 |
+
foreach ( $coupons as $coupon ) {
|
85 |
+
if ( 'yes' === $coupon->get_meta( 'is_voucher', true ) ) {
|
86 |
+
$total += $coupon->get_discount();
|
87 |
+
|
88 |
+
if ( $inc_tax ) {
|
89 |
+
$total += $coupon->get_discount_tax();
|
90 |
+
}
|
91 |
+
}
|
92 |
+
}
|
93 |
+
}
|
94 |
+
|
95 |
+
return wc_format_decimal( $total );
|
96 |
+
}
|
97 |
+
|
98 |
/**
|
99 |
* Adjust WooCommerce order recalculation to make it compatible with vouchers.
|
100 |
* Maybe some day we'll be able to hook into calculate_taxes or calculate_totals so that is not necessary anymore.
|
includes/class-wc-gzd-dependencies.php
CHANGED
@@ -147,7 +147,17 @@ class WC_GZD_Dependencies {
|
|
147 |
}
|
148 |
|
149 |
public function is_woocommerce_outdated() {
|
150 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
151 |
}
|
152 |
|
153 |
public function is_element_pro_activated() {
|
147 |
}
|
148 |
|
149 |
public function is_woocommerce_outdated() {
|
150 |
+
$woo_version = get_option( 'woocommerce_db_version' );
|
151 |
+
|
152 |
+
/**
|
153 |
+
* Fallback to default Woo version to prevent issues
|
154 |
+
* for installations which failed the last Woo DB update.
|
155 |
+
*/
|
156 |
+
if ( ! $woo_version || empty( $woo_version ) ) {
|
157 |
+
$woo_version = get_option( 'woocommerce_version' );
|
158 |
+
}
|
159 |
+
|
160 |
+
return $this->compare_versions( $this->parse_version( $woo_version ), $this->get_wc_min_version_required(), '<' );
|
161 |
}
|
162 |
|
163 |
public function is_element_pro_activated() {
|
includes/class-wc-gzd-emails.php
CHANGED
@@ -21,14 +21,19 @@ class WC_GZD_Emails {
|
|
21 |
*/
|
22 |
private $mailer = null;
|
23 |
|
|
|
|
|
|
|
|
|
|
|
24 |
/**
|
25 |
* Adds legal page ids to different options and adds a hook to the email footer
|
26 |
*/
|
27 |
public function __construct() {
|
28 |
-
|
29 |
$this->set_footer_attachments();
|
30 |
|
31 |
add_action( 'woocommerce_email', array( $this, 'email_hooks' ), 0, 1 );
|
|
|
32 |
|
33 |
if ( wc_gzd_send_instant_order_confirmation() ) {
|
34 |
|
@@ -97,6 +102,45 @@ class WC_GZD_Emails {
|
|
97 |
}
|
98 |
}
|
99 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
public function add_bcc_email_headers( $headers, $id, $object, $email ) {
|
101 |
if ( $email ) {
|
102 |
$recipients = $email->get_option( 'bcc' );
|
@@ -660,7 +704,6 @@ class WC_GZD_Emails {
|
|
660 |
* @param $plain_text
|
661 |
*/
|
662 |
public function email_notices( $order, $sent_to_admin, $plain_text ) {
|
663 |
-
|
664 |
$type = $this->get_current_email_object();
|
665 |
|
666 |
if ( $type ) {
|
@@ -929,11 +972,12 @@ class WC_GZD_Emails {
|
|
929 |
/**
|
930 |
* Add global footer Hooks to Email templates
|
931 |
*/
|
932 |
-
public function add_template_footers() {
|
933 |
-
$email
|
|
|
|
|
934 |
|
935 |
if ( $email ) {
|
936 |
-
|
937 |
$email_id = $email->id;
|
938 |
|
939 |
/**
|
@@ -952,78 +996,7 @@ class WC_GZD_Emails {
|
|
952 |
}
|
953 |
|
954 |
public function get_current_email_object() {
|
955 |
-
|
956 |
-
if ( isset( $GLOBALS['wc_gzd_template_name'] ) && ! empty( $GLOBALS['wc_gzd_template_name'] ) ) {
|
957 |
-
|
958 |
-
$object = $this->get_email_instance_by_tpl( $GLOBALS['wc_gzd_template_name'] );
|
959 |
-
|
960 |
-
if ( is_object( $object ) ) {
|
961 |
-
return $object;
|
962 |
-
}
|
963 |
-
}
|
964 |
-
|
965 |
-
return false;
|
966 |
-
}
|
967 |
-
|
968 |
-
/**
|
969 |
-
* Returns Email Object by examining the template file
|
970 |
-
*
|
971 |
-
* @param string $tpl
|
972 |
-
*
|
973 |
-
* @return mixed
|
974 |
-
*/
|
975 |
-
private function get_email_instance_by_tpl( $tpls = array() ) {
|
976 |
-
|
977 |
-
if ( ! $this->mailer ) {
|
978 |
-
$this->set_mailer();
|
979 |
-
}
|
980 |
-
|
981 |
-
$found_mails = array();
|
982 |
-
$mails = $this->mailer->get_emails();
|
983 |
-
|
984 |
-
foreach ( $tpls as $tpl ) {
|
985 |
-
|
986 |
-
/**
|
987 |
-
* Filters the email template name for instance comparison.
|
988 |
-
*
|
989 |
-
* @param string $template_name The email template name.
|
990 |
-
*
|
991 |
-
* @since 1.0.0
|
992 |
-
*
|
993 |
-
*/
|
994 |
-
$tpl = apply_filters( 'woocommerce_germanized_email_template_name', str_replace( array(
|
995 |
-
'admin-',
|
996 |
-
'-'
|
997 |
-
), array( '', '_' ), basename( $tpl, '.php' ) ), $tpl );
|
998 |
-
|
999 |
-
if ( ! empty( $mails ) ) {
|
1000 |
-
foreach ( $mails as $mail ) {
|
1001 |
-
|
1002 |
-
if ( is_object( $mail ) ) {
|
1003 |
-
|
1004 |
-
/**
|
1005 |
-
* Filters whether an email template equals email id.
|
1006 |
-
*
|
1007 |
-
* @param bool $equals Whether template and email id match or not.
|
1008 |
-
* @param string $email_id The email id.
|
1009 |
-
* @param string $tpl The template name.
|
1010 |
-
*
|
1011 |
-
* @since 1.0.0
|
1012 |
-
*
|
1013 |
-
*/
|
1014 |
-
if ( apply_filters( 'woocommerce_gzd_email_template_id_comparison', ( $mail->id === $tpl ), $mail->id, $tpl ) ) {
|
1015 |
-
array_push( $found_mails, $mail );
|
1016 |
-
}
|
1017 |
-
}
|
1018 |
-
}
|
1019 |
-
}
|
1020 |
-
}
|
1021 |
-
|
1022 |
-
if ( ! empty( $found_mails ) ) {
|
1023 |
-
return $found_mails[ sizeof( $found_mails ) - 1 ];
|
1024 |
-
}
|
1025 |
-
|
1026 |
-
return null;
|
1027 |
}
|
1028 |
|
1029 |
/**
|
@@ -1099,5 +1072,4 @@ class WC_GZD_Emails {
|
|
1099 |
public function revocation_form_replacement( $atts ) {
|
1100 |
return '<a href="' . esc_url( wc_gzd_get_page_permalink( 'revocation' ) ) . '">' . _x( 'Forward your Revocation online', 'revocation-form', 'woocommerce-germanized' ) . '</a>';
|
1101 |
}
|
1102 |
-
|
1103 |
}
|
21 |
*/
|
22 |
private $mailer = null;
|
23 |
|
24 |
+
/**
|
25 |
+
* @var bool|WC_Email
|
26 |
+
*/
|
27 |
+
private $current_email_instance = false;
|
28 |
+
|
29 |
/**
|
30 |
* Adds legal page ids to different options and adds a hook to the email footer
|
31 |
*/
|
32 |
public function __construct() {
|
|
|
33 |
$this->set_footer_attachments();
|
34 |
|
35 |
add_action( 'woocommerce_email', array( $this, 'email_hooks' ), 0, 1 );
|
36 |
+
add_filter( 'wc_get_template', array( $this, 'maybe_set_current_email_instance' ), 1000, 3 );
|
37 |
|
38 |
if ( wc_gzd_send_instant_order_confirmation() ) {
|
39 |
|
102 |
}
|
103 |
}
|
104 |
|
105 |
+
/**
|
106 |
+
* On including a template (e.g. emails/customer-processing-order.php)
|
107 |
+
* Woo adds arguments to the template. In this method we do check whether the arguments
|
108 |
+
* contain an email (which indicates that an email template is included and send). We will then
|
109 |
+
* set the global email instance to the included email instance and use that to determine whether to add certain
|
110 |
+
* legal texts to it or not.
|
111 |
+
*
|
112 |
+
* @param $template
|
113 |
+
* @param $template_name
|
114 |
+
* @param $args
|
115 |
+
*
|
116 |
+
* @return mixed
|
117 |
+
*/
|
118 |
+
public function maybe_set_current_email_instance( $template, $template_name, $args ) {
|
119 |
+
if ( isset( $args['email'] ) && is_a( $args['email'], 'WC_Email' ) ) {
|
120 |
+
$this->current_email_instance = $args['email'];
|
121 |
+
}
|
122 |
+
|
123 |
+
return $template;
|
124 |
+
}
|
125 |
+
|
126 |
+
/**
|
127 |
+
* Returns the current email instance (if available).
|
128 |
+
*
|
129 |
+
* @return bool|WC_Email
|
130 |
+
*/
|
131 |
+
public function get_current_email_instance() {
|
132 |
+
/**
|
133 |
+
* Filters the current email instance (e.g. while sending an email) determined by Germanized.
|
134 |
+
* This instance is being used to check whether to attach legal texts to this email or not.
|
135 |
+
*
|
136 |
+
* @param bool|WC_Email $email The current email instance.
|
137 |
+
* @param WC_GZD_Emails $email_helper The email helper instance.
|
138 |
+
*
|
139 |
+
* @since 3.2.2
|
140 |
+
*/
|
141 |
+
return apply_filters( 'woocommerce_gzd_current_email_instance', $this->current_email_instance, $this );
|
142 |
+
}
|
143 |
+
|
144 |
public function add_bcc_email_headers( $headers, $id, $object, $email ) {
|
145 |
if ( $email ) {
|
146 |
$recipients = $email->get_option( 'bcc' );
|
704 |
* @param $plain_text
|
705 |
*/
|
706 |
public function email_notices( $order, $sent_to_admin, $plain_text ) {
|
|
|
707 |
$type = $this->get_current_email_object();
|
708 |
|
709 |
if ( $type ) {
|
972 |
/**
|
973 |
* Add global footer Hooks to Email templates
|
974 |
*/
|
975 |
+
public function add_template_footers( $email = false ) {
|
976 |
+
if ( ! $email ) {
|
977 |
+
$email = $this->get_current_email_instance();
|
978 |
+
}
|
979 |
|
980 |
if ( $email ) {
|
|
|
981 |
$email_id = $email->id;
|
982 |
|
983 |
/**
|
996 |
}
|
997 |
|
998 |
public function get_current_email_object() {
|
999 |
+
return $this->get_current_email_instance();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1000 |
}
|
1001 |
|
1002 |
/**
|
1072 |
public function revocation_form_replacement( $atts ) {
|
1073 |
return '<a href="' . esc_url( wc_gzd_get_page_permalink( 'revocation' ) ) . '">' . _x( 'Forward your Revocation online', 'revocation-form', 'woocommerce-germanized' ) . '</a>';
|
1074 |
}
|
|
|
1075 |
}
|
includes/class-wc-gzd-payment-gateways.php
CHANGED
@@ -133,6 +133,10 @@ class WC_GZD_Payment_Gateways {
|
|
133 |
}
|
134 |
|
135 |
public function manipulate_gateways() {
|
|
|
|
|
|
|
|
|
136 |
$gateways = WC()->payment_gateways->get_available_payment_gateways();
|
137 |
|
138 |
foreach ( $gateways as $gateway ) {
|
133 |
}
|
134 |
|
135 |
public function manipulate_gateways() {
|
136 |
+
if ( ! WC()->payment_gateways ) {
|
137 |
+
return;
|
138 |
+
}
|
139 |
+
|
140 |
$gateways = WC()->payment_gateways->get_available_payment_gateways();
|
141 |
|
142 |
foreach ( $gateways as $gateway ) {
|
includes/class-wc-gzd-shortcodes.php
CHANGED
@@ -67,7 +67,7 @@ class WC_GZD_Shortcodes {
|
|
67 |
$product = wc_get_product( $atts['product'] );
|
68 |
}
|
69 |
|
70 |
-
if (
|
71 |
ob_start();
|
72 |
call_user_func( $function_name );
|
73 |
$content = ob_get_clean();
|
67 |
$product = wc_get_product( $atts['product'] );
|
68 |
}
|
69 |
|
70 |
+
if ( $product && is_a( $product, 'WC_Product' ) ) {
|
71 |
ob_start();
|
72 |
call_user_func( $function_name );
|
73 |
$content = ob_get_clean();
|
includes/gateways/direct-debit/class-wc-gzd-gateway-direct-debit.php
CHANGED
@@ -355,7 +355,6 @@ Please notice: Period for pre-information of the SEPA direct debit is shortened
|
|
355 |
* @param array $order_statuses Valid order statuses to be exported.
|
356 |
*
|
357 |
* @since 1.8.5
|
358 |
-
*
|
359 |
*/
|
360 |
'post_status' => apply_filters( 'woocommerce_gzd_direct_debit_export_order_statuses', array(
|
361 |
'wc-pending',
|
@@ -370,14 +369,6 @@ Please notice: Period for pre-information of the SEPA direct debit is shortened
|
|
370 |
),
|
371 |
),
|
372 |
) );
|
373 |
-
|
374 |
-
if ( ! empty( $args['start_date'] ) ) {
|
375 |
-
array_push( $parts, $args['start_date'] );
|
376 |
-
}
|
377 |
-
|
378 |
-
if ( ! empty( $args['end_date'] ) ) {
|
379 |
-
array_push( $parts, $args['end_date'] );
|
380 |
-
}
|
381 |
}
|
382 |
|
383 |
/**
|
@@ -402,7 +393,8 @@ Please notice: Period for pre-information of the SEPA direct debit is shortened
|
|
402 |
*/
|
403 |
$filename = apply_filters( 'woocommerce_germanized_direct_debit_export_filename', implode( '-', $parts ) . '.xml', $args );
|
404 |
|
405 |
-
$directDebit
|
|
|
406 |
|
407 |
if ( $order_query->have_posts() ) {
|
408 |
|
355 |
* @param array $order_statuses Valid order statuses to be exported.
|
356 |
*
|
357 |
* @since 1.8.5
|
|
|
358 |
*/
|
359 |
'post_status' => apply_filters( 'woocommerce_gzd_direct_debit_export_order_statuses', array(
|
360 |
'wc-pending',
|
369 |
),
|
370 |
),
|
371 |
) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
372 |
}
|
373 |
|
374 |
/**
|
393 |
*/
|
394 |
$filename = apply_filters( 'woocommerce_germanized_direct_debit_export_filename', implode( '-', $parts ) . '.xml', $args );
|
395 |
|
396 |
+
$directDebit = false;
|
397 |
+
$direct_debit_xml = '';
|
398 |
|
399 |
if ( $order_query->have_posts() ) {
|
400 |
|
includes/gateways/invoice/class-wc-gzd-gateway-invoice.php
CHANGED
@@ -43,7 +43,7 @@ class WC_GZD_Gateway_Invoice extends WC_Payment_Gateway {
|
|
43 |
$this->enabled = $this->get_option( 'enabled' );
|
44 |
$this->title = $this->get_option( 'title' );
|
45 |
$this->description = $this->get_option( 'description' );
|
46 |
-
$this->instructions = $this->get_option( 'instructions'
|
47 |
$this->default_order_status = $this->get_option( 'default_order_status', 'on-hold' );
|
48 |
$this->customers_only = $this->get_option( 'customers_only', 'no' );
|
49 |
$this->customers_completed = $this->get_option( 'customers_completed', 'no' );
|
43 |
$this->enabled = $this->get_option( 'enabled' );
|
44 |
$this->title = $this->get_option( 'title' );
|
45 |
$this->description = $this->get_option( 'description' );
|
46 |
+
$this->instructions = $this->get_option( 'instructions' );
|
47 |
$this->default_order_status = $this->get_option( 'default_order_status', 'on-hold' );
|
48 |
$this->customers_only = $this->get_option( 'customers_only', 'no' );
|
49 |
$this->customers_completed = $this->get_option( 'customers_completed', 'no' );
|
includes/wc-gzd-core-functions.php
CHANGED
@@ -345,6 +345,51 @@ function wc_gzd_get_differential_taxation_checkout_notice() {
|
|
345 |
return $notice;
|
346 |
}
|
347 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
348 |
function wc_gzd_is_parcel_delivery_data_transfer_checkbox_enabled( $rate_ids = array() ) {
|
349 |
$return = false;
|
350 |
|
@@ -366,9 +411,8 @@ function wc_gzd_is_parcel_delivery_data_transfer_checkbox_enabled( $rate_ids = a
|
|
366 |
$rate_is_supported = true;
|
367 |
|
368 |
if ( ! empty( $rate_ids ) ) {
|
369 |
-
|
370 |
foreach ( $rate_ids as $rate_id ) {
|
371 |
-
if ( !
|
372 |
$rate_is_supported = false;
|
373 |
}
|
374 |
}
|
345 |
return $notice;
|
346 |
}
|
347 |
|
348 |
+
function wc_gzd_shipping_method_id_matches_supported( $method_id, $supported = array() ) {
|
349 |
+
if ( ! is_array( $supported ) ) {
|
350 |
+
$supported = array( $supported );
|
351 |
+
}
|
352 |
+
|
353 |
+
$new_supported = $supported;
|
354 |
+
$new_method_id = $method_id;
|
355 |
+
|
356 |
+
/**
|
357 |
+
* E.g. Flexible shipping uses underscores. Add them to the search array.
|
358 |
+
*/
|
359 |
+
foreach( $supported as $supported_method ) {
|
360 |
+
$supported_method = str_replace( ':', '_', $supported_method );
|
361 |
+
$new_supported[] = $supported_method;
|
362 |
+
}
|
363 |
+
|
364 |
+
/**
|
365 |
+
* Remove the last part of a compatible shipping method id. E.g.:
|
366 |
+
* flexible_shipping_4_1 - remove _1 from the string to compare it to our search array.
|
367 |
+
*/
|
368 |
+
$method_parts = explode( '_', $new_method_id );
|
369 |
+
|
370 |
+
if ( ! empty( $method_parts ) ) {
|
371 |
+
$method_parts = array_slice( $method_parts, 0, ( sizeof( $method_parts ) - 1 ) );
|
372 |
+
|
373 |
+
if ( ! empty( $method_parts ) ) {
|
374 |
+
$new_method_id = implode( '_', $method_parts );
|
375 |
+
}
|
376 |
+
}
|
377 |
+
|
378 |
+
$is_supported = in_array( $new_method_id, $new_supported ) ? true : false;
|
379 |
+
|
380 |
+
/**
|
381 |
+
* Filter to check whether a certain shipping method id matches one of the
|
382 |
+
* shipping method expected (e.g. from the settings).
|
383 |
+
*
|
384 |
+
* @param bool $return Whether the method id matches one of the expected methods or not.
|
385 |
+
* @param string $method_id The shipping method id.
|
386 |
+
* @param array $supported The shipping method ids to search for.
|
387 |
+
*
|
388 |
+
* @since 3.2.2
|
389 |
+
*/
|
390 |
+
return apply_filters( 'woocommerce_gzd_shipping_method_id_matches_supported', $is_supported, $method_id, $supported );
|
391 |
+
}
|
392 |
+
|
393 |
function wc_gzd_is_parcel_delivery_data_transfer_checkbox_enabled( $rate_ids = array() ) {
|
394 |
$return = false;
|
395 |
|
411 |
$rate_is_supported = true;
|
412 |
|
413 |
if ( ! empty( $rate_ids ) ) {
|
|
|
414 |
foreach ( $rate_ids as $rate_id ) {
|
415 |
+
if ( ! wc_gzd_shipping_method_id_matches_supported( $rate_id, $supported ) ) {
|
416 |
$rate_is_supported = false;
|
417 |
}
|
418 |
}
|
packages/woocommerce-germanized-dhl/assets/js/admin-label.js
CHANGED
@@ -33,7 +33,6 @@ window.germanized.admin = window.germanized.admin || {};
|
|
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 ),
|
33 |
|
34 |
showOrHideServices: function( productId ) {
|
35 |
var $services = $( '.show-if-further-services' ).find( 'p.form-field' );
|
|
|
36 |
|
37 |
$services.each( function() {
|
38 |
var $service = $( this ),
|
packages/woocommerce-germanized-dhl/assets/js/admin-label.min.js
CHANGED
@@ -1 +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){
|
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){a(".show-if-further-services").find("p.form-field").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/src/Api/LabelSoap.php
CHANGED
@@ -389,8 +389,8 @@ class LabelSoap extends Soap {
|
|
389 |
$services[ $service ]['insuranceAmount'] = $shipment->get_total();
|
390 |
break;
|
391 |
case 'IdentCheck':
|
392 |
-
$services[ $service ]['Ident']['surname'] = $shipment->
|
393 |
-
$services[ $service ]['Ident']['givenName'] = $shipment->
|
394 |
$services[ $service ]['Ident']['dateOfBirth'] = $label->get_ident_date_of_birth() ? $label->get_ident_date_of_birth()->date( 'Y-m-d' ) : '';
|
395 |
$services[ $service ]['Ident']['minimumAge'] = $label->get_ident_min_age();
|
396 |
break;
|
389 |
$services[ $service ]['insuranceAmount'] = $shipment->get_total();
|
390 |
break;
|
391 |
case 'IdentCheck':
|
392 |
+
$services[ $service ]['Ident']['surname'] = $shipment->get_last_name();
|
393 |
+
$services[ $service ]['Ident']['givenName'] = $shipment->get_first_name();
|
394 |
$services[ $service ]['Ident']['dateOfBirth'] = $label->get_ident_date_of_birth() ? $label->get_ident_date_of_birth()->date( 'Y-m-d' ) : '';
|
395 |
$services[ $service ]['Ident']['minimumAge'] = $label->get_ident_min_age();
|
396 |
break;
|
packages/woocommerce-germanized-dhl/src/Package.php
CHANGED
@@ -20,7 +20,7 @@ class Package {
|
|
20 |
*
|
21 |
* @var string
|
22 |
*/
|
23 |
-
const VERSION = '1.3.
|
24 |
|
25 |
public static $upload_dir_suffix = '';
|
26 |
|
20 |
*
|
21 |
* @var string
|
22 |
*/
|
23 |
+
const VERSION = '1.3.1';
|
24 |
|
25 |
public static $upload_dir_suffix = '';
|
26 |
|
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.3.
|
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.3.1
|
9 |
* Requires PHP: 5.6
|
10 |
* License: GPLv3
|
11 |
*
|
packages/woocommerce-germanized-shipments/assets/css/admin.css
CHANGED
@@ -421,7 +421,7 @@ table.wc-gzd-shipping-providers {
|
|
421 |
display: none; }
|
422 |
.germanized-shipments #panel-order-shipments .order-shipment .shipment-content {
|
423 |
padding: 1em;
|
424 |
-
margin-top: -
|
425 |
padding-bottom: 0; }
|
426 |
.germanized-shipments #panel-order-shipments .order-shipment .add-shipment-return {
|
427 |
display: none; }
|
421 |
display: none; }
|
422 |
.germanized-shipments #panel-order-shipments .order-shipment .shipment-content {
|
423 |
padding: 1em;
|
424 |
+
margin-top: -1.5em;
|
425 |
padding-bottom: 0; }
|
426 |
.germanized-shipments #panel-order-shipments .order-shipment .add-shipment-return {
|
427 |
display: none; }
|
packages/woocommerce-germanized-shipments/assets/css/admin.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.germanized-create-label .notice-wrapper .notice{margin:0;margin-bottom:1em}.germanized-create-label .notice-wrapper .notice p{margin:.5em 0!important;padding:2px!important;font-size:13px;line-height:1.5}.germanized-create-label p.form-field{display:inline-block;width:100%;margin-bottom:5px!important;margin-top:5px!important}.germanized-create-label p.form-field:first-child,.germanized-create-label p.form-field:last-child{margin-bottom:5px!important;margin-top:5px!important}.germanized-create-label .columns{margin-left:-.5rem!important;margin-right:-.5rem!important}.germanized-create-label .column{padding-left:.5rem!important;padding-right:.5rem!important}.germanized-create-label .hide-default,.germanized-create-label .show-if{display:none}.germanized-create-label .show-if label{color:#777}.germanized-create-label p.form-field label{width:100%;display:block;margin-bottom:5px}.germanized-create-label p.form-field input[type=email],.germanized-create-label p.form-field input[type=text],.germanized-create-label p.form-field select{width:100%;max-width:100%}.germanized-create-label p.form-field.form-field-checkbox{display:flex;flex-wrap:wrap;flex-direction:row;justify-content:flex-start;margin-top:10px!important;margin-bottom:10px!important;align-items:center}.germanized-create-label p.form-field.form-field-checkbox label{width:auto;margin-left:.5em;order:2;margin-bottom:0}.germanized-create-label p.form-field.form-field-checkbox input[type=checkbox]{order:1}.germanized-create-label p.form-field.form-field-checkbox .woocommerce-help-tip{order:3;margin-left:3px}.germanized-create-label p.form-field.form-field-checkbox .description{width:100%;margin-top:5px;color:#777;order:4;font-style:normal}table.wc-gzd-shipping-providers{margin-top:1.5em}table.wc-gzd-shipping-providers td,table.wc-gzd-shipping-providers th{display:table-cell!important;padding:1em!important;vertical-align:top;line-height:1.75em;font-size:14px}table.wc-gzd-shipping-providers th{font-weight:600}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-activated,table.wc-gzd-shipping-providers th.wc-gzd-shipping-provider-activated{width:1%;text-align:center}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-activated .status-disabled,table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-activated .status-enabled,table.wc-gzd-shipping-providers th.wc-gzd-shipping-provider-activated .status-disabled,table.wc-gzd-shipping-providers th.wc-gzd-shipping-provider-activated .status-enabled{display:inline-block;margin-top:3px}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-actions,table.wc-gzd-shipping-providers th.wc-gzd-shipping-provider-actions{width:15%;text-align:right}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-actions{display:flex;justify-content:flex-end;flex-wrap:wrap}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-actions .button{margin-right:5px}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-actions .button:last-child{margin-right:0}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-title,table.wc-gzd-shipping-providers th.wc-gzd-shipping-provider-title{width:30ch}table.wc-gzd-shipping-providers tr:nth-child(odd) td{background:#f9f9f9}.order-return-status,.order-shipping-status,.shipment-status{background:#eee;padding:.2em .5em;font-size:.9em;border-radius:3px;display:inline-flex;white-space:nowrap}.order-return-status.status-draft,.order-return-status.status-open,.order-return-status.status-partially-returned,.order-return-status.status-partially-shipped,.order-return-status.status-processing,.order-return-status.status-requested,.order-shipping-status.status-draft,.order-shipping-status.status-open,.order-shipping-status.status-partially-returned,.order-shipping-status.status-partially-shipped,.order-shipping-status.status-processing,.order-shipping-status.status-requested,.shipment-status.status-draft,.shipment-status.status-open,.shipment-status.status-partially-returned,.shipment-status.status-partially-shipped,.shipment-status.status-processing,.shipment-status.status-requested{background:#f8dda7;color:#94660c}.order-return-status.status-not-shipped,.order-shipping-status.status-not-shipped,.shipment-status.status-not-shipped{background:#eba3a3;color:#761919}.order-return-status.status-delivered,.order-return-status.status-returned,.order-return-status.status-shipped,.order-shipping-status.status-delivered,.order-shipping-status.status-returned,.order-shipping-status.status-shipped,.shipment-status.status-delivered,.shipment-status.status-returned,.shipment-status.status-shipped{background:#c6e1c6;color:#5b841b}.order-return-status.shipment-type-return-status.status-shipped,.order-shipping-status.shipment-type-return-status.status-shipped,.shipment-status.shipment-type-return-status.status-shipped{background:#f8dda7;color:#94660c}.woocommerce_page_wc-gzd-return-shipments .tablenav .actions,.woocommerce_page_wc-gzd-shipments .tablenav .actions{overflow:visible}.woocommerce_page_wc-gzd-return-shipments .tablenav .select2-container,.woocommerce_page_wc-gzd-shipments .tablenav .select2-container{float:left;width:240px!important;font-size:14px;vertical-align:middle;margin:1px 6px 4px 1px}.woocommerce_page_wc-gzd-return-shipments .tablenav .select2-container .select2-selection--single,.woocommerce_page_wc-gzd-shipments .tablenav .select2-container .select2-selection--single{height:32px}.woocommerce_page_wc-gzd-return-shipments .tablenav .select2-container .select2-selection--single .select2-selection__rendered,.woocommerce_page_wc-gzd-shipments .tablenav .select2-container .select2-selection--single .select2-selection__rendered{line-height:29px}.woocommerce_page_wc-gzd-return-shipments .tablenav .select2-container .select2-selection--single .select2-selection__arrow,.woocommerce_page_wc-gzd-shipments .tablenav .select2-container .select2-selection--single .select2-selection__arrow{height:30px}.woocommerce_page_wc-gzd-return-shipments .tablenav input,.woocommerce_page_wc-gzd-return-shipments .tablenav select,.woocommerce_page_wc-gzd-shipments .tablenav input,.woocommerce_page_wc-gzd-shipments .tablenav select{line-height:1;height:32px}.woocommerce_page_wc-gzd-return-shipments .tablenav input,.woocommerce_page_wc-gzd-shipments .tablenav input{height:31px}.woocommerce_page_wc-gzd-return-shipments .tablenav #shipment-query-submit,.woocommerce_page_wc-gzd-shipments .tablenav #shipment-query-submit{margin:1px 8px 0 0}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper{display:none;clear:both;margin:1em 0;float:left;width:50%}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper h4,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper h4{margin-top:0}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress{width:100%;height:42px;margin:0 auto;display:block;-webkit-appearance:none;border:none;background:#f5f5f5;border:2px solid #eee;border-radius:4px;padding:0;box-shadow:0 1px 0 0 rgba(255,255,255,.2)}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress::-webkit-progress-bar,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress::-webkit-progress-bar{background:transparent none;border:0;border-radius:4px;padding:0;box-shadow:none}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress::-webkit-progress-value,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress::-webkit-progress-value{border-radius:3px;box-shadow:inset 0 1px 1px 0 rgba(255,255,255,.4);background:#a46497;background:linear-gradient(to bottom,#a46497,#66405f),#a46497;transition:width 1s ease}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress::-moz-progress-bar,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress::-moz-progress-bar{border-radius:3px;box-shadow:inset 0 1px 1px 0 rgba(255,255,255,.4);background:#a46497;background:linear-gradient(to bottom,#a46497,#66405f),#a46497;transition:width 1s ease}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress::-ms-fill,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress::-ms-fill{border-radius:3px;box-shadow:inset 0 1px 1px 0 rgba(255,255,255,.4);background:#a46497;background:linear-gradient(to bottom,#a46497,#66405f),#a46497;transition:width 1s ease}.woocommerce_page_wc-gzd-return-shipments #posts-filter.bulk-action-processing .bulk-action-wrapper,.woocommerce_page_wc-gzd-shipments #posts-filter.bulk-action-processing .bulk-action-wrapper{display:block}.woocommerce_page_wc-gzd-return-shipments .wp-list-table,.woocommerce_page_wc-gzd-shipments .wp-list-table{margin-top:1em}.woocommerce_page_wc-gzd-return-shipments .wp-list-table td,.woocommerce_page_wc-gzd-return-shipments .wp-list-table th,.woocommerce_page_wc-gzd-shipments .wp-list-table td,.woocommerce_page_wc-gzd-shipments .wp-list-table th{padding:.5em 1em;width:10ch;vertical-align:middle}.woocommerce_page_wc-gzd-return-shipments .wp-list-table tbody th,.woocommerce_page_wc-gzd-return-shipments .wp-list-table td,.woocommerce_page_wc-gzd-shipments .wp-list-table tbody th,.woocommerce_page_wc-gzd-shipments .wp-list-table td{line-height:26px}.woocommerce_page_wc-gzd-return-shipments .wp-list-table thead th,.woocommerce_page_wc-gzd-shipments .wp-list-table thead th{padding:.5em 1em}.woocommerce_page_wc-gzd-return-shipments .wp-list-table thead th.sortable a,.woocommerce_page_wc-gzd-return-shipments .wp-list-table thead th.sorted a,.woocommerce_page_wc-gzd-shipments .wp-list-table thead th.sortable a,.woocommerce_page_wc-gzd-shipments .wp-list-table thead th.sorted a{padding:0}.woocommerce_page_wc-gzd-return-shipments .wp-list-table thead th:last-child,.woocommerce_page_wc-gzd-shipments .wp-list-table thead th:last-child{padding-right:2em}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .check-column,.woocommerce_page_wc-gzd-shipments .wp-list-table .check-column{width:16px;white-space:nowrap;padding:1em 1em 1em 1em!important;vertical-align:middle}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .check-column input,.woocommerce_page_wc-gzd-shipments .wp-list-table .check-column input{vertical-align:text-top;margin:1px 0}.woocommerce_page_wc-gzd-return-shipments .wp-list-table td.column-title,.woocommerce_page_wc-gzd-shipments .wp-list-table td.column-title{font-weight:700}.woocommerce_page_wc-gzd-return-shipments .wp-list-table td.column-title .shipment-title-meta,.woocommerce_page_wc-gzd-shipments .wp-list-table td.column-title .shipment-title-meta{margin-top:0;font-weight:400;color:#999;font-style:italic}.woocommerce_page_wc-gzd-return-shipments .wp-list-table td.column-title .shipment-title-meta .shipment-tracking-id,.woocommerce_page_wc-gzd-shipments .wp-list-table td.column-title .shipment-title-meta .shipment-tracking-id{color:#999;display:block}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-title,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-title{width:20ch}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions{width:10ch}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-order,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-order{width:10ch}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-address a,.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-sender a,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-address a,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-sender a{color:#32373c}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .shipment-status,.woocommerce_page_wc-gzd-shipments .wp-list-table .shipment-status{font-size:1em}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions{text-align:right}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button{text-indent:9999px;margin:2px 0 2px 4px;position:relative;display:inline-block;padding:0;height:2em;width:2em;overflow:hidden;vertical-align:middle}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button::after{font-family:Dashicons;margin:0;margin-top:2px;speak:none;font-weight:400;font-variant:normal;text-transform:none;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;line-height:1.85}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.processing::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.processing::after{font-family:WooCommerce;content:"\e00f"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.shipped::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.shipped::after{content:"\f147"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.delivered::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.delivered::after{content:"\f147"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.confirm::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.confirm::after{content:"\f147"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.generate::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.generate::after{content:"\f502"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.download::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.download::after{content:"\f103"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-address,.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-sender,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-address,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-sender{width:20ch}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-items,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-items{width:20ch}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview{font-size:.9em;border-spacing:0}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview thead th,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview thead th{color:#adadad;padding-top:0;font-size:1.1em}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview tr td,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview tr td{border-bottom:1px solid #ccc!important}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview tr:last-child td,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview tr:last-child td{border-bottom:none!important}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td,.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th{padding:.3em 0;vertical-align:top;line-height:20px}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-name,.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th.wc-gzd-shipment-item-column-name,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-name,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th.wc-gzd-shipment-item-column-name{width:70%}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-quantity,.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th.wc-gzd-shipment-item-column-quantity,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-quantity,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th.wc-gzd-shipment-item-column-quantity{text-align:right;padding-right:.5em}#woocommerce-gzd-order-shipments .inside{margin:0;padding:0;display:block!important}#woocommerce-gzd-order-shipments .handlediv,#woocommerce-gzd-order-shipments .hndle,#woocommerce-gzd-order-shipments .postbox-header{display:none}#woocommerce-gzd-order-shipments .hide-default{display:none}.germanized-shipments *{box-sizing:border-box}.germanized-shipments #panel-order-shipments{padding:23px 0 0}.germanized-shipments #panel-order-shipments .panel-inner{padding:0 24px}.germanized-shipments #panel-order-shipments .panel-title-inner{padding-left:0;margin-top:1em;padding-right:0}.germanized-shipments #panel-order-shipments .panel-title{margin-bottom:1.5em}.germanized-shipments #panel-order-shipments .panel-title h2{margin:0;font-family:HelveticaNeue-Light,"Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:21px;font-weight:400;line-height:1.2;text-shadow:1px 1px 1px #fff;padding:0}.germanized-shipments #panel-order-shipments .panel-footer{background:#f8f8f8;padding-top:1em;padding-bottom:1em;border-top:1px solid #dfdfdf;display:none}.germanized-shipments #panel-order-shipments .panel-footer .order-shipments-actions{display:flex;flex-wrap:nowrap;justify-content:space-between}.germanized-shipments #panel-order-shipments .panel-footer .order-shipments-actions .shipment-actions-left{display:flex;flex-wrap:wrap;justify-content:flex-start}.germanized-shipments #panel-order-shipments .panel-footer .order-shipments-actions .shipment-actions-left .button{margin-right:1em}.germanized-shipments #panel-order-shipments .panel-footer #order-shipments-save{display:none}.germanized-shipments #panel-order-shipments #order-return-shipment-add,.germanized-shipments #panel-order-shipments #order-shipment-add{display:none}.germanized-shipments #panel-order-shipments.needs-shipments .panel-footer{display:block}.germanized-shipments #panel-order-shipments.needs-shipments #order-shipment-add{display:block}.germanized-shipments #panel-order-shipments.needs-returns .panel-footer{display:block}.germanized-shipments #panel-order-shipments.needs-returns #order-return-shipment-add{display:block}.germanized-shipments #panel-order-shipments #order-shipments-list{margin-bottom:1.5em}.germanized-shipments #panel-order-shipments .delete{color:#a00}.germanized-shipments #panel-order-shipments .delete:hover{color:#dc3232;border:none}.germanized-shipments #panel-order-shipments .order-shipment a .woocommerce-help-tip{margin-right:3px}.germanized-shipments #panel-order-shipments .order-shipment .handlediv{display:inline-block;float:none;width:auto;height:auto}.germanized-shipments #panel-order-shipments .order-shipment .handlediv .toggle-indicator::before{content:"\f140"}.germanized-shipments #panel-order-shipments .order-shipment .wc-gzd-shipment-label h4{margin-top:0}.germanized-shipments #panel-order-shipments .order-shipment .wc-gzd-shipment-label .shipment-label-actions .shipment-label-actions-wrapper{display:flex;flex-wrap:wrap;justify-content:flex-start;margin-bottom:1em;align-items:center}.germanized-shipments #panel-order-shipments .order-shipment .wc-gzd-shipment-label .shipment-label-actions .shipment-label-actions-wrapper a{margin-right:1em}.germanized-shipments #panel-order-shipments .order-shipment .show-if{display:none}.germanized-shipments #panel-order-shipments .order-shipment.active>.shipment-content-wrapper{display:block}.germanized-shipments #panel-order-shipments .order-shipment.active>.shipment-header>.right>.handlediv .toggle-indicator::before{content:"\f142"}.germanized-shipments #panel-order-shipments .order-shipment .item-count{margin-right:1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-footer{margin-top:1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-footer .shipment-footer-inner{display:flex;flex-wrap:nowrap;justify-content:flex-end;padding:0 .5em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-footer .shipment-footer-inner a.shipment-footer-action{margin-right:1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-footer .shipment-footer-inner a.shipment-footer-action:last-child{margin-right:0}.germanized-shipments #panel-order-shipments .order-shipment .shipment-header{color:#999;background:#f8f8f8;margin:1.5em 0;padding:.5em 1em;cursor:pointer}.germanized-shipments #panel-order-shipments .order-shipment .shipment-header .shipment-status{margin-left:1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-header h3{margin:0}.germanized-shipments #panel-order-shipments .order-shipment:first-child .shipment-header{margin-top:0}.germanized-shipments #panel-order-shipments .order-shipment .shipment-header:hover,.germanized-shipments #panel-order-shipments .order-shipment.active>.shipment-header{background:#f3f3f3}.germanized-shipments #panel-order-shipments .order-shipment .shipment-content-wrapper{display:none}.germanized-shipments #panel-order-shipments .order-shipment .shipment-content{padding:1em;margin-top:-2.5em;padding-bottom:0}.germanized-shipments #panel-order-shipments .order-shipment .add-shipment-return{display:none}.germanized-shipments #panel-order-shipments .order-shipment.is-returnable .add-shipment-return{display:block}.germanized-shipments #panel-order-shipments .order-shipment p.form-row{margin-bottom:1.5em}.germanized-shipments #panel-order-shipments .order-shipment p.form-row input[type=email],.germanized-shipments #panel-order-shipments .order-shipment p.form-row input[type=number],.germanized-shipments #panel-order-shipments .order-shipment p.form-row input[type=text]{height:30px}.germanized-shipments #panel-order-shipments .order-shipment p.form-row select{line-height:30px;height:30px;padding-top:0;padding-bottom:0}.germanized-shipments #panel-order-shipments .order-shipment p.form-row label{color:#999;font-weight:600}.germanized-shipments #panel-order-shipments .order-shipment p.form-row label .woocommerce-help-tip{float:none}.germanized-shipments #panel-order-shipments .order-shipment .columns .column.column-spaced{margin:5px 0}.germanized-shipments #panel-order-shipments .order-shipment .columns .column h4{margin-bottom:.7em;color:#999}.germanized-shipments #panel-order-shipments .order-shipment .columns .column h4 a{color:#999;text-decoration:none}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item-action{text-align:right}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item-quantity input{width:50px;text-align:center}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item-name p.form-row{margin-bottom:0;margin-top:.5em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item-heading{padding:.5em;color:#999;background:#f8f8f8;font-weight:600}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item{padding:.5em;border-bottom:1px solid #dfdfdf}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item:last-child{border-bottom:none}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item:nth-child(2n){background:#f8f8f8}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item .columns{align-items:center}.germanized-shipments #panel-order-shipments .order-shipment .shipment-item-actions{display:flex;padding:.7em .5em;flex-wrap:nowrap;justify-content:flex-end;border-top:1px solid #dfdfdf}.germanized-shipments #panel-order-shipments .order-shipment .shipment-item-actions .add-items{margin-right:1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-item-actions .woocommerce-help-tip{margin-left:0}.germanized-shipments #panel-order-shipments .order-shipment .add-items{display:none}.germanized-shipments #panel-order-shipments .order-shipment .shipment-returns{margin-top:.5em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-returns .shipment-return .shipment-header{background:0 0;border-bottom:1px solid #dfdfdf;padding-left:0;padding-right:0}.germanized-shipments #panel-order-shipments .order-shipment .shipment-returns .shipment-return .shipment-header h3{font-size:1.1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-returns .shipment-return .shipment-content{padding:1em 0}.germanized-shipments #panel-order-shipments .order-shipment.needs-items .add-items{display:block}.germanized-shipments #panel-order-shipments .form-row .input-inner-wrap{clear:left;margin:0;display:flex;flex-wrap:nowrap}.germanized-shipments #panel-order-shipments .form-row .input-inner-wrap input{margin-right:1em}.germanized-shipments #panel-order-shipments .form-row .input-inner-wrap input:last-child{margin-right:0}.germanized-shipments .title-spread{display:flex;flex-wrap:nowrap;justify-content:space-between;align-items:center}.germanized-shipments .title-spread .left,.germanized-shipments .title-spread .right{display:inline-flex;align-items:center}.germanized-shipments .show-lg,.germanized-shipments .show-md,.germanized-shipments .show-sm,.germanized-shipments .show-xl,.germanized-shipments .show-xs{display:none!important}.germanized-shipments .columns{display:flex;flex-wrap:wrap;margin-left:-1rem;margin-right:-1rem}.germanized-shipments .columns.col-gapless{margin-left:0;margin-right:0}.germanized-shipments .columns.col-gapless>.column{padding-left:0;padding-right:0}.germanized-shipments .columns.col-oneline{flex-wrap:nowrap;overflow-x:auto}.germanized-shipments .column{flex:1;max-width:100%;padding-left:1rem;padding-right:1rem}.germanized-shipments .column.col-1,.germanized-shipments .column.col-10,.germanized-shipments .column.col-11,.germanized-shipments .column.col-12,.germanized-shipments .column.col-2,.germanized-shipments .column.col-3,.germanized-shipments .column.col-4,.germanized-shipments .column.col-5,.germanized-shipments .column.col-6,.germanized-shipments .column.col-7,.germanized-shipments .column.col-8,.germanized-shipments .column.col-9,.germanized-shipments .column.col-auto{flex:none}.germanized-shipments .col-12{width:100%}.germanized-shipments .col-11{width:91.66666667%}.germanized-shipments .col-10{width:83.33333333%}.germanized-shipments .col-9{width:75%}.germanized-shipments .col-8{width:66.66666667%}.germanized-shipments .col-7{width:58.33333333%}.germanized-shipments .col-6{width:50%}.germanized-shipments .col-5{width:41.66666667%}.germanized-shipments .col-4{width:33.33333333%}.germanized-shipments .col-3{width:25%}.germanized-shipments .col-2{width:16.66666667%}.germanized-shipments .col-1{width:8.33333333%}.germanized-shipments .col-auto{flex:0 0 auto;max-width:none;width:auto}.germanized-shipments .col-mx-auto{margin-left:auto;margin-right:auto}.germanized-shipments .col-ml-auto{margin-left:auto}.germanized-shipments .col-mr-auto{margin-right:auto}@media (max-width:1280px){.germanized-shipments .col-xl-1,.germanized-shipments .col-xl-10,.germanized-shipments .col-xl-11,.germanized-shipments .col-xl-12,.germanized-shipments .col-xl-2,.germanized-shipments .col-xl-3,.germanized-shipments .col-xl-4,.germanized-shipments .col-xl-5,.germanized-shipments .col-xl-6,.germanized-shipments .col-xl-7,.germanized-shipments .col-xl-8,.germanized-shipments .col-xl-9,.germanized-shipments .col-xl-auto{flex:none}.germanized-shipments .col-xl-12{width:100%}.germanized-shipments .col-xl-11{width:91.66666667%}.germanized-shipments .col-xl-10{width:83.33333333%}.germanized-shipments .col-xl-9{width:75%}.germanized-shipments .col-xl-8{width:66.66666667%}.germanized-shipments .col-xl-7{width:58.33333333%}.germanized-shipments .col-xl-6{width:50%}.germanized-shipments .col-xl-5{width:41.66666667%}.germanized-shipments .col-xl-4{width:33.33333333%}.germanized-shipments .col-xl-3{width:25%}.germanized-shipments .col-xl-2{width:16.66666667%}.germanized-shipments .col-xl-1{width:8.33333333%}.germanized-shipments .col-xl-auto{width:auto}.germanized-shipments .hide-xl{display:none!important}.germanized-shipments .show-xl{display:block!important}}@media (max-width:960px){.germanized-shipments .col-lg-1,.germanized-shipments .col-lg-10,.germanized-shipments .col-lg-11,.germanized-shipments .col-lg-12,.germanized-shipments .col-lg-2,.germanized-shipments .col-lg-3,.germanized-shipments .col-lg-4,.germanized-shipments .col-lg-5,.germanized-shipments .col-lg-6,.germanized-shipments .col-lg-7,.germanized-shipments .col-lg-8,.germanized-shipments .col-lg-9,.germanized-shipments .col-lg-auto{flex:none}.germanized-shipments .col-lg-12{width:100%}.germanized-shipments .col-lg-11{width:91.66666667%}.germanized-shipments .col-lg-10{width:83.33333333%}.germanized-shipments .col-lg-9{width:75%}.germanized-shipments .col-lg-8{width:66.66666667%}.germanized-shipments .col-lg-7{width:58.33333333%}.germanized-shipments .col-lg-6{width:50%}.germanized-shipments .col-lg-5{width:41.66666667%}.germanized-shipments .col-lg-4{width:33.33333333%}.germanized-shipments .col-lg-3{width:25%}.germanized-shipments .col-lg-2{width:16.66666667%}.germanized-shipments .col-lg-1{width:8.33333333%}.germanized-shipments .col-lg-auto{width:auto}.germanized-shipments .hide-lg{display:none!important}.germanized-shipments .show-lg{display:block!important}}@media (max-width:840px){.germanized-shipments .col-md-1,.germanized-shipments .col-md-10,.germanized-shipments .col-md-11,.germanized-shipments .col-md-12,.germanized-shipments .col-md-2,.germanized-shipments .col-md-3,.germanized-shipments .col-md-4,.germanized-shipments .col-md-5,.germanized-shipments .col-md-6,.germanized-shipments .col-md-7,.germanized-shipments .col-md-8,.germanized-shipments .col-md-9,.germanized-shipments .col-md-auto{flex:none}.germanized-shipments .col-md-12{width:100%}.germanized-shipments .col-md-11{width:91.66666667%}.germanized-shipments .col-md-10{width:83.33333333%}.germanized-shipments .col-md-9{width:75%}.germanized-shipments .col-md-8{width:66.66666667%}.germanized-shipments .col-md-7{width:58.33333333%}.germanized-shipments .col-md-6{width:50%}.germanized-shipments .col-md-5{width:41.66666667%}.germanized-shipments .col-md-4{width:33.33333333%}.germanized-shipments .col-md-3{width:25%}.germanized-shipments .col-md-2{width:16.66666667%}.germanized-shipments .col-md-1{width:8.33333333%}.germanized-shipments .col-md-auto{width:auto}.germanized-shipments .hide-md{display:none!important}.germanized-shipments .show-md{display:block!important}}@media (max-width:600px){.germanized-shipments .col-sm-1,.germanized-shipments .col-sm-10,.germanized-shipments .col-sm-11,.germanized-shipments .col-sm-12,.germanized-shipments .col-sm-2,.germanized-shipments .col-sm-3,.germanized-shipments .col-sm-4,.germanized-shipments .col-sm-5,.germanized-shipments .col-sm-6,.germanized-shipments .col-sm-7,.germanized-shipments .col-sm-8,.germanized-shipments .col-sm-9,.germanized-shipments .col-sm-auto{flex:none}.germanized-shipments .col-sm-12{width:100%}.germanized-shipments .col-sm-11{width:91.66666667%}.germanized-shipments .col-sm-10{width:83.33333333%}.germanized-shipments .col-sm-9{width:75%}.germanized-shipments .col-sm-8{width:66.66666667%}.germanized-shipments .col-sm-7{width:58.33333333%}.germanized-shipments .col-sm-6{width:50%}.germanized-shipments .col-sm-5{width:41.66666667%}.germanized-shipments .col-sm-4{width:33.33333333%}.germanized-shipments .col-sm-3{width:25%}.germanized-shipments .col-sm-2{width:16.66666667%}.germanized-shipments .col-sm-1{width:8.33333333%}.germanized-shipments .col-sm-auto{width:auto}.germanized-shipments .hide-sm{display:none!important}.germanized-shipments .show-sm{display:block!important}}@media (max-width:480px){.germanized-shipments .col-xs-1,.germanized-shipments .col-xs-10,.germanized-shipments .col-xs-11,.germanized-shipments .col-xs-12,.germanized-shipments .col-xs-2,.germanized-shipments .col-xs-3,.germanized-shipments .col-xs-4,.germanized-shipments .col-xs-5,.germanized-shipments .col-xs-6,.germanized-shipments .col-xs-7,.germanized-shipments .col-xs-8,.germanized-shipments .col-xs-9,.germanized-shipments .col-xs-auto{flex:none}.germanized-shipments .col-xs-12{width:100%}.germanized-shipments .col-xs-11{width:91.66666667%}.germanized-shipments .col-xs-10{width:83.33333333%}.germanized-shipments .col-xs-9{width:75%}.germanized-shipments .col-xs-8{width:66.66666667%}.germanized-shipments .col-xs-7{width:58.33333333%}.germanized-shipments .col-xs-6{width:50%}.germanized-shipments .col-xs-5{width:41.66666667%}.germanized-shipments .col-xs-4{width:33.33333333%}.germanized-shipments .col-xs-3{width:25%}.germanized-shipments .col-xs-2{width:16.66666667%}.germanized-shipments .col-xs-1{width:8.33333333%}.germanized-shipments .col-xs-auto{width:auto}.germanized-shipments .hide-xs{display:none!important}.germanized-shipments .show-xs{display:block!important}}
|
1 |
+
.germanized-create-label .notice-wrapper .notice{margin:0;margin-bottom:1em}.germanized-create-label .notice-wrapper .notice p{margin:.5em 0!important;padding:2px!important;font-size:13px;line-height:1.5}.germanized-create-label p.form-field{display:inline-block;width:100%;margin-bottom:5px!important;margin-top:5px!important}.germanized-create-label p.form-field:first-child,.germanized-create-label p.form-field:last-child{margin-bottom:5px!important;margin-top:5px!important}.germanized-create-label .columns{margin-left:-.5rem!important;margin-right:-.5rem!important}.germanized-create-label .column{padding-left:.5rem!important;padding-right:.5rem!important}.germanized-create-label .hide-default,.germanized-create-label .show-if{display:none}.germanized-create-label .show-if label{color:#777}.germanized-create-label p.form-field label{width:100%;display:block;margin-bottom:5px}.germanized-create-label p.form-field input[type=email],.germanized-create-label p.form-field input[type=text],.germanized-create-label p.form-field select{width:100%;max-width:100%}.germanized-create-label p.form-field.form-field-checkbox{display:flex;flex-wrap:wrap;flex-direction:row;justify-content:flex-start;margin-top:10px!important;margin-bottom:10px!important;align-items:center}.germanized-create-label p.form-field.form-field-checkbox label{width:auto;margin-left:.5em;order:2;margin-bottom:0}.germanized-create-label p.form-field.form-field-checkbox input[type=checkbox]{order:1}.germanized-create-label p.form-field.form-field-checkbox .woocommerce-help-tip{order:3;margin-left:3px}.germanized-create-label p.form-field.form-field-checkbox .description{width:100%;margin-top:5px;color:#777;order:4;font-style:normal}table.wc-gzd-shipping-providers{margin-top:1.5em}table.wc-gzd-shipping-providers td,table.wc-gzd-shipping-providers th{display:table-cell!important;padding:1em!important;vertical-align:top;line-height:1.75em;font-size:14px}table.wc-gzd-shipping-providers th{font-weight:600}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-activated,table.wc-gzd-shipping-providers th.wc-gzd-shipping-provider-activated{width:1%;text-align:center}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-activated .status-disabled,table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-activated .status-enabled,table.wc-gzd-shipping-providers th.wc-gzd-shipping-provider-activated .status-disabled,table.wc-gzd-shipping-providers th.wc-gzd-shipping-provider-activated .status-enabled{display:inline-block;margin-top:3px}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-actions,table.wc-gzd-shipping-providers th.wc-gzd-shipping-provider-actions{width:15%;text-align:right}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-actions{display:flex;justify-content:flex-end;flex-wrap:wrap}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-actions .button{margin-right:5px}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-actions .button:last-child{margin-right:0}table.wc-gzd-shipping-providers td.wc-gzd-shipping-provider-title,table.wc-gzd-shipping-providers th.wc-gzd-shipping-provider-title{width:30ch}table.wc-gzd-shipping-providers tr:nth-child(odd) td{background:#f9f9f9}.order-return-status,.order-shipping-status,.shipment-status{background:#eee;padding:.2em .5em;font-size:.9em;border-radius:3px;display:inline-flex;white-space:nowrap}.order-return-status.status-draft,.order-return-status.status-open,.order-return-status.status-partially-returned,.order-return-status.status-partially-shipped,.order-return-status.status-processing,.order-return-status.status-requested,.order-shipping-status.status-draft,.order-shipping-status.status-open,.order-shipping-status.status-partially-returned,.order-shipping-status.status-partially-shipped,.order-shipping-status.status-processing,.order-shipping-status.status-requested,.shipment-status.status-draft,.shipment-status.status-open,.shipment-status.status-partially-returned,.shipment-status.status-partially-shipped,.shipment-status.status-processing,.shipment-status.status-requested{background:#f8dda7;color:#94660c}.order-return-status.status-not-shipped,.order-shipping-status.status-not-shipped,.shipment-status.status-not-shipped{background:#eba3a3;color:#761919}.order-return-status.status-delivered,.order-return-status.status-returned,.order-return-status.status-shipped,.order-shipping-status.status-delivered,.order-shipping-status.status-returned,.order-shipping-status.status-shipped,.shipment-status.status-delivered,.shipment-status.status-returned,.shipment-status.status-shipped{background:#c6e1c6;color:#5b841b}.order-return-status.shipment-type-return-status.status-shipped,.order-shipping-status.shipment-type-return-status.status-shipped,.shipment-status.shipment-type-return-status.status-shipped{background:#f8dda7;color:#94660c}.woocommerce_page_wc-gzd-return-shipments .tablenav .actions,.woocommerce_page_wc-gzd-shipments .tablenav .actions{overflow:visible}.woocommerce_page_wc-gzd-return-shipments .tablenav .select2-container,.woocommerce_page_wc-gzd-shipments .tablenav .select2-container{float:left;width:240px!important;font-size:14px;vertical-align:middle;margin:1px 6px 4px 1px}.woocommerce_page_wc-gzd-return-shipments .tablenav .select2-container .select2-selection--single,.woocommerce_page_wc-gzd-shipments .tablenav .select2-container .select2-selection--single{height:32px}.woocommerce_page_wc-gzd-return-shipments .tablenav .select2-container .select2-selection--single .select2-selection__rendered,.woocommerce_page_wc-gzd-shipments .tablenav .select2-container .select2-selection--single .select2-selection__rendered{line-height:29px}.woocommerce_page_wc-gzd-return-shipments .tablenav .select2-container .select2-selection--single .select2-selection__arrow,.woocommerce_page_wc-gzd-shipments .tablenav .select2-container .select2-selection--single .select2-selection__arrow{height:30px}.woocommerce_page_wc-gzd-return-shipments .tablenav input,.woocommerce_page_wc-gzd-return-shipments .tablenav select,.woocommerce_page_wc-gzd-shipments .tablenav input,.woocommerce_page_wc-gzd-shipments .tablenav select{line-height:1;height:32px}.woocommerce_page_wc-gzd-return-shipments .tablenav input,.woocommerce_page_wc-gzd-shipments .tablenav input{height:31px}.woocommerce_page_wc-gzd-return-shipments .tablenav #shipment-query-submit,.woocommerce_page_wc-gzd-shipments .tablenav #shipment-query-submit{margin:1px 8px 0 0}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper{display:none;clear:both;margin:1em 0;float:left;width:50%}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper h4,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper h4{margin-top:0}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress{width:100%;height:42px;margin:0 auto;display:block;-webkit-appearance:none;border:none;background:#f5f5f5;border:2px solid #eee;border-radius:4px;padding:0;box-shadow:0 1px 0 0 rgba(255,255,255,.2)}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress::-webkit-progress-bar,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress::-webkit-progress-bar{background:transparent none;border:0;border-radius:4px;padding:0;box-shadow:none}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress::-webkit-progress-value,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress::-webkit-progress-value{border-radius:3px;box-shadow:inset 0 1px 1px 0 rgba(255,255,255,.4);background:#a46497;background:linear-gradient(to bottom,#a46497,#66405f),#a46497;transition:width 1s ease}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress::-moz-progress-bar,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress::-moz-progress-bar{border-radius:3px;box-shadow:inset 0 1px 1px 0 rgba(255,255,255,.4);background:#a46497;background:linear-gradient(to bottom,#a46497,#66405f),#a46497;transition:width 1s ease}.woocommerce_page_wc-gzd-return-shipments #posts-filter .bulk-action-wrapper progress::-ms-fill,.woocommerce_page_wc-gzd-shipments #posts-filter .bulk-action-wrapper progress::-ms-fill{border-radius:3px;box-shadow:inset 0 1px 1px 0 rgba(255,255,255,.4);background:#a46497;background:linear-gradient(to bottom,#a46497,#66405f),#a46497;transition:width 1s ease}.woocommerce_page_wc-gzd-return-shipments #posts-filter.bulk-action-processing .bulk-action-wrapper,.woocommerce_page_wc-gzd-shipments #posts-filter.bulk-action-processing .bulk-action-wrapper{display:block}.woocommerce_page_wc-gzd-return-shipments .wp-list-table,.woocommerce_page_wc-gzd-shipments .wp-list-table{margin-top:1em}.woocommerce_page_wc-gzd-return-shipments .wp-list-table td,.woocommerce_page_wc-gzd-return-shipments .wp-list-table th,.woocommerce_page_wc-gzd-shipments .wp-list-table td,.woocommerce_page_wc-gzd-shipments .wp-list-table th{padding:.5em 1em;width:10ch;vertical-align:middle}.woocommerce_page_wc-gzd-return-shipments .wp-list-table tbody th,.woocommerce_page_wc-gzd-return-shipments .wp-list-table td,.woocommerce_page_wc-gzd-shipments .wp-list-table tbody th,.woocommerce_page_wc-gzd-shipments .wp-list-table td{line-height:26px}.woocommerce_page_wc-gzd-return-shipments .wp-list-table thead th,.woocommerce_page_wc-gzd-shipments .wp-list-table thead th{padding:.5em 1em}.woocommerce_page_wc-gzd-return-shipments .wp-list-table thead th.sortable a,.woocommerce_page_wc-gzd-return-shipments .wp-list-table thead th.sorted a,.woocommerce_page_wc-gzd-shipments .wp-list-table thead th.sortable a,.woocommerce_page_wc-gzd-shipments .wp-list-table thead th.sorted a{padding:0}.woocommerce_page_wc-gzd-return-shipments .wp-list-table thead th:last-child,.woocommerce_page_wc-gzd-shipments .wp-list-table thead th:last-child{padding-right:2em}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .check-column,.woocommerce_page_wc-gzd-shipments .wp-list-table .check-column{width:16px;white-space:nowrap;padding:1em 1em 1em 1em!important;vertical-align:middle}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .check-column input,.woocommerce_page_wc-gzd-shipments .wp-list-table .check-column input{vertical-align:text-top;margin:1px 0}.woocommerce_page_wc-gzd-return-shipments .wp-list-table td.column-title,.woocommerce_page_wc-gzd-shipments .wp-list-table td.column-title{font-weight:700}.woocommerce_page_wc-gzd-return-shipments .wp-list-table td.column-title .shipment-title-meta,.woocommerce_page_wc-gzd-shipments .wp-list-table td.column-title .shipment-title-meta{margin-top:0;font-weight:400;color:#999;font-style:italic}.woocommerce_page_wc-gzd-return-shipments .wp-list-table td.column-title .shipment-title-meta .shipment-tracking-id,.woocommerce_page_wc-gzd-shipments .wp-list-table td.column-title .shipment-title-meta .shipment-tracking-id{color:#999;display:block}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-title,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-title{width:20ch}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions{width:10ch}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-order,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-order{width:10ch}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-address a,.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-sender a,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-address a,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-sender a{color:#32373c}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .shipment-status,.woocommerce_page_wc-gzd-shipments .wp-list-table .shipment-status{font-size:1em}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions{text-align:right}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button{text-indent:9999px;margin:2px 0 2px 4px;position:relative;display:inline-block;padding:0;height:2em;width:2em;overflow:hidden;vertical-align:middle}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button::after{font-family:Dashicons;margin:0;margin-top:2px;speak:none;font-weight:400;font-variant:normal;text-transform:none;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;line-height:1.85}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.processing::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.processing::after{font-family:WooCommerce;content:"\e00f"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.shipped::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.shipped::after{content:"\f147"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.delivered::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.delivered::after{content:"\f147"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.confirm::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.confirm::after{content:"\f147"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.generate::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.generate::after{content:"\f502"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-actions a.button.download::after,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-actions a.button.download::after{content:"\f103"}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-address,.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-sender,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-address,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-sender{width:20ch}.woocommerce_page_wc-gzd-return-shipments .wp-list-table .column-items,.woocommerce_page_wc-gzd-shipments .wp-list-table .column-items{width:20ch}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview{font-size:.9em;border-spacing:0}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview thead th,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview thead th{color:#adadad;padding-top:0;font-size:1.1em}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview tr td,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview tr td{border-bottom:1px solid #ccc!important}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview tr:last-child td,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview tr:last-child td{border-bottom:none!important}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td,.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th{padding:.3em 0;vertical-align:top;line-height:20px}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-name,.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th.wc-gzd-shipment-item-column-name,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-name,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th.wc-gzd-shipment-item-column-name{width:70%}.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-quantity,.woocommerce_page_wc-gzd-return-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th.wc-gzd-shipment-item-column-quantity,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview td.wc-gzd-shipment-item-column-quantity,.woocommerce_page_wc-gzd-shipments .wp-list-table #the-list .column-items table.wc-gzd-shipments-preview th.wc-gzd-shipment-item-column-quantity{text-align:right;padding-right:.5em}#woocommerce-gzd-order-shipments .inside{margin:0;padding:0;display:block!important}#woocommerce-gzd-order-shipments .handlediv,#woocommerce-gzd-order-shipments .hndle,#woocommerce-gzd-order-shipments .postbox-header{display:none}#woocommerce-gzd-order-shipments .hide-default{display:none}.germanized-shipments *{box-sizing:border-box}.germanized-shipments #panel-order-shipments{padding:23px 0 0}.germanized-shipments #panel-order-shipments .panel-inner{padding:0 24px}.germanized-shipments #panel-order-shipments .panel-title-inner{padding-left:0;margin-top:1em;padding-right:0}.germanized-shipments #panel-order-shipments .panel-title{margin-bottom:1.5em}.germanized-shipments #panel-order-shipments .panel-title h2{margin:0;font-family:HelveticaNeue-Light,"Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:21px;font-weight:400;line-height:1.2;text-shadow:1px 1px 1px #fff;padding:0}.germanized-shipments #panel-order-shipments .panel-footer{background:#f8f8f8;padding-top:1em;padding-bottom:1em;border-top:1px solid #dfdfdf;display:none}.germanized-shipments #panel-order-shipments .panel-footer .order-shipments-actions{display:flex;flex-wrap:nowrap;justify-content:space-between}.germanized-shipments #panel-order-shipments .panel-footer .order-shipments-actions .shipment-actions-left{display:flex;flex-wrap:wrap;justify-content:flex-start}.germanized-shipments #panel-order-shipments .panel-footer .order-shipments-actions .shipment-actions-left .button{margin-right:1em}.germanized-shipments #panel-order-shipments .panel-footer #order-shipments-save{display:none}.germanized-shipments #panel-order-shipments #order-return-shipment-add,.germanized-shipments #panel-order-shipments #order-shipment-add{display:none}.germanized-shipments #panel-order-shipments.needs-shipments .panel-footer{display:block}.germanized-shipments #panel-order-shipments.needs-shipments #order-shipment-add{display:block}.germanized-shipments #panel-order-shipments.needs-returns .panel-footer{display:block}.germanized-shipments #panel-order-shipments.needs-returns #order-return-shipment-add{display:block}.germanized-shipments #panel-order-shipments #order-shipments-list{margin-bottom:1.5em}.germanized-shipments #panel-order-shipments .delete{color:#a00}.germanized-shipments #panel-order-shipments .delete:hover{color:#dc3232;border:none}.germanized-shipments #panel-order-shipments .order-shipment a .woocommerce-help-tip{margin-right:3px}.germanized-shipments #panel-order-shipments .order-shipment .handlediv{display:inline-block;float:none;width:auto;height:auto}.germanized-shipments #panel-order-shipments .order-shipment .handlediv .toggle-indicator::before{content:"\f140"}.germanized-shipments #panel-order-shipments .order-shipment .wc-gzd-shipment-label h4{margin-top:0}.germanized-shipments #panel-order-shipments .order-shipment .wc-gzd-shipment-label .shipment-label-actions .shipment-label-actions-wrapper{display:flex;flex-wrap:wrap;justify-content:flex-start;margin-bottom:1em;align-items:center}.germanized-shipments #panel-order-shipments .order-shipment .wc-gzd-shipment-label .shipment-label-actions .shipment-label-actions-wrapper a{margin-right:1em}.germanized-shipments #panel-order-shipments .order-shipment .show-if{display:none}.germanized-shipments #panel-order-shipments .order-shipment.active>.shipment-content-wrapper{display:block}.germanized-shipments #panel-order-shipments .order-shipment.active>.shipment-header>.right>.handlediv .toggle-indicator::before{content:"\f142"}.germanized-shipments #panel-order-shipments .order-shipment .item-count{margin-right:1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-footer{margin-top:1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-footer .shipment-footer-inner{display:flex;flex-wrap:nowrap;justify-content:flex-end;padding:0 .5em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-footer .shipment-footer-inner a.shipment-footer-action{margin-right:1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-footer .shipment-footer-inner a.shipment-footer-action:last-child{margin-right:0}.germanized-shipments #panel-order-shipments .order-shipment .shipment-header{color:#999;background:#f8f8f8;margin:1.5em 0;padding:.5em 1em;cursor:pointer}.germanized-shipments #panel-order-shipments .order-shipment .shipment-header .shipment-status{margin-left:1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-header h3{margin:0}.germanized-shipments #panel-order-shipments .order-shipment:first-child .shipment-header{margin-top:0}.germanized-shipments #panel-order-shipments .order-shipment .shipment-header:hover,.germanized-shipments #panel-order-shipments .order-shipment.active>.shipment-header{background:#f3f3f3}.germanized-shipments #panel-order-shipments .order-shipment .shipment-content-wrapper{display:none}.germanized-shipments #panel-order-shipments .order-shipment .shipment-content{padding:1em;margin-top:-1.5em;padding-bottom:0}.germanized-shipments #panel-order-shipments .order-shipment .add-shipment-return{display:none}.germanized-shipments #panel-order-shipments .order-shipment.is-returnable .add-shipment-return{display:block}.germanized-shipments #panel-order-shipments .order-shipment p.form-row{margin-bottom:1.5em}.germanized-shipments #panel-order-shipments .order-shipment p.form-row input[type=email],.germanized-shipments #panel-order-shipments .order-shipment p.form-row input[type=number],.germanized-shipments #panel-order-shipments .order-shipment p.form-row input[type=text]{height:30px}.germanized-shipments #panel-order-shipments .order-shipment p.form-row select{line-height:30px;height:30px;padding-top:0;padding-bottom:0}.germanized-shipments #panel-order-shipments .order-shipment p.form-row label{color:#999;font-weight:600}.germanized-shipments #panel-order-shipments .order-shipment p.form-row label .woocommerce-help-tip{float:none}.germanized-shipments #panel-order-shipments .order-shipment .columns .column.column-spaced{margin:5px 0}.germanized-shipments #panel-order-shipments .order-shipment .columns .column h4{margin-bottom:.7em;color:#999}.germanized-shipments #panel-order-shipments .order-shipment .columns .column h4 a{color:#999;text-decoration:none}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item-action{text-align:right}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item-quantity input{width:50px;text-align:center}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item-name p.form-row{margin-bottom:0;margin-top:.5em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item-heading{padding:.5em;color:#999;background:#f8f8f8;font-weight:600}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item{padding:.5em;border-bottom:1px solid #dfdfdf}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item:last-child{border-bottom:none}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item:nth-child(2n){background:#f8f8f8}.germanized-shipments #panel-order-shipments .order-shipment .shipment-items .shipment-item-list-wrapper .shipment-item .columns{align-items:center}.germanized-shipments #panel-order-shipments .order-shipment .shipment-item-actions{display:flex;padding:.7em .5em;flex-wrap:nowrap;justify-content:flex-end;border-top:1px solid #dfdfdf}.germanized-shipments #panel-order-shipments .order-shipment .shipment-item-actions .add-items{margin-right:1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-item-actions .woocommerce-help-tip{margin-left:0}.germanized-shipments #panel-order-shipments .order-shipment .add-items{display:none}.germanized-shipments #panel-order-shipments .order-shipment .shipment-returns{margin-top:.5em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-returns .shipment-return .shipment-header{background:0 0;border-bottom:1px solid #dfdfdf;padding-left:0;padding-right:0}.germanized-shipments #panel-order-shipments .order-shipment .shipment-returns .shipment-return .shipment-header h3{font-size:1.1em}.germanized-shipments #panel-order-shipments .order-shipment .shipment-returns .shipment-return .shipment-content{padding:1em 0}.germanized-shipments #panel-order-shipments .order-shipment.needs-items .add-items{display:block}.germanized-shipments #panel-order-shipments .form-row .input-inner-wrap{clear:left;margin:0;display:flex;flex-wrap:nowrap}.germanized-shipments #panel-order-shipments .form-row .input-inner-wrap input{margin-right:1em}.germanized-shipments #panel-order-shipments .form-row .input-inner-wrap input:last-child{margin-right:0}.germanized-shipments .title-spread{display:flex;flex-wrap:nowrap;justify-content:space-between;align-items:center}.germanized-shipments .title-spread .left,.germanized-shipments .title-spread .right{display:inline-flex;align-items:center}.germanized-shipments .show-lg,.germanized-shipments .show-md,.germanized-shipments .show-sm,.germanized-shipments .show-xl,.germanized-shipments .show-xs{display:none!important}.germanized-shipments .columns{display:flex;flex-wrap:wrap;margin-left:-1rem;margin-right:-1rem}.germanized-shipments .columns.col-gapless{margin-left:0;margin-right:0}.germanized-shipments .columns.col-gapless>.column{padding-left:0;padding-right:0}.germanized-shipments .columns.col-oneline{flex-wrap:nowrap;overflow-x:auto}.germanized-shipments .column{flex:1;max-width:100%;padding-left:1rem;padding-right:1rem}.germanized-shipments .column.col-1,.germanized-shipments .column.col-10,.germanized-shipments .column.col-11,.germanized-shipments .column.col-12,.germanized-shipments .column.col-2,.germanized-shipments .column.col-3,.germanized-shipments .column.col-4,.germanized-shipments .column.col-5,.germanized-shipments .column.col-6,.germanized-shipments .column.col-7,.germanized-shipments .column.col-8,.germanized-shipments .column.col-9,.germanized-shipments .column.col-auto{flex:none}.germanized-shipments .col-12{width:100%}.germanized-shipments .col-11{width:91.66666667%}.germanized-shipments .col-10{width:83.33333333%}.germanized-shipments .col-9{width:75%}.germanized-shipments .col-8{width:66.66666667%}.germanized-shipments .col-7{width:58.33333333%}.germanized-shipments .col-6{width:50%}.germanized-shipments .col-5{width:41.66666667%}.germanized-shipments .col-4{width:33.33333333%}.germanized-shipments .col-3{width:25%}.germanized-shipments .col-2{width:16.66666667%}.germanized-shipments .col-1{width:8.33333333%}.germanized-shipments .col-auto{flex:0 0 auto;max-width:none;width:auto}.germanized-shipments .col-mx-auto{margin-left:auto;margin-right:auto}.germanized-shipments .col-ml-auto{margin-left:auto}.germanized-shipments .col-mr-auto{margin-right:auto}@media (max-width:1280px){.germanized-shipments .col-xl-1,.germanized-shipments .col-xl-10,.germanized-shipments .col-xl-11,.germanized-shipments .col-xl-12,.germanized-shipments .col-xl-2,.germanized-shipments .col-xl-3,.germanized-shipments .col-xl-4,.germanized-shipments .col-xl-5,.germanized-shipments .col-xl-6,.germanized-shipments .col-xl-7,.germanized-shipments .col-xl-8,.germanized-shipments .col-xl-9,.germanized-shipments .col-xl-auto{flex:none}.germanized-shipments .col-xl-12{width:100%}.germanized-shipments .col-xl-11{width:91.66666667%}.germanized-shipments .col-xl-10{width:83.33333333%}.germanized-shipments .col-xl-9{width:75%}.germanized-shipments .col-xl-8{width:66.66666667%}.germanized-shipments .col-xl-7{width:58.33333333%}.germanized-shipments .col-xl-6{width:50%}.germanized-shipments .col-xl-5{width:41.66666667%}.germanized-shipments .col-xl-4{width:33.33333333%}.germanized-shipments .col-xl-3{width:25%}.germanized-shipments .col-xl-2{width:16.66666667%}.germanized-shipments .col-xl-1{width:8.33333333%}.germanized-shipments .col-xl-auto{width:auto}.germanized-shipments .hide-xl{display:none!important}.germanized-shipments .show-xl{display:block!important}}@media (max-width:960px){.germanized-shipments .col-lg-1,.germanized-shipments .col-lg-10,.germanized-shipments .col-lg-11,.germanized-shipments .col-lg-12,.germanized-shipments .col-lg-2,.germanized-shipments .col-lg-3,.germanized-shipments .col-lg-4,.germanized-shipments .col-lg-5,.germanized-shipments .col-lg-6,.germanized-shipments .col-lg-7,.germanized-shipments .col-lg-8,.germanized-shipments .col-lg-9,.germanized-shipments .col-lg-auto{flex:none}.germanized-shipments .col-lg-12{width:100%}.germanized-shipments .col-lg-11{width:91.66666667%}.germanized-shipments .col-lg-10{width:83.33333333%}.germanized-shipments .col-lg-9{width:75%}.germanized-shipments .col-lg-8{width:66.66666667%}.germanized-shipments .col-lg-7{width:58.33333333%}.germanized-shipments .col-lg-6{width:50%}.germanized-shipments .col-lg-5{width:41.66666667%}.germanized-shipments .col-lg-4{width:33.33333333%}.germanized-shipments .col-lg-3{width:25%}.germanized-shipments .col-lg-2{width:16.66666667%}.germanized-shipments .col-lg-1{width:8.33333333%}.germanized-shipments .col-lg-auto{width:auto}.germanized-shipments .hide-lg{display:none!important}.germanized-shipments .show-lg{display:block!important}}@media (max-width:840px){.germanized-shipments .col-md-1,.germanized-shipments .col-md-10,.germanized-shipments .col-md-11,.germanized-shipments .col-md-12,.germanized-shipments .col-md-2,.germanized-shipments .col-md-3,.germanized-shipments .col-md-4,.germanized-shipments .col-md-5,.germanized-shipments .col-md-6,.germanized-shipments .col-md-7,.germanized-shipments .col-md-8,.germanized-shipments .col-md-9,.germanized-shipments .col-md-auto{flex:none}.germanized-shipments .col-md-12{width:100%}.germanized-shipments .col-md-11{width:91.66666667%}.germanized-shipments .col-md-10{width:83.33333333%}.germanized-shipments .col-md-9{width:75%}.germanized-shipments .col-md-8{width:66.66666667%}.germanized-shipments .col-md-7{width:58.33333333%}.germanized-shipments .col-md-6{width:50%}.germanized-shipments .col-md-5{width:41.66666667%}.germanized-shipments .col-md-4{width:33.33333333%}.germanized-shipments .col-md-3{width:25%}.germanized-shipments .col-md-2{width:16.66666667%}.germanized-shipments .col-md-1{width:8.33333333%}.germanized-shipments .col-md-auto{width:auto}.germanized-shipments .hide-md{display:none!important}.germanized-shipments .show-md{display:block!important}}@media (max-width:600px){.germanized-shipments .col-sm-1,.germanized-shipments .col-sm-10,.germanized-shipments .col-sm-11,.germanized-shipments .col-sm-12,.germanized-shipments .col-sm-2,.germanized-shipments .col-sm-3,.germanized-shipments .col-sm-4,.germanized-shipments .col-sm-5,.germanized-shipments .col-sm-6,.germanized-shipments .col-sm-7,.germanized-shipments .col-sm-8,.germanized-shipments .col-sm-9,.germanized-shipments .col-sm-auto{flex:none}.germanized-shipments .col-sm-12{width:100%}.germanized-shipments .col-sm-11{width:91.66666667%}.germanized-shipments .col-sm-10{width:83.33333333%}.germanized-shipments .col-sm-9{width:75%}.germanized-shipments .col-sm-8{width:66.66666667%}.germanized-shipments .col-sm-7{width:58.33333333%}.germanized-shipments .col-sm-6{width:50%}.germanized-shipments .col-sm-5{width:41.66666667%}.germanized-shipments .col-sm-4{width:33.33333333%}.germanized-shipments .col-sm-3{width:25%}.germanized-shipments .col-sm-2{width:16.66666667%}.germanized-shipments .col-sm-1{width:8.33333333%}.germanized-shipments .col-sm-auto{width:auto}.germanized-shipments .hide-sm{display:none!important}.germanized-shipments .show-sm{display:block!important}}@media (max-width:480px){.germanized-shipments .col-xs-1,.germanized-shipments .col-xs-10,.germanized-shipments .col-xs-11,.germanized-shipments .col-xs-12,.germanized-shipments .col-xs-2,.germanized-shipments .col-xs-3,.germanized-shipments .col-xs-4,.germanized-shipments .col-xs-5,.germanized-shipments .col-xs-6,.germanized-shipments .col-xs-7,.germanized-shipments .col-xs-8,.germanized-shipments .col-xs-9,.germanized-shipments .col-xs-auto{flex:none}.germanized-shipments .col-xs-12{width:100%}.germanized-shipments .col-xs-11{width:91.66666667%}.germanized-shipments .col-xs-10{width:83.33333333%}.germanized-shipments .col-xs-9{width:75%}.germanized-shipments .col-xs-8{width:66.66666667%}.germanized-shipments .col-xs-7{width:58.33333333%}.germanized-shipments .col-xs-6{width:50%}.germanized-shipments .col-xs-5{width:41.66666667%}.germanized-shipments .col-xs-4{width:33.33333333%}.germanized-shipments .col-xs-3{width:25%}.germanized-shipments .col-xs-2{width:16.66666667%}.germanized-shipments .col-xs-1{width:8.33333333%}.germanized-shipments .col-xs-auto{width:auto}.germanized-shipments .hide-xs{display:none!important}.germanized-shipments .show-xs{display:block!important}}
|
packages/woocommerce-germanized-shipments/assets/css/admin.scss
CHANGED
@@ -694,7 +694,7 @@ table.wc-gzd-shipping-providers {
|
|
694 |
|
695 |
.shipment-content {
|
696 |
padding: 1em;
|
697 |
-
margin-top: -
|
698 |
padding-bottom: 0;
|
699 |
}
|
700 |
|
694 |
|
695 |
.shipment-content {
|
696 |
padding: 1em;
|
697 |
+
margin-top: -1.5em;
|
698 |
padding-bottom: 0;
|
699 |
}
|
700 |
|
packages/woocommerce-germanized-shipments/assets/js/admin-shipment-label-backbone.js
CHANGED
@@ -159,6 +159,8 @@ window.germanized.admin = window.germanized.admin || {};
|
|
159 |
$( document.body ).trigger( 'wc-enhanced-select-init' );
|
160 |
$( document.body ).trigger( 'wc-init-datepickers' );
|
161 |
|
|
|
|
|
162 |
$modal.find( 'input.show-if-trigger' ).trigger( 'change' );
|
163 |
|
164 |
$modal.parents( '.wc-backbone-modal' ).on( 'click', '#btn-ok', { 'shipmentId': shipmentId }, self.onSubmit );
|
159 |
$( document.body ).trigger( 'wc-enhanced-select-init' );
|
160 |
$( document.body ).trigger( 'wc-init-datepickers' );
|
161 |
|
162 |
+
$( document.body ).trigger( 'wc_gzd_shipment_label_after_init' );
|
163 |
+
|
164 |
$modal.find( 'input.show-if-trigger' ).trigger( 'change' );
|
165 |
|
166 |
$modal.parents( '.wc-backbone-modal' ).on( 'click', '#btn-ok', { 'shipmentId': shipmentId }, self.onSubmit );
|
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(),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);
|
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"),c(document.body).trigger("wc_gzd_shipment_label_after_init"),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/assets/js/admin-shipping-provider-method.js
CHANGED
@@ -44,7 +44,7 @@ window.germanized.admin = window.germanized.admin || {};
|
|
44 |
|
45 |
if ( provider_setting_prefix.length > 0 ) {
|
46 |
$form.find( 'table.form-table' ).each( function() {
|
47 |
-
if ( $( this ).find( 'input[id*=_' + provider_setting_prefix + '_]' ).length > 0 ) {
|
48 |
self.hideTable( $( this ) );
|
49 |
}
|
50 |
});
|
@@ -53,7 +53,7 @@ window.germanized.admin = window.germanized.admin || {};
|
|
53 |
|
54 |
if ( self.currentProvider.length > 0 ) {
|
55 |
$form.find( 'table.form-table' ).each( function() {
|
56 |
-
if ( $( this ).find( 'input[id*=_' + self.currentProvider + '_]' ).length > 0 ) {
|
57 |
self.showTable( $( this ) );
|
58 |
}
|
59 |
});
|
44 |
|
45 |
if ( provider_setting_prefix.length > 0 ) {
|
46 |
$form.find( 'table.form-table' ).each( function() {
|
47 |
+
if ( $( this ).find( ':input[id*=_' + provider_setting_prefix + '_]' ).length > 0 ) {
|
48 |
self.hideTable( $( this ) );
|
49 |
}
|
50 |
});
|
53 |
|
54 |
if ( self.currentProvider.length > 0 ) {
|
55 |
$form.find( 'table.form-table' ).each( function() {
|
56 |
+
if ( $( this ).find( ':input[id*=_' + self.currentProvider + '_]' ).length > 0 ) {
|
57 |
self.showTable( $( this ) );
|
58 |
}
|
59 |
});
|
packages/woocommerce-germanized-shipments/assets/js/admin-shipping-provider-method.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
window.germanized=window.germanized||{},window.germanized.admin=window.germanized.admin||{},function(r){window.germanized.admin.shipping_provider_method={params:{},currentProvider:"",init:function(){var i=germanized.admin.shipping_provider_method;r(document).on("change","select[id$=shipping_provider]",i.showOrHideAll),r(document.body).on("wc_backbone_modal_loaded",i.onShippingMethodOpen),0<r("select[id$=shipping_provider]").length&&r("select[id$=shipping_provider]").trigger("change")},onShippingMethodOpen:function(i,e){"wc-modal-shipping-method-settings"===e&&0<r("select[id$=shipping_provider]").length&&r("select[id$=shipping_provider]").trigger("change")},showOrHideAll:function(){var e=germanized.admin.shipping_provider_method,i=r(this),n=i.find("option"),d=i.parents("form");e.currentProvider=i.val(),n.each(function(){var i=r(this).val();0<i.length&&d.find("table.form-table").each(function(){0<r(this).find("input[id*=_"+i+"_]").length&&e.hideTable(r(this))})}),0<e.currentProvider.length&&d.find("table.form-table").each(function(){0<r(this).find("input[id*=_"+e.currentProvider+"_]").length&&e.showTable(r(this))})},hideTable:function(i){if(0<i.find("select[id$=shipping_provider]").length)return!1;i.prevUntil("table.form-table").hide(),i.hide()},showTable:function(i){i.prevUntil("table.form-table").show(),i.show()}},r(document).ready(function(){germanized.admin.shipping_provider_method.init()})}(jQuery);
|
1 |
+
window.germanized=window.germanized||{},window.germanized.admin=window.germanized.admin||{},function(r){window.germanized.admin.shipping_provider_method={params:{},currentProvider:"",init:function(){var i=germanized.admin.shipping_provider_method;r(document).on("change","select[id$=shipping_provider]",i.showOrHideAll),r(document.body).on("wc_backbone_modal_loaded",i.onShippingMethodOpen),0<r("select[id$=shipping_provider]").length&&r("select[id$=shipping_provider]").trigger("change")},onShippingMethodOpen:function(i,e){"wc-modal-shipping-method-settings"===e&&0<r("select[id$=shipping_provider]").length&&r("select[id$=shipping_provider]").trigger("change")},showOrHideAll:function(){var e=germanized.admin.shipping_provider_method,i=r(this),n=i.find("option"),d=i.parents("form");e.currentProvider=i.val(),n.each(function(){var i=r(this).val();0<i.length&&d.find("table.form-table").each(function(){0<r(this).find(":input[id*=_"+i+"_]").length&&e.hideTable(r(this))})}),0<e.currentProvider.length&&d.find("table.form-table").each(function(){0<r(this).find(":input[id*=_"+e.currentProvider+"_]").length&&e.showTable(r(this))})},hideTable:function(i){if(0<i.find("select[id$=shipping_provider]").length)return!1;i.prevUntil("table.form-table").hide(),i.hide()},showTable:function(i){i.prevUntil("table.form-table").show(),i.show()}},r(document).ready(function(){germanized.admin.shipping_provider_method.init()})}(jQuery);
|
packages/woocommerce-germanized-shipments/includes/emails/class-wc-gzd-email-new-return-shipment-request.php
ADDED
@@ -0,0 +1,216 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Class WC_GZD_Email_New_Return_Shipment file.
|
4 |
+
*
|
5 |
+
* @package Vendidero/Germanized/Shipments/Emails
|
6 |
+
*/
|
7 |
+
|
8 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
9 |
+
exit; // Exit if accessed directly.
|
10 |
+
}
|
11 |
+
|
12 |
+
use Vendidero\Germanized\Shipments\Package;
|
13 |
+
use Vendidero\Germanized\Shipments\Shipment;
|
14 |
+
use Vendidero\Germanized\Shipments\ReturnShipment;
|
15 |
+
|
16 |
+
if ( ! class_exists( 'WC_GZD_Email_New_Return_Shipment_Request', false ) ) :
|
17 |
+
|
18 |
+
/**
|
19 |
+
* Admin return shipment notification.
|
20 |
+
*
|
21 |
+
* @class WC_GZD_Email_New_Return_Shipment_Request
|
22 |
+
* @version 1.0.0
|
23 |
+
* @package Vendidero/Germanized/Shipments/Emails
|
24 |
+
* @extends WC_Email
|
25 |
+
*/
|
26 |
+
class WC_GZD_Email_New_Return_Shipment_Request extends WC_Email {
|
27 |
+
|
28 |
+
/**
|
29 |
+
* Shipment.
|
30 |
+
*
|
31 |
+
* @var ReturnShipment|bool
|
32 |
+
*/
|
33 |
+
public $shipment;
|
34 |
+
|
35 |
+
public $helper = null;
|
36 |
+
|
37 |
+
/**
|
38 |
+
* Constructor.
|
39 |
+
*/
|
40 |
+
public function __construct() {
|
41 |
+
$this->id = 'new_return_shipment_request';
|
42 |
+
$this->title = _x( 'New order return request', 'shipments', 'woocommerce-germanized' );
|
43 |
+
$this->description = _x( 'New order return request emails are sent to chosen recipient(s) when a new return is requested.', 'shipments', 'woocommerce-germanized' );
|
44 |
+
|
45 |
+
$this->template_html = 'emails/admin-new-return-shipment-request.php';
|
46 |
+
$this->template_plain = 'emails/plain/admin-new-return-shipment-request.php';
|
47 |
+
$this->template_base = Package::get_path() . '/templates/';
|
48 |
+
|
49 |
+
$this->placeholders = array(
|
50 |
+
'{site_title}' => $this->get_blogname(),
|
51 |
+
'{shipment_number}' => '',
|
52 |
+
'{order_number}' => '',
|
53 |
+
'{order_date}' => '',
|
54 |
+
);
|
55 |
+
|
56 |
+
// Triggers for this email.
|
57 |
+
add_action( 'woocommerce_gzd_new_customer_return_shipment_request', array( $this, 'trigger' ), 10 );
|
58 |
+
|
59 |
+
// Call parent constructor.
|
60 |
+
parent::__construct();
|
61 |
+
|
62 |
+
// Other settings.
|
63 |
+
$this->recipient = $this->get_option( 'recipient', get_option( 'admin_email' ) );
|
64 |
+
}
|
65 |
+
|
66 |
+
/**
|
67 |
+
* Get email subject.
|
68 |
+
*
|
69 |
+
* @since 3.1.0
|
70 |
+
* @return string
|
71 |
+
*/
|
72 |
+
public function get_default_subject() {
|
73 |
+
return _x( '[{site_title}]: New return request to #{order_number}', 'shipments', 'woocommerce-germanized' );
|
74 |
+
}
|
75 |
+
|
76 |
+
/**
|
77 |
+
* Get email heading.
|
78 |
+
*
|
79 |
+
* @since 3.1.0
|
80 |
+
* @return string
|
81 |
+
*/
|
82 |
+
public function get_default_heading() {
|
83 |
+
return _x( 'New return request to: #{order_number}', 'shipments', 'woocommerce-germanized' );
|
84 |
+
}
|
85 |
+
|
86 |
+
/**
|
87 |
+
* Trigger.
|
88 |
+
*
|
89 |
+
* @param int|ReturnShipment $shipment_id Shipment ID.
|
90 |
+
*/
|
91 |
+
public function trigger( $shipment_id ) {
|
92 |
+
$this->setup_locale();
|
93 |
+
|
94 |
+
if ( $this->shipment = wc_gzd_get_shipment( $shipment_id ) ) {
|
95 |
+
|
96 |
+
if ( 'return' !== $this->shipment->get_type() ) {
|
97 |
+
return;
|
98 |
+
}
|
99 |
+
|
100 |
+
$this->placeholders['{shipment_number}'] = $this->shipment->get_shipment_number();
|
101 |
+
|
102 |
+
if ( $order_shipment = wc_gzd_get_shipment_order( $this->shipment->get_order() ) ) {
|
103 |
+
$this->object = $this->shipment->get_order();
|
104 |
+
$this->placeholders['{order_date}'] = wc_format_datetime( $order_shipment->get_order()->get_date_created() );
|
105 |
+
$this->placeholders['{order_number}'] = $order_shipment->get_order()->get_order_number();
|
106 |
+
}
|
107 |
+
}
|
108 |
+
|
109 |
+
if ( $this->is_enabled() && $this->get_recipient() ) {
|
110 |
+
$this->send( $this->get_recipient(), $this->get_subject(), $this->get_content(), $this->get_headers(), $this->get_attachments() );
|
111 |
+
}
|
112 |
+
|
113 |
+
$this->restore_locale();
|
114 |
+
}
|
115 |
+
|
116 |
+
/**
|
117 |
+
* Return content from the additional_content field.
|
118 |
+
*
|
119 |
+
* Displayed above the footer.
|
120 |
+
*
|
121 |
+
* @since 2.0.4
|
122 |
+
* @return string
|
123 |
+
*/
|
124 |
+
public function get_additional_content() {
|
125 |
+
if ( is_callable( 'parent::get_additional_content' ) ) {
|
126 |
+
return parent::get_additional_content();
|
127 |
+
}
|
128 |
+
|
129 |
+
return '';
|
130 |
+
}
|
131 |
+
|
132 |
+
/**
|
133 |
+
* Get content html.
|
134 |
+
*
|
135 |
+
* @return string
|
136 |
+
*/
|
137 |
+
public function get_content_html() {
|
138 |
+
return wc_get_template_html(
|
139 |
+
$this->template_html, array(
|
140 |
+
'shipment' => $this->shipment,
|
141 |
+
'order' => $this->object,
|
142 |
+
'email_heading' => $this->get_heading(),
|
143 |
+
'additional_content' => $this->get_additional_content(),
|
144 |
+
'sent_to_admin' => true,
|
145 |
+
'plain_text' => false,
|
146 |
+
'email' => $this,
|
147 |
+
)
|
148 |
+
);
|
149 |
+
}
|
150 |
+
|
151 |
+
/**
|
152 |
+
* Get content plain.
|
153 |
+
*
|
154 |
+
* @return string
|
155 |
+
*/
|
156 |
+
public function get_content_plain() {
|
157 |
+
return wc_get_template_html(
|
158 |
+
$this->template_plain, array(
|
159 |
+
'shipment' => $this->shipment,
|
160 |
+
'order' => $this->object,
|
161 |
+
'email_heading' => $this->get_heading(),
|
162 |
+
'additional_content' => $this->get_additional_content(),
|
163 |
+
'sent_to_admin' => true,
|
164 |
+
'plain_text' => true,
|
165 |
+
'email' => $this,
|
166 |
+
)
|
167 |
+
);
|
168 |
+
}
|
169 |
+
|
170 |
+
public function get_attachments() {
|
171 |
+
$attachments = array();
|
172 |
+
|
173 |
+
if ( $this->shipment->has_label() ) {
|
174 |
+
$label = $this->shipment->get_label();
|
175 |
+
|
176 |
+
if ( $file = $label->get_file() ) {
|
177 |
+
$attachments[] = $file;
|
178 |
+
}
|
179 |
+
}
|
180 |
+
|
181 |
+
return apply_filters( 'woocommerce_email_attachments', $attachments, $this->id, $this->object, $this );
|
182 |
+
}
|
183 |
+
|
184 |
+
/**
|
185 |
+
* Default content to show below main email content.
|
186 |
+
*
|
187 |
+
* @since 1.0.1
|
188 |
+
* @return string
|
189 |
+
*/
|
190 |
+
public function get_default_additional_content() {
|
191 |
+
return '';
|
192 |
+
}
|
193 |
+
|
194 |
+
/**
|
195 |
+
* Initialise settings form fields.
|
196 |
+
*/
|
197 |
+
public function init_form_fields() {
|
198 |
+
parent::init_form_fields();
|
199 |
+
|
200 |
+
$this->form_fields = array_merge( $this->form_fields, array(
|
201 |
+
'recipient' => array(
|
202 |
+
'title' => _x( 'Recipient(s)', 'shipments', 'woocommerce-germanized' ),
|
203 |
+
'type' => 'text',
|
204 |
+
/* translators: %s: WP admin email */
|
205 |
+
'description' => sprintf( _x( 'Enter recipients (comma separated) for this email. Defaults to %s.', 'shipments', 'woocommerce-germanized' ), '<code>' . esc_attr( get_option( 'admin_email' ) ) . '</code>' ),
|
206 |
+
'placeholder' => '',
|
207 |
+
'default' => '',
|
208 |
+
'desc_tip' => true,
|
209 |
+
),
|
210 |
+
) );
|
211 |
+
}
|
212 |
+
}
|
213 |
+
|
214 |
+
endif;
|
215 |
+
|
216 |
+
return new WC_GZD_Email_New_Return_Shipment_Request();
|
packages/woocommerce-germanized-shipments/src/Admin/Table.php
CHANGED
@@ -799,7 +799,7 @@ class Table extends WP_List_Table {
|
|
799 |
}
|
800 |
|
801 |
if ( $tracking_id = $shipment->get_tracking_id() ) {
|
802 |
-
if ( $tracking_url = $shipment->get_tracking_url() ) {
|
803 |
echo '<a class="shipment-tracking-id" href="' . esc_url( $tracking_url ) . '">' . $tracking_id . '</a>';
|
804 |
} else {
|
805 |
echo '<span class="shipment-tracking-id">' . $tracking_id . '</span>';
|
799 |
}
|
800 |
|
801 |
if ( $tracking_id = $shipment->get_tracking_id() ) {
|
802 |
+
if ( $shipment->has_tracking() && ( $tracking_url = $shipment->get_tracking_url() ) ) {
|
803 |
echo '<a class="shipment-tracking-id" href="' . esc_url( $tracking_url ) . '">' . $tracking_id . '</a>';
|
804 |
} else {
|
805 |
echo '<span class="shipment-tracking-id">' . $tracking_id . '</span>';
|
packages/woocommerce-germanized-shipments/src/DataStores/ShipmentItem.php
CHANGED
@@ -221,7 +221,7 @@ class ShipmentItem extends WC_Data_Store_WP implements WC_Object_Data_Store_Inte
|
|
221 |
$props = array();
|
222 |
|
223 |
foreach( $this->internal_meta_keys as $meta_key ) {
|
224 |
-
$props[ substr( $meta_key, 1 ) ] = get_metadata(
|
225 |
}
|
226 |
|
227 |
$item->set_props( $props );
|
@@ -246,9 +246,9 @@ class ShipmentItem extends WC_Data_Store_WP implements WC_Object_Data_Store_Inte
|
|
246 |
*/
|
247 |
protected function update_or_delete_meta( $object, $meta_key, $meta_value ) {
|
248 |
if ( in_array( $meta_value, array( array(), '' ), true ) && ! in_array( $meta_key, $this->must_exist_meta_keys, true ) ) {
|
249 |
-
$updated = delete_metadata(
|
250 |
} else {
|
251 |
-
$updated = update_metadata(
|
252 |
}
|
253 |
|
254 |
return (bool) $updated;
|
@@ -276,7 +276,7 @@ class ShipmentItem extends WC_Data_Store_WP implements WC_Object_Data_Store_Inte
|
|
276 |
$meta_key_to_props[ $meta_key ] = $prop_name;
|
277 |
}
|
278 |
|
279 |
-
$props_to_update = $this->get_props_to_update( $item, $meta_key_to_props,
|
280 |
|
281 |
foreach ( $props_to_update as $meta_key => $prop ) {
|
282 |
|
221 |
$props = array();
|
222 |
|
223 |
foreach( $this->internal_meta_keys as $meta_key ) {
|
224 |
+
$props[ substr( $meta_key, 1 ) ] = get_metadata( $this->meta_type, $item->get_id(), $meta_key, true );
|
225 |
}
|
226 |
|
227 |
$item->set_props( $props );
|
246 |
*/
|
247 |
protected function update_or_delete_meta( $object, $meta_key, $meta_value ) {
|
248 |
if ( in_array( $meta_value, array( array(), '' ), true ) && ! in_array( $meta_key, $this->must_exist_meta_keys, true ) ) {
|
249 |
+
$updated = delete_metadata( $this->meta_type, $object->get_id(), $meta_key );
|
250 |
} else {
|
251 |
+
$updated = update_metadata( $this->meta_type, $object->get_id(), $meta_key, $meta_value );
|
252 |
}
|
253 |
|
254 |
return (bool) $updated;
|
276 |
$meta_key_to_props[ $meta_key ] = $prop_name;
|
277 |
}
|
278 |
|
279 |
+
$props_to_update = $this->get_props_to_update( $item, $meta_key_to_props, $this->meta_type );
|
280 |
|
281 |
foreach ( $props_to_update as $meta_key => $prop ) {
|
282 |
|
packages/woocommerce-germanized-shipments/src/Emails.php
CHANGED
@@ -29,8 +29,9 @@ class Emails {
|
|
29 |
$emails['WC_GZD_Email_Customer_Return_Shipment'] = include Package::get_path() . '/includes/emails/class-wc-gzd-email-customer-return-shipment.php';
|
30 |
$emails['WC_GZD_Email_Customer_Return_Shipment_Delivered'] = include Package::get_path() . '/includes/emails/class-wc-gzd-email-customer-return-shipment-delivered.php';
|
31 |
$emails['WC_GZD_Email_Customer_Guest_Return_Shipment_Request'] = include Package::get_path() . '/includes/emails/class-wc-gzd-email-customer-guest-return-shipment-request.php';
|
|
|
32 |
|
33 |
-
|
34 |
}
|
35 |
|
36 |
public static function email_hooks() {
|
29 |
$emails['WC_GZD_Email_Customer_Return_Shipment'] = include Package::get_path() . '/includes/emails/class-wc-gzd-email-customer-return-shipment.php';
|
30 |
$emails['WC_GZD_Email_Customer_Return_Shipment_Delivered'] = include Package::get_path() . '/includes/emails/class-wc-gzd-email-customer-return-shipment-delivered.php';
|
31 |
$emails['WC_GZD_Email_Customer_Guest_Return_Shipment_Request'] = include Package::get_path() . '/includes/emails/class-wc-gzd-email-customer-guest-return-shipment-request.php';
|
32 |
+
$emails['WC_GZD_Email_New_Return_Shipment_Request'] = include Package::get_path() . '/includes/emails/class-wc-gzd-email-new-return-shipment-request.php';
|
33 |
|
34 |
+
return $emails;
|
35 |
}
|
36 |
|
37 |
public static function email_hooks() {
|
packages/woocommerce-germanized-shipments/src/PDFMerger.php
CHANGED
@@ -82,9 +82,17 @@ class PDFMerger {
|
|
82 |
*/
|
83 |
private function _addPage( $pageNumber, $width = 210 ) {
|
84 |
$pageId = $this->_pdf->importPage( $pageNumber );
|
|
|
85 |
|
86 |
-
$
|
87 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
}
|
89 |
|
90 |
|
82 |
*/
|
83 |
private function _addPage( $pageNumber, $width = 210 ) {
|
84 |
$pageId = $this->_pdf->importPage( $pageNumber );
|
85 |
+
$size = $this->_pdf->getTemplateSize( $pageId );
|
86 |
|
87 |
+
$orientation = isset( $size['orientation'] ) ? $size['orientation'] : '';
|
88 |
+
|
89 |
+
$this->_pdf->addPage( $orientation, $size );
|
90 |
+
|
91 |
+
if ( ! isset( $size['width'] ) || empty( $size['width'] ) ) {
|
92 |
+
$this->_pdf->useImportedPage( $pageId, 0, 0, $width, null, true );
|
93 |
+
} else {
|
94 |
+
$this->_pdf->useImportedPage( $pageId );
|
95 |
+
}
|
96 |
}
|
97 |
|
98 |
|
packages/woocommerce-germanized-shipments/src/Package.php
CHANGED
@@ -17,7 +17,7 @@ class Package {
|
|
17 |
*
|
18 |
* @var string
|
19 |
*/
|
20 |
-
const VERSION = '1.3.
|
21 |
|
22 |
public static $upload_dir_suffix = '';
|
23 |
|
@@ -168,6 +168,17 @@ class Package {
|
|
168 |
}
|
169 |
|
170 |
public static function add_method_settings( $p_settings ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
171 |
$shipping_provider_settings = self::get_method_settings();
|
172 |
|
173 |
return array_merge( $p_settings, $shipping_provider_settings );
|
17 |
*
|
18 |
* @var string
|
19 |
*/
|
20 |
+
const VERSION = '1.3.2';
|
21 |
|
22 |
public static $upload_dir_suffix = '';
|
23 |
|
168 |
}
|
169 |
|
170 |
public static function add_method_settings( $p_settings ) {
|
171 |
+
$wc = WC();
|
172 |
+
|
173 |
+
/**
|
174 |
+
* Prevent undefined index notices during REST API calls.
|
175 |
+
*
|
176 |
+
* @see WC_REST_Shipping_Zone_Methods_V2_Controller::get_settings()
|
177 |
+
*/
|
178 |
+
if ( is_callable( array( $wc, 'is_rest_api_request' ) ) && $wc->is_rest_api_request() ) {
|
179 |
+
return $p_settings;
|
180 |
+
}
|
181 |
+
|
182 |
$shipping_provider_settings = self::get_method_settings();
|
183 |
|
184 |
return array_merge( $p_settings, $shipping_provider_settings );
|
packages/woocommerce-germanized-shipments/src/ReturnShipment.php
CHANGED
@@ -47,15 +47,6 @@ class ReturnShipment extends Shipment {
|
|
47 |
return 'return';
|
48 |
}
|
49 |
|
50 |
-
/**
|
51 |
-
* Prefix for action and filter hooks on data.
|
52 |
-
*
|
53 |
-
* @return string
|
54 |
-
*/
|
55 |
-
protected function get_hook_prefix() {
|
56 |
-
return 'woocommerce_gzd_return_shipment_get_';
|
57 |
-
}
|
58 |
-
|
59 |
/**
|
60 |
* Returns the order id belonging to the shipment.
|
61 |
*
|
47 |
return 'return';
|
48 |
}
|
49 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
/**
|
51 |
* Returns the order id belonging to the shipment.
|
52 |
*
|
packages/woocommerce-germanized-shipments/src/Shipment.php
CHANGED
@@ -204,9 +204,20 @@ abstract class Shipment extends WC_Data {
|
|
204 |
* @return string
|
205 |
*/
|
206 |
protected function get_hook_prefix() {
|
207 |
-
return '
|
208 |
}
|
209 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
/**
|
211 |
* Return the shipment statuses without gzd- internal prefix.
|
212 |
*
|
@@ -543,11 +554,13 @@ abstract class Shipment extends WC_Data {
|
|
543 |
}
|
544 |
|
545 |
public function has_tracking() {
|
|
|
|
|
546 |
if ( ! $this->has_tracking_instruction() && ! $this->get_tracking_url() ) {
|
547 |
-
|
548 |
}
|
549 |
|
550 |
-
return
|
551 |
}
|
552 |
|
553 |
/**
|
204 |
* @return string
|
205 |
*/
|
206 |
protected function get_hook_prefix() {
|
207 |
+
return $this->get_general_hook_prefix() . 'get_';
|
208 |
}
|
209 |
|
210 |
+
/**
|
211 |
+
* Prefix for action and filter hooks on data.
|
212 |
+
*
|
213 |
+
* @return string
|
214 |
+
*/
|
215 |
+
protected function get_general_hook_prefix() {
|
216 |
+
$shipment_prefix = 'simple' === $this->get_type() ? '' : $this->get_type() . '_';
|
217 |
+
|
218 |
+
return "woocommerce_gzd_{$shipment_prefix}shipment_";
|
219 |
+
}
|
220 |
+
|
221 |
/**
|
222 |
* Return the shipment statuses without gzd- internal prefix.
|
223 |
*
|
554 |
}
|
555 |
|
556 |
public function has_tracking() {
|
557 |
+
$has_tracking = true;
|
558 |
+
|
559 |
if ( ! $this->has_tracking_instruction() && ! $this->get_tracking_url() ) {
|
560 |
+
$has_tracking = false;
|
561 |
}
|
562 |
|
563 |
+
return apply_filters( "{$this->get_general_hook_prefix()}has_tracking", $has_tracking, $this );
|
564 |
}
|
565 |
|
566 |
/**
|
packages/woocommerce-germanized-shipments/src/ShippingProvider.php
CHANGED
@@ -483,6 +483,12 @@ class ShippingProvider extends WC_Data {
|
|
483 |
* @return array
|
484 |
*/
|
485 |
public function get_tracking_placeholders( $shipment = false ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
486 |
/**
|
487 |
* This filter may be used to add or manipulate tracking placeholder data
|
488 |
* for a certain shipping provider.
|
@@ -503,6 +509,15 @@ class ShippingProvider extends WC_Data {
|
|
503 |
'{shipment_number}' => $shipment ? $shipment->get_shipment_number() : '',
|
504 |
'{order_number}' => $shipment ? $shipment->get_order_number() : '',
|
505 |
'{tracking_id}' => $shipment ? $shipment->get_tracking_id() : '',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
506 |
'{shipping_provider}' => $this->get_title()
|
507 |
), $this, $shipment );
|
508 |
}
|
@@ -528,6 +543,8 @@ class ShippingProvider extends WC_Data {
|
|
528 |
array( 'title' => '', 'type' => 'title', 'id' => 'shipping_provider_options', 'desc' => $desc ),
|
529 |
);
|
530 |
|
|
|
|
|
531 |
if ( $this->is_manual_integration() ) {
|
532 |
$settings = array_merge( $settings, array(
|
533 |
array(
|
@@ -549,6 +566,8 @@ class ShippingProvider extends WC_Data {
|
|
549 |
'css' => 'width: 100%;',
|
550 |
),
|
551 |
) );
|
|
|
|
|
552 |
}
|
553 |
|
554 |
$settings = array_merge( $settings, array(
|
@@ -556,7 +575,7 @@ class ShippingProvider extends WC_Data {
|
|
556 |
'title' => _x( 'Tracking URL', 'shipments', 'woocommerce-germanized' ),
|
557 |
'desc' => '<div class="wc-gzd-additional-desc">' . sprintf( _x( 'Adjust the placeholder used to construct the tracking URL for this shipping provider. You may use on of the following placeholders to insert the tracking id or other dynamic data: %s', 'shipments', 'woocommerce-germanized' ), '<code>' . implode( ', ', array_keys( $this->get_tracking_placeholders() ) ) . '</code>' ) . '</div>',
|
558 |
'id' => 'shipping_provider_tracking_url_placeholder',
|
559 |
-
'placeholder' =>
|
560 |
'value' => $this->get_tracking_url_placeholder( 'edit' ),
|
561 |
'default' => $this->get_default_tracking_url_placeholder(),
|
562 |
'type' => 'text',
|
@@ -572,57 +591,63 @@ class ShippingProvider extends WC_Data {
|
|
572 |
'default' => $this->get_default_tracking_desc_placeholder(),
|
573 |
'type' => 'textarea',
|
574 |
'css' => 'width: 100%; min-height: 60px; margin-top: 1em;',
|
575 |
-
)
|
|
|
576 |
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
|
|
|
|
586 |
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
|
|
596 |
),
|
597 |
-
),
|
598 |
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
|
|
609 |
),
|
610 |
-
),
|
611 |
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
|
|
623 |
),
|
624 |
-
)
|
|
|
625 |
|
|
|
626 |
array( 'type' => 'sectionend', 'id' => 'shipping_provider_options' ),
|
627 |
) );
|
628 |
|
483 |
* @return array
|
484 |
*/
|
485 |
public function get_tracking_placeholders( $shipment = false ) {
|
486 |
+
$label = false;
|
487 |
+
|
488 |
+
if ( $shipment ) {
|
489 |
+
$label = $shipment->get_label();
|
490 |
+
}
|
491 |
+
|
492 |
/**
|
493 |
* This filter may be used to add or manipulate tracking placeholder data
|
494 |
* for a certain shipping provider.
|
509 |
'{shipment_number}' => $shipment ? $shipment->get_shipment_number() : '',
|
510 |
'{order_number}' => $shipment ? $shipment->get_order_number() : '',
|
511 |
'{tracking_id}' => $shipment ? $shipment->get_tracking_id() : '',
|
512 |
+
'{date_sent_day}' => $shipment && $shipment->get_date_sent() ? $shipment->get_date_sent()->format( 'd' ) : '',
|
513 |
+
'{date_sent_month}' => $shipment && $shipment->get_date_sent() ? $shipment->get_date_sent()->format( 'm' ) : '',
|
514 |
+
'{date_sent_year}' => $shipment && $shipment->get_date_sent() ? $shipment->get_date_sent()->format( 'Y' ) : '',
|
515 |
+
'{date_day}' => $shipment && $shipment->get_date_created() ? $shipment->get_date_created()->format( 'd' ) : '',
|
516 |
+
'{date_month}' => $shipment && $shipment->get_date_created() ? $shipment->get_date_created()->format( 'm' ) : '',
|
517 |
+
'{date_year}' => $shipment && $shipment->get_date_created() ? $shipment->get_date_created()->format( 'Y' ) : '',
|
518 |
+
'{label_date_day}' => $label ? $label->get_date_created()->format( 'd' ) : '',
|
519 |
+
'{label_date_month}' => $label ? $label->get_date_created()->format( 'm' ) : '',
|
520 |
+
'{label_date_year}' => $label ? $label->get_date_created()->format( 'Y' ) : '',
|
521 |
'{shipping_provider}' => $this->get_title()
|
522 |
), $this, $shipment );
|
523 |
}
|
543 |
array( 'title' => '', 'type' => 'title', 'id' => 'shipping_provider_options', 'desc' => $desc ),
|
544 |
);
|
545 |
|
546 |
+
$supports_returns = true;
|
547 |
+
|
548 |
if ( $this->is_manual_integration() ) {
|
549 |
$settings = array_merge( $settings, array(
|
550 |
array(
|
566 |
'css' => 'width: 100%;',
|
567 |
),
|
568 |
) );
|
569 |
+
} else {
|
570 |
+
$supports_returns = $this->supports_labels( 'return' );
|
571 |
}
|
572 |
|
573 |
$settings = array_merge( $settings, array(
|
575 |
'title' => _x( 'Tracking URL', 'shipments', 'woocommerce-germanized' ),
|
576 |
'desc' => '<div class="wc-gzd-additional-desc">' . sprintf( _x( 'Adjust the placeholder used to construct the tracking URL for this shipping provider. You may use on of the following placeholders to insert the tracking id or other dynamic data: %s', 'shipments', 'woocommerce-germanized' ), '<code>' . implode( ', ', array_keys( $this->get_tracking_placeholders() ) ) . '</code>' ) . '</div>',
|
577 |
'id' => 'shipping_provider_tracking_url_placeholder',
|
578 |
+
'placeholder' => $this->get_default_tracking_url_placeholder(),
|
579 |
'value' => $this->get_tracking_url_placeholder( 'edit' ),
|
580 |
'default' => $this->get_default_tracking_url_placeholder(),
|
581 |
'type' => 'text',
|
591 |
'default' => $this->get_default_tracking_desc_placeholder(),
|
592 |
'type' => 'textarea',
|
593 |
'css' => 'width: 100%; min-height: 60px; margin-top: 1em;',
|
594 |
+
)
|
595 |
+
) );
|
596 |
|
597 |
+
if ( $supports_returns ) {
|
598 |
+
$settings = array_merge( $settings, array(
|
599 |
+
array(
|
600 |
+
'title' => _x( 'Customer returns', 'shipments', 'woocommerce-germanized' ),
|
601 |
+
'desc' => _x( 'Allow customers to submit return requests to shipments.', 'shipments', 'woocommerce-germanized' ) . '<div class="wc-gzd-additional-desc">' . sprintf( _x( 'This option will allow your customers to submit return requests to orders. Return requests will be visible within your %s. To learn more about return requests by customers and/or guests, please check the %s.', 'shipments', 'woocommerce-germanized' ), '<a href="' . admin_url( 'admin.php?page=wc-gzd-return-shipments' ) . '">' . _x( 'Return Dashboard', 'shipments', 'woocommerce-germanized' ) . '</a>', '<a href="https://vendidero.de/dokument/retouren-konfigurieren-und-verwalten" target="_blank">' . _x( 'docs', 'shipments', 'woocommerce-germanized' ) . '</a>' ) . '</div>',
|
602 |
+
'id' => 'shipping_provider_supports_customer_returns',
|
603 |
+
'placeholder' => '',
|
604 |
+
'value' => $this->get_supports_customer_returns( 'edit' ) ? 'yes' : 'no',
|
605 |
+
'default' => 'no',
|
606 |
+
'type' => 'gzd_toggle',
|
607 |
+
),
|
608 |
|
609 |
+
array(
|
610 |
+
'title' => _x( 'Guest returns', 'shipments', 'woocommerce-germanized' ),
|
611 |
+
'desc' => _x( 'Allow guests to submit return requests to shipments.', 'shipments', 'woocommerce-germanized' ) . '<div class="wc-gzd-additional-desc">' . sprintf( _x( 'Guests will need to provide their email address and the order id to receive a one-time link to submit a return request. The placeholder %s might be used to place the request form on your site.', 'shipments', 'woocommerce-germanized' ), '<code>[gzd_return_request_form]</code>' ) . '</div>',
|
612 |
+
'id' => 'shipping_provider_supports_guest_returns',
|
613 |
+
'default' => 'no',
|
614 |
+
'value' => $this->get_supports_guest_returns( 'edit' ) ? 'yes' : 'no',
|
615 |
+
'type' => 'gzd_toggle',
|
616 |
+
'custom_attributes' => array(
|
617 |
+
'data-show_if_shipping_provider_supports_customer_returns' => '',
|
618 |
+
),
|
619 |
),
|
|
|
620 |
|
621 |
+
array(
|
622 |
+
'title' => _x( 'Manual confirmation', 'shipments', 'woocommerce-germanized' ),
|
623 |
+
'desc' => _x( 'Return requests need manual confirmation.', 'shipments', 'woocommerce-germanized' ) . '<div class="wc-gzd-additional-desc">' . _x( 'By default return request need manual confirmation e.g. a shop manager needs to review return requests which by default are added with the status "requested" after a customer submitted a return request. If you choose to disable this option, customer return requests will be added as "processing" and an email confirmation including instructions will be sent immediately to the customer.', 'shipments', 'woocommerce-germanized' ) . '</div>',
|
624 |
+
'id' => 'shipping_provider_return_manual_confirmation',
|
625 |
+
'placeholder' => '',
|
626 |
+
'value' => $this->get_return_manual_confirmation( 'edit' ) ? 'yes' : 'no',
|
627 |
+
'default' => 'yes',
|
628 |
+
'type' => 'gzd_toggle',
|
629 |
+
'custom_attributes' => array(
|
630 |
+
'data-show_if_shipping_provider_supports_customer_returns' => '',
|
631 |
+
),
|
632 |
),
|
|
|
633 |
|
634 |
+
array(
|
635 |
+
'title' => _x( 'Return instructions', 'shipments', 'woocommerce-germanized' ),
|
636 |
+
'desc' => '<div class="wc-gzd-additional-desc">' . _x( 'Provide your customer with instructions on how to return the shipment after a return request has been confirmed e.g. explain how to prepare the return for shipment. In case a label cannot be generated automatically, make sure to provide your customer with information on how to obain a return label.', 'shipments', 'woocommerce-germanized' ) . '</div>',
|
637 |
+
'id' => 'shipping_provider_return_instructions',
|
638 |
+
'placeholder' => '',
|
639 |
+
'value' => $this->get_return_instructions( 'edit' ),
|
640 |
+
'default' => '',
|
641 |
+
'type' => 'textarea',
|
642 |
+
'css' => 'width: 100%; min-height: 60px; margin-top: 1em;',
|
643 |
+
'custom_attributes' => array(
|
644 |
+
'data-show_if_shipping_provider_supports_customer_returns' => '',
|
645 |
+
),
|
646 |
),
|
647 |
+
) );
|
648 |
+
}
|
649 |
|
650 |
+
$settings = array_merge( $settings, array(
|
651 |
array( 'type' => 'sectionend', 'id' => 'shipping_provider_options' ),
|
652 |
) );
|
653 |
|
packages/woocommerce-germanized-shipments/src/Validation.php
CHANGED
@@ -187,10 +187,17 @@ class Validation {
|
|
187 |
* @param WC_Order_Item $order_item
|
188 |
*/
|
189 |
public static function update_order_item( $order_item_id, $order_item ) {
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
}
|
195 |
}
|
196 |
}
|
187 |
* @param WC_Order_Item $order_item
|
188 |
*/
|
189 |
public static function update_order_item( $order_item_id, $order_item ) {
|
190 |
+
/**
|
191 |
+
* Prevent from firing during save_post to make sure
|
192 |
+
* that no validation is done on order item saving (for each item in the order)
|
193 |
+
* which might lead to performance issues.
|
194 |
+
*/
|
195 |
+
if ( ! doing_action( 'save_post' ) ) {
|
196 |
+
if ( is_callable( array( $order_item, 'get_order_id' ) ) ) {
|
197 |
+
|
198 |
+
if ( $order_shipment = wc_gzd_get_shipment_order( $order_item->get_order_id() ) ) {
|
199 |
+
$order_shipment->validate_shipments();
|
200 |
+
}
|
201 |
}
|
202 |
}
|
203 |
}
|
packages/woocommerce-germanized-shipments/templates/emails/admin-new-return-shipment-request.php
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Admin new return shipment request.
|
4 |
+
*
|
5 |
+
* This template can be overridden by copying it to yourtheme/woocommerce-germanized/emails/admin-new-return-shipment-request.php.
|
6 |
+
*
|
7 |
+
* HOWEVER, on occasion Germanized will need to update template files and you
|
8 |
+
* (the theme developer) will need to copy the new files to your theme to
|
9 |
+
* maintain compatibility. We try to do this as little as possible, but it does
|
10 |
+
* happen. When this occurs the version of the template file will be bumped and
|
11 |
+
* the readme will list any important changes.
|
12 |
+
*
|
13 |
+
* @see https://github.com/vendidero/woocommerce-germanized/wiki/Overriding-Germanized-Templates
|
14 |
+
* @package Germanized/Shipments/Templates/Emails
|
15 |
+
* @version 1.0.0
|
16 |
+
*
|
17 |
+
* @var \Vendidero\Germanized\Shipments\ReturnShipment $shipment
|
18 |
+
* @var WC_Order $order
|
19 |
+
*/
|
20 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
21 |
+
exit;
|
22 |
+
}
|
23 |
+
|
24 |
+
/*
|
25 |
+
* @hooked WC_Emails::email_header() Output the email header
|
26 |
+
*/
|
27 |
+
do_action( 'woocommerce_email_header', $email_heading, $email ); ?>
|
28 |
+
|
29 |
+
<?php /* translators: %s: Customer billing full name */ ?>
|
30 |
+
<p><?php printf( esc_html_x( 'You’ve received the following return request from %s:', 'shipments', 'woocommerce-germanized' ), $shipment->get_formatted_sender_full_name() ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></p>
|
31 |
+
<?php
|
32 |
+
|
33 |
+
/*
|
34 |
+
* Output Email details for a Shipment.
|
35 |
+
*
|
36 |
+
* @hooked \Vendidero\Germanized\Shipments\Email::email_tracking() Adds tracking info.
|
37 |
+
* @hooked \Vendidero\Germanized\Shipments\Email::email_address() Adds shipping address.
|
38 |
+
* @hooked \Vendidero\Germanized\Shipments\Email::email_details() Adds shipment table.
|
39 |
+
*
|
40 |
+
* @param \Vendidero\Germanized\Shipments\Shipment $shipment The shipment instance.
|
41 |
+
* @param boolean $sent_to_admin Whether to send this email to admin or not.
|
42 |
+
* @param boolean $plain_text Whether this email is in plaintext format or not.
|
43 |
+
* @param WC_Email $email The email instance.
|
44 |
+
*
|
45 |
+
* @since 3.0.0
|
46 |
+
* @package Vendidero/Germanized/Shipments
|
47 |
+
*/
|
48 |
+
do_action( 'woocommerce_gzd_email_shipment_details', $shipment, $sent_to_admin, $plain_text, $email );
|
49 |
+
|
50 |
+
/**
|
51 |
+
* Show user-defined additional content - this is set in each email's settings.
|
52 |
+
*/
|
53 |
+
if ( $additional_content ) {
|
54 |
+
echo wp_kses_post( wpautop( wptexturize( $additional_content ) ) );
|
55 |
+
}
|
56 |
+
|
57 |
+
/*
|
58 |
+
* @hooked WC_Emails::email_footer() Output the email footer
|
59 |
+
*/
|
60 |
+
do_action( 'woocommerce_email_footer', $email );
|
packages/woocommerce-germanized-shipments/templates/emails/email-shipment-details.php
CHANGED
@@ -43,7 +43,7 @@ do_action( 'woocommerce_gzd_email_before_shipment_table', $shipment, $sent_to_ad
|
|
43 |
$after = '';
|
44 |
}
|
45 |
/* translators: %s: Order ID. */
|
46 |
-
echo wp_kses_post( $before . sprintf( _x( 'Details to your %s', 'shipments', 'woocommerce-germanized' ), wc_gzd_get_shipment_label( $shipment->get_type() ) ) . $after );
|
47 |
?>
|
48 |
</h2>
|
49 |
|
43 |
$after = '';
|
44 |
}
|
45 |
/* translators: %s: Order ID. */
|
46 |
+
echo wp_kses_post( $before . ( ! $sent_to_admin ? sprintf( _x( 'Details to your %s', 'shipments', 'woocommerce-germanized' ), wc_gzd_get_shipment_label( $shipment->get_type() ) ) : sprintf( _x( '[%s #%s]', 'shipments', 'woocommerce-germanized' ), wc_gzd_get_shipment_label( $shipment->get_type() ), $shipment->get_shipment_number() ) ) . $after );
|
47 |
?>
|
48 |
</h2>
|
49 |
|
packages/woocommerce-germanized-shipments/templates/emails/plain/admin-new-return-shipment-request.php
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Admin new return shipment request (plain text)
|
4 |
+
*
|
5 |
+
* This template can be overridden by copying it to yourtheme/woocommerce-germanized/emails/plain/admin-new-return-shipment-request.php.
|
6 |
+
*
|
7 |
+
* HOWEVER, on occasion Germanized will need to update template files and you
|
8 |
+
* (the theme developer) will need to copy the new files to your theme to
|
9 |
+
* maintain compatibility. We try to do this as little as possible, but it does
|
10 |
+
* happen. When this occurs the version of the template file will be bumped and
|
11 |
+
* the readme will list any important changes.
|
12 |
+
*
|
13 |
+
* @see https://github.com/vendidero/woocommerce-germanized/wiki/Overriding-Germanized-Templates
|
14 |
+
* @package Germanized/Shipments/Templates/Emails/Plain
|
15 |
+
* @version 1.0.0
|
16 |
+
*/
|
17 |
+
defined( 'ABSPATH' ) || exit;
|
18 |
+
|
19 |
+
echo "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n";
|
20 |
+
echo esc_html( wp_strip_all_tags( $email_heading ) );
|
21 |
+
echo "\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
|
22 |
+
|
23 |
+
/* translators: %s: Customer billing full name */
|
24 |
+
echo sprintf( esc_html_x( 'You’ve received the following return request from %s:', 'shipments', 'woocommerce-germanized' ), esc_html( $shipment->get_formatted_sender_full_name() ) ) . "\n\n";
|
25 |
+
|
26 |
+
echo "\n\n";
|
27 |
+
|
28 |
+
/* This hook is documented in templates/emails/customer-shipment.php */
|
29 |
+
do_action( 'woocommerce_gzd_email_shipment_details', $shipment, $sent_to_admin, $plain_text, $email );
|
30 |
+
|
31 |
+
/**
|
32 |
+
* Show user-defined additional content - this is set in each email's settings.
|
33 |
+
*/
|
34 |
+
if ( $additional_content ) {
|
35 |
+
echo esc_html( wp_strip_all_tags( wptexturize( $additional_content ) ) );
|
36 |
+
echo "\n\n----------------------------------------\n\n";
|
37 |
+
}
|
38 |
+
|
39 |
+
echo "\n----------------------------------------\n\n";
|
40 |
+
|
41 |
+
echo wp_kses_post( apply_filters( 'woocommerce_email_footer_text', get_option( 'woocommerce_email_footer_text' ) ) );
|
packages/woocommerce-germanized-shipments/templates/emails/plain/email-shipment-details.php
CHANGED
@@ -20,7 +20,7 @@ defined( 'ABSPATH' ) || exit;
|
|
20 |
do_action( 'woocommerce_gzd_email_before_shipment_table', $shipment, $sent_to_admin, $plain_text, $email );
|
21 |
|
22 |
/* translators: %1$s: Order ID. %2$s: Order date */
|
23 |
-
echo wp_kses_post( wc_strtoupper( sprintf( _x( 'Details to your %s', 'shipments', 'woocommerce-germanized' ), wc_gzd_get_shipment_label( $shipment->get_type() ) ) ) ) . "\n";
|
24 |
echo "\n" . wc_gzd_get_email_shipment_items( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
25 |
$shipment,
|
26 |
array(
|
20 |
do_action( 'woocommerce_gzd_email_before_shipment_table', $shipment, $sent_to_admin, $plain_text, $email );
|
21 |
|
22 |
/* translators: %1$s: Order ID. %2$s: Order date */
|
23 |
+
echo wp_kses_post( wc_strtoupper( ( ! $sent_to_admin ? sprintf( _x( 'Details to your %s', 'shipments', 'woocommerce-germanized' ), wc_gzd_get_shipment_label( $shipment->get_type() ) ) : sprintf( _x( '[%s #%s]', 'shipments', 'woocommerce-germanized' ), wc_gzd_get_shipment_label( $shipment->get_type() ), $shipment->get_shipment_number() ) ) ) ) . "\n";
|
24 |
echo "\n" . wc_gzd_get_email_shipment_items( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
25 |
$shipment,
|
26 |
array(
|
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.3.
|
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.3.2
|
9 |
* Requires PHP: 5.6
|
10 |
* License: GPLv3
|
11 |
*
|
packages/woocommerce-trusted-shops/assets/js/admin.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
window.trusted_shops=window.trusted_shops||{},function(
|
1 |
+
window.trusted_shops=window.trusted_shops||{},function(s,a){a.admin={params:{},optionPrefix:"",init:function(){this.params=trusted_shops_params,this.optionPrefix=this.params.option_prefix;var e=this;s(document).on("click","a.woocommerce-ts-input-toggle-trigger",this.onInputToogleClick),s(document).on("change","#woocommerce_"+this.optionPrefix+"trusted_shops_integration_mode",this.onChangeIntegrationMode),s(document).on("change",":input[id$=_enable]",this.onChangeEnable),s(document).on("change","#woocommerce_"+this.optionPrefix+"trusted_shops_reviews_enable",this.onChangeEnableReviews),s(document).find("#woocommerce_"+this.optionPrefix+"trusted_shops_integration_mode").trigger("change"),s(document).find(":input[id$=_enable]").trigger("change"),s(document).on("click","#wc-gzd-trusted-shops-export",this.onClickExport),s(document).on("click","table.form-table tr",this.onSidebarChange),s(":data(sidebar)").each(function(){s(this).parents("tr").on("click",e.onSidebarChange)}),s(document).on("click",'h2, div[id$="options-description"]',this.onSidebarTitelChange),s(document).on("submit","#mainform",this.onSaveForm)},onInputToogleClick:function(){var e=s(this).find("span.woocommerce-ts-input-toggle"),t=e.parents("tr").find("input[type=checkbox]"),o=e.hasClass("woocommerce-input-toggle--enabled");return e.removeClass("woocommerce-input-toggle--enabled"),e.removeClass("woocommerce-input-toggle--disabled"),o?(t.prop("checked",!1),e.addClass("woocommerce-input-toggle--disabled")):(t.prop("checked",!0),e.addClass("woocommerce-input-toggle--enabled")),t.trigger("change"),!1},onChangeEnableReviews:function(){var e=a.admin;s(this).is(":checked")?(s(document).find("#woocommerce_"+e.optionPrefix+"trusted_shops_product_sticker_enable").parents("tr").show(),s(document).find("#woocommerce_"+e.optionPrefix+"trusted_shops_product_widget_enable").parents("tr").show(),s(document).find("#woocommerce_"+e.optionPrefix+"trusted_shops_brand_attribute").parents("tr").show()):(s(document).find("#woocommerce_"+e.optionPrefix+"trusted_shops_product_sticker_enable").prop("checked",!1),s(document).find("#woocommerce_"+e.optionPrefix+"trusted_shops_product_widget_enable").prop("checked",!1),s(document).find("#woocommerce_"+e.optionPrefix+"trusted_shops_product_sticker_enable").parents("tr").hide(),s(document).find("#woocommerce_"+e.optionPrefix+"trusted_shops_product_widget_enable").parents("tr").hide(),s(document).find("#woocommerce_"+e.optionPrefix+"trusted_shops_brand_attribute").parents("tr").hide()),s(document).find("#woocommerce_"+e.optionPrefix+"trusted_shops_product_sticker_enable").trigger("change"),s(document).find("#woocommerce_"+e.optionPrefix+"trusted_shops_product_widget_enable").trigger("change")},onChangeIntegrationMode:function(){a.admin;s(document).find(":input[id$=_enable]").trigger("change")},onChangeEnable:function(){self=a.admin,self.showHideGroupElements(s(this))},showHideGroupElements:function(e){var t=e.attr("id"),o=a.admin,t=t.replace("woocommerce_"+o.optionPrefix+"trusted_shops_",""),i=t.substr(0,t.length-7),t=s(":input[id^=woocommerce_"+o.optionPrefix+"trusted_shops_"+i+"_], th[id^=woocommerce_"+o.optionPrefix+"trusted_shops_"+i+"_]"),r=!1,n=["woocommerce_"+o.optionPrefix+"trusted_shops_rich_snippets_category","woocommerce_"+o.optionPrefix+"trusted_shops_rich_snippets_product","woocommerce_"+o.optionPrefix+"trusted_shops_rich_snippets_home","woocommerce_"+o.optionPrefix+"trusted_shops_product_sticker_tab_text"];e.is(":checked")&&(r=!0),t.each(function(){var e=s(this).attr("id"),t=r;"woocommerce_"+o.optionPrefix+"trusted_shops_"+i+"_enable"!==e&&("woocommerce_"+o.optionPrefix+"trusted_shops_"+i+"_code"===e||"woocommerce_"+o.optionPrefix+"trusted_shops_"+i+"_selector"===e?!o.isExpertMode()&&t&&(t=!1):o.isExpertMode()&&0<s(this).parents("table.form-table").find(":input[id$=_code]").length&&-1==s.inArray(e,n)&&(t=!1),t?s(this).parents("tr").show():s(this).parents("tr").hide())})},onSidebarTitelChange:function(){s(this).nextAll("table.form-table:first").find("tr:first").trigger("click")},onSidebarChange:function(){var e=s(this).find("[data-sidebar]"),t=s(this).parents(".form-table"),o=s(".wc-ts-sidebar-active"),i=o;e.length<=0&&0<t.find("[data-sidebar]").length&&(e=t.find("[data-sidebar]:first")),i=e.length<=0?s("#wc-ts-sidebar-default"):s("#"+e.data("sidebar")),o.removeClass("wc-ts-sidebar-active"),i.addClass("wc-ts-sidebar-active")},getSettingsWrapper:function(){var e=a.admin.optionPrefix.replace("_","-");return s(".wc-"+e+"admin-settings")},addNotice:function(e,t){var o=a.admin;o.getSettingsWrapper().find("#message").remove(),o.getSettingsWrapper().prepend('<div id="message" class="notice '+e+' inline"><p>'+t.join("<br/>")+"</p></div>"),s("html, body").animate({scrollTop:o.getSettingsWrapper().offset().top-100},1e3)},validate:function(e){var t=a.admin,o=!0,i=e.attr("id"),r="_code"===i.substr(i.length-5),i=e.val();return e.data("validate")?"integer"===e.data("validate")&&(i=parseInt(i),isNaN(i)&&(o=!1)):t.isExpertMode()&&r&&""===i&&(o=!1),o},onSaveForm:function(){var o=a.admin,i=!0;return s("textarea, input, select").removeClass("wc-ts-has-error"),s("textarea:visible, input:visible, select:visible").each(function(){var e=s(this).attr("id"),t="_code"===e.substr(e.length-5),e=s(this).parents("tr").find("td");e.find(".wc-ts-error").remove(),o.validate(s(this))||(s(this).addClass("wc-ts-has-error"),t=t?o.params.i18n_error_mandatory:s(this).data("validate-msg"),e.append('<span class="wc-ts-error">'+t+"</span>"),i=!1)}),i||s("html, body").animate({scrollTop:o.getSettingsWrapper().find(".wc-ts-has-error:first").offset().top-100},1e3),i},isExpertMode:function(){a.admin;return"expert"===s("#woocommerce_"+this.optionPrefix+"trusted_shops_integration_mode").val()},onClickExport:function(){var e=a.admin,t=s(this).data("href-org");s(this).attr("href",t+"&interval="+s("#woocommerce_"+e.optionPrefix+"trusted_shops_review_collector").val()+"&days="+s("#woocommerce_"+e.params.option_prefix+"trusted_shops_review_collector_days_to_send").val())}},s(document).ready(function(){a.admin.init()})}(jQuery,(wp,window.trusted_shops));
|
packages/woocommerce-trusted-shops/includes/class-wc-trusted-shops.php
CHANGED
@@ -320,7 +320,13 @@ class WC_Trusted_Shops {
|
|
320 |
* @return string
|
321 |
*/
|
322 |
public function get_payment_gateway( $payment_method_id ) {
|
323 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
324 |
}
|
325 |
|
326 |
/**
|
320 |
* @return string
|
321 |
*/
|
322 |
public function get_payment_gateway( $payment_method_id ) {
|
323 |
+
$gateways = WC()->payment_gateways()->payment_gateways();
|
324 |
+
|
325 |
+
if ( array_key_exists( $payment_method_id, $gateways ) ) {
|
326 |
+
return $gateways[ $payment_method_id ]->get_method_title();
|
327 |
+
} else {
|
328 |
+
return 'wcOther';
|
329 |
+
}
|
330 |
}
|
331 |
|
332 |
/**
|
packages/woocommerce-trusted-shops/readme.txt
CHANGED
@@ -3,10 +3,10 @@ Contributors: vendidero, trustbadge
|
|
3 |
Tags: advanced reviews, badge, best reviews, business ratings, business reviews, confirm email reviews, google rating, google shopping, product ratings, product reviews, rate products, rating summary, Rating Widget, ratings, reputation, review widget, review, reviews easy, reviews, rich snippets, seal, seo, star rating, stars, trust, trustbadge, trusted reviews, trusted shops, ts, user rating, user reviews, woocommerce trusted shops, woocommerce
|
4 |
Donate link: http://www.trustbadge.com
|
5 |
Requires at least: 4.9
|
6 |
-
Tested up to: 5.
|
7 |
WC requires at least: 3.4
|
8 |
-
WC tested up to: 4.
|
9 |
-
Stable tag: 4.0.
|
10 |
Requires PHP: 5.6
|
11 |
License: GPLv3
|
12 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -81,6 +81,10 @@ More information regarding your Trusted Shops Membership can be found [here](htt
|
|
81 |
|
82 |
== Changelog ==
|
83 |
|
|
|
|
|
|
|
|
|
84 |
= 4.0.4 =
|
85 |
* Improvement: Indicate Woo 4.0 + WP 5.4 support
|
86 |
* Improvement: Removed legacy support
|
3 |
Tags: advanced reviews, badge, best reviews, business ratings, business reviews, confirm email reviews, google rating, google shopping, product ratings, product reviews, rate products, rating summary, Rating Widget, ratings, reputation, review widget, review, reviews easy, reviews, rich snippets, seal, seo, star rating, stars, trust, trustbadge, trusted reviews, trusted shops, ts, user rating, user reviews, woocommerce trusted shops, woocommerce
|
4 |
Donate link: http://www.trustbadge.com
|
5 |
Requires at least: 4.9
|
6 |
+
Tested up to: 5.5
|
7 |
WC requires at least: 3.4
|
8 |
+
WC tested up to: 4.6
|
9 |
+
Stable tag: 4.0.8
|
10 |
Requires PHP: 5.6
|
11 |
License: GPLv3
|
12 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
81 |
|
82 |
== Changelog ==
|
83 |
|
84 |
+
= 4.0.8 =
|
85 |
+
* Improvement: Use Woo payment method title
|
86 |
+
* Improvement: Better function exists checking
|
87 |
+
|
88 |
= 4.0.4 =
|
89 |
* Improvement: Indicate Woo 4.0 + WP 5.4 support
|
90 |
* Improvement: Removed legacy support
|
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.8';
|
20 |
|
21 |
/**
|
22 |
* Init the package - load the REST API Server class.
|
packages/woocommerce-trusted-shops/templates/trusted-shops/thankyou.php
CHANGED
@@ -19,7 +19,7 @@ $order = wc_get_order( $order_id );
|
|
19 |
<span id="tsCheckoutBuyerId"><?php echo wc_ts_get_crud_data( $order, 'user_id' ); ?></span>
|
20 |
<span id="tsCheckoutOrderAmount"><?php echo $order->get_total(); ?></span>
|
21 |
<span id="tsCheckoutOrderCurrency"><?php echo wc_ts_get_order_currency( $order ); ?></span>
|
22 |
-
<span id="tsCheckoutOrderPaymentType"><?php echo $
|
23 |
<span id="tsCheckoutOrderEstDeliveryDate"></span>
|
24 |
<?php if ( $plugin->is_product_reviews_enabled() ) : ?>
|
25 |
<?php foreach( $order->get_items() as $item_id => $item ) :
|
19 |
<span id="tsCheckoutBuyerId"><?php echo wc_ts_get_crud_data( $order, 'user_id' ); ?></span>
|
20 |
<span id="tsCheckoutOrderAmount"><?php echo $order->get_total(); ?></span>
|
21 |
<span id="tsCheckoutOrderCurrency"><?php echo wc_ts_get_order_currency( $order ); ?></span>
|
22 |
+
<span id="tsCheckoutOrderPaymentType"><?php echo $order->get_payment_method_title(); ?></span>
|
23 |
<span id="tsCheckoutOrderEstDeliveryDate"></span>
|
24 |
<?php if ( $plugin->is_product_reviews_enabled() ) : ?>
|
25 |
<?php foreach( $order->get_items() as $item_id => $item ) :
|
packages/woocommerce-trusted-shops/woocommerce-trusted-shops.php
CHANGED
@@ -3,11 +3,11 @@
|
|
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
|
10 |
-
* Tested up to: 5.
|
11 |
*
|
12 |
* Text Domain: woocommerce-trusted-shops
|
13 |
* Domain Path: /i18n/languages/
|
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.8
|
7 |
* Author: vendidero
|
8 |
* Author URI: http://vendidero.de
|
9 |
* Requires at least: 4.9
|
10 |
+
* Tested up to: 5.5
|
11 |
*
|
12 |
* Text Domain: woocommerce-trusted-shops
|
13 |
* Domain Path: /i18n/languages/
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Tags: woocommerce, woocommerce german, woocommerce DE, woocommerce germany, wooc
|
|
4 |
Requires at least: 5.4
|
5 |
Tested up to: 5.5
|
6 |
WC requires at least: 3.9
|
7 |
-
WC tested up to: 4.
|
8 |
-
Stable tag: 3.2.
|
9 |
Requires PHP: 5.6
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -190,6 +190,19 @@ Bug reports may be filed via our [GitHub repository](https://github.com/vendider
|
|
190 |
6. Edit pdf documents (Pro)
|
191 |
|
192 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
= 3.2.1 =
|
194 |
* Feature: BCC email option for every Woo email template
|
195 |
* Improvement: Added SKU display to admin for shipments/returns
|
4 |
Requires at least: 5.4
|
5 |
Tested up to: 5.5
|
6 |
WC requires at least: 3.9
|
7 |
+
WC tested up to: 4.6
|
8 |
+
Stable tag: 3.2.2
|
9 |
Requires PHP: 5.6
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
190 |
6. Edit pdf documents (Pro)
|
191 |
|
192 |
== Changelog ==
|
193 |
+
= 3.2.2 =
|
194 |
+
* Feature: Admin email notification for requested return shipments
|
195 |
+
* Improvement: Label PDF merger to respect size and orientation of individual labels
|
196 |
+
* Improvement: Prevent order item hook to run during post saving to prevent multiple shipment validations
|
197 |
+
* Improvement: Do not force invoice gateway description as default instruction
|
198 |
+
* Improvement: Email instance check for legal texts
|
199 |
+
* Fix: Default empty direct debit XML export variable
|
200 |
+
* Fix: DHL surname vs givenName within ident check
|
201 |
+
|
202 |
+
* Improvement: Added SKU display to admin for shipments/returns
|
203 |
+
* Fix: Customer return label download permission
|
204 |
+
* Fix: Store variation id in shipments instead of parent product id
|
205 |
+
|
206 |
= 3.2.1 =
|
207 |
* Feature: BCC email option for every Woo email template
|
208 |
* Improvement: Added SKU display to admin for shipments/returns
|
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 ComposerAutoloaderInit746245fc889fb3ada8699f8afad3d4f9::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_6ca7aaa88b4219863d49968083137f4a() {
|
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_6ca7aaa88b4219863d49968083137f4a();
|
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.3.
|
203 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Shipment.php'
|
204 |
),
|
205 |
'Vendidero\\Germanized\\Shipments\\Install' => array(
|
206 |
-
'version' => '1.3.
|
207 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Install.php'
|
208 |
),
|
209 |
'Vendidero\\Germanized\\Shipments\\SimpleShipment' => array(
|
210 |
-
'version' => '1.3.
|
211 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/SimpleShipment.php'
|
212 |
),
|
213 |
'Vendidero\\Germanized\\Shipments\\ShippingProviderMethod' => array(
|
214 |
-
'version' => '1.3.
|
215 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviderMethod.php'
|
216 |
),
|
217 |
'Vendidero\\Germanized\\Shipments\\Package' => array(
|
218 |
-
'version' => '1.3.
|
219 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Package.php'
|
220 |
),
|
221 |
'Vendidero\\Germanized\\Shipments\\Order' => array(
|
222 |
-
'version' => '1.3.
|
223 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Order.php'
|
224 |
),
|
225 |
'Vendidero\\Germanized\\Shipments\\DataStores\\Shipment' => array(
|
226 |
-
'version' => '1.3.
|
227 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/Shipment.php'
|
228 |
),
|
229 |
'Vendidero\\Germanized\\Shipments\\DataStores\\ShippingProvider' => array(
|
230 |
-
'version' => '1.3.
|
231 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/ShippingProvider.php'
|
232 |
),
|
233 |
'Vendidero\\Germanized\\Shipments\\DataStores\\ShipmentItem' => array(
|
234 |
-
'version' => '1.3.
|
235 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/ShipmentItem.php'
|
236 |
),
|
237 |
'Vendidero\\Germanized\\Shipments\\Ajax' => array(
|
238 |
-
'version' => '1.3.
|
239 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Ajax.php'
|
240 |
),
|
241 |
'Vendidero\\Germanized\\Shipments\\ReturnShipment' => array(
|
242 |
-
'version' => '1.3.
|
243 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ReturnShipment.php'
|
244 |
),
|
245 |
'Vendidero\\Germanized\\Shipments\\ShippingProvider' => array(
|
246 |
-
'version' => '1.3.
|
247 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProvider.php'
|
248 |
),
|
249 |
'Vendidero\\Germanized\\Shipments\\AddressSplitter' => array(
|
250 |
-
'version' => '1.3.
|
251 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/AddressSplitter.php'
|
252 |
),
|
253 |
'Vendidero\\Germanized\\Shipments\\Admin\\BulkLabel' => array(
|
254 |
-
'version' => '1.3.
|
255 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php'
|
256 |
),
|
257 |
'Vendidero\\Germanized\\Shipments\\Admin\\Settings' => array(
|
258 |
-
'version' => '1.3.
|
259 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Settings.php'
|
260 |
),
|
261 |
'Vendidero\\Germanized\\Shipments\\Admin\\MetaBox' => array(
|
262 |
-
'version' => '1.3.
|
263 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/MetaBox.php'
|
264 |
),
|
265 |
'Vendidero\\Germanized\\Shipments\\Admin\\DownloadHandler' => array(
|
266 |
-
'version' => '1.3.
|
267 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/DownloadHandler.php'
|
268 |
),
|
269 |
'Vendidero\\Germanized\\Shipments\\Admin\\ReturnTable' => array(
|
270 |
-
'version' => '1.3.
|
271 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php'
|
272 |
),
|
273 |
'Vendidero\\Germanized\\Shipments\\Admin\\BulkActionHandler' => array(
|
274 |
-
'version' => '1.3.
|
275 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/BulkActionHandler.php'
|
276 |
),
|
277 |
'Vendidero\\Germanized\\Shipments\\Admin\\Admin' => array(
|
278 |
-
'version' => '1.3.
|
279 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Admin.php'
|
280 |
),
|
281 |
'Vendidero\\Germanized\\Shipments\\Admin\\Table' => array(
|
282 |
-
'version' => '1.3.
|
283 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Table.php'
|
284 |
),
|
285 |
'Vendidero\\Germanized\\Shipments\\ShipmentQuery' => array(
|
286 |
-
'version' => '1.3.
|
287 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentQuery.php'
|
288 |
),
|
289 |
'Vendidero\\Germanized\\Shipments\\WPMLHelper' => array(
|
290 |
-
'version' => '1.3.
|
291 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/WPMLHelper.php'
|
292 |
),
|
293 |
'Vendidero\\Germanized\\Shipments\\ShipmentReturnItem' => array(
|
294 |
-
'version' => '1.3.
|
295 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentReturnItem.php'
|
296 |
),
|
297 |
'Vendidero\\Germanized\\Shipments\\FormHandler' => array(
|
298 |
-
'version' => '1.3.
|
299 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/FormHandler.php'
|
300 |
),
|
301 |
'Vendidero\\Germanized\\Shipments\\PDFMerger' => array(
|
302 |
-
'version' => '1.3.
|
303 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PDFMerger.php'
|
304 |
),
|
305 |
'Vendidero\\Germanized\\Shipments\\ShipmentFactory' => array(
|
306 |
-
'version' => '1.3.
|
307 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentFactory.php'
|
308 |
),
|
309 |
'Vendidero\\Germanized\\Shipments\\ShippingProviderMethodPlaceholder' => array(
|
310 |
-
'version' => '1.3.
|
311 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviderMethodPlaceholder.php'
|
312 |
),
|
313 |
'Vendidero\\Germanized\\Shipments\\Automation' => array(
|
314 |
-
'version' => '1.3.
|
315 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Automation.php'
|
316 |
),
|
317 |
'Vendidero\\Germanized\\Shipments\\ShippingProviders' => array(
|
318 |
-
'version' => '1.3.
|
319 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviders.php'
|
320 |
),
|
321 |
'Vendidero\\Germanized\\Shipments\\Api' => array(
|
322 |
-
'version' => '1.3.
|
323 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Api.php'
|
324 |
),
|
325 |
'Vendidero\\Germanized\\Shipments\\ShipmentItem' => array(
|
326 |
-
'version' => '1.3.
|
327 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentItem.php'
|
328 |
),
|
329 |
'Vendidero\\Germanized\\Shipments\\Validation' => array(
|
330 |
-
'version' => '1.3.
|
331 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Validation.php'
|
332 |
),
|
333 |
'Vendidero\\Germanized\\Shipments\\Emails' => array(
|
334 |
-
'version' => '1.3.
|
335 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Emails.php'
|
336 |
),
|
337 |
'Vendidero\\Germanized\\Shipments\\PDFSplitter' => array(
|
338 |
-
'version' => '1.3.
|
339 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PDFSplitter.php'
|
340 |
),
|
341 |
'Vendidero\\Germanized\\Shipments\\ReturnReason' => array(
|
342 |
-
'version' => '1.3.
|
343 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ReturnReason.php'
|
344 |
),
|
345 |
'Vendidero\\Germanized\\Shipments\\Interfaces\\ShipmentReturnLabel' => array(
|
346 |
-
'version' => '1.3.
|
347 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShipmenReturnLabel.php'
|
348 |
),
|
349 |
'Vendidero\\Germanized\\Shipments\\Interfaces\\ShipmentLabel' => array(
|
350 |
-
'version' => '1.3.
|
351 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShipmentLabel.php'
|
352 |
),
|
353 |
'Vendidero\\Germanized\\DHL\\ShippingProviderDHL' => array(
|
354 |
-
'version' => '1.3.
|
355 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProviderDHL.php'
|
356 |
),
|
357 |
'Vendidero\\Germanized\\DHL\\ShippingProviderMethodDHL' => array(
|
358 |
-
'version' => '1.3.
|
359 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProviderMethodDHL.php'
|
360 |
),
|
361 |
'Vendidero\\Germanized\\DHL\\Install' => array(
|
362 |
-
'version' => '1.3.
|
363 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Install.php'
|
364 |
),
|
365 |
'Vendidero\\Germanized\\DHL\\LabelQuery' => array(
|
366 |
-
'version' => '1.3.
|
367 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/LabelQuery.php'
|
368 |
),
|
369 |
'Vendidero\\Germanized\\DHL\\ShipmentLabelWatcher' => array(
|
370 |
-
'version' => '1.3.
|
371 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShipmentLabelWatcher.php'
|
372 |
),
|
373 |
'Vendidero\\Germanized\\DHL\\Package' => array(
|
374 |
-
'version' => '1.3.
|
375 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Package.php'
|
376 |
),
|
377 |
'Vendidero\\Germanized\\DHL\\Product' => array(
|
378 |
-
'version' => '1.3.
|
379 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Product.php'
|
380 |
),
|
381 |
'Vendidero\\Germanized\\DHL\\Order' => array(
|
382 |
-
'version' => '1.3.
|
383 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Order.php'
|
384 |
),
|
385 |
'Vendidero\\Germanized\\DHL\\DataStores\\Label' => array(
|
386 |
-
'version' => '1.3.
|
387 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DataStores/Label.php'
|
388 |
),
|
389 |
'Vendidero\\Germanized\\DHL\\Label' => array(
|
390 |
-
'version' => '1.3.
|
391 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Label.php'
|
392 |
),
|
393 |
'Vendidero\\Germanized\\DHL\\ParcelServices' => array(
|
394 |
-
'version' => '1.3.
|
395 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ParcelServices.php'
|
396 |
),
|
397 |
'Vendidero\\Germanized\\DHL\\Admin\\Importer' => array(
|
398 |
-
'version' => '1.3.
|
399 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Importer.php'
|
400 |
),
|
401 |
'Vendidero\\Germanized\\DHL\\Admin\\Settings' => array(
|
402 |
-
'version' => '1.3.
|
403 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Settings.php'
|
404 |
),
|
405 |
'Vendidero\\Germanized\\DHL\\Admin\\Admin' => array(
|
406 |
-
'version' => '1.3.
|
407 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Admin.php'
|
408 |
),
|
409 |
'Vendidero\\Germanized\\DHL\\ReturnLabel' => array(
|
410 |
-
'version' => '1.3.
|
411 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ReturnLabel.php'
|
412 |
),
|
413 |
'Vendidero\\Germanized\\DHL\\ParcelLocator' => array(
|
414 |
-
'version' => '1.3.
|
415 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ParcelLocator.php'
|
416 |
),
|
417 |
'Vendidero\\Germanized\\DHL\\SimpleLabel' => array(
|
418 |
-
'version' => '1.3.
|
419 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/SimpleLabel.php'
|
420 |
),
|
421 |
'Vendidero\\Germanized\\DHL\\Admin\\DownloadHandler' => array(
|
422 |
-
'version' => '1.3.
|
423 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DownloadHandler.php'
|
424 |
),
|
425 |
'Vendidero\\Germanized\\DHL\\Api\\ReturnRest' => array(
|
426 |
-
'version' => '1.3.
|
427 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ReturnRest.php'
|
428 |
),
|
429 |
'Vendidero\\Germanized\\DHL\\Api\\Paket' => array(
|
430 |
-
'version' => '1.3.
|
431 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Paket.php'
|
432 |
),
|
433 |
'Vendidero\\Germanized\\DHL\\Api\\LabelSoap' => array(
|
434 |
-
'version' => '1.3.
|
435 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php'
|
436 |
),
|
437 |
'Vendidero\\Germanized\\DHL\\Api\\AuthSoap' => array(
|
438 |
-
'version' => '1.3.
|
439 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/AuthSoap.php'
|
440 |
),
|
441 |
'Vendidero\\Germanized\\DHL\\Api\\ParcelRest' => array(
|
442 |
-
'version' => '1.3.
|
443 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ParcelRest.php'
|
444 |
),
|
445 |
'Vendidero\\Germanized\\DHL\\Api\\Soap' => array(
|
446 |
-
'version' => '1.3.
|
447 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Soap.php'
|
448 |
),
|
449 |
'Vendidero\\Germanized\\DHL\\Api\\Rest' => array(
|
450 |
-
'version' => '1.3.
|
451 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Rest.php'
|
452 |
),
|
453 |
'Vendidero\\Germanized\\DHL\\Api\\FinderSoap' => array(
|
454 |
-
'version' => '1.3.
|
455 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php'
|
456 |
),
|
457 |
'Vendidero\\Germanized\\DHL\\Automation' => array(
|
458 |
-
'version' => '1.3.
|
459 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Automation.php'
|
460 |
),
|
461 |
'Vendidero\\Germanized\\DHL\\LabelFactory' => array(
|
462 |
-
'version' => '1.3.
|
463 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/LabelFactory.php'
|
464 |
),
|
465 |
'Vendidero\\Germanized\\DHL\\LabelWatcher' => array(
|
466 |
-
'version' => '1.3.
|
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.8.0',
|
199 |
'path' => $baseDir . '/packages/woocommerce-trusted-shops/src/Package.php'
|
200 |
),
|
201 |
'Vendidero\\Germanized\\Shipments\\Shipment' => array(
|
202 |
+
'version' => '1.3.2.0',
|
203 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Shipment.php'
|
204 |
),
|
205 |
'Vendidero\\Germanized\\Shipments\\Install' => array(
|
206 |
+
'version' => '1.3.2.0',
|
207 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Install.php'
|
208 |
),
|
209 |
'Vendidero\\Germanized\\Shipments\\SimpleShipment' => array(
|
210 |
+
'version' => '1.3.2.0',
|
211 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/SimpleShipment.php'
|
212 |
),
|
213 |
'Vendidero\\Germanized\\Shipments\\ShippingProviderMethod' => array(
|
214 |
+
'version' => '1.3.2.0',
|
215 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviderMethod.php'
|
216 |
),
|
217 |
'Vendidero\\Germanized\\Shipments\\Package' => array(
|
218 |
+
'version' => '1.3.2.0',
|
219 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Package.php'
|
220 |
),
|
221 |
'Vendidero\\Germanized\\Shipments\\Order' => array(
|
222 |
+
'version' => '1.3.2.0',
|
223 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Order.php'
|
224 |
),
|
225 |
'Vendidero\\Germanized\\Shipments\\DataStores\\Shipment' => array(
|
226 |
+
'version' => '1.3.2.0',
|
227 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/Shipment.php'
|
228 |
),
|
229 |
'Vendidero\\Germanized\\Shipments\\DataStores\\ShippingProvider' => array(
|
230 |
+
'version' => '1.3.2.0',
|
231 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/ShippingProvider.php'
|
232 |
),
|
233 |
'Vendidero\\Germanized\\Shipments\\DataStores\\ShipmentItem' => array(
|
234 |
+
'version' => '1.3.2.0',
|
235 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/DataStores/ShipmentItem.php'
|
236 |
),
|
237 |
'Vendidero\\Germanized\\Shipments\\Ajax' => array(
|
238 |
+
'version' => '1.3.2.0',
|
239 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Ajax.php'
|
240 |
),
|
241 |
'Vendidero\\Germanized\\Shipments\\ReturnShipment' => array(
|
242 |
+
'version' => '1.3.2.0',
|
243 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ReturnShipment.php'
|
244 |
),
|
245 |
'Vendidero\\Germanized\\Shipments\\ShippingProvider' => array(
|
246 |
+
'version' => '1.3.2.0',
|
247 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProvider.php'
|
248 |
),
|
249 |
'Vendidero\\Germanized\\Shipments\\AddressSplitter' => array(
|
250 |
+
'version' => '1.3.2.0',
|
251 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/AddressSplitter.php'
|
252 |
),
|
253 |
'Vendidero\\Germanized\\Shipments\\Admin\\BulkLabel' => array(
|
254 |
+
'version' => '1.3.2.0',
|
255 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/BulkLabel.php'
|
256 |
),
|
257 |
'Vendidero\\Germanized\\Shipments\\Admin\\Settings' => array(
|
258 |
+
'version' => '1.3.2.0',
|
259 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Settings.php'
|
260 |
),
|
261 |
'Vendidero\\Germanized\\Shipments\\Admin\\MetaBox' => array(
|
262 |
+
'version' => '1.3.2.0',
|
263 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/MetaBox.php'
|
264 |
),
|
265 |
'Vendidero\\Germanized\\Shipments\\Admin\\DownloadHandler' => array(
|
266 |
+
'version' => '1.3.2.0',
|
267 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/DownloadHandler.php'
|
268 |
),
|
269 |
'Vendidero\\Germanized\\Shipments\\Admin\\ReturnTable' => array(
|
270 |
+
'version' => '1.3.2.0',
|
271 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/ReturnTable.php'
|
272 |
),
|
273 |
'Vendidero\\Germanized\\Shipments\\Admin\\BulkActionHandler' => array(
|
274 |
+
'version' => '1.3.2.0',
|
275 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/BulkActionHandler.php'
|
276 |
),
|
277 |
'Vendidero\\Germanized\\Shipments\\Admin\\Admin' => array(
|
278 |
+
'version' => '1.3.2.0',
|
279 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Admin.php'
|
280 |
),
|
281 |
'Vendidero\\Germanized\\Shipments\\Admin\\Table' => array(
|
282 |
+
'version' => '1.3.2.0',
|
283 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Admin/Table.php'
|
284 |
),
|
285 |
'Vendidero\\Germanized\\Shipments\\ShipmentQuery' => array(
|
286 |
+
'version' => '1.3.2.0',
|
287 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentQuery.php'
|
288 |
),
|
289 |
'Vendidero\\Germanized\\Shipments\\WPMLHelper' => array(
|
290 |
+
'version' => '1.3.2.0',
|
291 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/WPMLHelper.php'
|
292 |
),
|
293 |
'Vendidero\\Germanized\\Shipments\\ShipmentReturnItem' => array(
|
294 |
+
'version' => '1.3.2.0',
|
295 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentReturnItem.php'
|
296 |
),
|
297 |
'Vendidero\\Germanized\\Shipments\\FormHandler' => array(
|
298 |
+
'version' => '1.3.2.0',
|
299 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/FormHandler.php'
|
300 |
),
|
301 |
'Vendidero\\Germanized\\Shipments\\PDFMerger' => array(
|
302 |
+
'version' => '1.3.2.0',
|
303 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PDFMerger.php'
|
304 |
),
|
305 |
'Vendidero\\Germanized\\Shipments\\ShipmentFactory' => array(
|
306 |
+
'version' => '1.3.2.0',
|
307 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentFactory.php'
|
308 |
),
|
309 |
'Vendidero\\Germanized\\Shipments\\ShippingProviderMethodPlaceholder' => array(
|
310 |
+
'version' => '1.3.2.0',
|
311 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviderMethodPlaceholder.php'
|
312 |
),
|
313 |
'Vendidero\\Germanized\\Shipments\\Automation' => array(
|
314 |
+
'version' => '1.3.2.0',
|
315 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Automation.php'
|
316 |
),
|
317 |
'Vendidero\\Germanized\\Shipments\\ShippingProviders' => array(
|
318 |
+
'version' => '1.3.2.0',
|
319 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShippingProviders.php'
|
320 |
),
|
321 |
'Vendidero\\Germanized\\Shipments\\Api' => array(
|
322 |
+
'version' => '1.3.2.0',
|
323 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Api.php'
|
324 |
),
|
325 |
'Vendidero\\Germanized\\Shipments\\ShipmentItem' => array(
|
326 |
+
'version' => '1.3.2.0',
|
327 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ShipmentItem.php'
|
328 |
),
|
329 |
'Vendidero\\Germanized\\Shipments\\Validation' => array(
|
330 |
+
'version' => '1.3.2.0',
|
331 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Validation.php'
|
332 |
),
|
333 |
'Vendidero\\Germanized\\Shipments\\Emails' => array(
|
334 |
+
'version' => '1.3.2.0',
|
335 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Emails.php'
|
336 |
),
|
337 |
'Vendidero\\Germanized\\Shipments\\PDFSplitter' => array(
|
338 |
+
'version' => '1.3.2.0',
|
339 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/PDFSplitter.php'
|
340 |
),
|
341 |
'Vendidero\\Germanized\\Shipments\\ReturnReason' => array(
|
342 |
+
'version' => '1.3.2.0',
|
343 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/ReturnReason.php'
|
344 |
),
|
345 |
'Vendidero\\Germanized\\Shipments\\Interfaces\\ShipmentReturnLabel' => array(
|
346 |
+
'version' => '1.3.2.0',
|
347 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShipmenReturnLabel.php'
|
348 |
),
|
349 |
'Vendidero\\Germanized\\Shipments\\Interfaces\\ShipmentLabel' => array(
|
350 |
+
'version' => '1.3.2.0',
|
351 |
'path' => $baseDir . '/packages/woocommerce-germanized-shipments/src/Interfaces/ShipmentLabel.php'
|
352 |
),
|
353 |
'Vendidero\\Germanized\\DHL\\ShippingProviderDHL' => array(
|
354 |
+
'version' => '1.3.1.0',
|
355 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProviderDHL.php'
|
356 |
),
|
357 |
'Vendidero\\Germanized\\DHL\\ShippingProviderMethodDHL' => array(
|
358 |
+
'version' => '1.3.1.0',
|
359 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShippingProviderMethodDHL.php'
|
360 |
),
|
361 |
'Vendidero\\Germanized\\DHL\\Install' => array(
|
362 |
+
'version' => '1.3.1.0',
|
363 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Install.php'
|
364 |
),
|
365 |
'Vendidero\\Germanized\\DHL\\LabelQuery' => array(
|
366 |
+
'version' => '1.3.1.0',
|
367 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/LabelQuery.php'
|
368 |
),
|
369 |
'Vendidero\\Germanized\\DHL\\ShipmentLabelWatcher' => array(
|
370 |
+
'version' => '1.3.1.0',
|
371 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ShipmentLabelWatcher.php'
|
372 |
),
|
373 |
'Vendidero\\Germanized\\DHL\\Package' => array(
|
374 |
+
'version' => '1.3.1.0',
|
375 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Package.php'
|
376 |
),
|
377 |
'Vendidero\\Germanized\\DHL\\Product' => array(
|
378 |
+
'version' => '1.3.1.0',
|
379 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Product.php'
|
380 |
),
|
381 |
'Vendidero\\Germanized\\DHL\\Order' => array(
|
382 |
+
'version' => '1.3.1.0',
|
383 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Order.php'
|
384 |
),
|
385 |
'Vendidero\\Germanized\\DHL\\DataStores\\Label' => array(
|
386 |
+
'version' => '1.3.1.0',
|
387 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DataStores/Label.php'
|
388 |
),
|
389 |
'Vendidero\\Germanized\\DHL\\Label' => array(
|
390 |
+
'version' => '1.3.1.0',
|
391 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Label.php'
|
392 |
),
|
393 |
'Vendidero\\Germanized\\DHL\\ParcelServices' => array(
|
394 |
+
'version' => '1.3.1.0',
|
395 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ParcelServices.php'
|
396 |
),
|
397 |
'Vendidero\\Germanized\\DHL\\Admin\\Importer' => array(
|
398 |
+
'version' => '1.3.1.0',
|
399 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Importer.php'
|
400 |
),
|
401 |
'Vendidero\\Germanized\\DHL\\Admin\\Settings' => array(
|
402 |
+
'version' => '1.3.1.0',
|
403 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Settings.php'
|
404 |
),
|
405 |
'Vendidero\\Germanized\\DHL\\Admin\\Admin' => array(
|
406 |
+
'version' => '1.3.1.0',
|
407 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Admin/Admin.php'
|
408 |
),
|
409 |
'Vendidero\\Germanized\\DHL\\ReturnLabel' => array(
|
410 |
+
'version' => '1.3.1.0',
|
411 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ReturnLabel.php'
|
412 |
),
|
413 |
'Vendidero\\Germanized\\DHL\\ParcelLocator' => array(
|
414 |
+
'version' => '1.3.1.0',
|
415 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/ParcelLocator.php'
|
416 |
),
|
417 |
'Vendidero\\Germanized\\DHL\\SimpleLabel' => array(
|
418 |
+
'version' => '1.3.1.0',
|
419 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/SimpleLabel.php'
|
420 |
),
|
421 |
'Vendidero\\Germanized\\DHL\\Admin\\DownloadHandler' => array(
|
422 |
+
'version' => '1.3.1.0',
|
423 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/DownloadHandler.php'
|
424 |
),
|
425 |
'Vendidero\\Germanized\\DHL\\Api\\ReturnRest' => array(
|
426 |
+
'version' => '1.3.1.0',
|
427 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ReturnRest.php'
|
428 |
),
|
429 |
'Vendidero\\Germanized\\DHL\\Api\\Paket' => array(
|
430 |
+
'version' => '1.3.1.0',
|
431 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Paket.php'
|
432 |
),
|
433 |
'Vendidero\\Germanized\\DHL\\Api\\LabelSoap' => array(
|
434 |
+
'version' => '1.3.1.0',
|
435 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/LabelSoap.php'
|
436 |
),
|
437 |
'Vendidero\\Germanized\\DHL\\Api\\AuthSoap' => array(
|
438 |
+
'version' => '1.3.1.0',
|
439 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/AuthSoap.php'
|
440 |
),
|
441 |
'Vendidero\\Germanized\\DHL\\Api\\ParcelRest' => array(
|
442 |
+
'version' => '1.3.1.0',
|
443 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/ParcelRest.php'
|
444 |
),
|
445 |
'Vendidero\\Germanized\\DHL\\Api\\Soap' => array(
|
446 |
+
'version' => '1.3.1.0',
|
447 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Soap.php'
|
448 |
),
|
449 |
'Vendidero\\Germanized\\DHL\\Api\\Rest' => array(
|
450 |
+
'version' => '1.3.1.0',
|
451 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/Rest.php'
|
452 |
),
|
453 |
'Vendidero\\Germanized\\DHL\\Api\\FinderSoap' => array(
|
454 |
+
'version' => '1.3.1.0',
|
455 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Api/FinderSoap.php'
|
456 |
),
|
457 |
'Vendidero\\Germanized\\DHL\\Automation' => array(
|
458 |
+
'version' => '1.3.1.0',
|
459 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/Automation.php'
|
460 |
),
|
461 |
'Vendidero\\Germanized\\DHL\\LabelFactory' => array(
|
462 |
+
'version' => '1.3.1.0',
|
463 |
'path' => $baseDir . '/packages/woocommerce-germanized-dhl/src/LabelFactory.php'
|
464 |
),
|
465 |
'Vendidero\\Germanized\\DHL\\LabelWatcher' => array(
|
466 |
+
'version' => '1.3.1.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 ComposerAutoloaderInitd83323fd0a50f8d3f33b325c59650157
|
|
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 ComposerAutoloaderInit746245fc889fb3ada8699f8afad3d4f9
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInit746245fc889fb3ada8699f8afad3d4f9', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit746245fc889fb3ada8699f8afad3d4f9', '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\ComposerStaticInit746245fc889fb3ada8699f8afad3d4f9::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 ComposerStaticInitd83323fd0a50f8d3f33b325c59650157
|
|
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 ComposerStaticInit746245fc889fb3ada8699f8afad3d4f9
|
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 = ComposerStaticInit746245fc889fb3ada8699f8afad3d4f9::$prefixLengthsPsr4;
|
70 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit746245fc889fb3ada8699f8afad3d4f9::$prefixDirsPsr4;
|
71 |
+
$loader->classMap = ComposerStaticInit746245fc889fb3ada8699f8afad3d4f9::$classMap;
|
72 |
|
73 |
}, null, ClassLoader::class);
|
74 |
}
|
vendor/composer/installed.json
CHANGED
@@ -310,17 +310,17 @@
|
|
310 |
},
|
311 |
{
|
312 |
"name": "vendidero/woocommerce-germanized-dhl",
|
313 |
-
"version": "v1.3.
|
314 |
-
"version_normalized": "1.3.
|
315 |
"source": {
|
316 |
"type": "git",
|
317 |
"url": "https://github.com/vendidero/woocommerce-germanized-dhl.git",
|
318 |
-
"reference": "
|
319 |
},
|
320 |
"dist": {
|
321 |
"type": "zip",
|
322 |
-
"url": "https://api.github.com/repos/vendidero/woocommerce-germanized-dhl/zipball/
|
323 |
-
"reference": "
|
324 |
"shasum": ""
|
325 |
},
|
326 |
"require": {
|
@@ -330,7 +330,7 @@
|
|
330 |
"phpunit/phpunit": "6.5.14",
|
331 |
"woocommerce/woocommerce-sniffs": "0.0.6"
|
332 |
},
|
333 |
-
"time": "2020-
|
334 |
"type": "wordpress-plugin",
|
335 |
"installation-source": "dist",
|
336 |
"autoload": {
|
@@ -354,23 +354,23 @@
|
|
354 |
"description": "The Germanized DHL implementation.",
|
355 |
"homepage": "https://github.com/vendidero/woocommerce-germanized-dhl",
|
356 |
"support": {
|
357 |
-
"source": "https://github.com/vendidero/woocommerce-germanized-dhl/tree/v1.3.
|
358 |
"issues": "https://github.com/vendidero/woocommerce-germanized-dhl/issues"
|
359 |
}
|
360 |
},
|
361 |
{
|
362 |
"name": "vendidero/woocommerce-germanized-shipments",
|
363 |
-
"version": "v1.3.
|
364 |
-
"version_normalized": "1.3.
|
365 |
"source": {
|
366 |
"type": "git",
|
367 |
"url": "https://github.com/vendidero/woocommerce-germanized-shipments.git",
|
368 |
-
"reference": "
|
369 |
},
|
370 |
"dist": {
|
371 |
"type": "zip",
|
372 |
-
"url": "https://api.github.com/repos/vendidero/woocommerce-germanized-shipments/zipball/
|
373 |
-
"reference": "
|
374 |
"shasum": ""
|
375 |
},
|
376 |
"require": {
|
@@ -381,7 +381,7 @@
|
|
381 |
"phpunit/phpunit": "6.5.14",
|
382 |
"woocommerce/woocommerce-sniffs": "0.0.6"
|
383 |
},
|
384 |
-
"time": "2020-
|
385 |
"type": "wordpress-plugin",
|
386 |
"installation-source": "dist",
|
387 |
"autoload": {
|
@@ -403,23 +403,23 @@
|
|
403 |
"description": "The Germanized Shipments implementation.",
|
404 |
"homepage": "https://github.com/vendidero/woocommerce-germanized-shipments",
|
405 |
"support": {
|
406 |
-
"source": "https://github.com/vendidero/woocommerce-germanized-shipments/tree/v1.3.
|
407 |
"issues": "https://github.com/vendidero/woocommerce-germanized-shipments/issues"
|
408 |
}
|
409 |
},
|
410 |
{
|
411 |
"name": "vendidero/woocommerce-trusted-shops",
|
412 |
-
"version": "v4.0.
|
413 |
-
"version_normalized": "4.0.
|
414 |
"source": {
|
415 |
"type": "git",
|
416 |
"url": "https://github.com/vendidero/woocommerce-trusted-shops.git",
|
417 |
-
"reference": "
|
418 |
},
|
419 |
"dist": {
|
420 |
"type": "zip",
|
421 |
-
"url": "https://api.github.com/repos/vendidero/woocommerce-trusted-shops/zipball/
|
422 |
-
"reference": "
|
423 |
"shasum": ""
|
424 |
},
|
425 |
"require": {
|
@@ -429,7 +429,7 @@
|
|
429 |
"phpunit/phpunit": "6.5.14",
|
430 |
"woocommerce/woocommerce-sniffs": "0.0.6"
|
431 |
},
|
432 |
-
"time": "2020-
|
433 |
"type": "wordpress-plugin",
|
434 |
"installation-source": "dist",
|
435 |
"autoload": {
|
@@ -451,7 +451,7 @@
|
|
451 |
"description": "Trustbadge Reviews for WooCommerce.",
|
452 |
"homepage": "https://github.com/vendidero/woocommerce-trusted-shops",
|
453 |
"support": {
|
454 |
-
"source": "https://github.com/vendidero/woocommerce-trusted-shops/tree/v4.0.
|
455 |
"issues": "https://github.com/vendidero/woocommerce-trusted-shops/issues"
|
456 |
}
|
457 |
}
|
310 |
},
|
311 |
{
|
312 |
"name": "vendidero/woocommerce-germanized-dhl",
|
313 |
+
"version": "v1.3.1",
|
314 |
+
"version_normalized": "1.3.1.0",
|
315 |
"source": {
|
316 |
"type": "git",
|
317 |
"url": "https://github.com/vendidero/woocommerce-germanized-dhl.git",
|
318 |
+
"reference": "fd73e350b2e8af43f802ef3ef6cbf81a52030503"
|
319 |
},
|
320 |
"dist": {
|
321 |
"type": "zip",
|
322 |
+
"url": "https://api.github.com/repos/vendidero/woocommerce-germanized-dhl/zipball/fd73e350b2e8af43f802ef3ef6cbf81a52030503",
|
323 |
+
"reference": "fd73e350b2e8af43f802ef3ef6cbf81a52030503",
|
324 |
"shasum": ""
|
325 |
},
|
326 |
"require": {
|
330 |
"phpunit/phpunit": "6.5.14",
|
331 |
"woocommerce/woocommerce-sniffs": "0.0.6"
|
332 |
},
|
333 |
+
"time": "2020-10-23T10:41:43+00:00",
|
334 |
"type": "wordpress-plugin",
|
335 |
"installation-source": "dist",
|
336 |
"autoload": {
|
354 |
"description": "The Germanized DHL implementation.",
|
355 |
"homepage": "https://github.com/vendidero/woocommerce-germanized-dhl",
|
356 |
"support": {
|
357 |
+
"source": "https://github.com/vendidero/woocommerce-germanized-dhl/tree/v1.3.1",
|
358 |
"issues": "https://github.com/vendidero/woocommerce-germanized-dhl/issues"
|
359 |
}
|
360 |
},
|
361 |
{
|
362 |
"name": "vendidero/woocommerce-germanized-shipments",
|
363 |
+
"version": "v1.3.2",
|
364 |
+
"version_normalized": "1.3.2.0",
|
365 |
"source": {
|
366 |
"type": "git",
|
367 |
"url": "https://github.com/vendidero/woocommerce-germanized-shipments.git",
|
368 |
+
"reference": "dd8a2b88083796fe7f761e91007f54dccea2d468"
|
369 |
},
|
370 |
"dist": {
|
371 |
"type": "zip",
|
372 |
+
"url": "https://api.github.com/repos/vendidero/woocommerce-germanized-shipments/zipball/dd8a2b88083796fe7f761e91007f54dccea2d468",
|
373 |
+
"reference": "dd8a2b88083796fe7f761e91007f54dccea2d468",
|
374 |
"shasum": ""
|
375 |
},
|
376 |
"require": {
|
381 |
"phpunit/phpunit": "6.5.14",
|
382 |
"woocommerce/woocommerce-sniffs": "0.0.6"
|
383 |
},
|
384 |
+
"time": "2020-10-23T10:25:21+00:00",
|
385 |
"type": "wordpress-plugin",
|
386 |
"installation-source": "dist",
|
387 |
"autoload": {
|
403 |
"description": "The Germanized Shipments implementation.",
|
404 |
"homepage": "https://github.com/vendidero/woocommerce-germanized-shipments",
|
405 |
"support": {
|
406 |
+
"source": "https://github.com/vendidero/woocommerce-germanized-shipments/tree/v1.3.2",
|
407 |
"issues": "https://github.com/vendidero/woocommerce-germanized-shipments/issues"
|
408 |
}
|
409 |
},
|
410 |
{
|
411 |
"name": "vendidero/woocommerce-trusted-shops",
|
412 |
+
"version": "v4.0.8",
|
413 |
+
"version_normalized": "4.0.8.0",
|
414 |
"source": {
|
415 |
"type": "git",
|
416 |
"url": "https://github.com/vendidero/woocommerce-trusted-shops.git",
|
417 |
+
"reference": "512ef10ea0e793fc135b8a5341e8dc128a10ee1b"
|
418 |
},
|
419 |
"dist": {
|
420 |
"type": "zip",
|
421 |
+
"url": "https://api.github.com/repos/vendidero/woocommerce-trusted-shops/zipball/512ef10ea0e793fc135b8a5341e8dc128a10ee1b",
|
422 |
+
"reference": "512ef10ea0e793fc135b8a5341e8dc128a10ee1b",
|
423 |
"shasum": ""
|
424 |
},
|
425 |
"require": {
|
429 |
"phpunit/phpunit": "6.5.14",
|
430 |
"woocommerce/woocommerce-sniffs": "0.0.6"
|
431 |
},
|
432 |
+
"time": "2020-10-23T10:33:38+00:00",
|
433 |
"type": "wordpress-plugin",
|
434 |
"installation-source": "dist",
|
435 |
"autoload": {
|
451 |
"description": "Trustbadge Reviews for WooCommerce.",
|
452 |
"homepage": "https://github.com/vendidero/woocommerce-trusted-shops",
|
453 |
"support": {
|
454 |
+
"source": "https://github.com/vendidero/woocommerce-trusted-shops/tree/v4.0.8",
|
455 |
"issues": "https://github.com/vendidero/woocommerce-trusted-shops/issues"
|
456 |
}
|
457 |
}
|
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.2.
|
7 |
* Author: vendidero
|
8 |
* Author URI: https://vendidero.de
|
9 |
* Requires at least: 4.9
|
10 |
* Tested up to: 5.5
|
11 |
* WC requires at least: 3.9
|
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.2.
|
73 |
|
74 |
/**
|
75 |
* @var WooCommerce_Germanized $instance of the plugin
|
@@ -658,12 +658,6 @@ if ( ! class_exists( 'WooCommerce_Germanized' ) ) :
|
|
658 |
wp_enqueue_script( 'wc-gzd-add-to-cart-variation' );
|
659 |
}
|
660 |
|
661 |
-
if ( ! isset( $GLOBALS['wc_gzd_template_name'] ) || empty( $GLOBALS['wc_gzd_template_name'] ) || ! is_array( $GLOBALS['wc_gzd_template_name'] ) ) {
|
662 |
-
$GLOBALS['wc_gzd_template_name'] = array();
|
663 |
-
}
|
664 |
-
|
665 |
-
$GLOBALS['wc_gzd_template_name'][] = $template_name;
|
666 |
-
|
667 |
// Check for Theme overrides
|
668 |
$theme_template = locate_template( array(
|
669 |
trailingslashit( $template_path ) . $template_name,
|
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.2.2
|
7 |
* Author: vendidero
|
8 |
* Author URI: https://vendidero.de
|
9 |
* Requires at least: 4.9
|
10 |
* Tested up to: 5.5
|
11 |
* WC requires at least: 3.9
|
12 |
+
* WC tested up to: 4.6
|
13 |
*
|
14 |
* Text Domain: woocommerce-germanized
|
15 |
* Domain Path: /i18n/languages/
|
69 |
*
|
70 |
* @var string
|
71 |
*/
|
72 |
+
public $version = '3.2.2';
|
73 |
|
74 |
/**
|
75 |
* @var WooCommerce_Germanized $instance of the plugin
|
658 |
wp_enqueue_script( 'wc-gzd-add-to-cart-variation' );
|
659 |
}
|
660 |
|
|
|
|
|
|
|
|
|
|
|
|
|
661 |
// Check for Theme overrides
|
662 |
$theme_template = locate_template( array(
|
663 |
trailingslashit( $template_path ) . $template_name,
|
wpml-config.xml
CHANGED
@@ -14,8 +14,8 @@
|
|
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>
|
17 |
-
<custom-field action="
|
18 |
-
<custom-field action="
|
19 |
<custom-field action="translate">_legal_text</custom-field>
|
20 |
</custom-fields>
|
21 |
<taxonomies>
|
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>
|
17 |
+
<custom-field action="copy-once">_ts_mpn</custom-field>
|
18 |
+
<custom-field action="copy-once">_ts_gtin</custom-field>
|
19 |
<custom-field action="translate">_legal_text</custom-field>
|
20 |
</custom-fields>
|
21 |
<taxonomies>
|