Changeset 2757781
- Timestamp:
- 07/18/2022 08:18:10 AM (4 years ago)
- Location:
- dhl-for-woocommerce
- Files:
-
- 22 edited
- 1 copied
-
tags/2.9.2 (copied) (copied from dhl-for-woocommerce/tags/2.9.1)
-
tags/2.9.2/dhlpwoocommerce/README.md (modified) (1 diff)
-
tags/2.9.2/dhlpwoocommerce/dhlpwoocommerce.php (modified) (1 diff)
-
tags/2.9.2/dhlpwoocommerce/includes/controller/admin/class-dhlpwc-controller-admin-order-metabox.php (modified) (1 diff)
-
tags/2.9.2/dhlpwoocommerce/includes/controller/admin/class-dhlpwc-controller-admin-settings.php (modified) (2 diffs)
-
tags/2.9.2/dhlpwoocommerce/includes/model/logic/class-dhlpwc-model-logic-access-control.php (modified) (1 diff)
-
tags/2.9.2/dhlpwoocommerce/includes/model/logic/class-dhlpwc-model-logic-shipment.php (modified) (5 diffs)
-
tags/2.9.2/dhlpwoocommerce/includes/model/service/class-dhlpwc-model-service-access-control.php (modified) (2 diffs)
-
tags/2.9.2/dhlpwoocommerce/includes/model/service/class-dhlpwc-model-service-label-metabox.php (modified) (1 diff)
-
tags/2.9.2/dhlpwoocommerce/includes/model/service/class-dhlpwc-model-service-order-meta-option.php (modified) (1 diff)
-
tags/2.9.2/dhlpwoocommerce/includes/model/service/class-dhlpwc-model-service-settings.php (modified) (1 diff)
-
tags/2.9.2/dhlpwoocommerce/includes/model/service/class-dhlpwc-model-service-shipment.php (modified) (1 diff)
-
tags/2.9.2/dhlpwoocommerce/includes/model/service/class-dhlpwc-model-service-translation.php (modified) (1 diff)
-
tags/2.9.2/dhlpwoocommerce/includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php (modified) (1 diff)
-
tags/2.9.2/dhlpwoocommerce/languages/dhlpwc-nl_BE.mo (modified) (previous)
-
tags/2.9.2/dhlpwoocommerce/languages/dhlpwc-nl_BE.po (modified) (33 diffs)
-
tags/2.9.2/dhlpwoocommerce/languages/dhlpwc-nl_NL.mo (modified) (previous)
-
tags/2.9.2/dhlpwoocommerce/languages/dhlpwc-nl_NL.po (modified) (33 diffs)
-
tags/2.9.2/dhlpwoocommerce/languages/dhlpwc.pot (modified) (31 diffs)
-
tags/2.9.2/dhlpwoocommerce/readme.txt (modified) (3 diffs)
-
tags/2.9.2/pr-dhl-woocommerce.php (modified) (2 diffs)
-
tags/2.9.2/readme.txt (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dhl-for-woocommerce/tags/2.9.2/dhlpwoocommerce/README.md
r2718612 r2757781 1 1 # DHL Parcel for WooCommerce 2 3 v2.0.5 4 ## Changes 5 - Updated the migration notice when to change colors 2 6 3 7 v2.0.4 -
dhl-for-woocommerce/tags/2.9.2/dhlpwoocommerce/dhlpwoocommerce.php
r2718612 r2757781 5 5 * Description: This is the official DHL Parcel for WooCommerce plugin. 6 6 * Author: DHL Parcel 7 * Version: 2.0. 57 * Version: 2.0.6 8 8 * Requires at least: 4.7.16 9 * Tested up to: 5.99 * Tested up to: 6.0 10 10 * Requires PHP: 5.6 11 11 * WC requires at least: 3.0.0 -
dhl-for-woocommerce/tags/2.9.2/dhlpwoocommerce/includes/controller/admin/class-dhlpwc-controller-admin-order-metabox.php
r2688410 r2757781 343 343 344 344 // Default option settings 345 $default_pers_note = $option_service->default_pers_note($order_id, $preselected_options, $to_business); 346 if ($default_pers_note) { 347 $option_service->add_key_to_stack(DHLPWC_Model_Meta_Order_Option_Preference::OPTION_PERS_NOTE, $preselected_options); 348 } 349 350 // Default option settings 345 351 $default_order_id_reference = $option_service->default_order_id_reference($order_id, $preselected_options, $to_business); 346 352 if ($default_order_id_reference) { -
dhl-for-woocommerce/tags/2.9.2/dhlpwoocommerce/includes/controller/admin/class-dhlpwc-controller-admin-settings.php
r2694421 r2757781 30 30 add_filter('plugin_action_links_' . $collaboration_name, array($this, 'add_settings_link'), 10, 1); 31 31 add_filter('option_woocommerce_dhlpwc_settings', array($this, 'filter_settings_before_get')); 32 add_filter('woocommerce_shipping_dhlpwc_instance_option', array($this, 'filter_settings_shipping_zones_before_get')); 32 33 add_filter('pre_update_option_woocommerce_dhlpwc_settings', array($this, 'filter_settings_before_save')); 34 add_filter('woocommerce_shipping_dhlpwc_instance_settings_values', array($this, 'filter_settings_before_save')); 33 35 34 36 $service = DHLPWC_Model_Service_Access_Control::instance(); … … 314 316 } 315 317 318 public function filter_settings_shipping_zones_before_get($data) 319 { 320 return DHLPWC_Model_Service_Settings::instance()->format_shipping_zones_settings($data); 321 } 322 316 323 public function filter_settings_before_save($data) 317 324 { -
dhl-for-woocommerce/tags/2.9.2/dhlpwoocommerce/includes/model/logic/class-dhlpwc-model-logic-access-control.php
r2694421 r2757781 561 561 } 562 562 563 public function check_default_pers_note() 564 { 565 $shipping_method = get_option('woocommerce_dhlpwc_settings'); 566 567 if (empty($shipping_method)) { 568 return false; 569 } 570 571 if (!isset($shipping_method['check_default_pers_note'])) { 572 return false; 573 } 574 575 if ($shipping_method['check_default_pers_note'] != 'yes') { 576 return false; 577 } 578 579 return true; 580 } 581 563 582 public function check_default_order_id_reference() 564 583 { -
dhl-for-woocommerce/tags/2.9.2/dhlpwoocommerce/includes/model/logic/class-dhlpwc-model-logic-shipment.php
r2694421 r2757781 222 222 { 223 223 $skip_addition_check = false; 224 $skip_reverse_check = false; 225 $cutout = ''; 224 226 225 227 if (!isset($address['street'])) { … … 229 231 ))); 230 232 231 // Determine if we need to cutoff the first word from parsing (when contains digit AND number) 232 $raw_parts = explode(' ', trim($address['street'])); 233 $street_prefix = ''; 234 $street_first_word = reset($raw_parts); 235 preg_match('/[0-9]+[a-zA-Z]+/i', trim($street_first_word), $first_word_parts); 236 if (!empty($first_word_parts)) { 237 $street_prefix = $street_first_word . ' '; 238 unset($raw_parts[key($raw_parts)]); 239 } 240 $raw = implode(' ', $raw_parts); 241 242 preg_match('/([^0-9]*)\s*(.*)/i', trim($raw), $street_parts); 233 // Cutout starting special numbers from regular parsing logic 234 $parsable_parts = explode(' ', trim($address['street']), 2); 235 236 // Check if it has a number with letters 237 if (preg_match('/[0-9]+[a-z]+/i', reset($parsable_parts)) === 1) { 238 $cutout = reset($parsable_parts) . ' '; 239 $skip_reverse_check = true; 240 unset($parsable_parts[0]); 241 242 // Check if it has a number with more than just letters, but also other available numbers 243 } else if (preg_match('/[0-9]+[^0-9]+/', reset($parsable_parts)) === 1 && preg_match('/\d/', end($parsable_parts)) === 1) { 244 $cutout = reset($parsable_parts) . ' '; 245 $skip_reverse_check = true; 246 unset($parsable_parts[0]); 247 248 // Check if it has something before a number 249 } else if (preg_match('/[^0-9]+[0-9]+/', reset($parsable_parts)) === 1) { 250 $cutout = reset($parsable_parts) . ' '; 251 $skip_reverse_check = true; 252 unset($parsable_parts[0]); 253 254 // Check if starts with number (with anything), but also has numbers in the rest of the address 255 } else if (preg_match('/[^0-9]*[0-9]+[^0-9]*/', reset($parsable_parts)) === 1 && preg_match('/\d/', end($parsable_parts)) === 1) { 256 $cutout = reset($parsable_parts) . ' '; 257 $skip_reverse_check = true; 258 unset($parsable_parts[0]); 259 } 260 261 $parsable_street = implode(' ', $parsable_parts); 262 263 preg_match('/([^0-9]*)\s*(.*)/', trim($parsable_street), $street_parts); 243 264 $address = array_merge($address, [ 244 265 'street' => isset($street_parts[1]) ? trim($street_parts[1]) : '', … … 248 269 249 270 // Check if $street is empty 250 if (strlen($address['street']) === 0 ) {271 if (strlen($address['street']) === 0 && !$skip_reverse_check) { 251 272 // Try a reverse parse 252 preg_match('/([\d]+[\w.-]*)\s*(.*)/i', trim($ raw), $street_parts);273 preg_match('/([\d]+[\w.-]*)\s*(.*)/i', trim($parsable_street), $street_parts); 253 274 $address['street'] = isset($street_parts[2]) ? trim($street_parts[2]) : ''; 254 275 $address['number'] = isset($street_parts[1]) ? trim($street_parts[1]) : ''; … … 256 277 } 257 278 258 // Check if $number has n umbers259 if (preg_match( "/\d/", $address['number']) !== 1) {260 $address['street'] = trim($ raw);279 // Check if $number has no numbers 280 if (preg_match('/\d/', $address['number']) === 0) { 281 $address['street'] = trim($parsable_street); 261 282 $address['number'] = ''; 283 284 // Addition check 262 285 } else if (!$skip_addition_check) { 263 preg_match('/([\d]+)[ .-]*(.*)/i', $address['number'], $number_parts); 264 $address['number'] = isset($number_parts[1]) ? trim($number_parts[1]) : ''; 265 $address['addition'] = isset($number_parts[2]) ? trim($number_parts[2]) : ''; 286 // If there are no letters, but has additional spaced numbers, use last number as number, no addition 287 preg_match('/([^a-z]+)\s+([\d]+)$/i', $address['number'], $number_parts); 288 if (isset($number_parts[2])) { 289 $address['street'] .= ' ' . $number_parts[1]; 290 $address['number'] = $number_parts[2]; 291 292 // Regular number / addition split 293 } else { 294 preg_match('/([\d]+)[ .-]*(.*)/i', $address['number'], $number_parts); 295 $address['number'] = isset($number_parts[1]) ? trim($number_parts[1]) : ''; 296 $address['addition'] = isset($number_parts[2]) ? trim($number_parts[2]) : ''; 297 } 266 298 } 267 299 268 300 // Reassemble street 269 301 if (isset($address['street'])) { 270 $address['street'] = $ street_prefix. $address['street'];302 $address['street'] = $cutout . $address['street']; 271 303 } 272 304 } … … 276 308 $address['addition'] = isset($address['addition']) ? $address['addition'] : ''; 277 309 310 // Clean any starting punctuations 311 preg_match('/^[[:punct:]\s]+(.*)/', $address['street'], $clean_street); 312 if (isset($clean_street[1])) { 313 $address['street'] = $clean_street[1]; 314 } 315 preg_match('/^[[:punct:]\s]+(.*)/', $address['number'], $clean_number); 316 if (isset($clean_number[1])) { 317 $address['number'] = $clean_number[1]; 318 } 319 preg_match('/^[[:punct:]\s]+(.*)/', $address['addition'], $clean_addition); 320 if (isset($clean_addition[1])) { 321 $address['addition'] = $clean_addition[1]; 322 } 323 278 324 return $address; 279 325 } -
dhl-for-woocommerce/tags/2.9.2/dhlpwoocommerce/includes/model/service/class-dhlpwc-model-service-access-control.php
r2694421 r2757781 31 31 const ACCESS_DEFAULT_SEND_SIGNATURE = 'default_send_signature'; 32 32 const ACCESS_DEFAULT_AGE_CHECK = 'default_age_check'; 33 const ACCESS_DEFAULT_PERS_NOTE = 'default_pers_note'; 33 34 const ACCESS_DEFAULT_ORDER_ID_REFERENCE = 'default_order_id_reference'; 34 35 const ACCESS_DEFAULT_ORDER_ID_REFERENCE2 = 'default_order_id_reference2'; … … 174 175 $logic = DHLPWC_Model_Logic_Access_Control::instance(); 175 176 return $logic->check_default_age_check(); 177 break; 178 179 case self::ACCESS_DEFAULT_PERS_NOTE: 180 $logic = DHLPWC_Model_Logic_Access_Control::instance(); 181 return $logic->check_default_pers_note(); 176 182 break; 177 183 -
dhl-for-woocommerce/tags/2.9.2/dhlpwoocommerce/includes/model/service/class-dhlpwc-model-service-label-metabox.php
r2702736 r2757781 5 5 if (!class_exists('DHLPWC_Model_Service_Label_Metabox')) : 6 6 7 class DHLPWC_Model_Service_Label_Metabox extends DHLPWC_Model_Core_Singleton_Abstract 8 { 9 10 // TODO: temporarily use a whitelist system due not all options being fully supported yet 11 // Either missing input, or not tested, especially country specific options 12 protected $whitelist = array( 13 // Delivery option 14 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_PS, 15 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_DOOR, 16 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_BP, 17 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_H, // (requires custom address selection) 18 19 // Service option 20 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_EXP, 21 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_BOUW, 22 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_REFERENCE2, 23 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_EXW, 24 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_EA, 25 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_EVE, 26 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_RECAP, 27 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_INS, 28 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_REFERENCE, 29 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_HANDT, 30 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_NBB, 31 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_ADD_RETURN_LABEL, 32 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_SSN, 33 //DHLPWC_Model_Meta_Order_Option_Preference::OPTION_PERS_NOTE, // (will be added later in the API, but for now it's not yet available) 34 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_SDD, 35 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_S, 36 //DHLPWC_Model_Meta_Order_Option_Preference::OPTION_IS_BULKY, 37 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_AGE_CHECK, 38 ); 39 40 public function order_labels($order_id, $labels) 7 class DHLPWC_Model_Service_Label_Metabox extends DHLPWC_Model_Core_Singleton_Abstract 41 8 { 42 $content = ''; 43 if (!empty($labels)) { 44 foreach ($labels as $label) { 45 $view = new DHLPWC_Template('order.meta.label'); 46 $is_return = (!empty($label['is_return'])) ? $label['is_return'] : false; 47 $content .= $view->render(array( 48 'label_size' => $label['label_size'], 49 'label_description' => DHLPWC_Model_Service_Translation::instance()->parcelType($label['label_size']), 50 'tracker_code' => $label['tracker_code'], 51 'is_return' => $is_return, 52 'actions' => $this->get_label_actions($label, $order_id), 53 ), false); 54 } 55 } else { 56 $view = new DHLPWC_Template('order.meta.no-label'); 57 $content .= $view->render(array(), false); 58 } 59 60 $view = new DHLPWC_Template('order.meta.label-container'); 61 return $view->render(array( 62 'content' => $content 63 ), false); 64 } 65 66 public function private_or_business_form($checked) 67 { 68 $view = new DHLPWC_Template('order.meta.form.to-business'); 69 return $view->render(array( 70 'checked' => $checked, 71 ), false); 72 } 73 74 public function options_form($order_id, $selected_options, $option_data, $to_business) 75 { 76 $service = DHLPWC_Model_Service_Access_Control::instance(); 77 $allowed_options = $service->check(DHLPWC_Model_Service_Access_Control::ACCESS_CAPABILITY_ORDER_OPTIONS, array( 78 'order_id' => $order_id, 79 'to_business' => $to_business, 80 )); 81 82 // Filter response to options 83 $delivery_options = array(); 84 $service_options = array(); 85 if ($allowed_options) { 86 $service = DHLPWC_Model_Service_Shipment_Option::instance(); 87 88 foreach ($allowed_options as $allowed_option) { 89 // TODO temporarily use a whitelist 90 if (!in_array($allowed_option->key, $this->whitelist)) { 91 continue; 9 10 // TODO: temporarily use a whitelist system due not all options being fully supported yet 11 // Either missing input, or not tested, especially country specific options 12 protected $whitelist = array( 13 // Delivery option 14 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_PS, 15 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_DOOR, 16 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_BP, 17 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_H, // (requires custom address selection) 18 19 // Service option 20 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_EXP, 21 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_BOUW, 22 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_REFERENCE2, 23 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_EXW, 24 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_EA, 25 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_EVE, 26 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_RECAP, 27 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_INS, 28 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_REFERENCE, 29 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_HANDT, 30 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_NBB, 31 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_ADD_RETURN_LABEL, 32 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_SSN, 33 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_PERS_NOTE, 34 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_SDD, 35 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_S, 36 //DHLPWC_Model_Meta_Order_Option_Preference::OPTION_IS_BULKY, 37 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_AGE_CHECK, 38 ); 39 40 public function order_labels($order_id, $labels) 41 { 42 $content = ''; 43 if (!empty($labels)) { 44 foreach ($labels as $label) { 45 $view = new DHLPWC_Template('order.meta.label'); 46 $is_return = (!empty($label['is_return'])) ? $label['is_return'] : false; 47 $content .= $view->render(array( 48 'label_size' => $label['label_size'], 49 'label_description' => DHLPWC_Model_Service_Translation::instance()->parcelType($label['label_size']), 50 'tracker_code' => $label['tracker_code'], 51 'is_return' => $is_return, 52 'actions' => $this->get_label_actions($label, $order_id), 53 ), false); 92 54 } 93 94 /* @var DHLPWC_Model_API_Data_Option $option */ 95 $option = $allowed_option; 96 $option->image_url = $service->get_image_url($option->key); 97 $option->description = DHLPWC_Model_Service_Translation::instance()->option($option->key); 98 $option->exclusion_list = array(); 99 100 // Making a special case: H is also a delivery_type 101 if ($option->key === DHLPWC_Model_Meta_Order_Option_Preference::OPTION_H) { 102 $option->option_type = DHLPWC_Model_API_Data_Option::OPTION_TYPE_DELIVERY; 55 } else { 56 $view = new DHLPWC_Template('order.meta.no-label'); 57 $content .= $view->render(array(), false); 58 } 59 60 $view = new DHLPWC_Template('order.meta.label-container'); 61 return $view->render(array( 62 'content' => $content 63 ), false); 64 } 65 66 public function private_or_business_form($checked) 67 { 68 $view = new DHLPWC_Template('order.meta.form.to-business'); 69 return $view->render(array( 70 'checked' => $checked, 71 ), false); 72 } 73 74 public function options_form($order_id, $selected_options, $option_data, $to_business) 75 { 76 $service = DHLPWC_Model_Service_Access_Control::instance(); 77 $allowed_options = $service->check(DHLPWC_Model_Service_Access_Control::ACCESS_CAPABILITY_ORDER_OPTIONS, array( 78 'order_id' => $order_id, 79 'to_business' => $to_business, 80 )); 81 82 // Filter response to options 83 $delivery_options = array(); 84 $service_options = array(); 85 if ($allowed_options) { 86 $service = DHLPWC_Model_Service_Shipment_Option::instance(); 87 88 foreach ($allowed_options as $allowed_option) { 89 // TODO temporarily use a whitelist 90 if (!in_array($allowed_option->key, $this->whitelist)) { 91 continue; 92 } 93 94 /* @var DHLPWC_Model_API_Data_Option $option */ 95 $option = $allowed_option; 96 $option->image_url = $service->get_image_url($option->key); 97 $option->description = DHLPWC_Model_Service_Translation::instance()->option($option->key); 98 $option->exclusion_list = array(); 99 100 // Making a special case: H is also a delivery_type 101 if ($option->key === DHLPWC_Model_Meta_Order_Option_Preference::OPTION_H) { 102 $option->option_type = DHLPWC_Model_API_Data_Option::OPTION_TYPE_DELIVERY; 103 } 104 105 if (!empty($option->exclusions)) { 106 foreach($option->exclusions as $exclusion) { 107 $option->exclusion_list[] = $exclusion->key; 108 } 109 } 110 111 if (in_array($option->key, $selected_options)) { 112 $option->preselected = true; 113 } 114 115 // Update input template 116 switch($option->key) { 117 case (DHLPWC_Model_Meta_Order_Option_Preference::OPTION_REFERENCE): 118 if (!empty($option_data) && is_array($option_data) && array_key_exists(DHLPWC_Model_Meta_Order_Option_Preference::OPTION_REFERENCE, $option_data)) { 119 $logic = DHLPWC_Model_Logic_Shipment::instance(); 120 $value = $logic->get_reference_data($option_data); 121 } else { 122 $access_service = DHLPWC_Model_Service_Access_Control::instance(); 123 $default_order_id_reference = $access_service->check(DHLPWC_Model_Service_Access_Control::ACCESS_DEFAULT_ORDER_ID_REFERENCE); 124 125 if ($default_order_id_reference) { 126 $value = apply_filters('dhlpwc_default_reference_value', $order_id, $order_id); 127 } else { 128 $value = null; 129 } 130 } 131 132 $option->input_template = DHLPWC_Model_API_Data_Option::INPUT_TEMPLATE_TEXT; 133 $option->input_template_data = array( 134 'placeholder' => __('Reference', 'dhlpwc'), 135 'value' => $value, 136 ); 137 break; 138 case (DHLPWC_Model_Meta_Order_Option_Preference::OPTION_REFERENCE2): 139 if (!empty($option_data) && is_array($option_data) && array_key_exists(DHLPWC_Model_Meta_Order_Option_Preference::OPTION_REFERENCE2, $option_data)) { 140 $logic = DHLPWC_Model_Logic_Shipment::instance(); 141 $value = $logic->get_reference2_data($option_data); 142 } else { 143 $access_service = DHLPWC_Model_Service_Access_Control::instance(); 144 $default_order_id_reference2 = $access_service->check(DHLPWC_Model_Service_Access_Control::ACCESS_DEFAULT_ORDER_ID_REFERENCE2); 145 146 if ($default_order_id_reference2) { 147 $value = apply_filters('dhlpwc_default_reference2_value', $order_id, $order_id); 148 } else { 149 $value = null; 150 } 151 } 152 153 $option->input_template = DHLPWC_Model_API_Data_Option::INPUT_TEMPLATE_TEXT; 154 $option->input_template_data = array( 155 'placeholder' => __('Second reference', 'dhlpwc'), 156 'value' => $value, 157 ); 158 break; 159 case (DHLPWC_Model_Meta_Order_Option_Preference::OPTION_PERS_NOTE): 160 $option->input_template = DHLPWC_Model_API_Data_Option::INPUT_TEMPLATE_TEXT; 161 $option->input_template_data = array( 162 'placeholder' => __('Message', 'dhlpwc'), 163 'value' => '', 164 ); 165 break; 166 case (DHLPWC_Model_Meta_Order_Option_Preference::OPTION_PS): 167 $order_meta_service = new DHLPWC_Model_Service_Order_Meta_Option(); 168 $parcelshop = $order_meta_service->get_parcelshop($order_id); 169 170 $option->input_template = DHLPWC_Model_API_Data_Option::INPUT_TEMPLATE_PARCELSHOP; 171 $option->input_template_data = array( 172 'parcelshop' => $parcelshop, 173 ); 174 break; 175 case (DHLPWC_Model_Meta_Order_Option_Preference::OPTION_INS): 176 $option->input_template = DHLPWC_Model_API_Data_Option::INPUT_TEMPLATE_PRICE; 177 $option->input_template_data = array( 178 'placeholder' => __('In euros (€)', 'dhlpwc'), 179 ); 180 break; 181 case (DHLPWC_Model_Meta_Order_Option_Preference::OPTION_SSN): 182 if (!empty($option_data) && is_array($option_data) && array_key_exists(DHLPWC_Model_Meta_Order_Option_Preference::OPTION_SSN, $option_data)) { 183 $logic = DHLPWC_Model_Logic_Shipment::instance(); 184 $hide_sender_data = $logic->get_hide_sender_data($option_data); 185 if ($logic->validate_flat_address($hide_sender_data)) { 186 $hide_sender_address = new DHLPWC_Model_Meta_Address($hide_sender_data); 187 } else { 188 $hide_sender_address = null; 189 } 190 } else { 191 $access_service = DHLPWC_Model_Service_Access_Control::instance(); 192 $default_hide_sender = $access_service->check(DHLPWC_Model_Service_Access_Control::ACCESS_DEFAULT_HIDE_SENDER_ADDRESS); 193 194 if ($default_hide_sender) { 195 $settings_service = DHLPWC_Model_Service_Settings::instance(); 196 $hide_sender_address = $settings_service->get_hide_sender_address(); 197 } else { 198 $hide_sender_address = null; 199 } 200 } 201 202 $option->input_template = DHLPWC_Model_API_Data_Option::INPUT_TEMPLATE_ADDRESS; 203 $option->input_template_data = array( 204 'address' => $hide_sender_address, 205 ); 206 break; 207 case (DHLPWC_Model_Meta_Order_Option_Preference::OPTION_H): 208 $option->input_template = DHLPWC_Model_API_Data_Option::INPUT_TEMPLATE_TERMINAL; 209 $option->input_template_data = array(); 210 break; 211 default: 212 $option->input_template = null; 213 $option->input_template_data = null; 214 } 215 216 if (!empty($option->input_template)) { 217 $view = new DHLPWC_Template('order.meta.form.input.' . $option->input_template); 218 $option->input_template = $view->render($option->input_template_data, false); 219 } 220 221 if ($option->option_type === DHLPWC_Model_API_Data_Option::OPTION_TYPE_DELIVERY) { 222 // Making a special case: DOOR goes first 223 if ($option->key === DHLPWC_Model_Meta_Order_Option_Preference::OPTION_DOOR) { 224 array_unshift($delivery_options, $option); 225 } else { 226 $delivery_options[] = $option; 227 } 228 } else { 229 // Make a special case: references go first (to group them) 230 if ($option->key === DHLPWC_Model_Meta_Order_Option_Preference::OPTION_REFERENCE || 231 $option->key === DHLPWC_Model_Meta_Order_Option_Preference::OPTION_REFERENCE2) { 232 array_unshift($service_options, $option); 233 } else { 234 $service_options[] = $option; 235 } 236 } 237 103 238 } 104 105 if (!empty($option->exclusions)) { 106 foreach($option->exclusions as $exclusion) { 107 $option->exclusion_list[] = $exclusion->key; 108 } 239 } else { 240 $messages = DHLPWC_Model_Core_Flash_Message::instance(); 241 $messages->add_error(__('No matching capabilities found.', 'dhlpwc'), 'dhlpwc_label_meta'); 242 } 243 244 $view = new DHLPWC_Template('order.meta.form.options'); 245 return $view->render(array( 246 'delivery_options' => $delivery_options, 247 'service_options' => $service_options, 248 ), false); 249 } 250 251 public function sizes_form($order_id, $selected_options, $to_business) 252 { 253 $view = new DHLPWC_Template('order.meta.form.sizes-headline'); 254 $option_texts = $selected_options; 255 $option_texts = array_map( 256 function ($value) { 257 return DHLPWC_Model_Service_Translation::instance()->option($value); 258 }, 259 $option_texts 260 ); 261 262 $size_view = $view->render(array( 263 'message' => implode(' + ', $option_texts), 264 ), false); 265 266 $service = DHLPWC_Model_Service_Access_Control::instance(); 267 $sizes = $service->check(DHLPWC_Model_Service_Access_Control::ACCESS_CAPABILITY_PARCELTYPE, array( 268 'order_id' => $order_id, 269 'options' => $selected_options, 270 'to_business' => $to_business, 271 )); 272 273 if (!empty($sizes)) { 274 foreach ($sizes as $size) { 275 $view = new DHLPWC_Template('order.meta.form.size'); 276 $size_view .= $view->render(array( 277 'parceltype' => $size, 278 'description' => DHLPWC_Model_Service_Translation::instance()->parcelType($size->key) 279 ), false); 280 109 281 } 110 111 if (in_array($option->key, $selected_options)) { 112 $option->preselected = true; 113 } 114 115 // Update input template 116 switch($option->key) { 117 case (DHLPWC_Model_Meta_Order_Option_Preference::OPTION_REFERENCE): 118 if (!empty($option_data) && is_array($option_data) && array_key_exists(DHLPWC_Model_Meta_Order_Option_Preference::OPTION_REFERENCE, $option_data)) { 119 $logic = DHLPWC_Model_Logic_Shipment::instance(); 120 $value = $logic->get_reference_data($option_data); 121 } else { 122 $access_service = DHLPWC_Model_Service_Access_Control::instance(); 123 $default_order_id_reference = $access_service->check(DHLPWC_Model_Service_Access_Control::ACCESS_DEFAULT_ORDER_ID_REFERENCE); 124 125 if ($default_order_id_reference) { 126 $value = apply_filters('dhlpwc_default_reference_value', $order_id, $order_id); 127 } else { 128 $value = null; 129 } 130 } 131 132 $option->input_template = DHLPWC_Model_API_Data_Option::INPUT_TEMPLATE_TEXT; 133 $option->input_template_data = array( 134 'placeholder' => __('Reference', 'dhlpwc'), 135 'value' => $value, 136 ); 137 break; 138 case (DHLPWC_Model_Meta_Order_Option_Preference::OPTION_REFERENCE2): 139 if (!empty($option_data) && is_array($option_data) && array_key_exists(DHLPWC_Model_Meta_Order_Option_Preference::OPTION_REFERENCE2, $option_data)) { 140 $logic = DHLPWC_Model_Logic_Shipment::instance(); 141 $value = $logic->get_reference2_data($option_data); 142 } else { 143 $access_service = DHLPWC_Model_Service_Access_Control::instance(); 144 $default_order_id_reference2 = $access_service->check(DHLPWC_Model_Service_Access_Control::ACCESS_DEFAULT_ORDER_ID_REFERENCE2); 145 146 if ($default_order_id_reference2) { 147 $value = apply_filters('dhlpwc_default_reference2_value', $order_id, $order_id); 148 } else { 149 $value = null; 150 } 151 } 152 153 $option->input_template = DHLPWC_Model_API_Data_Option::INPUT_TEMPLATE_TEXT; 154 $option->input_template_data = array( 155 'placeholder' => __('Second reference', 'dhlpwc'), 156 'value' => $value, 157 ); 158 break; 159 // case (DHLPWC_Model_Meta_Order_Option_Preference::OPTION_PERS_NOTE): 160 // $option->input_template = DHLPWC_Model_API_Data_Option::INPUT_TEMPLATE_TEXT; 161 // $option->input_template_data = array( 162 // 'placeholder' => __('Message', 'dhlpwc'), 163 // ); 164 // break; 165 case (DHLPWC_Model_Meta_Order_Option_Preference::OPTION_PS): 166 $order_meta_service = new DHLPWC_Model_Service_Order_Meta_Option(); 167 $parcelshop = $order_meta_service->get_parcelshop($order_id); 168 169 $option->input_template = DHLPWC_Model_API_Data_Option::INPUT_TEMPLATE_PARCELSHOP; 170 $option->input_template_data = array( 171 'parcelshop' => $parcelshop, 172 ); 173 break; 174 case (DHLPWC_Model_Meta_Order_Option_Preference::OPTION_INS): 175 $option->input_template = DHLPWC_Model_API_Data_Option::INPUT_TEMPLATE_PRICE; 176 $option->input_template_data = array( 177 'placeholder' => __('In euros (€)', 'dhlpwc'), 178 ); 179 break; 180 case (DHLPWC_Model_Meta_Order_Option_Preference::OPTION_SSN): 181 if (!empty($option_data) && is_array($option_data) && array_key_exists(DHLPWC_Model_Meta_Order_Option_Preference::OPTION_SSN, $option_data)) { 182 $logic = DHLPWC_Model_Logic_Shipment::instance(); 183 $hide_sender_data = $logic->get_hide_sender_data($option_data); 184 if ($logic->validate_flat_address($hide_sender_data)) { 185 $hide_sender_address = new DHLPWC_Model_Meta_Address($hide_sender_data); 186 } else { 187 $hide_sender_address = null; 188 } 189 } else { 190 $access_service = DHLPWC_Model_Service_Access_Control::instance(); 191 $default_hide_sender = $access_service->check(DHLPWC_Model_Service_Access_Control::ACCESS_DEFAULT_HIDE_SENDER_ADDRESS); 192 193 if ($default_hide_sender) { 194 $settings_service = DHLPWC_Model_Service_Settings::instance(); 195 $hide_sender_address = $settings_service->get_hide_sender_address(); 196 } else { 197 $hide_sender_address = null; 198 } 199 } 200 201 $option->input_template = DHLPWC_Model_API_Data_Option::INPUT_TEMPLATE_ADDRESS; 202 $option->input_template_data = array( 203 'address' => $hide_sender_address, 204 ); 205 break; 206 case (DHLPWC_Model_Meta_Order_Option_Preference::OPTION_H): 207 $option->input_template = DHLPWC_Model_API_Data_Option::INPUT_TEMPLATE_TERMINAL; 208 $option->input_template_data = array(); 209 break; 210 default: 211 $option->input_template = null; 212 $option->input_template_data = null; 213 } 214 215 if (!empty($option->input_template)) { 216 $view = new DHLPWC_Template('order.meta.form.input.' . $option->input_template); 217 $option->input_template = $view->render($option->input_template_data, false); 218 } 219 220 if ($option->option_type === DHLPWC_Model_API_Data_Option::OPTION_TYPE_DELIVERY) { 221 // Making a special case: DOOR goes first 222 if ($option->key === DHLPWC_Model_Meta_Order_Option_Preference::OPTION_DOOR) { 223 array_unshift($delivery_options, $option); 224 } else { 225 $delivery_options[] = $option; 226 } 227 } else { 228 // Make a special case: references go first (to group them) 229 if ($option->key === DHLPWC_Model_Meta_Order_Option_Preference::OPTION_REFERENCE || 230 $option->key === DHLPWC_Model_Meta_Order_Option_Preference::OPTION_REFERENCE2) { 231 array_unshift($service_options, $option); 232 } else { 233 $service_options[] = $option; 234 } 235 } 236 237 } 238 } else { 239 $messages = DHLPWC_Model_Core_Flash_Message::instance(); 240 $messages->add_error(__('No matching capabilities found.', 'dhlpwc'), 'dhlpwc_label_meta'); 241 } 242 243 $view = new DHLPWC_Template('order.meta.form.options'); 244 return $view->render(array( 245 'delivery_options' => $delivery_options, 246 'service_options' => $service_options, 247 ), false); 248 } 249 250 public function sizes_form($order_id, $selected_options, $to_business) 251 { 252 $view = new DHLPWC_Template('order.meta.form.sizes-headline'); 253 $option_texts = $selected_options; 254 $option_texts = array_map( 255 function ($value) { 256 return DHLPWC_Model_Service_Translation::instance()->option($value); 257 }, 258 $option_texts 259 ); 260 261 $size_view = $view->render(array( 262 'message' => implode(' + ', $option_texts), 263 ), false); 264 265 $service = DHLPWC_Model_Service_Access_Control::instance(); 266 $sizes = $service->check(DHLPWC_Model_Service_Access_Control::ACCESS_CAPABILITY_PARCELTYPE, array( 267 'order_id' => $order_id, 268 'options' => $selected_options, 269 'to_business' => $to_business, 270 )); 271 272 if (!empty($sizes)) { 273 foreach ($sizes as $size) { 274 $view = new DHLPWC_Template('order.meta.form.size'); 275 $size_view .= $view->render(array( 276 'parceltype' => $size, 277 'description' => DHLPWC_Model_Service_Translation::instance()->parcelType($size->key) 278 ), false); 279 280 } 281 } else { 282 $view = new DHLPWC_Template('order.meta.form.no-sizes'); 283 $size_view .= $view->render(array(), false); 284 } 285 286 return $size_view; 287 } 288 289 protected function get_label_actions($label, $post_id) 290 { 291 $locale = str_replace('_', '-', get_locale()); 292 293 $service = DHLPWC_Model_Service_Postcode::instance(); 294 $postcode = $service->get_postcode_from_order($post_id); 295 296 $service = DHLPWC_Model_Service_Order_Meta::instance(); 297 $country_code = $service->get_country_code($post_id); 298 299 $service = DHLPWC_Model_Service_Track_Trace::instance(); 300 $tracking_url = $service->get_url($label['tracker_code'], $postcode, $locale, $country_code); 301 302 $service = DHLPWC_Model_Service_Access_Control::instance(); 303 $printer = $service->check(DHLPWC_Model_Service_Access_Control::ACCESS_PRINTER); 304 $debug_label_requests = $service->check(DHLPWC_Model_Service_Access_Control::ACCESS_LABEL_REQUEST); 305 306 $actions = array(); 307 $actions[] = array( 282 } else { 283 $view = new DHLPWC_Template('order.meta.form.no-sizes'); 284 $size_view .= $view->render(array(), false); 285 } 286 287 return $size_view; 288 } 289 290 protected function get_label_actions($label, $post_id) 291 { 292 $locale = str_replace('_', '-', get_locale()); 293 294 $service = DHLPWC_Model_Service_Postcode::instance(); 295 $postcode = $service->get_postcode_from_order($post_id); 296 297 $service = DHLPWC_Model_Service_Order_Meta::instance(); 298 $country_code = $service->get_country_code($post_id); 299 300 $service = DHLPWC_Model_Service_Track_Trace::instance(); 301 $tracking_url = $service->get_url($label['tracker_code'], $postcode, $locale, $country_code); 302 303 $service = DHLPWC_Model_Service_Access_Control::instance(); 304 $printer = $service->check(DHLPWC_Model_Service_Access_Control::ACCESS_PRINTER); 305 $debug_label_requests = $service->check(DHLPWC_Model_Service_Access_Control::ACCESS_LABEL_REQUEST); 306 307 $actions = array(); 308 $actions[] = array( 308 309 'url' => $label['pdf']['url'], 309 310 'name' => __('Download PDF label', 'dhlpwc'), 310 311 'action' => "dhlpwc_action_download", 311 ); 312 313 if ($printer) { 312 ); 313 314 if ($printer) { 315 $actions[] = array( 316 'url' => admin_url('post.php?post=' . $post_id . '&action=edit'), 317 'name' => __('Print PDF label', 'dhlpwc'), 318 'action' => "dhlpwc_action_print", 319 ); 320 } 321 322 $actions[] = array( 323 'url' => esc_url($tracking_url), 324 'name' => __('Follow track & trace', 'dhlpwc'), 325 'action' => "dhlpwc_action_follow_tt", 326 ); 327 314 328 $actions[] = array( 315 329 'url' => admin_url('post.php?post=' . $post_id . '&action=edit'), 316 'name' => __(' PrintPDF label', 'dhlpwc'),317 'action' => "dhlpwc_action_ print",330 'name' => __('Delete PDF label', 'dhlpwc'), 331 'action' => "dhlpwc_action_delete", 318 332 ); 319 } 320 321 $actions[] = array( 322 'url' => esc_url($tracking_url), 323 'name' => __('Follow track & trace', 'dhlpwc'), 324 'action' => "dhlpwc_action_follow_tt", 325 ); 326 327 $actions[] = array( 328 'url' => admin_url('post.php?post=' . $post_id . '&action=edit'), 329 'name' => __('Delete PDF label', 'dhlpwc'), 330 'action' => "dhlpwc_action_delete", 331 ); 332 333 if ($debug_label_requests && !empty($label['request'])) { 334 $actions[] = array( 335 'url' => admin_url('admin-ajax.php?action=dhlpwc_print_label_request&post_id=' . $post_id . '&label_id=' . $label['label_id']), 336 'name' => __('Show Label Request', 'dhlpwc'), 337 'action' => "dhlpwc_action_request", 338 'external_link' => false 339 ); 340 } 341 342 // Create template 343 $action_view = ''; 344 345 $service = DHLPWC_Model_Service_Access_Control::instance(); 346 $external_link = $service->check(DHLPWC_Model_Service_Access_Control::ACCESS_OPEN_LABEL_LINKS_EXTERNAL); 347 348 foreach ($actions as $action) { 349 $view = new DHLPWC_Template('admin.action-button'); 350 $action_view .= $view->render(array( 351 'action' => $action, 352 'post_id' => $post_id, 353 'label_id' => $label['label_id'], 354 'external_link' => isset($action['external_link']) ? $action['external_link'] : $external_link, 355 ), false); 356 } 357 358 $view = new DHLPWC_Template('admin.action-button-container'); 359 return $view->render(array( 360 'content' => $action_view, 361 ), false); 333 334 if ($debug_label_requests && !empty($label['request'])) { 335 $actions[] = array( 336 'url' => admin_url('admin-ajax.php?action=dhlpwc_print_label_request&post_id=' . $post_id . '&label_id=' . $label['label_id']), 337 'name' => __('Show Label Request', 'dhlpwc'), 338 'action' => "dhlpwc_action_request", 339 'external_link' => false 340 ); 341 } 342 343 // Create template 344 $action_view = ''; 345 346 $service = DHLPWC_Model_Service_Access_Control::instance(); 347 $external_link = $service->check(DHLPWC_Model_Service_Access_Control::ACCESS_OPEN_LABEL_LINKS_EXTERNAL); 348 349 foreach ($actions as $action) { 350 $view = new DHLPWC_Template('admin.action-button'); 351 $action_view .= $view->render(array( 352 'action' => $action, 353 'post_id' => $post_id, 354 'label_id' => $label['label_id'], 355 'external_link' => isset($action['external_link']) ? $action['external_link'] : $external_link, 356 ), false); 357 } 358 359 $view = new DHLPWC_Template('admin.action-button-container'); 360 return $view->render(array( 361 'content' => $action_view, 362 ), false); 363 } 364 362 365 } 363 366 364 }365 366 367 endif; -
dhl-for-woocommerce/tags/2.9.2/dhlpwoocommerce/includes/model/service/class-dhlpwc-model-service-order-meta-option.php
r2624412 r2757781 135 135 if (!array_key_exists(DHLPWC_Model_Meta_Order_Option_Preference::OPTION_AGE_CHECK, $allowed_shipping_options) 136 136 || in_array(DHLPWC_Model_Meta_Order_Option_Preference::OPTION_AGE_CHECK, $exclusions)) { 137 return false; 138 } 139 140 return true; 141 } 142 143 public function default_pers_note($order_id, $options, $to_business) 144 { 145 $service = DHLPWC_Model_Service_Access_Control::instance(); 146 $send_pers_note_checked = $service->check(DHLPWC_Model_Service_Access_Control::ACCESS_DEFAULT_PERS_NOTE); 147 if (!$send_pers_note_checked) { 148 return false; 149 } 150 151 $allowed_shipping_options = $service->check(DHLPWC_Model_Service_Access_Control::ACCESS_CAPABILITY_ORDER_OPTIONS, array( 152 'order_id' => $order_id, 153 'options' => $options, 154 'to_business' => $to_business, 155 )); 156 157 $exclusions = $this->get_exclusions($allowed_shipping_options, $options); 158 159 // Disable automatic checking of personal note if there are no parceltypes for it 160 if (!array_key_exists(DHLPWC_Model_Meta_Order_Option_Preference::OPTION_PERS_NOTE, $allowed_shipping_options) 161 || in_array(DHLPWC_Model_Meta_Order_Option_Preference::OPTION_PERS_NOTE, $exclusions)) { 137 162 return false; 138 163 } -
dhl-for-woocommerce/tags/2.9.2/dhlpwoocommerce/includes/model/service/class-dhlpwc-model-service-settings.php
r2519608 r2757781 100 100 } 101 101 102 public function format_shipping_zones_settings($setting) 103 { 104 if (!is_string($setting)) { 105 return $setting; 106 } 107 108 $data = json_decode($setting, true); 109 110 if (json_last_error() !== JSON_ERROR_NONE) { 111 return $setting; 112 } 113 114 if (!is_array($data)) { 115 return $setting; 116 } 117 118 foreach ($data as $key => $value) { 119 if (!isset($value['input_action']) || !isset($value['input_action_data'])) { 120 continue; 121 } 122 123 $data[$key] = $this->format_option_condition($value); 124 } 125 126 return json_encode($data); 127 } 128 102 129 public function format_settings($data) 103 130 { -
dhl-for-woocommerce/tags/2.9.2/dhlpwoocommerce/includes/model/service/class-dhlpwc-model-service-shipment.php
r2702736 r2757781 282 282 if ($default_age_check) { 283 283 $option_service->add_key_to_stack(DHLPWC_Model_Meta_Order_Option_Preference::OPTION_AGE_CHECK, $preselected_options); 284 } 285 286 // Default option settings 287 $default_pers_note = $option_service->default_pers_note($order_id, $preselected_options, $to_business); 288 if ($default_pers_note) { 289 $option_service->add_key_to_stack(DHLPWC_Model_Meta_Order_Option_Preference::OPTION_PERS_NOTE, $preselected_options); 284 290 } 285 291 -
dhl-for-woocommerce/tags/2.9.2/dhlpwoocommerce/includes/model/service/class-dhlpwc-model-service-translation.php
r2519608 r2757781 42 42 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_S => __('Saturday delivery', 'dhlpwc'), 43 43 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_AGE_CHECK => __('Age check 18+', 'dhlpwc'), 44 DHLPWC_Model_Meta_Order_Option_Preference::OPTION_PERS_NOTE => __('Message to the recipient', 'dhlpwc'), 44 45 ]; 45 46 } -
dhl-for-woocommerce/tags/2.9.2/dhlpwoocommerce/includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php
r2694421 r2757781 244 244 'label' => __('Enable', 'dhlpwc'), 245 245 'description' => __("When creating a label, always select the age check 18+ option by default if the service is available.", 'dhlpwc'), 246 'default' => 'no', 247 ), 248 'check_default_pers_note' => array( 249 'title' => __('Always enable message to the recipient if available', 'dhlpwc'), 250 'type' => 'checkbox', 251 'label' => __('Enable', 'dhlpwc'), 252 'description' => __("When creating a label, always select the message to the recipient option by default if the service is available.", 'dhlpwc'), 246 253 'default' => 'no', 247 254 ), -
dhl-for-woocommerce/tags/2.9.2/dhlpwoocommerce/languages/dhlpwc-nl_BE.po
r2697108 r2757781 2 2 msgstr "" 3 3 "Project-Id-Version: DHL\n" 4 "POT-Creation-Date: 2022-0 3-21 12:16+0100\n"4 "POT-Creation-Date: 2022-06-23 08:41+0200\n" 5 5 "PO-Revision-Date: \n" 6 6 "Last-Translator: \n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "X-Generator: Poedit 2.3.1\n"13 12 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 "X-Generator: Poedit 3.1\n" 14 14 15 15 #: includes/controller/admin/class-dhlpwc-controller-admin-order-metabox.php:131 … … 307 307 308 308 #: includes/controller/class-dhlpwc-controller-cart.php:51 309 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 39309 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:346 310 310 msgid "Free" 311 311 msgstr "Gratis" … … 422 422 msgstr "Tweede referentie" 423 423 424 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:177 424 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:162 425 msgid "Message" 426 msgstr "Bericht" 427 428 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:178 425 429 msgid "In euros (€)" 426 430 msgstr "In euros (€)" 427 431 428 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:24 0432 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:241 429 433 msgid "No matching capabilities found." 430 434 msgstr "Geen servicemogelijkheden gevonden." 431 435 432 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:3 06436 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:310 433 437 msgid "Download PDF label" 434 438 msgstr "Download PDF-label" 435 439 436 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:31 3440 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:317 437 441 msgid "Print PDF label" 438 442 msgstr "Print PDF-label" 439 443 440 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:32 0444 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:324 441 445 msgid "Follow track & trace" 442 446 msgstr "Volg track & trace" 443 447 444 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:3 26448 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:330 445 449 msgid "Delete PDF label" 446 450 msgstr "Verwijder PDF-label" 447 451 448 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:33 3452 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:337 449 453 msgid "Show Label Request" 450 454 msgstr "Toon labelverzoek" … … 459 463 460 464 #: includes/model/service/class-dhlpwc-model-service-parcelshop.php:153 461 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 23465 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:730 462 466 msgid "Monday" 463 467 msgstr "Maandag" 464 468 465 469 #: includes/model/service/class-dhlpwc-model-service-parcelshop.php:154 466 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 24470 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:731 467 471 msgid "Tuesday" 468 472 msgstr "Dinsdag" 469 473 470 474 #: includes/model/service/class-dhlpwc-model-service-parcelshop.php:155 471 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 25475 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:732 472 476 msgid "Wednesday" 473 477 msgstr "Woensdag" 474 478 475 479 #: includes/model/service/class-dhlpwc-model-service-parcelshop.php:156 476 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 26480 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:733 477 481 msgid "Thursday" 478 482 msgstr "Donderdag" 479 483 480 484 #: includes/model/service/class-dhlpwc-model-service-parcelshop.php:157 481 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 27485 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:734 482 486 msgid "Friday" 483 487 msgstr "Vrijdag" 484 488 485 489 #: includes/model/service/class-dhlpwc-model-service-parcelshop.php:158 486 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 28490 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:735 487 491 msgid "Saturday" 488 492 msgstr "Zaterdag" 489 493 490 494 #: includes/model/service/class-dhlpwc-model-service-parcelshop.php:159 491 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 29495 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:736 492 496 msgid "Sunday" 493 497 msgstr "Zondag" … … 654 658 msgstr "Leeftijdscheck 18+" 655 659 656 #: includes/model/service/class-dhlpwc-model-service-translation.php:57 660 #: includes/model/service/class-dhlpwc-model-service-translation.php:44 661 msgid "Message to the recipient" 662 msgstr "Bericht aan de ontvanger" 663 664 #: includes/model/service/class-dhlpwc-model-service-translation.php:58 657 665 msgid "Small" 658 666 msgstr "Small" 659 667 660 #: includes/model/service/class-dhlpwc-model-service-translation.php:5 8668 #: includes/model/service/class-dhlpwc-model-service-translation.php:59 661 669 msgid "Medium" 662 670 msgstr "Medium" 663 671 664 #: includes/model/service/class-dhlpwc-model-service-translation.php: 59672 #: includes/model/service/class-dhlpwc-model-service-translation.php:60 665 673 msgid "Large" 666 674 msgstr "Large" 667 675 668 #: includes/model/service/class-dhlpwc-model-service-translation.php:6 0676 #: includes/model/service/class-dhlpwc-model-service-translation.php:61 669 677 msgid "Pallet" 670 678 msgstr "Pallet" 671 679 672 #: includes/model/service/class-dhlpwc-model-service-translation.php:6 1680 #: includes/model/service/class-dhlpwc-model-service-translation.php:62 673 681 msgid "Bulky" 674 682 msgstr "Bulky" 675 683 676 #: includes/model/service/class-dhlpwc-model-service-translation.php:6 2684 #: includes/model/service/class-dhlpwc-model-service-translation.php:63 677 685 msgid "Roll" 678 686 msgstr "Lengtevracht" 679 687 680 #: includes/model/service/class-dhlpwc-model-service-translation.php:6 3688 #: includes/model/service/class-dhlpwc-model-service-translation.php:64 681 689 msgid "Extra Small" 682 690 msgstr "Extra Small" 683 691 684 #: includes/model/service/class-dhlpwc-model-service-translation.php:6 4692 #: includes/model/service/class-dhlpwc-model-service-translation.php:65 685 693 msgid "Extra Large" 686 694 msgstr "Extra Large" 687 695 688 #: includes/model/service/class-dhlpwc-model-service-translation.php:7 8696 #: includes/model/service/class-dhlpwc-model-service-translation.php:79 689 697 msgid "Mailbox only" 690 698 msgstr "Alleen brievenbus" 691 699 692 #: includes/model/service/class-dhlpwc-model-service-translation.php: 79700 #: includes/model/service/class-dhlpwc-model-service-translation.php:80 693 701 msgid "Smallest" 694 702 msgstr "Zo klein mogelijk" 695 703 696 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 0704 #: includes/model/service/class-dhlpwc-model-service-translation.php:81 697 705 msgid "Small only" 698 706 msgstr "Alleen Small" 699 707 700 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 1708 #: includes/model/service/class-dhlpwc-model-service-translation.php:82 701 709 msgid "Medium only" 702 710 msgstr "Alleen Medium" 703 711 704 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 2712 #: includes/model/service/class-dhlpwc-model-service-translation.php:83 705 713 msgid "Large only" 706 714 msgstr "Alleen Large" 707 715 708 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 3716 #: includes/model/service/class-dhlpwc-model-service-translation.php:84 709 717 msgid "Extra Small only" 710 718 msgstr "Alleen Extra Small" 711 719 712 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 4720 #: includes/model/service/class-dhlpwc-model-service-translation.php:85 713 721 msgid "Extra Large only" 714 722 msgstr "Alleen Extra Large" 715 723 716 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 5724 #: includes/model/service/class-dhlpwc-model-service-translation.php:86 717 725 msgid "Roll only" 718 726 msgstr "Alleen Lengtevracht" 719 727 720 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 6728 #: includes/model/service/class-dhlpwc-model-service-translation.php:87 721 729 msgid "Bulky only" 722 730 msgstr "Alleen Bulky" 723 731 724 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 7732 #: includes/model/service/class-dhlpwc-model-service-translation.php:88 725 733 msgid "Largest only" 726 734 msgstr "Zo groot mogelijk" 727 735 728 #: includes/model/service/class-dhlpwc-model-service-translation.php:10 6736 #: includes/model/service/class-dhlpwc-model-service-translation.php:107 729 737 msgid "" 730 738 "Once the shipment has been scanned, simply follow it with track & trace. " … … 779 787 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:258 780 788 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:265 781 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:291 782 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:307 783 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:322 784 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:347 785 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:393 786 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:405 787 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:423 788 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:439 789 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:463 790 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:469 791 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:485 792 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:618 793 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:680 794 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:686 795 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:747 789 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:272 790 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:298 791 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:314 792 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:329 793 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:354 794 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:400 795 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:412 796 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:430 797 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:446 798 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:470 799 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:476 800 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:492 801 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:625 802 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:687 803 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:693 804 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:754 796 805 #: includes/view/admin/settings/bulk-header.php:7 797 806 #: includes/view/admin/settings/bulk-services-header.php:7 … … 895 904 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:214 896 905 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:224 897 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 34906 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:441 898 907 #, php-format 899 908 msgid "Example: %s" … … 914 923 915 924 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:190 916 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 46925 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:453 917 926 msgid "Do not change order status" 918 927 msgstr "Geen status verandering" … … 964 973 965 974 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:249 975 msgid "Always enable message to the recipient if available" 976 msgstr "Altijd met ‘Bericht aan de ontvanger’ verzenden indien beschikbaar" 977 978 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:252 979 msgid "" 980 "When creating a label, always select the message to the recipient option by " 981 "default if the service is available." 982 msgstr "" 983 "Bij het aanmaken van een label, wordt standaard altijd de bezorgoptie " 984 "‘Bericht aan de ontvanger’ geselecteerd als het beschikbaar is." 985 986 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:256 966 987 msgid "Automatically add the order number as a reference, if possible" 967 988 msgstr "Print het ordernummer standaard als referentie op het label" 968 989 969 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:25 2990 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:259 970 991 msgid "" 971 992 "When creating a label, always add the order number as reference by default " … … 975 996 "label geprint als referentie indien mogelijk." 976 997 977 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 56998 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:263 978 999 msgid "Automatically add the order number as a second reference, if possible" 979 1000 msgstr "Print het ordernummer standaard als tweede referentie op het label" 980 1001 981 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 591002 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:266 982 1003 msgid "" 983 1004 "When creating a label, always add the order number as second reference by " … … 987 1008 "label geprint als tweede referentie indien mogelijk." 988 1009 989 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 631010 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:270 990 1011 msgid "Always enable return label if available" 991 1012 msgstr "Print standaard retourlabel" 992 1013 993 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 661014 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:273 994 1015 msgid "" 995 1016 "When creating a label, always select the return label option by default if " … … 999 1020 "mogelijk." 1000 1021 1001 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 741022 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:281 1002 1023 msgid "Choose mailbox, skip if unavailable" 1003 1024 msgstr "Gebruik brievenbus, sla over als het niet mogelijk is" 1004 1025 1005 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 751026 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:282 1006 1027 msgid "Choose the smallest available size" 1007 1028 msgstr "Gebruik de kleinste maat mogelijk" 1008 1029 1009 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 761010 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 771011 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 781012 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 791013 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:28 01014 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:28 11015 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:28 21030 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:283 1031 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:284 1032 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:285 1033 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:286 1034 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:287 1035 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:288 1036 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:289 1016 1037 #, php-format 1017 1038 msgid "Choose size '%s' only, skip if unavailable" 1018 1039 msgstr "Gebruik de maat '%s', sla over als het niet mogelijk is" 1019 1040 1020 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 831041 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:290 1021 1042 msgid "Choose the largest available size" 1022 1043 msgstr "Gebruik de grootste maat mogelijk" 1023 1044 1024 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 891045 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:296 1025 1046 msgid "Bulk label download" 1026 1047 msgstr "Meerdere labels downloaden" 1027 1048 1028 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 2951049 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:302 1029 1050 msgid "Bulk labels combined for page printing" 1030 1051 msgstr "Meerdere labels combineren voor downloaden" 1031 1052 1032 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 2981053 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:305 1033 1054 msgid "Default (1 label per page)" 1034 1055 msgstr "Default (1 label per pagina)" 1035 1056 1036 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 2991057 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:306 1037 1058 msgid "Print 3 labels per page for an A4 paper sheet" 1038 1059 msgstr "Download 3 labels per pagina voor A4 papier" 1039 1060 1040 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:30 11061 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:308 1041 1062 msgid "" 1042 1063 "When downloading labels with the bulk feature, labels can be combined to " … … 1046 1067 "labels te combineren zodat het eenvoudiger is om te printen op A4" 1047 1068 1048 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 051069 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:312 1049 1070 msgid "Validation rule: addresses require street number" 1050 1071 msgstr "Validatieregel: huisnummer verplicht" 1051 1072 1052 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 081073 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:315 1053 1074 msgid "" 1054 1075 "When activated, labels cannot be created for addresses without street number." … … 1057 1078 "huisnummer is ingevuld." 1058 1079 1059 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 141080 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:321 1060 1081 msgid "Shipment options" 1061 1082 msgstr "Bezorgopties" 1062 1083 1063 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 161084 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:323 1064 1085 msgid "Choose the shipment options for the recipients of your webshop." 1065 1086 msgstr "Kies de bezorgopties voor de ontvangers van uw webshop." 1066 1087 1067 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:32 01088 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:327 1068 1089 msgid "Send to business by default" 1069 1090 msgstr "Verzend standaard zakelijk" 1070 1091 1071 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 231092 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:330 1072 1093 msgid "" 1073 1094 "When enabled, by default labels will be created for business shipments and " … … 1078 1099 "zendingen." 1079 1100 1080 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 281101 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:335 1081 1102 msgid "Replace text label translation domain" 1082 1103 msgstr "Vervangende tekst vertaalcode" 1083 1104 1084 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:33 01105 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:337 1085 1106 msgid "" 1086 1107 "If using replacement text labels for shipping methods, it's possible to " … … 1092 1113 "gebruiken." 1093 1114 1094 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 341115 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:341 1095 1116 msgid "Display zero delivery fee price" 1096 1117 msgstr "Toon gratis bezorgprijzen" 1097 1118 1098 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 371119 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:344 1099 1120 msgid "Default (no display)" 1100 1121 msgstr "Standaard (toon geen prijs)" 1101 1122 1102 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 381123 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:345 1103 1124 msgid "Display as numeric currency (based on your locale)" 1104 1125 msgstr "Laat de prijs met valuta zien (volgens de valuta instellingen)" 1105 1126 1106 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 391127 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:346 1107 1128 #, php-format 1108 1129 msgid "Display the text \"(%s)\"" 1109 1130 msgstr "Voeg de tekst \"(%s)\" toe aan de bezorgoptie" 1110 1131 1111 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 451132 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:352 1112 1133 msgid "Use shipping zones" 1113 1134 msgstr "Gebruik verzendzones" 1114 1135 1115 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 481136 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:355 1116 1137 msgid "Set shipping methods per shipping zone." 1117 1138 msgstr "Stel bezorgopties per verzendzone in." 1118 1139 1119 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 531140 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:360 1120 1141 msgid "Change the sort behavior of shipment methods" 1121 1142 msgstr "Verander de sortering van de bezorgopties" 1122 1143 1123 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 561144 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:363 1124 1145 msgid "Default" 1125 1146 msgstr "Standaard" 1126 1147 1127 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 571148 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:364 1128 1149 msgid "Sort by cost - lowest first" 1129 1150 msgstr "Sorteer op kosten - laagste eerst" 1130 1151 1131 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 581152 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:365 1132 1153 msgid "Sort by cost - highest first" 1133 1154 msgstr "Sorteer op kosten - hoogste eerst" 1134 1155 1135 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 591156 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:366 1136 1157 msgid "Sort by custom sorting number" 1137 1158 msgstr "Sorteer op ingestelde sortering" 1138 1159 1139 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:37 01160 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:377 1140 1161 msgid "Delivery times" 1141 1162 msgstr "Bezorgtijden" 1142 1163 1143 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:37 21164 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:379 1144 1165 msgid "" 1145 1166 "Allow customers to select delivery times and manage when to send packages" 1146 1167 msgstr "Klanten kunnen bezorgtijden aangeven om de bezorgdatum aan te geven" 1147 1168 1148 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:38 11169 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:388 1149 1170 msgid "Default Shipping Address" 1150 1171 msgstr "Standaard verzendadres" 1151 1172 1152 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 831173 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:390 1153 1174 msgid "Fill in the details of your shipping address." 1154 1175 msgstr "Vul de gegevens van uw verzendadres in." 1155 1176 1156 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:39 11177 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:398 1157 1178 msgid "Different return address" 1158 1179 msgstr "Andere retouradres" 1159 1180 1160 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 3941181 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:401 1161 1182 msgid "Use a different address for return labels." 1162 1183 msgstr "Stel een ander adres voor retourzendingen." 1163 1184 1164 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 031185 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:410 1165 1186 msgid "Default hide sender address" 1166 1187 msgstr "Standaard verberg verzender adres" 1167 1188 1168 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 061189 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:413 1169 1190 msgid "Set a default address for the 'Hide sender' service option." 1170 1191 msgstr "Standaard adres bij de serviceoptie 'Verberg verzender'." 1171 1192 1172 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 161193 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:423 1173 1194 msgid "Printer settings" 1174 1195 msgstr "Print instellingen" 1175 1196 1176 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 181197 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:425 1177 1198 msgid "" 1178 1199 "Got a Zebra printer? Download our DHL Printer Service app and print directly " … … 1182 1203 "direct vanuit WooCommerce op uw Zebra printer te kunnen printen!" 1183 1204 1184 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:42 11205 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:428 1185 1206 msgid "Enable printer features" 1186 1207 msgstr "Print functionaliteit aanzetten" 1187 1208 1188 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 241209 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:431 1189 1210 msgid "" 1190 1211 "Print labels directly with your Zebra printer from within the order view and " … … 1194 1215 "order pagina." 1195 1216 1196 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 271217 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:434 1197 1218 msgid "Search printers" 1198 1219 msgstr "Zoek printers" 1199 1220 1200 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:43 21221 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:439 1201 1222 msgid "PrinterID" 1202 1223 msgstr "PrinterID" 1203 1224 1204 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 371225 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:444 1205 1226 msgid "Enable auto printer features" 1206 1227 msgstr "Activeer automatisch printen" 1207 1228 1208 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:44 01229 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:447 1209 1230 msgid "" 1210 1231 "Automatically create and print labels when order has a specific status and " … … 1214 1235 "(alleen van toepassing wanneer er nog geen labels zijn)" 1215 1236 1216 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 431237 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:450 1217 1238 msgid "Auto print orders with this status" 1218 1239 msgstr "Print automatisch bij de volgende status" 1219 1240 1220 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 561241 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:463 1221 1242 msgid "Debug Settings" 1222 1243 msgstr "Debug instellingen" 1223 1244 1224 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 581245 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:465 1225 1246 msgid "Settings for developers." 1226 1247 msgstr "Instellingen voor ontwikkelaars." 1227 1248 1228 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:46 11249 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:468 1229 1250 msgid "Report errors" 1230 1251 msgstr "Rapporteer problemen" 1231 1252 1232 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 641253 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:471 1233 1254 msgid "" 1234 1255 "Enable this and select one of the reporting methods below to automatically " … … 1238 1259 "automatisch door te sturen naar het ontwikkelteam." 1239 1260 1240 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 671261 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:474 1241 1262 msgid "By mail" 1242 1263 msgstr "Via e-mail" 1243 1264 1244 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:47 01265 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:477 1245 1266 msgid "Errors will be automatically forwarded by e-mail." 1246 1267 msgstr "Problemen worden automatisch doorgestuurd via e-mail." 1247 1268 1248 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 731269 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:480 1249 1270 msgid "By custom URL" 1250 1271 msgstr "Via URL" 1251 1272 1252 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 751273 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:482 1253 1274 msgid "" 1254 1275 "Alternative API-URL. Used by developers. Will not be used if left empty " … … 1258 1279 "niet te gebruiken (aanbevolen)." 1259 1280 1260 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 781281 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:485 1261 1282 msgid "External custom URL" 1262 1283 msgstr "Via externe URL" 1263 1284 1264 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:48 01285 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:487 1265 1286 msgid "" 1266 1287 "Alternative secondary API-URL. Used by developers. Will not be used if left " … … 1270 1291 "instelling niet te gebruiken (aanbevolen)." 1271 1292 1272 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 831293 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:490 1273 1294 msgid "Log Requests for debugging" 1274 1295 msgstr "Verzoeken opslaan om problemen op te lossen" 1275 1296 1276 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 861297 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:493 1277 1298 msgid "Enable this and you can check your request." 1278 1299 msgstr "" … … 1280 1301 "voor niet-ontwikkelaars)." 1281 1302 1282 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 891303 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:496 1283 1304 msgid "Test migrate notification" 1284 1305 msgstr "Test migratie melding" 1285 1306 1286 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:49 21307 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:499 1287 1308 msgid "Off" 1288 1309 msgstr "Uit" 1289 1310 1290 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 4931311 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:500 1291 1312 msgid "Show low level notification" 1292 1313 msgstr "Toon laag niveau melding" 1293 1314 1294 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 4941315 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:501 1295 1316 msgid "Show middle level notification" 1296 1317 msgstr "Toon midden niveau melding" 1297 1318 1298 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 4951319 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:502 1299 1320 msgid "Show high level notification" 1300 1321 msgstr "Toon hoog niveau melding" 1301 1322 1302 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:50 21323 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:509 1303 1324 msgid "Feedback" 1304 1325 msgstr "Feedback" 1305 1326 1306 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:5 041327 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:511 1307 1328 msgid "" 1308 1329 "Got questions or feedback about the plugin? Please let us know by clicking " … … 1312 1333 "ons weten en klik hier." 1313 1334 1314 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:5 541335 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:561 1315 1336 msgid "Use default text label" 1316 1337 msgstr "Standaard tekst" 1317 1338 1318 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:59 21339 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:599 1319 1340 #, php-format 1320 1341 msgid "Show service: '%s'" 1321 1342 msgstr "Toon serviceoptie: ‘%s’" 1322 1343 1323 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 081344 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:615 1324 1345 msgid "Enter prices with tax included" 1325 1346 msgstr "Prijzen inclusief belasting invoeren" 1326 1347 1327 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:61 01348 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:617 1328 1349 msgid "" 1329 1350 "Turn this on to enter prices with the tax included. Turn this off to enter " … … 1333 1354 "prijzen exclusief belasting in te voeren." 1334 1355 1335 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 161356 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:623 1336 1357 msgid "Free or discounted shipping" 1337 1358 msgstr "Gratis of afgeprijsde verzending" 1338 1359 1339 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 191360 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:626 1340 1361 msgid "Offer free shipping (over a certain amount)." 1341 1362 msgstr "Geen verzendkosten (vanaf een bepaald bedrag)." 1342 1363 1343 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 251364 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:632 1344 1365 msgid "Free or discounted shipping threshold" 1345 1366 msgstr "Gratis of verlaagd tarief vanaf" 1346 1367 1347 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 271368 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:634 1348 1369 msgid "" 1349 1370 "Free or discounted shipping prices are applied when the total price is over " … … 1353 1374 "totaalprijs deze waarde overschrijdt." 1354 1375 1355 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 331376 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:640 1356 1377 msgid "Free or discounted shipping and coupons" 1357 1378 msgstr "Gratis of verlaagd tarief en kortingsbonnen" 1358 1379 1359 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 351380 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:642 1360 1381 msgid "Calculate after applying coupons" 1361 1382 msgstr "Bereken pas na het toepassen van kortingsbonnen" 1362 1383 1363 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 361384 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:643 1364 1385 msgid "" 1365 1386 "Calculate eligibility for free or discounted shipping after applying coupons." … … 1368 1389 "toepassen van kortingsbonnen." 1369 1390 1370 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:64 21391 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:649 1371 1392 msgid "Apply additional rules after free or discount calculation" 1372 1393 msgstr "Pas extra regels toe na de gratis of afgeprijsde berekening" 1373 1394 1374 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 441395 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:651 1375 1396 msgid "Calculate additional rules after free or discount" 1376 1397 msgstr "Pas extra regels toe na de gratis of afgeprijsde berekening" 1377 1398 1378 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 451399 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:652 1379 1400 msgid "" 1380 1401 "When checked, rules will apply after free or discount calculation. When " … … 1386 1407 "afgeprijsde berekening als laatste uitgevoerd." 1387 1408 1388 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 781409 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:685 1389 1410 msgid "Enable delivery times" 1390 1411 msgstr "Bezorgtijden activeren" 1391 1412 1392 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:68 11413 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:688 1393 1414 msgid "" 1394 1415 "Show delivery date and time selection in the checkout and show delivery " … … 1398 1419 "dashboard." 1399 1420 1400 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 841421 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:691 1401 1422 msgid "Check stock" 1402 1423 msgstr "Controleren op voorraad" 1403 1424 1404 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 881425 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:695 1405 1426 msgid "Only show delivery times when all cart items are in stock." 1406 1427 msgstr "" … … 1408 1429 "zijn." 1409 1430 1410 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:69 11431 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:698 1411 1432 msgid "Number of days to display" 1412 1433 msgstr "Aantal dagen weergeven" 1413 1434 1414 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 6941435 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:701 1415 1436 msgid "Number of days to display for delivery times" 1416 1437 msgstr "Aantal dagen weergeven voor bezorgtijden" 1417 1438 1418 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:70 21419 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 031420 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 041421 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 051439 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:709 1440 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:710 1441 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:711 1442 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:712 1422 1443 #, php-format 1423 1444 msgid "%s available until" 1424 1445 msgstr "%s mogelijk tot" 1425 1446 1426 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 151447 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:722 1427 1448 #, php-format 1428 1449 msgid "Display %s day" … … 1431 1452 msgstr[1] "Toon %s dagen" 1432 1453 1433 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 451454 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:752 1434 1455 #, php-format 1435 1456 msgid "Ship on %ss" 1436 1457 msgstr "Verzenden op %s" 1437 1458 1438 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:76 21459 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:769 1439 1460 msgid "Next day" 1440 1461 msgstr "Volgende dag" 1441 1462 1442 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 641463 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:771 1443 1464 #, php-format 1444 1465 msgid "%s day" 1445 1466 msgstr "In %s dagen" 1446 1467 1447 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:8 731468 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:880 1448 1469 #: includes/view/order/meta/form/input/address.php:3 1449 1470 msgid "First Name" 1450 1471 msgstr "Voornaam" 1451 1472 1452 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:8 781473 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:885 1453 1474 #: includes/view/order/meta/form/input/address.php:10 1454 1475 msgid "Last Name" 1455 1476 msgstr "Achternaam" 1456 1477 1457 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:8 831478 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:890 1458 1479 #: includes/view/order/meta/form/input/address.php:17 1459 1480 msgid "Company" 1460 1481 msgstr "Bedrijf" 1461 1482 1462 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:8 891483 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:896 1463 1484 #: includes/view/order/meta/form/input/address.php:24 1464 1485 msgid "Postcode" 1465 1486 msgstr "Postcode" 1466 1487 1467 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 8941488 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:901 1468 1489 #: includes/view/order/meta/form/input/address.php:31 1469 1490 msgid "City" 1470 1491 msgstr "Plaats" 1471 1492 1472 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 8991493 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:906 1473 1494 #: includes/view/order/meta/form/input/address.php:38 1474 1495 msgid "Street" 1475 1496 msgstr "Straat" 1476 1497 1477 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:9 041498 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:911 1478 1499 #: includes/view/order/meta/form/input/address.php:45 1479 1500 msgid "Number" 1480 1501 msgstr "Huisnummer" 1481 1502 1482 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:9 091503 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:916 1483 1504 #: includes/view/order/meta/form/input/address.php:52 1484 1505 msgid "Addition" 1485 1506 msgstr "Toevoeging" 1486 1507 1487 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:9 141508 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:921 1488 1509 msgid "Country" 1489 1510 msgstr "Land" 1490 1511 1491 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:9 171512 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:924 1492 1513 msgid "Netherlands" 1493 1514 msgstr "Nederland" 1494 1515 1495 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:9 181516 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:925 1496 1517 msgid "Belgium" 1497 1518 msgstr "België" 1498 1519 1499 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:9 191520 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:926 1500 1521 msgid "Luxembourg" 1501 1522 msgstr "Luxemburg" 1502 1523 1503 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:92 01524 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:927 1504 1525 msgid "Austria" 1505 1526 msgstr "Oostenrijk" 1506 1527 1507 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:9 261528 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:933 1508 1529 #: includes/view/order/meta/form/input/address.php:59 1509 1530 msgid "Email" 1510 1531 msgstr "E-mail" 1511 1532 1512 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:93 11533 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:938 1513 1534 #: includes/view/order/meta/form/input/address.php:66 1514 1535 msgid "Phone" 1515 1536 msgstr "Telefoon" 1516 1537 1517 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:11 691538 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:1176 1518 1539 #, php-format 1519 1540 msgid "Change status to: %s" 1520 1541 msgstr "Verander status in: %s" 1521 1542 1522 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:11 741543 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:1181 1523 1544 #, php-format 1524 1545 msgid "On status: %s" 1525 1546 msgstr "Bij status: %s" 1526 1547 1527 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:11 851548 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:1192 1528 1549 #, php-format 1529 1550 msgid "Change status if order is: %s" 1530 1551 msgstr "Verander de status bij: %s" 1531 1552 1532 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:11 891553 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:1196 1533 1554 msgid "Apply status change when creating a label" 1534 1555 msgstr "Status veranderen na aanmaken label" … … 2035 2056 #~ msgid "OK" 2036 2057 #~ msgstr "OK" 2037 2038 #~ msgid "Message"2039 #~ msgstr "Bericht"2040 2058 2041 2059 #~ msgid "Enable reporting" -
dhl-for-woocommerce/tags/2.9.2/dhlpwoocommerce/languages/dhlpwc-nl_NL.po
r2697108 r2757781 2 2 msgstr "" 3 3 "Project-Id-Version: DHL\n" 4 "POT-Creation-Date: 2022-0 3-21 12:16+0100\n"4 "POT-Creation-Date: 2022-06-23 08:41+0200\n" 5 5 "PO-Revision-Date: \n" 6 6 "Last-Translator: \n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "X-Generator: Poedit 2.3.1\n"13 12 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 "X-Generator: Poedit 3.1\n" 14 14 15 15 #: includes/controller/admin/class-dhlpwc-controller-admin-order-metabox.php:131 … … 307 307 308 308 #: includes/controller/class-dhlpwc-controller-cart.php:51 309 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 39309 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:346 310 310 msgid "Free" 311 311 msgstr "Gratis" … … 422 422 msgstr "Tweede referentie" 423 423 424 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:177 424 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:162 425 msgid "Message" 426 msgstr "Bericht" 427 428 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:178 425 429 msgid "In euros (€)" 426 430 msgstr "In euros (€)" 427 431 428 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:24 0432 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:241 429 433 msgid "No matching capabilities found." 430 434 msgstr "Geen servicemogelijkheden gevonden." 431 435 432 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:3 06436 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:310 433 437 msgid "Download PDF label" 434 438 msgstr "Download PDF-label" 435 439 436 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:31 3440 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:317 437 441 msgid "Print PDF label" 438 442 msgstr "Print PDF-label" 439 443 440 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:32 0444 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:324 441 445 msgid "Follow track & trace" 442 446 msgstr "Volg track & trace" 443 447 444 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:3 26448 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:330 445 449 msgid "Delete PDF label" 446 450 msgstr "Verwijder PDF-label" 447 451 448 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:33 3452 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:337 449 453 msgid "Show Label Request" 450 454 msgstr "Toon labelverzoek" … … 459 463 460 464 #: includes/model/service/class-dhlpwc-model-service-parcelshop.php:153 461 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 23465 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:730 462 466 msgid "Monday" 463 467 msgstr "Maandag" 464 468 465 469 #: includes/model/service/class-dhlpwc-model-service-parcelshop.php:154 466 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 24470 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:731 467 471 msgid "Tuesday" 468 472 msgstr "Dinsdag" 469 473 470 474 #: includes/model/service/class-dhlpwc-model-service-parcelshop.php:155 471 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 25475 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:732 472 476 msgid "Wednesday" 473 477 msgstr "Woensdag" 474 478 475 479 #: includes/model/service/class-dhlpwc-model-service-parcelshop.php:156 476 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 26480 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:733 477 481 msgid "Thursday" 478 482 msgstr "Donderdag" 479 483 480 484 #: includes/model/service/class-dhlpwc-model-service-parcelshop.php:157 481 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 27485 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:734 482 486 msgid "Friday" 483 487 msgstr "Vrijdag" 484 488 485 489 #: includes/model/service/class-dhlpwc-model-service-parcelshop.php:158 486 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 28490 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:735 487 491 msgid "Saturday" 488 492 msgstr "Zaterdag" 489 493 490 494 #: includes/model/service/class-dhlpwc-model-service-parcelshop.php:159 491 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 29495 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:736 492 496 msgid "Sunday" 493 497 msgstr "Zondag" … … 654 658 msgstr "Leeftijdscheck 18+" 655 659 656 #: includes/model/service/class-dhlpwc-model-service-translation.php:57 660 #: includes/model/service/class-dhlpwc-model-service-translation.php:44 661 msgid "Message to the recipient" 662 msgstr "Bericht aan de ontvanger" 663 664 #: includes/model/service/class-dhlpwc-model-service-translation.php:58 657 665 msgid "Small" 658 666 msgstr "Small" 659 667 660 #: includes/model/service/class-dhlpwc-model-service-translation.php:5 8668 #: includes/model/service/class-dhlpwc-model-service-translation.php:59 661 669 msgid "Medium" 662 670 msgstr "Medium" 663 671 664 #: includes/model/service/class-dhlpwc-model-service-translation.php: 59672 #: includes/model/service/class-dhlpwc-model-service-translation.php:60 665 673 msgid "Large" 666 674 msgstr "Large" 667 675 668 #: includes/model/service/class-dhlpwc-model-service-translation.php:6 0676 #: includes/model/service/class-dhlpwc-model-service-translation.php:61 669 677 msgid "Pallet" 670 678 msgstr "Pallet" 671 679 672 #: includes/model/service/class-dhlpwc-model-service-translation.php:6 1680 #: includes/model/service/class-dhlpwc-model-service-translation.php:62 673 681 msgid "Bulky" 674 682 msgstr "Bulky" 675 683 676 #: includes/model/service/class-dhlpwc-model-service-translation.php:6 2684 #: includes/model/service/class-dhlpwc-model-service-translation.php:63 677 685 msgid "Roll" 678 686 msgstr "Lengtevracht" 679 687 680 #: includes/model/service/class-dhlpwc-model-service-translation.php:6 3688 #: includes/model/service/class-dhlpwc-model-service-translation.php:64 681 689 msgid "Extra Small" 682 690 msgstr "Extra Small" 683 691 684 #: includes/model/service/class-dhlpwc-model-service-translation.php:6 4692 #: includes/model/service/class-dhlpwc-model-service-translation.php:65 685 693 msgid "Extra Large" 686 694 msgstr "Extra Large" 687 695 688 #: includes/model/service/class-dhlpwc-model-service-translation.php:7 8696 #: includes/model/service/class-dhlpwc-model-service-translation.php:79 689 697 msgid "Mailbox only" 690 698 msgstr "Alleen brievenbus" 691 699 692 #: includes/model/service/class-dhlpwc-model-service-translation.php: 79700 #: includes/model/service/class-dhlpwc-model-service-translation.php:80 693 701 msgid "Smallest" 694 702 msgstr "Zo klein mogelijk" 695 703 696 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 0704 #: includes/model/service/class-dhlpwc-model-service-translation.php:81 697 705 msgid "Small only" 698 706 msgstr "Alleen Small" 699 707 700 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 1708 #: includes/model/service/class-dhlpwc-model-service-translation.php:82 701 709 msgid "Medium only" 702 710 msgstr "Alleen Medium" 703 711 704 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 2712 #: includes/model/service/class-dhlpwc-model-service-translation.php:83 705 713 msgid "Large only" 706 714 msgstr "Alleen Large" 707 715 708 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 3716 #: includes/model/service/class-dhlpwc-model-service-translation.php:84 709 717 msgid "Extra Small only" 710 718 msgstr "Alleen Extra Small" 711 719 712 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 4720 #: includes/model/service/class-dhlpwc-model-service-translation.php:85 713 721 msgid "Extra Large only" 714 722 msgstr "Alleen Extra Large" 715 723 716 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 5724 #: includes/model/service/class-dhlpwc-model-service-translation.php:86 717 725 msgid "Roll only" 718 726 msgstr "Alleen Lengtevracht" 719 727 720 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 6728 #: includes/model/service/class-dhlpwc-model-service-translation.php:87 721 729 msgid "Bulky only" 722 730 msgstr "Alleen Bulky" 723 731 724 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 7732 #: includes/model/service/class-dhlpwc-model-service-translation.php:88 725 733 msgid "Largest only" 726 734 msgstr "Zo groot mogelijk" 727 735 728 #: includes/model/service/class-dhlpwc-model-service-translation.php:10 6736 #: includes/model/service/class-dhlpwc-model-service-translation.php:107 729 737 msgid "" 730 738 "Once the shipment has been scanned, simply follow it with track & trace. " … … 779 787 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:258 780 788 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:265 781 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:291 782 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:307 783 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:322 784 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:347 785 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:393 786 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:405 787 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:423 788 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:439 789 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:463 790 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:469 791 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:485 792 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:618 793 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:680 794 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:686 795 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:747 789 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:272 790 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:298 791 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:314 792 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:329 793 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:354 794 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:400 795 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:412 796 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:430 797 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:446 798 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:470 799 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:476 800 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:492 801 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:625 802 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:687 803 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:693 804 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:754 796 805 #: includes/view/admin/settings/bulk-header.php:7 797 806 #: includes/view/admin/settings/bulk-services-header.php:7 … … 895 904 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:214 896 905 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:224 897 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 34906 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:441 898 907 #, php-format 899 908 msgid "Example: %s" … … 914 923 915 924 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:190 916 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 46925 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:453 917 926 msgid "Do not change order status" 918 927 msgstr "Geen status verandering" … … 964 973 965 974 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:249 975 msgid "Always enable message to the recipient if available" 976 msgstr "Altijd met ‘Bericht aan de ontvanger’ verzenden indien beschikbaar" 977 978 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:252 979 msgid "" 980 "When creating a label, always select the message to the recipient option by " 981 "default if the service is available." 982 msgstr "" 983 "Bij het aanmaken van een label, wordt standaard altijd de bezorgoptie " 984 "‘Bericht aan de ontvanger’ geselecteerd als het beschikbaar is." 985 986 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:256 966 987 msgid "Automatically add the order number as a reference, if possible" 967 988 msgstr "Print het ordernummer standaard als referentie op het label" 968 989 969 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:25 2990 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:259 970 991 msgid "" 971 992 "When creating a label, always add the order number as reference by default " … … 975 996 "label geprint als referentie indien mogelijk." 976 997 977 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 56998 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:263 978 999 msgid "Automatically add the order number as a second reference, if possible" 979 1000 msgstr "Print het ordernummer standaard als tweede referentie op het label" 980 1001 981 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 591002 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:266 982 1003 msgid "" 983 1004 "When creating a label, always add the order number as second reference by " … … 987 1008 "label geprint als tweede referentie indien mogelijk." 988 1009 989 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 631010 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:270 990 1011 msgid "Always enable return label if available" 991 1012 msgstr "Print standaard retourlabel" 992 1013 993 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 661014 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:273 994 1015 msgid "" 995 1016 "When creating a label, always select the return label option by default if " … … 999 1020 "mogelijk." 1000 1021 1001 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 741022 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:281 1002 1023 msgid "Choose mailbox, skip if unavailable" 1003 1024 msgstr "Gebruik brievenbus, sla over als het niet mogelijk is" 1004 1025 1005 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 751026 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:282 1006 1027 msgid "Choose the smallest available size" 1007 1028 msgstr "Gebruik de kleinste maat mogelijk" 1008 1029 1009 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 761010 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 771011 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 781012 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 791013 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:28 01014 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:28 11015 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:28 21030 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:283 1031 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:284 1032 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:285 1033 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:286 1034 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:287 1035 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:288 1036 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:289 1016 1037 #, php-format 1017 1038 msgid "Choose size '%s' only, skip if unavailable" 1018 1039 msgstr "Gebruik de maat '%s', sla over als het niet mogelijk is" 1019 1040 1020 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 831041 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:290 1021 1042 msgid "Choose the largest available size" 1022 1043 msgstr "Gebruik de grootste maat mogelijk" 1023 1044 1024 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 891045 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:296 1025 1046 msgid "Bulk label download" 1026 1047 msgstr "Meerdere labels downloaden" 1027 1048 1028 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 2951049 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:302 1029 1050 msgid "Bulk labels combined for page printing" 1030 1051 msgstr "Meerdere labels combineren voor downloaden" 1031 1052 1032 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 2981053 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:305 1033 1054 msgid "Default (1 label per page)" 1034 1055 msgstr "Default (1 label per pagina)" 1035 1056 1036 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 2991057 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:306 1037 1058 msgid "Print 3 labels per page for an A4 paper sheet" 1038 1059 msgstr "Download 3 labels per pagina voor A4 papier" 1039 1060 1040 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:30 11061 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:308 1041 1062 msgid "" 1042 1063 "When downloading labels with the bulk feature, labels can be combined to " … … 1046 1067 "labels te combineren zodat het eenvoudiger is om te printen op A4" 1047 1068 1048 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 051069 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:312 1049 1070 msgid "Validation rule: addresses require street number" 1050 1071 msgstr "Validatieregel: huisnummer verplicht" 1051 1072 1052 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 081073 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:315 1053 1074 msgid "" 1054 1075 "When activated, labels cannot be created for addresses without street number." … … 1057 1078 "huisnummer is ingevuld." 1058 1079 1059 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 141080 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:321 1060 1081 msgid "Shipment options" 1061 1082 msgstr "Bezorgopties" 1062 1083 1063 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 161084 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:323 1064 1085 msgid "Choose the shipment options for the recipients of your webshop." 1065 1086 msgstr "Kies de bezorgopties voor de ontvangers van uw webshop." 1066 1087 1067 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:32 01088 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:327 1068 1089 msgid "Send to business by default" 1069 1090 msgstr "Verzend standaard zakelijk" 1070 1091 1071 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 231092 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:330 1072 1093 msgid "" 1073 1094 "When enabled, by default labels will be created for business shipments and " … … 1078 1099 "zendingen." 1079 1100 1080 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 281101 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:335 1081 1102 msgid "Replace text label translation domain" 1082 1103 msgstr "Vervangende tekst vertaalcode" 1083 1104 1084 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:33 01105 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:337 1085 1106 msgid "" 1086 1107 "If using replacement text labels for shipping methods, it's possible to " … … 1092 1113 "gebruiken." 1093 1114 1094 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 341115 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:341 1095 1116 msgid "Display zero delivery fee price" 1096 1117 msgstr "Toon gratis bezorgprijzen" 1097 1118 1098 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 371119 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:344 1099 1120 msgid "Default (no display)" 1100 1121 msgstr "Standaard (toon geen prijs)" 1101 1122 1102 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 381123 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:345 1103 1124 msgid "Display as numeric currency (based on your locale)" 1104 1125 msgstr "Laat de prijs met valuta zien (volgens de valuta instellingen)" 1105 1126 1106 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 391127 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:346 1107 1128 #, php-format 1108 1129 msgid "Display the text \"(%s)\"" 1109 1130 msgstr "Voeg de tekst \"(%s)\" toe aan de bezorgoptie" 1110 1131 1111 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 451132 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:352 1112 1133 msgid "Use shipping zones" 1113 1134 msgstr "Gebruik verzendzones" 1114 1135 1115 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 481136 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:355 1116 1137 msgid "Set shipping methods per shipping zone." 1117 1138 msgstr "Stel bezorgopties per verzendzone in." 1118 1139 1119 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 531140 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:360 1120 1141 msgid "Change the sort behavior of shipment methods" 1121 1142 msgstr "Verander de sortering van de bezorgopties" 1122 1143 1123 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 561144 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:363 1124 1145 msgid "Default" 1125 1146 msgstr "Standaard" 1126 1147 1127 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 571148 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:364 1128 1149 msgid "Sort by cost - lowest first" 1129 1150 msgstr "Sorteer op kosten - laagste eerst" 1130 1151 1131 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 581152 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:365 1132 1153 msgid "Sort by cost - highest first" 1133 1154 msgstr "Sorteer op kosten - hoogste eerst" 1134 1155 1135 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 591156 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:366 1136 1157 msgid "Sort by custom sorting number" 1137 1158 msgstr "Sorteer op ingestelde sortering" 1138 1159 1139 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:37 01160 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:377 1140 1161 msgid "Delivery times" 1141 1162 msgstr "Bezorgtijden" 1142 1163 1143 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:37 21164 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:379 1144 1165 msgid "" 1145 1166 "Allow customers to select delivery times and manage when to send packages" 1146 1167 msgstr "Klanten kunnen bezorgtijden aangeven om de bezorgdatum aan te geven" 1147 1168 1148 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:38 11169 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:388 1149 1170 msgid "Default Shipping Address" 1150 1171 msgstr "Standaard verzendadres" 1151 1172 1152 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 831173 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:390 1153 1174 msgid "Fill in the details of your shipping address." 1154 1175 msgstr "Vul de gegevens van uw verzendadres in." 1155 1176 1156 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:39 11177 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:398 1157 1178 msgid "Different return address" 1158 1179 msgstr "Andere retouradres" 1159 1180 1160 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 3941181 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:401 1161 1182 msgid "Use a different address for return labels." 1162 1183 msgstr "Stel een ander adres voor retourzendingen." 1163 1184 1164 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 031185 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:410 1165 1186 msgid "Default hide sender address" 1166 1187 msgstr "Standaard verberg verzender adres" 1167 1188 1168 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 061189 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:413 1169 1190 msgid "Set a default address for the 'Hide sender' service option." 1170 1191 msgstr "Standaard adres bij de serviceoptie 'Verberg verzender'." 1171 1192 1172 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 161193 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:423 1173 1194 msgid "Printer settings" 1174 1195 msgstr "Print instellingen" 1175 1196 1176 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 181197 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:425 1177 1198 msgid "" 1178 1199 "Got a Zebra printer? Download our DHL Printer Service app and print directly " … … 1182 1203 "direct vanuit WooCommerce op uw Zebra printer te kunnen printen!" 1183 1204 1184 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:42 11205 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:428 1185 1206 msgid "Enable printer features" 1186 1207 msgstr "Print functionaliteit aanzetten" 1187 1208 1188 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 241209 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:431 1189 1210 msgid "" 1190 1211 "Print labels directly with your Zebra printer from within the order view and " … … 1194 1215 "order pagina." 1195 1216 1196 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 271217 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:434 1197 1218 msgid "Search printers" 1198 1219 msgstr "Zoek printers" 1199 1220 1200 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:43 21221 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:439 1201 1222 msgid "PrinterID" 1202 1223 msgstr "PrinterID" 1203 1224 1204 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 371225 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:444 1205 1226 msgid "Enable auto printer features" 1206 1227 msgstr "Activeer automatisch printen" 1207 1228 1208 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:44 01229 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:447 1209 1230 msgid "" 1210 1231 "Automatically create and print labels when order has a specific status and " … … 1214 1235 "(alleen van toepassing wanneer er nog geen labels zijn)" 1215 1236 1216 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 431237 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:450 1217 1238 msgid "Auto print orders with this status" 1218 1239 msgstr "Print automatisch bij de volgende status" 1219 1240 1220 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 561241 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:463 1221 1242 msgid "Debug Settings" 1222 1243 msgstr "Debug instellingen" 1223 1244 1224 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 581245 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:465 1225 1246 msgid "Settings for developers." 1226 1247 msgstr "Instellingen voor ontwikkelaars." 1227 1248 1228 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:46 11249 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:468 1229 1250 msgid "Report errors" 1230 1251 msgstr "Rapporteer problemen" 1231 1252 1232 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 641253 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:471 1233 1254 msgid "" 1234 1255 "Enable this and select one of the reporting methods below to automatically " … … 1238 1259 "automatisch door te sturen naar het ontwikkelteam." 1239 1260 1240 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 671261 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:474 1241 1262 msgid "By mail" 1242 1263 msgstr "Via e-mail" 1243 1264 1244 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:47 01265 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:477 1245 1266 msgid "Errors will be automatically forwarded by e-mail." 1246 1267 msgstr "Problemen worden automatisch doorgestuurd via e-mail." 1247 1268 1248 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 731269 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:480 1249 1270 msgid "By custom URL" 1250 1271 msgstr "Via URL" 1251 1272 1252 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 751273 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:482 1253 1274 msgid "" 1254 1275 "Alternative API-URL. Used by developers. Will not be used if left empty " … … 1258 1279 "niet te gebruiken (aanbevolen)." 1259 1280 1260 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 781281 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:485 1261 1282 msgid "External custom URL" 1262 1283 msgstr "Via externe URL" 1263 1284 1264 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:48 01285 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:487 1265 1286 msgid "" 1266 1287 "Alternative secondary API-URL. Used by developers. Will not be used if left " … … 1270 1291 "instelling niet te gebruiken (aanbevolen)." 1271 1292 1272 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 831293 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:490 1273 1294 msgid "Log Requests for debugging" 1274 1295 msgstr "Verzoeken opslaan om problemen op te lossen" 1275 1296 1276 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 861297 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:493 1277 1298 msgid "Enable this and you can check your request." 1278 1299 msgstr "" … … 1280 1301 "voor niet-ontwikkelaars)." 1281 1302 1282 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 891303 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:496 1283 1304 msgid "Test migrate notification" 1284 1305 msgstr "Test migratie melding" 1285 1306 1286 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:49 21307 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:499 1287 1308 msgid "Off" 1288 1309 msgstr "Uit" 1289 1310 1290 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 4931311 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:500 1291 1312 msgid "Show low level notification" 1292 1313 msgstr "Toon laag niveau melding" 1293 1314 1294 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 4941315 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:501 1295 1316 msgid "Show middle level notification" 1296 1317 msgstr "Toon midden niveau melding" 1297 1318 1298 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 4951319 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:502 1299 1320 msgid "Show high level notification" 1300 1321 msgstr "Toon hoog niveau melding" 1301 1322 1302 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:50 21323 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:509 1303 1324 msgid "Feedback" 1304 1325 msgstr "Feedback" 1305 1326 1306 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:5 041327 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:511 1307 1328 msgid "" 1308 1329 "Got questions or feedback about the plugin? Please let us know by clicking " … … 1312 1333 "ons weten en klik hier." 1313 1334 1314 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:5 541335 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:561 1315 1336 msgid "Use default text label" 1316 1337 msgstr "Standaard tekst" 1317 1338 1318 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:59 21339 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:599 1319 1340 #, php-format 1320 1341 msgid "Show service: '%s'" 1321 1342 msgstr "Toon serviceoptie: ‘%s’" 1322 1343 1323 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 081344 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:615 1324 1345 msgid "Enter prices with tax included" 1325 1346 msgstr "Prijzen inclusief belasting invoeren" 1326 1347 1327 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:61 01348 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:617 1328 1349 msgid "" 1329 1350 "Turn this on to enter prices with the tax included. Turn this off to enter " … … 1333 1354 "prijzen exclusief belasting in te voeren." 1334 1355 1335 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 161356 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:623 1336 1357 msgid "Free or discounted shipping" 1337 1358 msgstr "Gratis of afgeprijsde verzending" 1338 1359 1339 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 191360 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:626 1340 1361 msgid "Offer free shipping (over a certain amount)." 1341 1362 msgstr "Geen verzendkosten (vanaf een bepaald bedrag)." 1342 1363 1343 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 251364 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:632 1344 1365 msgid "Free or discounted shipping threshold" 1345 1366 msgstr "Gratis of verlaagd tarief vanaf" 1346 1367 1347 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 271368 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:634 1348 1369 msgid "" 1349 1370 "Free or discounted shipping prices are applied when the total price is over " … … 1353 1374 "totaalprijs deze waarde overschrijdt." 1354 1375 1355 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 331376 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:640 1356 1377 msgid "Free or discounted shipping and coupons" 1357 1378 msgstr "Gratis of verlaagd tarief en kortingsbonnen" 1358 1379 1359 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 351380 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:642 1360 1381 msgid "Calculate after applying coupons" 1361 1382 msgstr "Bereken pas na het toepassen van kortingsbonnen" 1362 1383 1363 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 361384 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:643 1364 1385 msgid "" 1365 1386 "Calculate eligibility for free or discounted shipping after applying coupons." … … 1368 1389 "toepassen van kortingsbonnen." 1369 1390 1370 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:64 21391 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:649 1371 1392 msgid "Apply additional rules after free or discount calculation" 1372 1393 msgstr "Pas extra regels toe na de gratis of afgeprijsde berekening" 1373 1394 1374 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 441395 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:651 1375 1396 msgid "Calculate additional rules after free or discount" 1376 1397 msgstr "Pas extra regels toe na de gratis of afgeprijsde berekening" 1377 1398 1378 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 451399 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:652 1379 1400 msgid "" 1380 1401 "When checked, rules will apply after free or discount calculation. When " … … 1386 1407 "afgeprijsde berekening als laatste uitgevoerd." 1387 1408 1388 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 781409 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:685 1389 1410 msgid "Enable delivery times" 1390 1411 msgstr "Bezorgtijden activeren" 1391 1412 1392 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:68 11413 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:688 1393 1414 msgid "" 1394 1415 "Show delivery date and time selection in the checkout and show delivery " … … 1398 1419 "dashboard." 1399 1420 1400 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 841421 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:691 1401 1422 msgid "Check stock" 1402 1423 msgstr "Controleren op voorraad" 1403 1424 1404 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 881425 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:695 1405 1426 msgid "Only show delivery times when all cart items are in stock." 1406 1427 msgstr "" … … 1408 1429 "zijn." 1409 1430 1410 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:69 11431 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:698 1411 1432 msgid "Number of days to display" 1412 1433 msgstr "Aantal dagen weergeven" 1413 1434 1414 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 6941435 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:701 1415 1436 msgid "Number of days to display for delivery times" 1416 1437 msgstr "Aantal dagen weergeven voor bezorgtijden" 1417 1438 1418 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:70 21419 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 031420 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 041421 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 051439 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:709 1440 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:710 1441 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:711 1442 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:712 1422 1443 #, php-format 1423 1444 msgid "%s available until" 1424 1445 msgstr "%s mogelijk tot" 1425 1446 1426 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 151447 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:722 1427 1448 #, php-format 1428 1449 msgid "Display %s day" … … 1431 1452 msgstr[1] "Toon %s dagen" 1432 1453 1433 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 451454 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:752 1434 1455 #, php-format 1435 1456 msgid "Ship on %ss" 1436 1457 msgstr "Verzenden op %s" 1437 1458 1438 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:76 21459 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:769 1439 1460 msgid "Next day" 1440 1461 msgstr "Volgende dag" 1441 1462 1442 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 641463 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:771 1443 1464 #, php-format 1444 1465 msgid "%s day" 1445 1466 msgstr "In %s dagen" 1446 1467 1447 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:8 731468 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:880 1448 1469 #: includes/view/order/meta/form/input/address.php:3 1449 1470 msgid "First Name" 1450 1471 msgstr "Voornaam" 1451 1472 1452 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:8 781473 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:885 1453 1474 #: includes/view/order/meta/form/input/address.php:10 1454 1475 msgid "Last Name" 1455 1476 msgstr "Achternaam" 1456 1477 1457 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:8 831478 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:890 1458 1479 #: includes/view/order/meta/form/input/address.php:17 1459 1480 msgid "Company" 1460 1481 msgstr "Bedrijf" 1461 1482 1462 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:8 891483 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:896 1463 1484 #: includes/view/order/meta/form/input/address.php:24 1464 1485 msgid "Postcode" 1465 1486 msgstr "Postcode" 1466 1487 1467 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 8941488 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:901 1468 1489 #: includes/view/order/meta/form/input/address.php:31 1469 1490 msgid "City" 1470 1491 msgstr "Plaats" 1471 1492 1472 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 8991493 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:906 1473 1494 #: includes/view/order/meta/form/input/address.php:38 1474 1495 msgid "Street" 1475 1496 msgstr "Straat" 1476 1497 1477 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:9 041498 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:911 1478 1499 #: includes/view/order/meta/form/input/address.php:45 1479 1500 msgid "Number" 1480 1501 msgstr "Huisnummer" 1481 1502 1482 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:9 091503 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:916 1483 1504 #: includes/view/order/meta/form/input/address.php:52 1484 1505 msgid "Addition" 1485 1506 msgstr "Toevoeging" 1486 1507 1487 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:9 141508 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:921 1488 1509 msgid "Country" 1489 1510 msgstr "Land" 1490 1511 1491 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:9 171512 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:924 1492 1513 msgid "Netherlands" 1493 1514 msgstr "Nederland" 1494 1515 1495 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:9 181516 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:925 1496 1517 msgid "Belgium" 1497 1518 msgstr "België" 1498 1519 1499 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:9 191520 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:926 1500 1521 msgid "Luxembourg" 1501 1522 msgstr "Luxemburg" 1502 1523 1503 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:92 01524 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:927 1504 1525 msgid "Austria" 1505 1526 msgstr "Oostenrijk" 1506 1527 1507 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:9 261528 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:933 1508 1529 #: includes/view/order/meta/form/input/address.php:59 1509 1530 msgid "Email" 1510 1531 msgstr "E-mail" 1511 1532 1512 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:93 11533 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:938 1513 1534 #: includes/view/order/meta/form/input/address.php:66 1514 1535 msgid "Phone" 1515 1536 msgstr "Telefoon" 1516 1537 1517 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:11 691538 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:1176 1518 1539 #, php-format 1519 1540 msgid "Change status to: %s" 1520 1541 msgstr "Verander status in: %s" 1521 1542 1522 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:11 741543 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:1181 1523 1544 #, php-format 1524 1545 msgid "On status: %s" 1525 1546 msgstr "Bij status: %s" 1526 1547 1527 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:11 851548 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:1192 1528 1549 #, php-format 1529 1550 msgid "Change status if order is: %s" 1530 1551 msgstr "Verander de status bij: %s" 1531 1552 1532 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:11 891553 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:1196 1533 1554 msgid "Apply status change when creating a label" 1534 1555 msgstr "Status veranderen na aanmaken label" … … 2035 2056 #~ msgid "OK" 2036 2057 #~ msgstr "OK" 2037 2038 #~ msgid "Message"2039 #~ msgstr "Bericht"2040 2058 2041 2059 #~ msgid "Enable reporting" -
dhl-for-woocommerce/tags/2.9.2/dhlpwoocommerce/languages/dhlpwc.pot
r2697108 r2757781 3 3 msgstr "" 4 4 "Project-Id-Version: \n" 5 "POT-Creation-Date: 2022-0 3-21 12:16+0100\n"5 "POT-Creation-Date: 2022-06-23 08:41+0200\n" 6 6 "PO-Revision-Date: 2017-10-06 12:50+0200\n" 7 7 "Last-Translator: \n" … … 11 11 "Content-Type: text/plain; charset=UTF-8\n" 12 12 "Content-Transfer-Encoding: 8bit\n" 13 "X-Generator: Poedit 2.3.1\n" 13 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 14 "X-Generator: Poedit 3.1\n" 14 15 "X-Poedit-Basepath: ..\n" 15 "Plural-Forms: nplurals=2; plural=(n != 1);\n"16 16 "X-Poedit-KeywordsList: __;_e;esc_attr_e;_n;_n:1,2\n" 17 17 "X-Poedit-SearchPath-0: .\n" … … 306 306 307 307 #: includes/controller/class-dhlpwc-controller-cart.php:51 308 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 39308 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:346 309 309 msgid "Free" 310 310 msgstr "" … … 407 407 msgstr "" 408 408 409 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:177 409 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:162 410 msgid "Message" 411 msgstr "" 412 413 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:178 410 414 msgid "In euros (€)" 411 415 msgstr "" 412 416 413 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:24 0417 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:241 414 418 msgid "No matching capabilities found." 415 419 msgstr "" 416 420 417 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:3 06421 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:310 418 422 msgid "Download PDF label" 419 423 msgstr "" 420 424 421 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:31 3425 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:317 422 426 msgid "Print PDF label" 423 427 msgstr "" 424 428 425 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:32 0429 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:324 426 430 msgid "Follow track & trace" 427 431 msgstr "" 428 432 429 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:3 26433 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:330 430 434 msgid "Delete PDF label" 431 435 msgstr "" 432 436 433 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:33 3437 #: includes/model/service/class-dhlpwc-model-service-label-metabox.php:337 434 438 msgid "Show Label Request" 435 439 msgstr "" … … 444 448 445 449 #: includes/model/service/class-dhlpwc-model-service-parcelshop.php:153 446 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 23450 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:730 447 451 msgid "Monday" 448 452 msgstr "" 449 453 450 454 #: includes/model/service/class-dhlpwc-model-service-parcelshop.php:154 451 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 24455 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:731 452 456 msgid "Tuesday" 453 457 msgstr "" 454 458 455 459 #: includes/model/service/class-dhlpwc-model-service-parcelshop.php:155 456 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 25460 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:732 457 461 msgid "Wednesday" 458 462 msgstr "" 459 463 460 464 #: includes/model/service/class-dhlpwc-model-service-parcelshop.php:156 461 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 26465 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:733 462 466 msgid "Thursday" 463 467 msgstr "" 464 468 465 469 #: includes/model/service/class-dhlpwc-model-service-parcelshop.php:157 466 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 27470 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:734 467 471 msgid "Friday" 468 472 msgstr "" 469 473 470 474 #: includes/model/service/class-dhlpwc-model-service-parcelshop.php:158 471 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 28475 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:735 472 476 msgid "Saturday" 473 477 msgstr "" 474 478 475 479 #: includes/model/service/class-dhlpwc-model-service-parcelshop.php:159 476 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 29480 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:736 477 481 msgid "Sunday" 478 482 msgstr "" … … 639 643 msgstr "" 640 644 641 #: includes/model/service/class-dhlpwc-model-service-translation.php:57 645 #: includes/model/service/class-dhlpwc-model-service-translation.php:44 646 msgid "Message to the recipient" 647 msgstr "" 648 649 #: includes/model/service/class-dhlpwc-model-service-translation.php:58 642 650 msgid "Small" 643 651 msgstr "" 644 652 645 #: includes/model/service/class-dhlpwc-model-service-translation.php:5 8653 #: includes/model/service/class-dhlpwc-model-service-translation.php:59 646 654 msgid "Medium" 647 655 msgstr "" 648 656 649 #: includes/model/service/class-dhlpwc-model-service-translation.php: 59657 #: includes/model/service/class-dhlpwc-model-service-translation.php:60 650 658 msgid "Large" 651 659 msgstr "" 652 660 653 #: includes/model/service/class-dhlpwc-model-service-translation.php:6 0661 #: includes/model/service/class-dhlpwc-model-service-translation.php:61 654 662 msgid "Pallet" 655 663 msgstr "" 656 664 657 #: includes/model/service/class-dhlpwc-model-service-translation.php:6 1665 #: includes/model/service/class-dhlpwc-model-service-translation.php:62 658 666 msgid "Bulky" 659 667 msgstr "" 660 668 661 #: includes/model/service/class-dhlpwc-model-service-translation.php:6 2669 #: includes/model/service/class-dhlpwc-model-service-translation.php:63 662 670 msgid "Roll" 663 671 msgstr "" 664 672 665 #: includes/model/service/class-dhlpwc-model-service-translation.php:6 3673 #: includes/model/service/class-dhlpwc-model-service-translation.php:64 666 674 msgid "Extra Small" 667 675 msgstr "" 668 676 669 #: includes/model/service/class-dhlpwc-model-service-translation.php:6 4677 #: includes/model/service/class-dhlpwc-model-service-translation.php:65 670 678 msgid "Extra Large" 671 679 msgstr "" 672 680 673 #: includes/model/service/class-dhlpwc-model-service-translation.php:7 8681 #: includes/model/service/class-dhlpwc-model-service-translation.php:79 674 682 msgid "Mailbox only" 675 683 msgstr "" 676 684 677 #: includes/model/service/class-dhlpwc-model-service-translation.php: 79685 #: includes/model/service/class-dhlpwc-model-service-translation.php:80 678 686 msgid "Smallest" 679 687 msgstr "" 680 688 681 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 0689 #: includes/model/service/class-dhlpwc-model-service-translation.php:81 682 690 msgid "Small only" 683 691 msgstr "" 684 692 685 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 1693 #: includes/model/service/class-dhlpwc-model-service-translation.php:82 686 694 msgid "Medium only" 687 695 msgstr "" 688 696 689 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 2697 #: includes/model/service/class-dhlpwc-model-service-translation.php:83 690 698 msgid "Large only" 691 699 msgstr "" 692 700 693 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 3701 #: includes/model/service/class-dhlpwc-model-service-translation.php:84 694 702 msgid "Extra Small only" 695 703 msgstr "" 696 704 697 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 4705 #: includes/model/service/class-dhlpwc-model-service-translation.php:85 698 706 msgid "Extra Large only" 699 707 msgstr "" 700 708 701 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 5709 #: includes/model/service/class-dhlpwc-model-service-translation.php:86 702 710 msgid "Roll only" 703 711 msgstr "" 704 712 705 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 6713 #: includes/model/service/class-dhlpwc-model-service-translation.php:87 706 714 msgid "Bulky only" 707 715 msgstr "" 708 716 709 #: includes/model/service/class-dhlpwc-model-service-translation.php:8 7717 #: includes/model/service/class-dhlpwc-model-service-translation.php:88 710 718 msgid "Largest only" 711 719 msgstr "" 712 720 713 #: includes/model/service/class-dhlpwc-model-service-translation.php:10 6721 #: includes/model/service/class-dhlpwc-model-service-translation.php:107 714 722 msgid "" 715 723 "Once the shipment has been scanned, simply follow it with track & " … … 757 765 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:258 758 766 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:265 759 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:291 760 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:307 761 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:322 762 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:347 763 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:393 764 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:405 765 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:423 766 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:439 767 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:463 768 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:469 769 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:485 770 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:618 771 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:680 772 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:686 773 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:747 767 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:272 768 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:298 769 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:314 770 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:329 771 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:354 772 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:400 773 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:412 774 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:430 775 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:446 776 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:470 777 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:476 778 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:492 779 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:625 780 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:687 781 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:693 782 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:754 774 783 #: includes/view/admin/settings/bulk-header.php:7 775 784 #: includes/view/admin/settings/bulk-services-header.php:7 … … 860 869 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:214 861 870 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:224 862 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 34871 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:441 863 872 #, php-format 864 873 msgid "Example: %s" … … 875 884 876 885 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:190 877 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 46886 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:453 878 887 msgid "Do not change order status" 879 888 msgstr "" … … 919 928 920 929 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:249 930 msgid "Always enable message to the recipient if available" 931 msgstr "" 932 933 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:252 934 msgid "" 935 "When creating a label, always select the message to the recipient " 936 "option by default if the service is available." 937 msgstr "" 938 939 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:256 921 940 msgid "Automatically add the order number as a reference, if possible" 922 941 msgstr "" 923 942 924 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:25 2943 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:259 925 944 msgid "" 926 945 "When creating a label, always add the order number as reference by " … … 928 947 msgstr "" 929 948 930 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 56949 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:263 931 950 msgid "" 932 951 "Automatically add the order number as a second reference, if possible" 933 952 msgstr "" 934 953 935 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 59954 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:266 936 955 msgid "" 937 956 "When creating a label, always add the order number as second reference " … … 939 958 msgstr "" 940 959 941 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 63960 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:270 942 961 msgid "Always enable return label if available" 943 962 msgstr "" 944 963 945 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 66964 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:273 946 965 msgid "" 947 966 "When creating a label, always select the return label option by default " … … 949 968 msgstr "" 950 969 951 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 74970 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:281 952 971 msgid "Choose mailbox, skip if unavailable" 953 972 msgstr "" 954 973 955 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 75974 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:282 956 975 msgid "Choose the smallest available size" 957 976 msgstr "" 958 977 959 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 76960 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 77961 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 78962 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 79963 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:28 0964 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:28 1965 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:28 2978 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:283 979 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:284 980 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:285 981 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:286 982 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:287 983 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:288 984 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:289 966 985 #, php-format 967 986 msgid "Choose size '%s' only, skip if unavailable" 968 987 msgstr "" 969 988 970 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 83989 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:290 971 990 msgid "Choose the largest available size" 972 991 msgstr "" 973 992 974 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:2 89993 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:296 975 994 msgid "Bulk label download" 976 995 msgstr "" 977 996 978 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 295997 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:302 979 998 msgid "Bulk labels combined for page printing" 980 999 msgstr "" 981 1000 982 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 2981001 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:305 983 1002 msgid "Default (1 label per page)" 984 1003 msgstr "" 985 1004 986 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 2991005 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:306 987 1006 msgid "Print 3 labels per page for an A4 paper sheet" 988 1007 msgstr "" 989 1008 990 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:30 11009 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:308 991 1010 msgid "" 992 1011 "When downloading labels with the bulk feature, labels can be combined " … … 994 1013 msgstr "" 995 1014 996 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 051015 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:312 997 1016 msgid "Validation rule: addresses require street number" 998 1017 msgstr "" 999 1018 1000 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 081019 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:315 1001 1020 msgid "" 1002 1021 "When activated, labels cannot be created for addresses without street " … … 1004 1023 msgstr "" 1005 1024 1006 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 141025 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:321 1007 1026 msgid "Shipment options" 1008 1027 msgstr "" 1009 1028 1010 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 161029 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:323 1011 1030 msgid "Choose the shipment options for the recipients of your webshop." 1012 1031 msgstr "" 1013 1032 1014 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:32 01033 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:327 1015 1034 msgid "Send to business by default" 1016 1035 msgstr "" 1017 1036 1018 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 231037 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:330 1019 1038 msgid "" 1020 1039 "When enabled, by default labels will be created for business shipments " … … 1022 1041 msgstr "" 1023 1042 1024 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 281043 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:335 1025 1044 msgid "Replace text label translation domain" 1026 1045 msgstr "" 1027 1046 1028 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:33 01047 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:337 1029 1048 msgid "" 1030 1049 "If using replacement text labels for shipping methods, it's possible to " … … 1033 1052 msgstr "" 1034 1053 1035 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 341054 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:341 1036 1055 msgid "Display zero delivery fee price" 1037 1056 msgstr "" 1038 1057 1039 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 371058 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:344 1040 1059 msgid "Default (no display)" 1041 1060 msgstr "" 1042 1061 1043 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 381062 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:345 1044 1063 msgid "Display as numeric currency (based on your locale)" 1045 1064 msgstr "" 1046 1065 1047 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 391066 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:346 1048 1067 #, php-format 1049 1068 msgid "Display the text \"(%s)\"" 1050 1069 msgstr "" 1051 1070 1052 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 451071 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:352 1053 1072 msgid "Use shipping zones" 1054 1073 msgstr "" 1055 1074 1056 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 481075 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:355 1057 1076 msgid "Set shipping methods per shipping zone." 1058 1077 msgstr "" 1059 1078 1060 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 531079 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:360 1061 1080 msgid "Change the sort behavior of shipment methods" 1062 1081 msgstr "" 1063 1082 1064 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 561083 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:363 1065 1084 msgid "Default" 1066 1085 msgstr "" 1067 1086 1068 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 571087 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:364 1069 1088 msgid "Sort by cost - lowest first" 1070 1089 msgstr "" 1071 1090 1072 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 581091 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:365 1073 1092 msgid "Sort by cost - highest first" 1074 1093 msgstr "" 1075 1094 1076 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 591095 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:366 1077 1096 msgid "Sort by custom sorting number" 1078 1097 msgstr "" 1079 1098 1080 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:37 01099 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:377 1081 1100 msgid "Delivery times" 1082 1101 msgstr "" 1083 1102 1084 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:37 21103 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:379 1085 1104 msgid "" 1086 1105 "Allow customers to select delivery times and manage when to send " … … 1088 1107 msgstr "" 1089 1108 1090 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:38 11109 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:388 1091 1110 msgid "Default Shipping Address" 1092 1111 msgstr "" 1093 1112 1094 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:3 831113 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:390 1095 1114 msgid "Fill in the details of your shipping address." 1096 1115 msgstr "" 1097 1116 1098 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:39 11117 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:398 1099 1118 msgid "Different return address" 1100 1119 msgstr "" 1101 1120 1102 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 3941121 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:401 1103 1122 msgid "Use a different address for return labels." 1104 1123 msgstr "" 1105 1124 1106 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 031125 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:410 1107 1126 msgid "Default hide sender address" 1108 1127 msgstr "" 1109 1128 1110 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 061129 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:413 1111 1130 msgid "Set a default address for the 'Hide sender' service option." 1112 1131 msgstr "" 1113 1132 1114 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 161133 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:423 1115 1134 msgid "Printer settings" 1116 1135 msgstr "" 1117 1136 1118 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 181137 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:425 1119 1138 msgid "" 1120 1139 "Got a Zebra printer? Download our DHL Printer Service app and print " … … 1122 1141 msgstr "" 1123 1142 1124 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:42 11143 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:428 1125 1144 msgid "Enable printer features" 1126 1145 msgstr "" 1127 1146 1128 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 241147 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:431 1129 1148 msgid "" 1130 1149 "Print labels directly with your Zebra printer from within the order " … … 1132 1151 msgstr "" 1133 1152 1134 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 271153 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:434 1135 1154 msgid "Search printers" 1136 1155 msgstr "" 1137 1156 1138 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:43 21157 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:439 1139 1158 msgid "PrinterID" 1140 1159 msgstr "" 1141 1160 1142 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 371161 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:444 1143 1162 msgid "Enable auto printer features" 1144 1163 msgstr "" 1145 1164 1146 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:44 01165 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:447 1147 1166 msgid "" 1148 1167 "Automatically create and print labels when order has a specific status " … … 1150 1169 msgstr "" 1151 1170 1152 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 431171 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:450 1153 1172 msgid "Auto print orders with this status" 1154 1173 msgstr "" 1155 1174 1156 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 561175 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:463 1157 1176 msgid "Debug Settings" 1158 1177 msgstr "" 1159 1178 1160 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 581179 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:465 1161 1180 msgid "Settings for developers." 1162 1181 msgstr "" 1163 1182 1164 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:46 11183 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:468 1165 1184 msgid "Report errors" 1166 1185 msgstr "" 1167 1186 1168 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 641187 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:471 1169 1188 msgid "" 1170 1189 "Enable this and select one of the reporting methods below to " … … 1172 1191 msgstr "" 1173 1192 1174 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 671193 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:474 1175 1194 msgid "By mail" 1176 1195 msgstr "" 1177 1196 1178 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:47 01197 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:477 1179 1198 msgid "Errors will be automatically forwarded by e-mail." 1180 1199 msgstr "" 1181 1200 1182 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 731201 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:480 1183 1202 msgid "By custom URL" 1184 1203 msgstr "" 1185 1204 1186 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 751205 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:482 1187 1206 msgid "" 1188 1207 "Alternative API-URL. Used by developers. Will not be used if left empty " … … 1190 1209 msgstr "" 1191 1210 1192 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 781211 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:485 1193 1212 msgid "External custom URL" 1194 1213 msgstr "" 1195 1214 1196 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:48 01215 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:487 1197 1216 msgid "" 1198 1217 "Alternative secondary API-URL. Used by developers. Will not be used if " … … 1200 1219 msgstr "" 1201 1220 1202 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 831221 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:490 1203 1222 msgid "Log Requests for debugging" 1204 1223 msgstr "" 1205 1224 1206 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 861225 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:493 1207 1226 msgid "Enable this and you can check your request." 1208 1227 msgstr "" 1209 1228 1210 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:4 891229 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:496 1211 1230 msgid "Test migrate notification" 1212 1231 msgstr "" 1213 1232 1214 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:49 21233 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:499 1215 1234 msgid "Off" 1216 1235 msgstr "" 1217 1236 1218 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 4931237 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:500 1219 1238 msgid "Show low level notification" 1220 1239 msgstr "" 1221 1240 1222 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 4941241 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:501 1223 1242 msgid "Show middle level notification" 1224 1243 msgstr "" 1225 1244 1226 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 4951245 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:502 1227 1246 msgid "Show high level notification" 1228 1247 msgstr "" 1229 1248 1230 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:50 21249 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:509 1231 1250 msgid "Feedback" 1232 1251 msgstr "" 1233 1252 1234 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:5 041253 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:511 1235 1254 msgid "" 1236 1255 "Got questions or feedback about the plugin? Please let us know by " … … 1238 1257 msgstr "" 1239 1258 1240 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:5 541259 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:561 1241 1260 msgid "Use default text label" 1242 1261 msgstr "" 1243 1262 1244 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:59 21263 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:599 1245 1264 #, php-format 1246 1265 msgid "Show service: '%s'" 1247 1266 msgstr "" 1248 1267 1249 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 081268 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:615 1250 1269 msgid "Enter prices with tax included" 1251 1270 msgstr "" 1252 1271 1253 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:61 01272 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:617 1254 1273 msgid "" 1255 1274 "Turn this on to enter prices with the tax included. Turn this off to " … … 1257 1276 msgstr "" 1258 1277 1259 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 161278 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:623 1260 1279 msgid "Free or discounted shipping" 1261 1280 msgstr "" 1262 1281 1263 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 191282 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:626 1264 1283 msgid "Offer free shipping (over a certain amount)." 1265 1284 msgstr "" 1266 1285 1267 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 251286 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:632 1268 1287 msgid "Free or discounted shipping threshold" 1269 1288 msgstr "" 1270 1289 1271 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 271290 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:634 1272 1291 msgid "" 1273 1292 "Free or discounted shipping prices are applied when the total price is " … … 1275 1294 msgstr "" 1276 1295 1277 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 331296 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:640 1278 1297 msgid "Free or discounted shipping and coupons" 1279 1298 msgstr "" 1280 1299 1281 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 351300 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:642 1282 1301 msgid "Calculate after applying coupons" 1283 1302 msgstr "" 1284 1303 1285 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 361304 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:643 1286 1305 msgid "" 1287 1306 "Calculate eligibility for free or discounted shipping after applying " … … 1289 1308 msgstr "" 1290 1309 1291 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:64 21310 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:649 1292 1311 msgid "Apply additional rules after free or discount calculation" 1293 1312 msgstr "" 1294 1313 1295 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 441314 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:651 1296 1315 msgid "Calculate additional rules after free or discount" 1297 1316 msgstr "" 1298 1317 1299 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 451318 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:652 1300 1319 msgid "" 1301 1320 "When checked, rules will apply after free or discount calculation. When " … … 1304 1323 msgstr "" 1305 1324 1306 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 781325 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:685 1307 1326 msgid "Enable delivery times" 1308 1327 msgstr "" 1309 1328 1310 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:68 11329 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:688 1311 1330 msgid "" 1312 1331 "Show delivery date and time selection in the checkout and show delivery " … … 1314 1333 msgstr "" 1315 1334 1316 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 841335 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:691 1317 1336 msgid "Check stock" 1318 1337 msgstr "" 1319 1338 1320 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:6 881339 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:695 1321 1340 msgid "Only show delivery times when all cart items are in stock." 1322 1341 msgstr "" 1323 1342 1324 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:69 11343 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:698 1325 1344 msgid "Number of days to display" 1326 1345 msgstr "" 1327 1346 1328 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 6941347 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:701 1329 1348 msgid "Number of days to display for delivery times" 1330 1349 msgstr "" 1331 1350 1332 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:70 21333 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 031334 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 041335 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 051351 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:709 1352 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:710 1353 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:711 1354 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:712 1336 1355 #, php-format 1337 1356 msgid "%s available until" 1338 1357 msgstr "" 1339 1358 1340 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 151359 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:722 1341 1360 #, php-format 1342 1361 msgid "Display %s day" … … 1345 1364 msgstr[1] "" 1346 1365 1347 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 451366 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:752 1348 1367 #, php-format 1349 1368 msgid "Ship on %ss" 1350 1369 msgstr "" 1351 1370 1352 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:76 21371 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:769 1353 1372 msgid "Next day" 1354 1373 msgstr "" 1355 1374 1356 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:7 641375 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:771 1357 1376 #, php-format 1358 1377 msgid "%s day" 1359 1378 msgstr "" 1360 1379 1361 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:8 731380 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:880 1362 1381 #: includes/view/order/meta/form/input/address.php:3 1363 1382 msgid "First Name" 1364 1383 msgstr "" 1365 1384 1366 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:8 781385 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:885 1367 1386 #: includes/view/order/meta/form/input/address.php:10 1368 1387 msgid "Last Name" 1369 1388 msgstr "" 1370 1389 1371 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:8 831390 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:890 1372 1391 #: includes/view/order/meta/form/input/address.php:17 1373 1392 msgid "Company" 1374 1393 msgstr "" 1375 1394 1376 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:8 891395 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:896 1377 1396 #: includes/view/order/meta/form/input/address.php:24 1378 1397 msgid "Postcode" 1379 1398 msgstr "" 1380 1399 1381 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 8941400 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:901 1382 1401 #: includes/view/order/meta/form/input/address.php:31 1383 1402 msgid "City" 1384 1403 msgstr "" 1385 1404 1386 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php: 8991405 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:906 1387 1406 #: includes/view/order/meta/form/input/address.php:38 1388 1407 msgid "Street" 1389 1408 msgstr "" 1390 1409 1391 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:9 041410 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:911 1392 1411 #: includes/view/order/meta/form/input/address.php:45 1393 1412 msgid "Number" 1394 1413 msgstr "" 1395 1414 1396 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:9 091415 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:916 1397 1416 #: includes/view/order/meta/form/input/address.php:52 1398 1417 msgid "Addition" 1399 1418 msgstr "" 1400 1419 1401 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:9 141420 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:921 1402 1421 msgid "Country" 1403 1422 msgstr "" 1404 1423 1405 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:9 171424 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:924 1406 1425 msgid "Netherlands" 1407 1426 msgstr "" 1408 1427 1409 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:9 181428 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:925 1410 1429 msgid "Belgium" 1411 1430 msgstr "" 1412 1431 1413 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:9 191432 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:926 1414 1433 msgid "Luxembourg" 1415 1434 msgstr "" 1416 1435 1417 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:92 01436 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:927 1418 1437 msgid "Austria" 1419 1438 msgstr "" 1420 1439 1421 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:9 261440 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:933 1422 1441 #: includes/view/order/meta/form/input/address.php:59 1423 1442 msgid "Email" 1424 1443 msgstr "" 1425 1444 1426 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:93 11445 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:938 1427 1446 #: includes/view/order/meta/form/input/address.php:66 1428 1447 msgid "Phone" 1429 1448 msgstr "" 1430 1449 1431 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:11 691450 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:1176 1432 1451 #, php-format 1433 1452 msgid "Change status to: %s" 1434 1453 msgstr "" 1435 1454 1436 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:11 741455 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:1181 1437 1456 #, php-format 1438 1457 msgid "On status: %s" 1439 1458 msgstr "" 1440 1459 1441 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:11 851460 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:1192 1442 1461 #, php-format 1443 1462 msgid "Change status if order is: %s" 1444 1463 msgstr "" 1445 1464 1446 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:11 891465 #: includes/model/woocommerce/settings/class-dhlpwc-model-woocommerce-settings-shipping-method.php:1196 1447 1466 msgid "Apply status change when creating a label" 1448 1467 msgstr "" -
dhl-for-woocommerce/tags/2.9.2/dhlpwoocommerce/readme.txt
r2718612 r2757781 5 5 Requires PHP: 5.6 6 6 Tested up to: 5.9 7 Stable tag: 2.0. 57 Stable tag: 2.0.6 8 8 WC requires at least: 3.0.0 9 9 WC tested up to: 5.3.0 … … 11 11 License URI: https://www.gnu.org/licenses/gpl-3.0.html 12 12 13 The official DHL Parcel for WooCommerce plugin allows you to automate your e-commerce order process. Covering shipping services from DHL Parcel (Benelux).13 DHL Parcel (Benelux) presents: The official DHL Parcel for WooCommerce plugin to automate your e-commerce shipping process. 14 14 15 15 == Description == … … 53 53 54 54 == Changelog == 55 56 = 2.0.5 = 57 - Updated the migration notice when to change colors 55 58 56 59 = 2.0.4 = -
dhl-for-woocommerce/tags/2.9.2/pr-dhl-woocommerce.php
r2752944 r2757781 8 8 * Text Domain: dhl-for-woocommerce 9 9 * Domain Path: /lang 10 * Version: 2.9. 110 * Version: 2.9.2 11 11 * Tested up to: 6.0 12 12 * WC requires at least: 3.0 … … 37 37 class PR_DHL_WC { 38 38 39 private $version = "2.9. 1";39 private $version = "2.9.2"; 40 40 41 41 /** -
dhl-for-woocommerce/tags/2.9.2/readme.txt
r2752944 r2757781 6 6 Requires PHP: 5.6 7 7 Tested up to: 6.0 8 Stable tag: 2.9. 18 Stable tag: 2.9.2 9 9 WC requires at least: 3.0 10 10 WC tested up to: 6.6 … … 77 77 78 78 == Changelog == 79 80 = 2.9.2 = 81 * DHL Parcel: Added a setting to automatically enable the service: send a message to recipient 82 * DHL Parcel: Improved street and housenumber parsing 83 * DHL Parcel: Fixed an issue with price rules in shipping zones not using the right delimiter settings 84 * DHL Parcel: Tested for WordPress 6.0 79 85 80 86 = 2.9.1 = -
dhl-for-woocommerce/trunk/readme.txt
r2752944 r2757781 6 6 Requires PHP: 5.6 7 7 Tested up to: 4.8.2 8 Stable tag: 2.9. 18 Stable tag: 2.9.2 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.